tachybase_todo/packages/plugins/workflow/src/client/nodes/update.tsx
Junyi ea4d4ac062
feat(plugin-workflow) config preload associations in triggers and nodes (#1548)
* feat(plugin-workflow): add preload associations for triggers and nodes

* feat(plugin-workflow): add appends parameter to schedule trigger

* fix(plugin-workflow): fix import

* fix(plugin-workflow): fix component injection

* test(plugin-workflow): add test case
2023-03-10 16:36:58 +08:00

43 lines
1.0 KiB
TypeScript

import { useCollectionDataSource } from '@nocobase/client';
import { FilterDynamicComponent } from '../components/FilterDynamicComponent';
import CollectionFieldset from '../components/CollectionFieldset';
import { isValidFilter } from '../utils';
import { NAMESPACE } from '../locale';
import { collection, filter, values } from '../schemas/collection';
export default {
title: `{{t("Update record", { ns: "${NAMESPACE}" })}}`,
type: 'update',
group: 'collection',
fieldset: {
collection,
params: {
type: 'object',
properties: {
filter: {
...filter,
title: `{{t("Only update records matching conditions", { ns: "${NAMESPACE}" })}}`,
['x-validator'](value) {
return isValidFilter(value) ? '' : `{{t("Please add at least one condition", { ns: "${NAMESPACE}" })}}`;
},
},
values
}
}
},
view: {
},
scope: {
useCollectionDataSource
},
components: {
FilterDynamicComponent,
CollectionFieldset
}
};