- Allows the deletion of triggers and steps in workflows. If the workflow can not be edited right now, we create a new draft version. - The workflow right drawer can now render nothing. It's necessary to behave that way because a deleted step will still be displayed for a short amount of time in the drawer. The drawer will be filled with blank content when it disappears. https://github.com/user-attachments/assets/abd5184e-d3db-4fe7-8870-ccc78ff23d41 Closes #7057
22 lines
647 B
TypeScript
22 lines
647 B
TypeScript
import { WorkflowStep } from '@/workflow/types/Workflow';
|
|
import { findStepPosition } from '@/workflow/utils/findStepPosition';
|
|
import { isDefined } from 'twenty-ui';
|
|
|
|
/**
|
|
* This function returns the reference of the array where the step should be positioned
|
|
* and at which index.
|
|
*/
|
|
export const findStepPositionOrThrow = (props: {
|
|
steps: Array<WorkflowStep>;
|
|
stepId: string | undefined;
|
|
}): { steps: Array<WorkflowStep>; index: number } => {
|
|
const result = findStepPosition(props);
|
|
if (!isDefined(result)) {
|
|
throw new Error(
|
|
`Couldn't locate the step. Unreachable step id: ${props.stepId}.`,
|
|
);
|
|
}
|
|
|
|
return result;
|
|
};
|