39 lines
1.4 KiB
TypeScript
39 lines
1.4 KiB
TypeScript
import { WorkflowActions } from "@prisma/client";
|
|
import { TFunction } from "next-i18next";
|
|
|
|
import { TIME_UNIT, WORKFLOW_ACTIONS, WORKFLOW_TEMPLATES, WORKFLOW_TRIGGER_EVENTS } from "./constants";
|
|
import { isSMSAction } from "./isSMSAction";
|
|
|
|
export function getWorkflowActionOptions(t: TFunction, isTeamsPlan?: boolean) {
|
|
return WORKFLOW_ACTIONS.filter((action) => action !== WorkflowActions.EMAIL_ADDRESS) //removing EMAIL_ADDRESS for now due to abuse episode
|
|
.map((action) => {
|
|
const actionString = t(`${action.toLowerCase()}_action`);
|
|
|
|
return {
|
|
label: actionString.charAt(0).toUpperCase() + actionString.slice(1),
|
|
value: action,
|
|
needsUpgrade: isSMSAction(action) && !isTeamsPlan,
|
|
};
|
|
});
|
|
}
|
|
|
|
export function getWorkflowTriggerOptions(t: TFunction) {
|
|
return WORKFLOW_TRIGGER_EVENTS.map((triggerEvent) => {
|
|
const triggerString = t(`${triggerEvent.toLowerCase()}_trigger`);
|
|
|
|
return { label: triggerString.charAt(0).toUpperCase() + triggerString.slice(1), value: triggerEvent };
|
|
});
|
|
}
|
|
|
|
export function getWorkflowTimeUnitOptions(t: TFunction) {
|
|
return TIME_UNIT.map((timeUnit) => {
|
|
return { label: t(`${timeUnit.toLowerCase()}_timeUnit`), value: timeUnit };
|
|
});
|
|
}
|
|
|
|
export function getWorkflowTemplateOptions(t: TFunction) {
|
|
return WORKFLOW_TEMPLATES.map((template) => {
|
|
return { label: t(`${template.toLowerCase()}`), value: template };
|
|
});
|
|
}
|