@nocobase/client 0.9.0-alpha.2 → 0.9.1-alpha.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/es/acl/ACLProvider.js +7 -8
- package/es/api-client/APIClient.js +6 -0
- package/es/block-provider/BlockProvider.js +9 -6
- package/es/block-provider/FormBlockProvider.js +18 -9
- package/es/block-provider/KanbanBlockProvider.js +1 -1
- package/es/block-provider/SharedFilterProvider.js +9 -1
- package/es/block-provider/TableBlockProvider.js +1 -1
- package/es/block-provider/TableSelectorProvider.js +2 -2
- package/es/block-provider/hooks/index.js +22 -7
- package/es/collection-manager/CollectionManagerProvider.d.ts +1 -0
- package/es/collection-manager/CollectionManagerProvider.js +71 -9
- package/es/collection-manager/CollectionManagerShortcut.js +36 -23
- package/es/collection-manager/Configuration/AddCategoryAction.d.ts +2 -0
- package/es/collection-manager/Configuration/AddCategoryAction.js +117 -0
- package/es/collection-manager/Configuration/AddCollectionAction.js +8 -3
- package/es/collection-manager/Configuration/AddFieldAction.js +1 -0
- package/es/collection-manager/Configuration/ConfigurationTable.js +33 -4
- package/es/collection-manager/Configuration/ConfigurationTabs.d.ts +1 -0
- package/es/collection-manager/Configuration/ConfigurationTabs.js +381 -0
- package/es/collection-manager/Configuration/EditCategoryAction.d.ts +2 -0
- package/es/collection-manager/Configuration/EditCategoryAction.js +150 -0
- package/es/collection-manager/Configuration/EditCollectionAction.js +6 -2
- package/es/collection-manager/Configuration/OverridingCollectionField.js +17 -8
- package/es/collection-manager/Configuration/components/CollectionCategory.d.ts +2 -0
- package/es/collection-manager/Configuration/components/CollectionCategory.js +13 -0
- package/es/collection-manager/Configuration/index.d.ts +3 -0
- package/es/collection-manager/Configuration/index.js +3 -0
- package/es/collection-manager/Configuration/schemas/collections.d.ts +3 -0
- package/es/collection-manager/Configuration/schemas/collections.js +309 -176
- package/es/collection-manager/Configuration/templates.d.ts +1 -0
- package/es/collection-manager/Configuration/templates.js +1 -1
- package/es/collection-manager/action-hooks.d.ts +4 -0
- package/es/collection-manager/action-hooks.js +26 -12
- package/es/collection-manager/context.d.ts +4 -0
- package/es/collection-manager/context.js +5 -1
- package/es/collection-manager/hooks/useCollectionManager.d.ts +7 -0
- package/es/collection-manager/hooks/useCollectionManager.js +52 -7
- package/es/collection-manager/interfaces/m2m.js +2 -2
- package/es/collection-manager/interfaces/properties/index.d.ts +0 -56
- package/es/collection-manager/interfaces/properties/index.js +1 -2
- package/es/collection-manager/templates/calendar.js +1 -1
- package/es/collection-manager/templates/general.js +1 -1
- package/es/collection-manager/templates/properties/index.d.ts +12 -1
- package/es/collection-manager/templates/properties/index.js +11 -0
- package/es/i18n/i18n.js +3 -1
- package/es/locale/en_US.d.ts +23 -0
- package/es/locale/en_US.js +23 -0
- package/es/locale/ja_JP.d.ts +23 -0
- package/es/locale/ja_JP.js +24 -1
- package/es/locale/ru_RU.d.ts +1 -0
- package/es/locale/ru_RU.js +1 -0
- package/es/locale/zh_CN.d.ts +43 -4
- package/es/locale/zh_CN.js +44 -5
- package/es/route-switch/antd/admin-layout/index.js +13 -33
- package/es/schema-component/antd/action/Action.Designer.js +28 -15
- package/es/schema-component/antd/action/Action.js +28 -5
- package/es/schema-component/antd/action/utils.d.ts +1 -0
- package/es/schema-component/antd/action/utils.js +49 -0
- package/es/schema-component/antd/association-filter/AssociationFilter.js +4 -4
- package/es/schema-component/antd/association-select/AssociationSelect.d.ts +2 -2
- package/es/schema-component/antd/association-select/useServiceOptions.js +47 -6
- package/es/schema-component/antd/calendar/Calendar.Designer.js +17 -36
- package/es/schema-component/antd/checkbox/Checkbox.js +9 -8
- package/es/schema-component/antd/date-picker/util.d.ts +1 -1
- package/es/schema-component/antd/date-picker/util.js +1 -1
- package/es/schema-component/antd/filter/DynamicComponent.js +3 -1
- package/es/schema-component/antd/filter/Filter.js +2 -1
- package/es/schema-component/antd/filter/FilterGroup.js +7 -4
- package/es/schema-component/antd/filter/FilterItem.js +3 -2
- package/es/schema-component/antd/filter/context.d.ts +1 -0
- package/es/schema-component/antd/filter/useValues.js +14 -11
- package/es/schema-component/antd/form/Form.js +11 -5
- package/es/schema-component/antd/form-item/FormItem.js +17 -8
- package/es/schema-component/antd/form-v2/Form.Designer.js +2 -0
- package/es/schema-component/antd/form-v2/Form.js +94 -7
- package/es/schema-component/antd/form-v2/utils.d.ts +5 -0
- package/es/schema-component/antd/form-v2/utils.js +161 -0
- package/es/schema-component/antd/g2plot/G2Plot.js +3 -1
- package/es/schema-component/antd/grid/Grid.js +10 -5
- package/es/schema-component/antd/icon-picker/IconPicker.js +1 -0
- package/es/schema-component/antd/index.d.ts +1 -0
- package/es/schema-component/antd/index.js +1 -0
- package/es/schema-component/antd/input/Input.d.ts +2 -1
- package/es/schema-component/antd/input/Json.d.ts +5 -3
- package/es/schema-component/antd/input/Json.js +3 -2
- package/es/schema-component/antd/input/ReadPretty.js +1 -1
- package/es/schema-component/antd/input-number/InputNumber.js +3 -1
- package/es/schema-component/antd/page/FixedBlock.js +3 -1
- package/es/schema-component/antd/page/Page.js +11 -5
- package/es/schema-component/antd/page/PageTabDesigner.js +3 -3
- package/es/schema-component/antd/record-picker/ReadPrettyRecordPicker.js +3 -1
- package/es/schema-component/antd/record-picker/RecordPicker.js +1 -2
- package/es/schema-component/antd/record-picker/util.js +7 -0
- package/es/schema-component/antd/remote-select/RemoteSelect.d.ts +2 -0
- package/es/schema-component/antd/remote-select/RemoteSelect.js +78 -36
- package/es/schema-component/antd/rich-text/RichText.js +4 -2
- package/es/schema-component/antd/select/Select.js +14 -4
- package/es/schema-component/antd/table/Table.Array.js +10 -3
- package/es/schema-component/antd/table-v2/Table.Column.Designer.js +2 -2
- package/es/schema-component/antd/table-v2/TableBlockDesigner.js +3 -2
- package/es/schema-component/antd/tabs/Tabs.Designer.js +1 -0
- package/es/schema-component/antd/tabs/Tabs.js +1 -0
- package/es/schema-component/antd/time-picker/TimePicker.js +1 -1
- package/es/schema-component/antd/variable/Input.d.ts +2 -0
- package/es/schema-component/antd/variable/Input.js +244 -0
- package/es/schema-component/antd/variable/JSONInput.d.ts +2 -0
- package/es/schema-component/antd/variable/JSONInput.js +82 -0
- package/es/schema-component/antd/variable/TextArea.d.ts +2 -0
- package/es/schema-component/antd/variable/TextArea.js +322 -0
- package/es/schema-component/antd/variable/Variable.d.ts +8 -0
- package/es/schema-component/antd/variable/Variable.js +11 -0
- package/es/schema-component/antd/variable/index.d.ts +1 -0
- package/es/schema-component/antd/variable/index.js +1 -0
- package/es/schema-component/common/sortable-item/SortableItem.js +36 -6
- package/es/schema-component/common/utils/logic.js +523 -0
- package/es/schema-component/common/utils/uitls.d.ts +1 -0
- package/es/schema-component/common/utils/uitls.js +89 -0
- package/es/schema-initializer/SchemaInitializer.js +9 -4
- package/es/schema-initializer/buttons/BlockInitializers.d.ts +2 -184
- package/es/schema-initializer/buttons/BlockInitializers.js +1 -102
- package/es/schema-initializer/buttons/RecordBlockInitializers.js +72 -16
- package/es/schema-initializer/buttons/TableActionColumnInitializers.d.ts +1 -0
- package/es/schema-initializer/buttons/TableActionColumnInitializers.js +1 -3
- package/es/schema-initializer/components/CreateRecordAction.d.ts +3 -0
- package/es/schema-initializer/components/CreateRecordAction.js +174 -0
- package/es/schema-initializer/components/index.d.ts +1 -0
- package/es/schema-initializer/components/index.js +2 -1
- package/es/schema-initializer/index.d.ts +2 -1
- package/es/schema-initializer/index.js +2 -1
- package/es/schema-initializer/items/CalendarBlockInitializer.js +24 -41
- package/es/schema-initializer/items/CreateActionInitializer.js +3 -3
- package/es/schema-initializer/items/RecordFormBlockInitializer.js +9 -9
- package/es/schema-initializer/items/index.d.ts +4 -4
- package/es/schema-initializer/items/index.js +6 -6
- package/es/schema-initializer/utils.js +22 -7
- package/es/schema-settings/EnableChildCollections/index.d.ts +2 -0
- package/es/schema-settings/EnableChildCollections/index.js +141 -0
- package/es/schema-settings/LinkageRules/DynamicComponent.d.ts +1 -0
- package/es/schema-settings/LinkageRules/DynamicComponent.js +113 -0
- package/es/schema-settings/LinkageRules/FilterDynamicComponent.d.ts +2 -0
- package/es/schema-settings/LinkageRules/FilterDynamicComponent.js +15 -0
- package/es/schema-settings/LinkageRules/LinkageRuleAction.d.ts +3 -0
- package/es/schema-settings/LinkageRules/LinkageRuleAction.js +162 -0
- package/es/schema-settings/LinkageRules/LinkageRuleActionGroup.d.ts +3 -0
- package/es/schema-settings/LinkageRules/LinkageRuleActionGroup.js +71 -0
- package/es/schema-settings/LinkageRules/ValueDynamicComponent.d.ts +1 -0
- package/es/schema-settings/LinkageRules/ValueDynamicComponent.js +82 -0
- package/es/schema-settings/LinkageRules/Variables.d.ts +7 -0
- package/es/schema-settings/LinkageRules/Variables.js +115 -0
- package/es/schema-settings/LinkageRules/action-hooks.d.ts +1 -0
- package/es/schema-settings/LinkageRules/action-hooks.js +115 -0
- package/es/schema-settings/LinkageRules/context.d.ts +13 -0
- package/es/schema-settings/LinkageRules/context.js +4 -0
- package/es/schema-settings/LinkageRules/index.d.ts +2 -0
- package/es/schema-settings/LinkageRules/index.js +132 -0
- package/es/schema-settings/LinkageRules/type.d.ts +13 -0
- package/es/schema-settings/LinkageRules/type.js +15 -0
- package/es/schema-settings/LinkageRules/useValues.d.ts +1 -0
- package/es/schema-settings/LinkageRules/useValues.js +84 -0
- package/es/schema-settings/SchemaSettings.d.ts +4 -1
- package/es/schema-settings/SchemaSettings.js +219 -26
- package/es/schema-templates/BlockTemplate.js +9 -1
- package/es/system-settings/SystemSettingsShortcut.js +1 -1
- package/lib/acl/ACLProvider.js +7 -8
- package/lib/api-client/APIClient.js +6 -0
- package/lib/block-provider/BlockProvider.js +9 -6
- package/lib/block-provider/FormBlockProvider.js +17 -8
- package/lib/block-provider/KanbanBlockProvider.js +1 -1
- package/lib/block-provider/SharedFilterProvider.js +9 -3
- package/lib/block-provider/TableBlockProvider.js +1 -1
- package/lib/block-provider/TableSelectorProvider.js +2 -2
- package/lib/block-provider/hooks/index.js +23 -7
- package/lib/collection-manager/CollectionManagerProvider.d.ts +1 -0
- package/lib/collection-manager/CollectionManagerProvider.js +81 -16
- package/lib/collection-manager/CollectionManagerShortcut.js +36 -23
- package/lib/collection-manager/Configuration/AddCategoryAction.d.ts +2 -0
- package/lib/collection-manager/Configuration/AddCategoryAction.js +145 -0
- package/lib/collection-manager/Configuration/AddCollectionAction.js +8 -3
- package/lib/collection-manager/Configuration/AddFieldAction.js +1 -0
- package/lib/collection-manager/Configuration/ConfigurationTable.js +34 -4
- package/lib/collection-manager/Configuration/ConfigurationTabs.d.ts +1 -0
- package/lib/collection-manager/Configuration/ConfigurationTabs.js +407 -0
- package/lib/collection-manager/Configuration/EditCategoryAction.d.ts +2 -0
- package/lib/collection-manager/Configuration/EditCategoryAction.js +178 -0
- package/lib/collection-manager/Configuration/EditCollectionAction.js +6 -2
- package/lib/collection-manager/Configuration/OverridingCollectionField.js +17 -8
- package/lib/collection-manager/Configuration/components/CollectionCategory.d.ts +2 -0
- package/lib/collection-manager/Configuration/components/CollectionCategory.js +27 -0
- package/lib/collection-manager/Configuration/index.d.ts +3 -0
- package/lib/collection-manager/Configuration/index.js +39 -0
- package/lib/collection-manager/Configuration/schemas/collections.d.ts +3 -0
- package/lib/collection-manager/Configuration/schemas/collections.js +316 -178
- package/lib/collection-manager/Configuration/templates.d.ts +1 -0
- package/lib/collection-manager/Configuration/templates.js +2 -0
- package/lib/collection-manager/action-hooks.d.ts +4 -0
- package/lib/collection-manager/action-hooks.js +30 -13
- package/lib/collection-manager/context.d.ts +4 -0
- package/lib/collection-manager/context.js +7 -2
- package/lib/collection-manager/hooks/useCollectionManager.d.ts +7 -0
- package/lib/collection-manager/hooks/useCollectionManager.js +52 -6
- package/lib/collection-manager/interfaces/m2m.js +2 -2
- package/lib/collection-manager/interfaces/properties/index.d.ts +0 -56
- package/lib/collection-manager/interfaces/properties/index.js +1 -2
- package/lib/collection-manager/templates/calendar.js +1 -1
- package/lib/collection-manager/templates/general.js +1 -1
- package/lib/collection-manager/templates/properties/index.d.ts +12 -1
- package/lib/collection-manager/templates/properties/index.js +11 -0
- package/lib/i18n/i18n.js +3 -1
- package/lib/locale/en_US.d.ts +23 -0
- package/lib/locale/en_US.js +23 -0
- package/lib/locale/ja_JP.d.ts +23 -0
- package/lib/locale/ja_JP.js +24 -1
- package/lib/locale/ru_RU.d.ts +1 -0
- package/lib/locale/ru_RU.js +1 -0
- package/lib/locale/zh_CN.d.ts +43 -4
- package/lib/locale/zh_CN.js +44 -5
- package/lib/route-switch/antd/admin-layout/index.js +13 -33
- package/lib/schema-component/antd/action/Action.Designer.js +30 -14
- package/lib/schema-component/antd/action/Action.js +29 -3
- package/lib/schema-component/antd/action/utils.d.ts +1 -0
- package/lib/schema-component/antd/action/utils.js +58 -2
- package/lib/schema-component/antd/association-filter/AssociationFilter.js +3 -3
- package/lib/schema-component/antd/association-select/AssociationSelect.d.ts +2 -2
- package/lib/schema-component/antd/association-select/useServiceOptions.js +47 -4
- package/lib/schema-component/antd/calendar/Calendar.Designer.js +15 -33
- package/lib/schema-component/antd/checkbox/Checkbox.js +8 -7
- package/lib/schema-component/antd/date-picker/util.d.ts +1 -1
- package/lib/schema-component/antd/date-picker/util.js +1 -1
- package/lib/schema-component/antd/filter/DynamicComponent.js +3 -1
- package/lib/schema-component/antd/filter/Filter.js +2 -1
- package/lib/schema-component/antd/filter/FilterGroup.js +7 -4
- package/lib/schema-component/antd/filter/FilterItem.js +3 -2
- package/lib/schema-component/antd/filter/context.d.ts +1 -0
- package/lib/schema-component/antd/filter/useValues.js +15 -11
- package/lib/schema-component/antd/form/Form.js +9 -3
- package/lib/schema-component/antd/form-item/FormItem.js +21 -7
- package/lib/schema-component/antd/form-v2/Form.Designer.js +2 -0
- package/lib/schema-component/antd/form-v2/Form.js +93 -5
- package/lib/schema-component/antd/form-v2/utils.d.ts +5 -0
- package/lib/schema-component/antd/form-v2/utils.js +181 -0
- package/lib/schema-component/antd/g2plot/G2Plot.js +3 -1
- package/lib/schema-component/antd/grid/Grid.js +10 -5
- package/lib/schema-component/antd/icon-picker/IconPicker.js +1 -0
- package/lib/schema-component/antd/index.d.ts +1 -0
- package/lib/schema-component/antd/index.js +13 -0
- package/lib/schema-component/antd/input/Input.d.ts +2 -1
- package/lib/schema-component/antd/input/Json.d.ts +5 -3
- package/lib/schema-component/antd/input/Json.js +6 -3
- package/lib/schema-component/antd/input/ReadPretty.js +1 -1
- package/lib/schema-component/antd/input-number/InputNumber.js +2 -0
- package/lib/schema-component/antd/page/FixedBlock.js +3 -1
- package/lib/schema-component/antd/page/Page.js +14 -5
- package/lib/schema-component/antd/page/PageTabDesigner.js +1 -1
- package/lib/schema-component/antd/record-picker/ReadPrettyRecordPicker.js +3 -1
- package/lib/schema-component/antd/record-picker/RecordPicker.js +1 -2
- package/lib/schema-component/antd/record-picker/util.js +7 -0
- package/lib/schema-component/antd/remote-select/RemoteSelect.d.ts +2 -0
- package/lib/schema-component/antd/remote-select/RemoteSelect.js +78 -37
- package/lib/schema-component/antd/rich-text/RichText.js +4 -2
- package/lib/schema-component/antd/select/Select.js +14 -4
- package/lib/schema-component/antd/table/Table.Array.js +8 -1
- package/lib/schema-component/antd/table-v2/Table.Column.Designer.js +2 -2
- package/lib/schema-component/antd/table-v2/TableBlockDesigner.js +3 -2
- package/lib/schema-component/antd/tabs/Tabs.Designer.js +1 -0
- package/lib/schema-component/antd/tabs/Tabs.js +1 -0
- package/lib/schema-component/antd/time-picker/TimePicker.js +1 -1
- package/lib/schema-component/antd/variable/Input.d.ts +2 -0
- package/lib/schema-component/antd/variable/Input.js +262 -0
- package/lib/schema-component/antd/variable/JSONInput.d.ts +2 -0
- package/lib/schema-component/antd/variable/JSONInput.js +100 -0
- package/lib/schema-component/antd/variable/TextArea.d.ts +2 -0
- package/lib/schema-component/antd/variable/TextArea.js +341 -0
- package/lib/schema-component/antd/variable/Variable.d.ts +8 -0
- package/lib/schema-component/antd/variable/Variable.js +25 -0
- package/lib/schema-component/antd/variable/index.d.ts +1 -0
- package/lib/schema-component/antd/variable/index.js +18 -0
- package/lib/schema-component/common/sortable-item/SortableItem.js +36 -6
- package/lib/schema-component/common/utils/logic.js +525 -0
- package/lib/schema-component/common/utils/uitls.d.ts +1 -0
- package/lib/schema-component/common/utils/uitls.js +103 -0
- package/lib/schema-initializer/SchemaInitializer.js +9 -4
- package/lib/schema-initializer/buttons/BlockInitializers.d.ts +2 -184
- package/lib/schema-initializer/buttons/BlockInitializers.js +0 -108
- package/lib/schema-initializer/buttons/RecordBlockInitializers.js +72 -16
- package/lib/schema-initializer/buttons/TableActionColumnInitializers.d.ts +1 -0
- package/lib/schema-initializer/buttons/TableActionColumnInitializers.js +3 -1
- package/lib/schema-initializer/components/CreateRecordAction.d.ts +3 -0
- package/lib/schema-initializer/components/CreateRecordAction.js +199 -0
- package/lib/schema-initializer/components/index.d.ts +1 -0
- package/lib/schema-initializer/components/index.js +13 -0
- package/lib/schema-initializer/index.d.ts +2 -1
- package/lib/schema-initializer/index.js +51 -2
- package/lib/schema-initializer/items/CalendarBlockInitializer.js +16 -33
- package/lib/schema-initializer/items/CreateActionInitializer.js +3 -3
- package/lib/schema-initializer/items/RecordFormBlockInitializer.js +3 -3
- package/lib/schema-initializer/items/index.d.ts +4 -4
- package/lib/schema-initializer/items/index.js +52 -52
- package/lib/schema-initializer/utils.js +22 -6
- package/lib/schema-settings/EnableChildCollections/index.d.ts +2 -0
- package/lib/schema-settings/EnableChildCollections/index.js +156 -0
- package/lib/schema-settings/LinkageRules/DynamicComponent.d.ts +1 -0
- package/lib/schema-settings/LinkageRules/DynamicComponent.js +139 -0
- package/lib/schema-settings/LinkageRules/FilterDynamicComponent.d.ts +2 -0
- package/lib/schema-settings/LinkageRules/FilterDynamicComponent.js +27 -0
- package/lib/schema-settings/LinkageRules/LinkageRuleAction.d.ts +3 -0
- package/lib/schema-settings/LinkageRules/LinkageRuleAction.js +190 -0
- package/lib/schema-settings/LinkageRules/LinkageRuleActionGroup.d.ts +3 -0
- package/lib/schema-settings/LinkageRules/LinkageRuleActionGroup.js +90 -0
- package/lib/schema-settings/LinkageRules/ValueDynamicComponent.d.ts +1 -0
- package/lib/schema-settings/LinkageRules/ValueDynamicComponent.js +104 -0
- package/lib/schema-settings/LinkageRules/Variables.d.ts +7 -0
- package/lib/schema-settings/LinkageRules/Variables.js +124 -0
- package/lib/schema-settings/LinkageRules/action-hooks.d.ts +1 -0
- package/lib/schema-settings/LinkageRules/action-hooks.js +127 -0
- package/lib/schema-settings/LinkageRules/context.d.ts +13 -0
- package/lib/schema-settings/LinkageRules/context.js +15 -0
- package/lib/schema-settings/LinkageRules/index.d.ts +2 -0
- package/lib/schema-settings/LinkageRules/index.js +149 -0
- package/lib/schema-settings/LinkageRules/type.d.ts +13 -0
- package/lib/schema-settings/LinkageRules/type.js +22 -0
- package/lib/schema-settings/LinkageRules/useValues.d.ts +1 -0
- package/lib/schema-settings/LinkageRules/useValues.js +95 -0
- package/lib/schema-settings/SchemaSettings.d.ts +4 -1
- package/lib/schema-settings/SchemaSettings.js +243 -48
- package/lib/schema-templates/BlockTemplate.js +9 -1
- package/lib/system-settings/SystemSettingsShortcut.js +1 -1
- package/package.json +4 -4
|
@@ -0,0 +1,139 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
exports.DynamicComponent = void 0;
|
|
9
|
+
|
|
10
|
+
var _css = require("@emotion/css");
|
|
11
|
+
|
|
12
|
+
var _core = require("@formily/core");
|
|
13
|
+
|
|
14
|
+
var _react = require("@formily/react");
|
|
15
|
+
|
|
16
|
+
var _shared = require("@formily/shared");
|
|
17
|
+
|
|
18
|
+
var _antd = require("antd");
|
|
19
|
+
|
|
20
|
+
var _react2 = _interopRequireWildcard(require("react"));
|
|
21
|
+
|
|
22
|
+
var _core2 = require("../../schema-component/core");
|
|
23
|
+
|
|
24
|
+
var _hooks = require("../../schema-component/hooks");
|
|
25
|
+
|
|
26
|
+
var _context = require("./context");
|
|
27
|
+
|
|
28
|
+
var _useFilterActionProps = require("../../schema-component/antd/filter/useFilterActionProps");
|
|
29
|
+
|
|
30
|
+
var _templateObject;
|
|
31
|
+
|
|
32
|
+
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
33
|
+
|
|
34
|
+
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
35
|
+
|
|
36
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
37
|
+
|
|
38
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
39
|
+
|
|
40
|
+
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
41
|
+
|
|
42
|
+
function _taggedTemplateLiteral(strings, raw) { if (!raw) { raw = strings.slice(0); } return Object.freeze(Object.defineProperties(strings, { raw: { value: Object.freeze(raw) } })); }
|
|
43
|
+
|
|
44
|
+
var VariableCascader = (0, _react.connect)(function (props) {
|
|
45
|
+
var fields = (0, _useFilterActionProps.useFilterOptions)('users');
|
|
46
|
+
var compile = (0, _hooks.useCompile)();
|
|
47
|
+
var value = props.value,
|
|
48
|
+
_onChange = props.onChange;
|
|
49
|
+
return /*#__PURE__*/_react2.default.createElement(_antd.Cascader, {
|
|
50
|
+
className: (0, _css.css)(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n width: 160px;\n "]))),
|
|
51
|
+
value: value ? value.split('.') : [],
|
|
52
|
+
fieldNames: {
|
|
53
|
+
label: 'title',
|
|
54
|
+
value: 'name',
|
|
55
|
+
children: 'children'
|
|
56
|
+
},
|
|
57
|
+
onChange: function onChange(value) {
|
|
58
|
+
_onChange(value ? value.join('.') : null);
|
|
59
|
+
},
|
|
60
|
+
options: compile([{
|
|
61
|
+
title: '{{t("Current user")}}',
|
|
62
|
+
name: 'currentUser',
|
|
63
|
+
children: fields.filter(function (field) {
|
|
64
|
+
if (!field.target) {
|
|
65
|
+
return true;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
return field.type === 'belongsTo';
|
|
69
|
+
}).map(function (field) {
|
|
70
|
+
if (field.children) {
|
|
71
|
+
field.children = field.children.filter(function (child) {
|
|
72
|
+
return !child.target;
|
|
73
|
+
});
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
return field;
|
|
77
|
+
})
|
|
78
|
+
}])
|
|
79
|
+
});
|
|
80
|
+
});
|
|
81
|
+
|
|
82
|
+
var DynamicComponent = function DynamicComponent(props) {
|
|
83
|
+
var _ref = (0, _react2.useContext)(_context.FilterContext) || {},
|
|
84
|
+
dynamicComponent = _ref.dynamicComponent,
|
|
85
|
+
disabled = _ref.disabled;
|
|
86
|
+
|
|
87
|
+
var component = (0, _hooks.useComponent)(dynamicComponent);
|
|
88
|
+
var form = (0, _react2.useMemo)(function () {
|
|
89
|
+
return (0, _core.createForm)({
|
|
90
|
+
values: {
|
|
91
|
+
value: props.value
|
|
92
|
+
},
|
|
93
|
+
disabled: disabled,
|
|
94
|
+
effects: function effects() {
|
|
95
|
+
(0, _core.onFieldValueChange)('value', function (field) {
|
|
96
|
+
var _props$onChange;
|
|
97
|
+
|
|
98
|
+
props === null || props === void 0 ? void 0 : (_props$onChange = props.onChange) === null || _props$onChange === void 0 ? void 0 : _props$onChange.call(props, field.value);
|
|
99
|
+
});
|
|
100
|
+
}
|
|
101
|
+
});
|
|
102
|
+
}, [JSON.stringify(props.schema), JSON.stringify(props.value)]);
|
|
103
|
+
|
|
104
|
+
var renderSchemaComponent = function renderSchemaComponent() {
|
|
105
|
+
var _props$schema;
|
|
106
|
+
|
|
107
|
+
return /*#__PURE__*/_react2.default.createElement(_react.FieldContext.Provider, {
|
|
108
|
+
value: null
|
|
109
|
+
}, /*#__PURE__*/_react2.default.createElement(_core2.SchemaComponent, {
|
|
110
|
+
schema: _objectSpread(_objectSpread({
|
|
111
|
+
'x-component': 'Input'
|
|
112
|
+
}, props.schema), {}, {
|
|
113
|
+
'x-component-props': (0, _shared.merge)((props === null || props === void 0 ? void 0 : (_props$schema = props.schema) === null || _props$schema === void 0 ? void 0 : _props$schema['x-component-props']) || {}, {
|
|
114
|
+
style: {
|
|
115
|
+
minWidth: 150,
|
|
116
|
+
width: '100%'
|
|
117
|
+
}
|
|
118
|
+
}),
|
|
119
|
+
name: 'value',
|
|
120
|
+
'x-read-pretty': false,
|
|
121
|
+
'x-validator': undefined,
|
|
122
|
+
'x-decorator': undefined
|
|
123
|
+
}),
|
|
124
|
+
components: {
|
|
125
|
+
VariableCascader: VariableCascader
|
|
126
|
+
}
|
|
127
|
+
}));
|
|
128
|
+
};
|
|
129
|
+
|
|
130
|
+
return /*#__PURE__*/_react2.default.createElement(_react.FormContext.Provider, {
|
|
131
|
+
value: form
|
|
132
|
+
}, component ? /*#__PURE__*/_react2.default.createElement(component, {
|
|
133
|
+
value: props.value,
|
|
134
|
+
onChange: props === null || props === void 0 ? void 0 : props.onChange,
|
|
135
|
+
renderSchemaComponent: renderSchemaComponent
|
|
136
|
+
}) : renderSchemaComponent());
|
|
137
|
+
};
|
|
138
|
+
|
|
139
|
+
exports.DynamicComponent = DynamicComponent;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.FilterDynamicComponent = FilterDynamicComponent;
|
|
7
|
+
|
|
8
|
+
var _react = _interopRequireDefault(require("react"));
|
|
9
|
+
|
|
10
|
+
var _schemaComponent = require("../../schema-component");
|
|
11
|
+
|
|
12
|
+
var _Variables = require("./Variables");
|
|
13
|
+
|
|
14
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
15
|
+
|
|
16
|
+
function FilterDynamicComponent(props) {
|
|
17
|
+
var value = props.value,
|
|
18
|
+
onChange = props.onChange,
|
|
19
|
+
renderSchemaComponent = props.renderSchemaComponent,
|
|
20
|
+
collectionName = props.collectionName;
|
|
21
|
+
var scope = (0, _Variables.useVariableOptions)(collectionName);
|
|
22
|
+
return /*#__PURE__*/_react.default.createElement(_schemaComponent.Variable.Input, {
|
|
23
|
+
value: value,
|
|
24
|
+
onChange: onChange,
|
|
25
|
+
scope: scope
|
|
26
|
+
}, renderSchemaComponent());
|
|
27
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export declare const FormFieldLinkageRuleAction: React.MemoExoticComponent<React.FunctionComponent<Pick<any, string | number | symbol>>>;
|
|
3
|
+
export declare const FormButtonLinkageRuleAction: React.MemoExoticComponent<React.FunctionComponent<Pick<any, string | number | symbol>>>;
|
|
@@ -0,0 +1,190 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
exports.FormFieldLinkageRuleAction = exports.FormButtonLinkageRuleAction = void 0;
|
|
9
|
+
|
|
10
|
+
var _icons = require("@ant-design/icons");
|
|
11
|
+
|
|
12
|
+
var _css = require("@emotion/css");
|
|
13
|
+
|
|
14
|
+
var _react = require("@formily/react");
|
|
15
|
+
|
|
16
|
+
var _antd = require("@formily/antd");
|
|
17
|
+
|
|
18
|
+
var _antd2 = require("antd");
|
|
19
|
+
|
|
20
|
+
var _react2 = _interopRequireWildcard(require("react"));
|
|
21
|
+
|
|
22
|
+
var _reactI18next = require("react-i18next");
|
|
23
|
+
|
|
24
|
+
var _ = require("../..");
|
|
25
|
+
|
|
26
|
+
var _context = require("./context");
|
|
27
|
+
|
|
28
|
+
var _DynamicComponent = require("./DynamicComponent");
|
|
29
|
+
|
|
30
|
+
var _useValues3 = require("./useValues");
|
|
31
|
+
|
|
32
|
+
var _type = require("./type");
|
|
33
|
+
|
|
34
|
+
var _ValueDynamicComponent = require("./ValueDynamicComponent");
|
|
35
|
+
|
|
36
|
+
var _templateObject, _templateObject2, _templateObject3;
|
|
37
|
+
|
|
38
|
+
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
39
|
+
|
|
40
|
+
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
41
|
+
|
|
42
|
+
function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
|
|
43
|
+
|
|
44
|
+
function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
|
|
45
|
+
|
|
46
|
+
function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
|
|
47
|
+
|
|
48
|
+
function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }
|
|
49
|
+
|
|
50
|
+
function _iterableToArrayLimit(arr, i) { var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"]; if (_i == null) return; var _arr = []; var _n = true; var _d = false; var _s, _e; try { for (_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"] != null) _i["return"](); } finally { if (_d) throw _e; } } return _arr; }
|
|
51
|
+
|
|
52
|
+
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
|
|
53
|
+
|
|
54
|
+
function _taggedTemplateLiteral(strings, raw) { if (!raw) { raw = strings.slice(0); } return Object.freeze(Object.defineProperties(strings, { raw: { value: Object.freeze(raw) } })); }
|
|
55
|
+
|
|
56
|
+
var FormFieldLinkageRuleAction = (0, _react.observer)(function (props) {
|
|
57
|
+
var value = props.value,
|
|
58
|
+
options = props.options,
|
|
59
|
+
collectionName = props.collectionName;
|
|
60
|
+
|
|
61
|
+
var _useTranslation = (0, _reactI18next.useTranslation)(),
|
|
62
|
+
t = _useTranslation.t;
|
|
63
|
+
|
|
64
|
+
var compile = (0, _.useCompile)();
|
|
65
|
+
var remove = (0, _react2.useContext)(_context.RemoveActionContext);
|
|
66
|
+
|
|
67
|
+
var _useValues = (0, _useValues3.useValues)(options),
|
|
68
|
+
schema = _useValues.schema,
|
|
69
|
+
fields = _useValues.fields,
|
|
70
|
+
operator = _useValues.operator,
|
|
71
|
+
setDataIndex = _useValues.setDataIndex,
|
|
72
|
+
setOperator = _useValues.setOperator,
|
|
73
|
+
setValue = _useValues.setValue,
|
|
74
|
+
fieldValue = _useValues.value,
|
|
75
|
+
operators = _useValues.operators;
|
|
76
|
+
|
|
77
|
+
return /*#__PURE__*/_react2.default.createElement("div", {
|
|
78
|
+
style: {
|
|
79
|
+
marginBottom: 8
|
|
80
|
+
}
|
|
81
|
+
}, /*#__PURE__*/_react2.default.createElement(_antd2.Space, {
|
|
82
|
+
className: (0, _css.css)(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n .ant-space-item {\n max-width: 95%;\n }\n "])))
|
|
83
|
+
}, /*#__PURE__*/_react2.default.createElement(_antd.TreeSelect, {
|
|
84
|
+
className: (0, _css.css)(_templateObject2 || (_templateObject2 = _taggedTemplateLiteral(["\n min-width: 160px;\n "]))),
|
|
85
|
+
fieldNames: {
|
|
86
|
+
label: 'title',
|
|
87
|
+
value: 'name',
|
|
88
|
+
children: 'children'
|
|
89
|
+
},
|
|
90
|
+
treeCheckable: true,
|
|
91
|
+
value: value === null || value === void 0 ? void 0 : value.targetFields,
|
|
92
|
+
multiple: true,
|
|
93
|
+
allowClear: true,
|
|
94
|
+
treeData: compile(fields),
|
|
95
|
+
onChange: function onChange(value) {
|
|
96
|
+
console.log(value);
|
|
97
|
+
setDataIndex(value);
|
|
98
|
+
},
|
|
99
|
+
placeholder: t('Select Field')
|
|
100
|
+
}), /*#__PURE__*/_react2.default.createElement(_antd2.Select, {
|
|
101
|
+
value: operator,
|
|
102
|
+
className: (0, _css.css)(_templateObject3 || (_templateObject3 = _taggedTemplateLiteral(["\n min-width: 120px;\n "]))),
|
|
103
|
+
options: compile(operators),
|
|
104
|
+
onChange: function onChange(value) {
|
|
105
|
+
setOperator(value);
|
|
106
|
+
},
|
|
107
|
+
placeholder: t('action')
|
|
108
|
+
}), [_type.ActionType.Value].includes(operator) && /*#__PURE__*/_react2.default.createElement(_ValueDynamicComponent.ValueDynamicComponent, {
|
|
109
|
+
fieldValue: fieldValue,
|
|
110
|
+
schema: schema,
|
|
111
|
+
setValue: setValue,
|
|
112
|
+
collectionName: collectionName
|
|
113
|
+
}), !props.disabled && /*#__PURE__*/_react2.default.createElement("a", null, /*#__PURE__*/_react2.default.createElement(_icons.CloseCircleOutlined, {
|
|
114
|
+
onClick: function onClick() {
|
|
115
|
+
return remove();
|
|
116
|
+
},
|
|
117
|
+
style: {
|
|
118
|
+
color: '#bfbfbf'
|
|
119
|
+
}
|
|
120
|
+
}))));
|
|
121
|
+
});
|
|
122
|
+
exports.FormFieldLinkageRuleAction = FormFieldLinkageRuleAction;
|
|
123
|
+
var FormButtonLinkageRuleAction = (0, _react.observer)(function (props) {
|
|
124
|
+
var value = props.value,
|
|
125
|
+
options = props.options;
|
|
126
|
+
|
|
127
|
+
var _useTranslation2 = (0, _reactI18next.useTranslation)(),
|
|
128
|
+
t = _useTranslation2.t;
|
|
129
|
+
|
|
130
|
+
var compile = (0, _.useCompile)();
|
|
131
|
+
|
|
132
|
+
var _useState = (0, _react2.useState)(false),
|
|
133
|
+
_useState2 = _slicedToArray(_useState, 2),
|
|
134
|
+
editFalg = _useState2[0],
|
|
135
|
+
setEditFlag = _useState2[1];
|
|
136
|
+
|
|
137
|
+
var remove = (0, _react2.useContext)(_context.RemoveActionContext);
|
|
138
|
+
|
|
139
|
+
var _useValues2 = (0, _useValues3.useValues)(options),
|
|
140
|
+
schema = _useValues2.schema,
|
|
141
|
+
operator = _useValues2.operator,
|
|
142
|
+
setOperator = _useValues2.setOperator,
|
|
143
|
+
setValue = _useValues2.setValue;
|
|
144
|
+
|
|
145
|
+
var operators = [{
|
|
146
|
+
label: t('Visible'),
|
|
147
|
+
value: _type.ActionType.Visible,
|
|
148
|
+
schema: {}
|
|
149
|
+
}, {
|
|
150
|
+
label: t('Hidden'),
|
|
151
|
+
value: _type.ActionType.Hidden,
|
|
152
|
+
schema: {}
|
|
153
|
+
}, {
|
|
154
|
+
label: t('Disabled'),
|
|
155
|
+
value: _type.ActionType.Disabled,
|
|
156
|
+
schema: {}
|
|
157
|
+
}, {
|
|
158
|
+
label: t('Enabled'),
|
|
159
|
+
value: _type.ActionType.Active,
|
|
160
|
+
schema: {}
|
|
161
|
+
}];
|
|
162
|
+
return /*#__PURE__*/_react2.default.createElement("div", {
|
|
163
|
+
style: {
|
|
164
|
+
marginBottom: 8
|
|
165
|
+
}
|
|
166
|
+
}, /*#__PURE__*/_react2.default.createElement(_antd2.Space, null, /*#__PURE__*/_react2.default.createElement(_antd2.Select, {
|
|
167
|
+
value: operator,
|
|
168
|
+
options: compile(operators),
|
|
169
|
+
onChange: function onChange(value) {
|
|
170
|
+
var flag = [_type.ActionType.Value].includes(value);
|
|
171
|
+
setEditFlag(flag);
|
|
172
|
+
setOperator(value);
|
|
173
|
+
},
|
|
174
|
+
placeholder: t('action')
|
|
175
|
+
}), editFalg && /*#__PURE__*/_react2.default.createElement(_DynamicComponent.DynamicComponent, {
|
|
176
|
+
value: value,
|
|
177
|
+
schema: schema,
|
|
178
|
+
onChange: function onChange(value) {
|
|
179
|
+
setValue(value);
|
|
180
|
+
}
|
|
181
|
+
}), !props.disabled && /*#__PURE__*/_react2.default.createElement("a", null, /*#__PURE__*/_react2.default.createElement(_icons.CloseCircleOutlined, {
|
|
182
|
+
onClick: function onClick() {
|
|
183
|
+
return remove();
|
|
184
|
+
},
|
|
185
|
+
style: {
|
|
186
|
+
color: '#bfbfbf'
|
|
187
|
+
}
|
|
188
|
+
}))));
|
|
189
|
+
});
|
|
190
|
+
exports.FormButtonLinkageRuleAction = FormButtonLinkageRuleAction;
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.LinkageRuleActions = exports.LinkageRuleActionGroup = void 0;
|
|
7
|
+
|
|
8
|
+
var _react = require("@formily/react");
|
|
9
|
+
|
|
10
|
+
var _antd = require("antd");
|
|
11
|
+
|
|
12
|
+
var _react2 = _interopRequireDefault(require("react"));
|
|
13
|
+
|
|
14
|
+
var _reactI18next = require("react-i18next");
|
|
15
|
+
|
|
16
|
+
var _context = require("./context");
|
|
17
|
+
|
|
18
|
+
var _LinkageRuleAction = require("./LinkageRuleAction");
|
|
19
|
+
|
|
20
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
21
|
+
|
|
22
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
23
|
+
|
|
24
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
25
|
+
|
|
26
|
+
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
27
|
+
|
|
28
|
+
var LinkageRuleActions = (0, _react.observer)(function (props) {
|
|
29
|
+
var _field$value;
|
|
30
|
+
|
|
31
|
+
var type = props.type,
|
|
32
|
+
linkageOptions = props.linkageOptions;
|
|
33
|
+
var field = (0, _react.useField)();
|
|
34
|
+
return field === null || field === void 0 ? void 0 : (_field$value = field.value) === null || _field$value === void 0 ? void 0 : _field$value.map(function (item, index) {
|
|
35
|
+
return /*#__PURE__*/_react2.default.createElement(_context.RemoveActionContext.Provider, {
|
|
36
|
+
key: index,
|
|
37
|
+
value: function value() {
|
|
38
|
+
return field.remove(index);
|
|
39
|
+
}
|
|
40
|
+
}, /*#__PURE__*/_react2.default.createElement(_react.ObjectField, {
|
|
41
|
+
name: index,
|
|
42
|
+
component: [type === 'button' ? _LinkageRuleAction.FormButtonLinkageRuleAction : _LinkageRuleAction.FormFieldLinkageRuleAction, _objectSpread(_objectSpread({}, props), {}, {
|
|
43
|
+
options: linkageOptions
|
|
44
|
+
})]
|
|
45
|
+
}));
|
|
46
|
+
});
|
|
47
|
+
});
|
|
48
|
+
exports.LinkageRuleActions = LinkageRuleActions;
|
|
49
|
+
|
|
50
|
+
var LinkageRuleActionGroup = function LinkageRuleActionGroup(props) {
|
|
51
|
+
var _useTranslation = (0, _reactI18next.useTranslation)(),
|
|
52
|
+
t = _useTranslation.t;
|
|
53
|
+
|
|
54
|
+
var field = (0, _react.useField)();
|
|
55
|
+
var logic = 'actions';
|
|
56
|
+
|
|
57
|
+
var _props$useProps = props === null || props === void 0 ? void 0 : props.useProps(),
|
|
58
|
+
type = _props$useProps.type,
|
|
59
|
+
linkageOptions = _props$useProps.linkageOptions,
|
|
60
|
+
collectionName = _props$useProps.collectionName;
|
|
61
|
+
|
|
62
|
+
return /*#__PURE__*/_react2.default.createElement("div", {
|
|
63
|
+
style: {
|
|
64
|
+
marginLeft: 10
|
|
65
|
+
}
|
|
66
|
+
}, /*#__PURE__*/_react2.default.createElement(_react.ArrayField, {
|
|
67
|
+
name: logic,
|
|
68
|
+
component: [LinkageRuleActions, {
|
|
69
|
+
type: type,
|
|
70
|
+
linkageOptions: linkageOptions,
|
|
71
|
+
collectionName: collectionName
|
|
72
|
+
}],
|
|
73
|
+
disabled: false
|
|
74
|
+
}), /*#__PURE__*/_react2.default.createElement(_antd.Space, {
|
|
75
|
+
size: 16,
|
|
76
|
+
style: {
|
|
77
|
+
marginTop: 8,
|
|
78
|
+
marginBottom: 8
|
|
79
|
+
}
|
|
80
|
+
}, /*#__PURE__*/_react2.default.createElement("a", {
|
|
81
|
+
onClick: function onClick() {
|
|
82
|
+
var f = field.query('.actions').take();
|
|
83
|
+
var items = f.value || [];
|
|
84
|
+
items.push({});
|
|
85
|
+
f.value = items;
|
|
86
|
+
}
|
|
87
|
+
}, t('Add property'))));
|
|
88
|
+
};
|
|
89
|
+
|
|
90
|
+
exports.LinkageRuleActionGroup = LinkageRuleActionGroup;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const ValueDynamicComponent: (props: any) => JSX.Element;
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
exports.ValueDynamicComponent = void 0;
|
|
9
|
+
|
|
10
|
+
var _react = _interopRequireWildcard(require("react"));
|
|
11
|
+
|
|
12
|
+
var _antd = require("antd");
|
|
13
|
+
|
|
14
|
+
var _reactI18next = require("react-i18next");
|
|
15
|
+
|
|
16
|
+
var _DynamicComponent = require("./DynamicComponent");
|
|
17
|
+
|
|
18
|
+
var _schemaComponent = require(".././../schema-component");
|
|
19
|
+
|
|
20
|
+
var _Variables = require("./Variables");
|
|
21
|
+
|
|
22
|
+
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
23
|
+
|
|
24
|
+
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
25
|
+
|
|
26
|
+
function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
|
|
27
|
+
|
|
28
|
+
function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
|
|
29
|
+
|
|
30
|
+
function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
|
|
31
|
+
|
|
32
|
+
function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }
|
|
33
|
+
|
|
34
|
+
function _iterableToArrayLimit(arr, i) { var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"]; if (_i == null) return; var _arr = []; var _n = true; var _d = false; var _s, _e; try { for (_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"] != null) _i["return"](); } finally { if (_d) throw _e; } } return _arr; }
|
|
35
|
+
|
|
36
|
+
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
|
|
37
|
+
|
|
38
|
+
var Option = _antd.Select.Option;
|
|
39
|
+
|
|
40
|
+
var ValueDynamicComponent = function ValueDynamicComponent(props) {
|
|
41
|
+
var fieldValue = props.fieldValue,
|
|
42
|
+
schema = props.schema,
|
|
43
|
+
setValue = props.setValue,
|
|
44
|
+
collectionName = props.collectionName;
|
|
45
|
+
|
|
46
|
+
var _useState = (0, _react.useState)((fieldValue === null || fieldValue === void 0 ? void 0 : fieldValue.mode) || 'constant'),
|
|
47
|
+
_useState2 = _slicedToArray(_useState, 2),
|
|
48
|
+
mode = _useState2[0],
|
|
49
|
+
setMode = _useState2[1];
|
|
50
|
+
|
|
51
|
+
var _useTranslation = (0, _reactI18next.useTranslation)(),
|
|
52
|
+
t = _useTranslation.t;
|
|
53
|
+
|
|
54
|
+
var scope = (0, _Variables.useVariableOptions)(collectionName);
|
|
55
|
+
return /*#__PURE__*/_react.default.createElement(_antd.Input.Group, {
|
|
56
|
+
compact: true,
|
|
57
|
+
style: {
|
|
58
|
+
minWidth: 280
|
|
59
|
+
}
|
|
60
|
+
}, /*#__PURE__*/_react.default.createElement(_antd.Select, {
|
|
61
|
+
value: mode,
|
|
62
|
+
style: {
|
|
63
|
+
width: 150
|
|
64
|
+
},
|
|
65
|
+
onChange: function onChange(value) {
|
|
66
|
+
return setMode(value);
|
|
67
|
+
}
|
|
68
|
+
}, /*#__PURE__*/_react.default.createElement(Option, {
|
|
69
|
+
value: "constant"
|
|
70
|
+
}, t('Constant value')), /*#__PURE__*/_react.default.createElement(Option, {
|
|
71
|
+
value: "express"
|
|
72
|
+
}, t('Expression'))), /*#__PURE__*/_react.default.createElement("div", {
|
|
73
|
+
style: {
|
|
74
|
+
minWidth: 150,
|
|
75
|
+
maxWidth: 430
|
|
76
|
+
}
|
|
77
|
+
}, mode === 'constant' ? /*#__PURE__*/_react.default.createElement(_DynamicComponent.DynamicComponent, {
|
|
78
|
+
value: (fieldValue === null || fieldValue === void 0 ? void 0 : fieldValue.value) || fieldValue,
|
|
79
|
+
schema: schema,
|
|
80
|
+
onChange: function onChange(value) {
|
|
81
|
+
setValue({
|
|
82
|
+
mode: mode,
|
|
83
|
+
value: value
|
|
84
|
+
});
|
|
85
|
+
}
|
|
86
|
+
}) : /*#__PURE__*/_react.default.createElement(_schemaComponent.Variable.TextArea, {
|
|
87
|
+
value: fieldValue === null || fieldValue === void 0 ? void 0 : fieldValue.value,
|
|
88
|
+
onChange: function onChange(value) {
|
|
89
|
+
var result = value.replaceAll("".concat(collectionName, "."), '').replaceAll('$system.', '').trim();
|
|
90
|
+
setValue({
|
|
91
|
+
mode: mode,
|
|
92
|
+
value: value,
|
|
93
|
+
result: result
|
|
94
|
+
});
|
|
95
|
+
},
|
|
96
|
+
scope: scope,
|
|
97
|
+
style: {
|
|
98
|
+
minWidth: 460,
|
|
99
|
+
marginRight: 15
|
|
100
|
+
}
|
|
101
|
+
})));
|
|
102
|
+
};
|
|
103
|
+
|
|
104
|
+
exports.ValueDynamicComponent = ValueDynamicComponent;
|