46 lines
1.3 KiB
JavaScript
46 lines
1.3 KiB
JavaScript
|
import { enrichDataBinding } from "./enrichDataBinding"
|
||
|
import { routeStore } from "../store"
|
||
|
import { saveRow, deleteRow } from "../api"
|
||
|
|
||
|
const saveRowHandler = async (action, context) => {
|
||
|
let draft = context[`${action.parameters.contextPath}_draft`]
|
||
|
if (action.parameters.fields) {
|
||
|
Object.entries(action.parameters.fields).forEach(([key, entry]) => {
|
||
|
draft[key] = enrichDataBinding(entry.value, context)
|
||
|
})
|
||
|
}
|
||
|
await saveRow(draft)
|
||
|
}
|
||
|
|
||
|
const deleteRowHandler = async (action, context) => {
|
||
|
const { tableId, revId, rowId } = action.parameters
|
||
|
await deleteRow({
|
||
|
tableId: enrichDataBinding(tableId, context),
|
||
|
rowId: enrichDataBinding(rowId, context),
|
||
|
revId: enrichDataBinding(revId, context),
|
||
|
})
|
||
|
}
|
||
|
|
||
|
const navigationHandler = action => {
|
||
|
routeStore.actions.navigate(action.parameters.url)
|
||
|
}
|
||
|
|
||
|
const handlerMap = {
|
||
|
["Save Row"]: saveRowHandler,
|
||
|
["Delete Row"]: deleteRowHandler,
|
||
|
["Navigate To"]: navigationHandler,
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Parses an array of actions and returns a function which will execute the
|
||
|
* actions in the current context.
|
||
|
*/
|
||
|
export const enrichButtonActions = (actions, context) => {
|
||
|
const handlers = actions.map(def => handlerMap[def["##eventHandlerType"]])
|
||
|
return async () => {
|
||
|
for (let i = 0; i < handlers.length; i++) {
|
||
|
await handlers[i](actions[i], context)
|
||
|
}
|
||
|
}
|
||
|
}
|