refactor(plugin-workflow): add property to determine workflow type triggerable on ui (#2890)
This commit is contained in:
parent
cde25ed871
commit
5fad821eab
@ -1,5 +1,5 @@
|
|||||||
import { ArrayTable } from '@formily/antd-v5';
|
import { ArrayTable } from '@formily/antd-v5';
|
||||||
import { onFieldValueChange, onFieldInputValueChange } from '@formily/core';
|
import { onFieldValueChange, onFieldInputValueChange, onFieldInit } from '@formily/core';
|
||||||
import { connect, ISchema, mapProps, useField, useFieldSchema, useForm, useFormEffects } from '@formily/react';
|
import { connect, ISchema, mapProps, useField, useFieldSchema, useForm, useFormEffects } from '@formily/react';
|
||||||
import { isValid, uid } from '@formily/shared';
|
import { isValid, uid } from '@formily/shared';
|
||||||
import { Alert, Tree as AntdTree, ModalProps } from 'antd';
|
import { Alert, Tree as AntdTree, ModalProps } from 'antd';
|
||||||
@ -17,6 +17,7 @@ import { useSyncFromForm } from '../../../schema-settings/DataTemplates/utils';
|
|||||||
import { DefaultValueProvider } from '../../../schema-settings/hooks/useIsAllowToSetDefaultValue';
|
import { DefaultValueProvider } from '../../../schema-settings/hooks/useIsAllowToSetDefaultValue';
|
||||||
import { useLinkageAction } from './hooks';
|
import { useLinkageAction } from './hooks';
|
||||||
import { requestSettingsSchema } from './utils';
|
import { requestSettingsSchema } from './utils';
|
||||||
|
import { usePlugin } from '../../../application/hooks';
|
||||||
|
|
||||||
const Tree = connect(
|
const Tree = connect(
|
||||||
AntdTree,
|
AntdTree,
|
||||||
@ -713,7 +714,7 @@ function RemoveButton(
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
function FormWorkflowSelect(props) {
|
function WorkflowSelect({ types, ...props }) {
|
||||||
const index = ArrayTable.useIndex();
|
const index = ArrayTable.useIndex();
|
||||||
const { setValuesIn } = useForm();
|
const { setValuesIn } = useForm();
|
||||||
const baseCollection = useCollection();
|
const baseCollection = useCollection();
|
||||||
@ -745,7 +746,7 @@ function FormWorkflowSelect(props) {
|
|||||||
action: 'list',
|
action: 'list',
|
||||||
params: {
|
params: {
|
||||||
filter: {
|
filter: {
|
||||||
type: 'form',
|
type: types,
|
||||||
enabled: true,
|
enabled: true,
|
||||||
'config.collection': workflowCollection,
|
'config.collection': workflowCollection,
|
||||||
},
|
},
|
||||||
@ -760,6 +761,8 @@ function WorkflowConfig() {
|
|||||||
const { t } = useTranslation();
|
const { t } = useTranslation();
|
||||||
const fieldSchema = useFieldSchema();
|
const fieldSchema = useFieldSchema();
|
||||||
const { name: collection } = useCollection();
|
const { name: collection } = useCollection();
|
||||||
|
const workflowPlugin = usePlugin('workflow') as any;
|
||||||
|
const workflowTypes = workflowPlugin.getTriggersOptions().filter((item) => item.options.actionTriggerable);
|
||||||
const description = {
|
const description = {
|
||||||
submit: t('Workflow will be triggered after submitting succeeded.', { ns: 'workflow' }),
|
submit: t('Workflow will be triggered after submitting succeeded.', { ns: 'workflow' }),
|
||||||
'customize:save': t('Workflow will be triggered after saving succeeded.', { ns: 'workflow' }),
|
'customize:save': t('Workflow will be triggered after saving succeeded.', { ns: 'workflow' }),
|
||||||
@ -777,7 +780,7 @@ function WorkflowConfig() {
|
|||||||
components={{
|
components={{
|
||||||
Alert,
|
Alert,
|
||||||
ArrayTable,
|
ArrayTable,
|
||||||
FormWorkflowSelect,
|
WorkflowSelect,
|
||||||
}}
|
}}
|
||||||
schema={
|
schema={
|
||||||
{
|
{
|
||||||
@ -838,13 +841,14 @@ function WorkflowConfig() {
|
|||||||
workflowKey: {
|
workflowKey: {
|
||||||
type: 'number',
|
type: 'number',
|
||||||
'x-decorator': 'FormItem',
|
'x-decorator': 'FormItem',
|
||||||
'x-component': 'FormWorkflowSelect',
|
'x-component': 'WorkflowSelect',
|
||||||
'x-component-props': {
|
'x-component-props': {
|
||||||
placeholder: t('Select workflow', { ns: 'workflow' }),
|
placeholder: t('Select workflow', { ns: 'workflow' }),
|
||||||
fieldNames: {
|
fieldNames: {
|
||||||
label: 'title',
|
label: 'title',
|
||||||
value: 'key',
|
value: 'key',
|
||||||
},
|
},
|
||||||
|
types: workflowTypes.map((item) => item.value),
|
||||||
},
|
},
|
||||||
required: true,
|
required: true,
|
||||||
},
|
},
|
||||||
@ -859,7 +863,6 @@ function WorkflowConfig() {
|
|||||||
properties: {
|
properties: {
|
||||||
remove: {
|
remove: {
|
||||||
type: 'void',
|
type: 'void',
|
||||||
'x-decorator': 'FormItem',
|
|
||||||
'x-component': 'ArrayTable.Remove',
|
'x-component': 'ArrayTable.Remove',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
@ -11,11 +11,17 @@ import { ExecutionPage } from './ExecutionPage';
|
|||||||
import { WorkflowPage } from './WorkflowPage';
|
import { WorkflowPage } from './WorkflowPage';
|
||||||
import { WorkflowProvider } from './WorkflowProvider';
|
import { WorkflowProvider } from './WorkflowProvider';
|
||||||
import { DynamicExpression } from './components/DynamicExpression';
|
import { DynamicExpression } from './components/DynamicExpression';
|
||||||
|
import { triggers, useTrigger, getTriggersOptions } from './triggers';
|
||||||
|
import { instructions } from './nodes';
|
||||||
import { WorkflowTodo } from './nodes/manual/WorkflowTodo';
|
import { WorkflowTodo } from './nodes/manual/WorkflowTodo';
|
||||||
import { WorkflowTodoBlockInitializer } from './nodes/manual/WorkflowTodoBlockInitializer';
|
import { WorkflowTodoBlockInitializer } from './nodes/manual/WorkflowTodoBlockInitializer';
|
||||||
import { useTriggerWorkflowsActionProps } from './triggers/form';
|
import { useTriggerWorkflowsActionProps } from './triggers/form';
|
||||||
|
|
||||||
export class WorkflowPlugin extends Plugin {
|
export class WorkflowPlugin extends Plugin {
|
||||||
|
triggers = triggers;
|
||||||
|
getTriggersOptions = getTriggersOptions;
|
||||||
|
instructions = instructions;
|
||||||
|
|
||||||
async load() {
|
async load() {
|
||||||
this.addRoutes();
|
this.addRoutes();
|
||||||
this.addScopes();
|
this.addScopes();
|
||||||
|
@ -101,6 +101,7 @@ export default {
|
|||||||
};
|
};
|
||||||
},
|
},
|
||||||
initializers: {},
|
initializers: {},
|
||||||
|
actionTriggerable: true,
|
||||||
};
|
};
|
||||||
|
|
||||||
function getFormValues({
|
function getFormValues({
|
||||||
|
@ -61,6 +61,7 @@ export interface Trigger {
|
|||||||
components?: { [key: string]: any };
|
components?: { [key: string]: any };
|
||||||
useInitializers?(config): SchemaInitializerItemOptions | null;
|
useInitializers?(config): SchemaInitializerItemOptions | null;
|
||||||
initializers?: any;
|
initializers?: any;
|
||||||
|
actionTriggerable?: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
export const triggers = new Registry<Trigger>();
|
export const triggers = new Registry<Trigger>();
|
||||||
@ -311,9 +312,10 @@ export function useTrigger() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export function getTriggersOptions() {
|
export function getTriggersOptions() {
|
||||||
return Array.from(triggers.getEntities()).map(([value, { title }]) => ({
|
return Array.from(triggers.getEntities()).map(([value, { title, ...options }]) => ({
|
||||||
value,
|
value,
|
||||||
label: title,
|
label: title,
|
||||||
color: 'gold',
|
color: 'gold',
|
||||||
|
options,
|
||||||
}));
|
}));
|
||||||
}
|
}
|
||||||
|
@ -196,3 +196,7 @@ export async function sync(context: Context, next) {
|
|||||||
|
|
||||||
await next();
|
await next();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export async function trigger(context: Context, next) {
|
||||||
|
return next();
|
||||||
|
}
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
export * from './utils';
|
||||||
export * from './constants';
|
export * from './constants';
|
||||||
export type * from './instructions';
|
export type * from './instructions';
|
||||||
export { Trigger } from './triggers';
|
export { Trigger } from './triggers';
|
||||||
|
@ -12,12 +12,9 @@ export default class FormTrigger extends Trigger {
|
|||||||
super(plugin);
|
super(plugin);
|
||||||
|
|
||||||
plugin.app.resourcer.use(this.middleware);
|
plugin.app.resourcer.use(this.middleware);
|
||||||
plugin.app.actions({
|
|
||||||
['workflows:trigger']: this.triggerAction,
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
triggerAction = async (context, next) => {
|
async triggerAction(context, next) {
|
||||||
const { triggerWorkflows } = context.action.params;
|
const { triggerWorkflows } = context.action.params;
|
||||||
|
|
||||||
if (!triggerWorkflows) {
|
if (!triggerWorkflows) {
|
||||||
@ -28,21 +25,26 @@ export default class FormTrigger extends Trigger {
|
|||||||
await next();
|
await next();
|
||||||
|
|
||||||
this.trigger(context);
|
this.trigger(context);
|
||||||
};
|
}
|
||||||
|
|
||||||
middleware = async (context, next) => {
|
middleware = async (context, next) => {
|
||||||
await next();
|
|
||||||
|
|
||||||
const {
|
const {
|
||||||
resourceName,
|
resourceName,
|
||||||
actionName,
|
actionName,
|
||||||
params: { triggerWorkflows },
|
params: { triggerWorkflows },
|
||||||
} = context.action;
|
} = context.action;
|
||||||
|
|
||||||
|
if (resourceName === 'workflows' && actionName === 'trigger') {
|
||||||
|
return this.triggerAction(context, next);
|
||||||
|
}
|
||||||
|
|
||||||
|
await next();
|
||||||
|
|
||||||
if (!triggerWorkflows) {
|
if (!triggerWorkflows) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((resourceName === 'workflows' && actionName === 'trigger') || !['create', 'update'].includes(actionName)) {
|
if (!['create', 'update'].includes(actionName)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user