2020-11-25 10:50:51 +01:00
|
|
|
import { enrichDataBinding } from "./enrichDataBinding"
|
|
|
|
import { routeStore } from "../store"
|
2021-01-08 18:25:06 +01:00
|
|
|
import { saveRow, deleteRow, triggerAutomation } from "../api"
|
2020-11-25 10:50:51 +01:00
|
|
|
|
|
|
|
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),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2021-01-08 18:25:06 +01:00
|
|
|
const triggerAutomationHandler = async (action, context) => {
|
|
|
|
const params = {}
|
|
|
|
for (let field in action.parameters.fields) {
|
|
|
|
params[field] = enrichDataBinding(
|
|
|
|
action.parameters.fields[field].value,
|
|
|
|
context
|
|
|
|
)
|
|
|
|
}
|
|
|
|
await triggerAutomation(action.parameters.automationId, params)
|
|
|
|
}
|
|
|
|
|
2020-11-25 10:50:51 +01:00
|
|
|
const navigationHandler = action => {
|
|
|
|
routeStore.actions.navigate(action.parameters.url)
|
|
|
|
}
|
|
|
|
|
|
|
|
const handlerMap = {
|
|
|
|
["Save Row"]: saveRowHandler,
|
|
|
|
["Delete Row"]: deleteRowHandler,
|
|
|
|
["Navigate To"]: navigationHandler,
|
2021-01-08 18:25:06 +01:00
|
|
|
["Trigger Automation"]: triggerAutomationHandler,
|
2020-11-25 10:50:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|