mirror of
https://gitee.com/nocobase/nocobase.git
synced 2025-05-07 06:29:25 +08:00
* feat(plugin-workflow): add node description to drawer when edit node * fix(plugin-workflow): fix manual description * fix(plugin-workflow): fix languages
70 lines
2.0 KiB
TypeScript
70 lines
2.0 KiB
TypeScript
import { SchemaInitializerItemOptions, useCollectionDataSource } from '@nocobase/client';
|
|
|
|
import { appends, collection, values } from '../schemas/collection';
|
|
import CollectionFieldset from '../components/CollectionFieldset';
|
|
import { NAMESPACE } from '../locale';
|
|
import { CollectionBlockInitializer } from '../components/CollectionBlockInitializer';
|
|
import { CollectionFieldInitializers } from '../components/CollectionFieldInitializers';
|
|
import { useCollectionFieldOptions } from '../variable';
|
|
import { FieldsSelect } from '../components/FieldsSelect';
|
|
|
|
export default {
|
|
title: `{{t("Create record", { ns: "${NAMESPACE}" })}}`,
|
|
type: 'create',
|
|
group: 'collection',
|
|
description: `{{t("Add new record to a collection. You can use variables from upstream nodes to assign values to fields.", { ns: "${NAMESPACE}" })}}`,
|
|
fieldset: {
|
|
collection,
|
|
// multiple: {
|
|
// type: 'boolean',
|
|
// title: '多条数据',
|
|
// name: 'multiple',
|
|
// 'x-decorator': 'FormItem',
|
|
// 'x-component': 'Checkbox',
|
|
// 'x-component-props': {
|
|
// disabled: true
|
|
// }
|
|
// },
|
|
params: {
|
|
type: 'object',
|
|
properties: {
|
|
values,
|
|
appends,
|
|
},
|
|
},
|
|
},
|
|
view: {},
|
|
scope: {
|
|
useCollectionDataSource,
|
|
},
|
|
components: {
|
|
CollectionFieldset,
|
|
FieldsSelect,
|
|
},
|
|
useVariables({ config }, options) {
|
|
const result = useCollectionFieldOptions({
|
|
collection: config?.collection,
|
|
...options,
|
|
depth: options?.depth ?? config?.params?.appends?.length ? 1 : 0,
|
|
});
|
|
|
|
return result?.length ? result : null;
|
|
},
|
|
useInitializers(node): SchemaInitializerItemOptions | null {
|
|
if (!node.config.collection) {
|
|
return null;
|
|
}
|
|
|
|
return {
|
|
type: 'item',
|
|
title: node.title ?? `#${node.id}`,
|
|
component: CollectionBlockInitializer,
|
|
collection: node.config.collection,
|
|
dataSource: `{{$jobsMapByNodeId.${node.id}}}`,
|
|
};
|
|
},
|
|
initializers: {
|
|
CollectionFieldInitializers,
|
|
},
|
|
};
|