@nocobase/plugin-flow-engine 2.1.0-alpha.3 → 2.1.0-alpha.30
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/LICENSE +201 -661
- package/README.md +79 -9
- package/dist/ai/ai-employees/nathan/index.d.ts +10 -0
- package/dist/ai/ai-employees/nathan/index.js +42 -0
- package/dist/ai/ai-employees/nathan/prompt.md +168 -0
- package/dist/ai/ai-employees/nathan/skills/frontend-developer/SKILLS.md +86 -0
- package/dist/ai/{tools → ai-employees/nathan/skills/frontend-developer/tools}/getContextApis.js +2 -2
- package/dist/ai/{tools → ai-employees/nathan/skills/frontend-developer/tools}/getContextEnvs.js +2 -2
- package/dist/ai/{tools → ai-employees/nathan/skills/frontend-developer/tools}/getContextVars.js +2 -2
- package/dist/ai/{tools → ai-employees/nathan/skills/frontend-developer/tools}/lintAndTestJS.js +6 -4
- package/dist/ai/ai-employees/nathan/skills/frontend-developer/tools/patchJSCode.d.ts +10 -0
- package/dist/ai/ai-employees/nathan/skills/frontend-developer/tools/patchJSCode.js +65 -0
- package/dist/ai/ai-employees/nathan/skills/frontend-developer/tools/readJSCode.d.ts +10 -0
- package/dist/ai/ai-employees/nathan/skills/frontend-developer/tools/readJSCode.js +61 -0
- package/dist/ai/ai-employees/nathan/skills/frontend-developer/tools/writeJSCode.d.ts +10 -0
- package/dist/ai/ai-employees/nathan/skills/frontend-developer/tools/writeJSCode.js +65 -0
- package/dist/ai/docs/runjs/context/block-model.md +35 -35
- package/dist/ai/docs/runjs/context/collection-field.md +53 -51
- package/dist/ai/docs/runjs/context/collection.md +39 -39
- package/dist/ai/docs/runjs/context/data-source-manager.md +40 -30
- package/dist/ai/docs/runjs/context/data-source.md +52 -44
- package/dist/ai/docs/runjs/context/element.md +44 -38
- package/dist/ai/docs/runjs/context/exit-all.md +37 -35
- package/dist/ai/docs/runjs/context/exit.md +38 -35
- package/dist/ai/docs/runjs/context/filter-manager.md +36 -30
- package/dist/ai/docs/runjs/context/form.md +57 -57
- package/dist/ai/docs/runjs/context/get-model.md +22 -21
- package/dist/ai/docs/runjs/context/get-value.md +20 -19
- package/dist/ai/docs/runjs/context/get-var.md +61 -55
- package/dist/ai/docs/runjs/context/i18n.md +17 -14
- package/dist/ai/docs/runjs/context/import-async.md +333 -45
- package/dist/ai/docs/runjs/context/init-resource.md +20 -20
- package/dist/ai/docs/runjs/context/libs.md +31 -31
- package/dist/ai/docs/runjs/context/location.md +34 -31
- package/dist/ai/docs/runjs/context/logger.md +41 -40
- package/dist/ai/docs/runjs/context/make-resource.md +27 -26
- package/dist/ai/docs/runjs/context/message.md +42 -41
- package/dist/ai/docs/runjs/context/modal.md +44 -44
- package/dist/ai/docs/runjs/context/model.md +36 -33
- package/dist/ai/docs/runjs/context/notification.md +41 -40
- package/dist/ai/docs/runjs/context/off.md +14 -14
- package/dist/ai/docs/runjs/context/on.md +30 -29
- package/dist/ai/docs/runjs/context/open-view.md +40 -40
- package/dist/ai/docs/runjs/context/render.md +37 -32
- package/dist/ai/docs/runjs/context/request.md +46 -45
- package/dist/ai/docs/runjs/context/require-async.md +28 -25
- package/dist/ai/docs/runjs/context/resource.md +34 -34
- package/dist/ai/docs/runjs/context/route.md +36 -34
- package/dist/ai/docs/runjs/context/router.md +43 -31
- package/dist/ai/docs/runjs/context/set-value.md +18 -17
- package/dist/ai/docs/runjs/context/sql.md +7 -15
- package/dist/ai/docs/runjs/context/t.md +20 -17
- package/dist/ai/docs/runjs/context/view.md +49 -46
- package/dist/ai/docs/runjs/document.md +1 -0
- package/dist/ai/docs/runjs/import-modules.md +32 -32
- package/dist/ai/docs/runjs/index.md +13 -13
- package/dist/ai/docs/runjs/jsx.md +19 -19
- package/dist/ai/docs/runjs/model/form-block-model.md +1 -3
- package/dist/ai/docs/runjs/render.md +15 -15
- package/dist/ai/docs/runjs/resource/api-resource.md +53 -53
- package/dist/ai/docs/runjs/resource/multi-record-resource.md +64 -64
- package/dist/ai/docs/runjs/resource/single-record-resource.md +55 -55
- package/dist/ai/docs/runjs/resource/sql-resource.md +57 -57
- package/dist/ai/docs/runjs/window.md +5 -5
- package/dist/client/index.js +1 -1
- package/dist/externalVersion.js +12 -11
- package/dist/locale/en-US.json +1 -0
- package/dist/locale/index.d.ts +2 -0
- package/dist/locale/zh-CN.json +1 -0
- package/dist/node_modules/ses/dist/ses.cjs +1 -1
- package/dist/node_modules/ses/package.json +1 -1
- package/dist/node_modules/zod/index.cjs +1 -1
- package/dist/node_modules/zod/package.json +1 -1
- package/dist/server/collections/flowsql.js +1 -0
- package/dist/server/flow-surfaces/action-scope.d.ts +39 -0
- package/dist/server/flow-surfaces/action-scope.js +156 -0
- package/dist/server/flow-surfaces/apply/compiler.d.ts +13 -0
- package/dist/server/flow-surfaces/apply/compiler.js +971 -0
- package/dist/server/flow-surfaces/apply/layout.d.ts +34 -0
- package/dist/server/flow-surfaces/apply/layout.js +175 -0
- package/dist/server/flow-surfaces/apply/matching.d.ts +16 -0
- package/dist/server/flow-surfaces/apply/matching.js +181 -0
- package/dist/server/flow-surfaces/approval/blueprint-service.d.ts +84 -0
- package/dist/server/flow-surfaces/approval/blueprint-service.js +589 -0
- package/dist/server/flow-surfaces/approval/blueprint.d.ts +21 -0
- package/dist/server/flow-surfaces/approval/blueprint.js +187 -0
- package/dist/server/flow-surfaces/approval/builder.d.ts +225 -0
- package/dist/server/flow-surfaces/approval/builder.js +384 -0
- package/dist/server/flow-surfaces/approval/catalog-specs.d.ts +33 -0
- package/dist/server/flow-surfaces/approval/catalog-specs.js +156 -0
- package/dist/server/flow-surfaces/approval/index.d.ts +14 -0
- package/dist/server/flow-surfaces/approval/index.js +40 -0
- package/dist/server/flow-surfaces/approval/runtime-config.d.ts +44 -0
- package/dist/server/flow-surfaces/approval/runtime-config.js +299 -0
- package/dist/server/flow-surfaces/approval/semantic-use.d.ts +23 -0
- package/dist/server/flow-surfaces/approval/semantic-use.js +155 -0
- package/dist/server/flow-surfaces/association-interfaces.d.ts +10 -0
- package/dist/server/flow-surfaces/association-interfaces.js +39 -0
- package/dist/server/flow-surfaces/association-title-field.d.ts +20 -0
- package/dist/server/flow-surfaces/association-title-field.js +192 -0
- package/dist/server/flow-surfaces/blueprint/compile-blocks.d.ts +15 -0
- package/dist/server/flow-surfaces/blueprint/compile-blocks.js +1251 -0
- package/dist/server/flow-surfaces/blueprint/compile-plan.d.ts +14 -0
- package/dist/server/flow-surfaces/blueprint/compile-plan.js +308 -0
- package/dist/server/flow-surfaces/blueprint/compile-reaction.d.ts +11 -0
- package/dist/server/flow-surfaces/blueprint/compile-reaction.js +72 -0
- package/dist/server/flow-surfaces/blueprint/defaults.d.ts +26 -0
- package/dist/server/flow-surfaces/blueprint/defaults.js +133 -0
- package/dist/server/flow-surfaces/blueprint/index.d.ts +12 -0
- package/dist/server/flow-surfaces/blueprint/index.js +44 -0
- package/dist/server/flow-surfaces/blueprint/normalize-document.d.ts +10 -0
- package/dist/server/flow-surfaces/blueprint/normalize-document.js +407 -0
- package/dist/server/flow-surfaces/blueprint/private-utils.d.ts +25 -0
- package/dist/server/flow-surfaces/blueprint/private-utils.js +179 -0
- package/dist/server/flow-surfaces/blueprint/public-types.d.ts +201 -0
- package/dist/server/flow-surfaces/blueprint/public-types.js +24 -0
- package/dist/server/flow-surfaces/builder.d.ts +238 -0
- package/dist/server/flow-surfaces/builder.js +1261 -0
- package/dist/server/flow-surfaces/catalog-smart.d.ts +18 -0
- package/dist/server/flow-surfaces/catalog-smart.js +239 -0
- package/dist/server/flow-surfaces/catalog-smart.projector.d.ts +15 -0
- package/dist/server/flow-surfaces/catalog-smart.projector.js +157 -0
- package/dist/server/flow-surfaces/catalog-smart.types.d.ts +99 -0
- package/dist/server/flow-surfaces/catalog-smart.types.js +24 -0
- package/dist/server/flow-surfaces/catalog.d.ts +79 -0
- package/dist/server/flow-surfaces/catalog.js +3743 -0
- package/dist/server/flow-surfaces/chart-config.d.ts +121 -0
- package/dist/server/flow-surfaces/chart-config.js +1394 -0
- package/dist/server/flow-surfaces/compose-compiler.d.ts +115 -0
- package/dist/server/flow-surfaces/compose-compiler.js +174 -0
- package/dist/server/flow-surfaces/compose-runtime.d.ts +94 -0
- package/dist/server/flow-surfaces/compose-runtime.js +376 -0
- package/dist/server/flow-surfaces/configure-options.d.ts +23 -0
- package/dist/server/flow-surfaces/configure-options.js +904 -0
- package/dist/server/flow-surfaces/constants.d.ts +351 -0
- package/dist/server/flow-surfaces/constants.js +104 -0
- package/dist/server/flow-surfaces/context.d.ts +72 -0
- package/dist/server/flow-surfaces/context.js +556 -0
- package/dist/server/flow-surfaces/contract-guard.d.ts +19 -0
- package/dist/server/flow-surfaces/contract-guard.js +410 -0
- package/dist/server/flow-surfaces/core-field-default-bindings.d.ts +12 -0
- package/dist/server/flow-surfaces/core-field-default-bindings.js +157 -0
- package/dist/server/flow-surfaces/default-action-popup.d.ts +63 -0
- package/dist/server/flow-surfaces/default-action-popup.js +322 -0
- package/dist/server/flow-surfaces/default-block-actions.d.ts +32 -0
- package/dist/server/flow-surfaces/default-block-actions.js +210 -0
- package/dist/server/flow-surfaces/errors.d.ts +47 -0
- package/dist/server/flow-surfaces/errors.js +145 -0
- package/dist/server/flow-surfaces/executor.d.ts +23 -0
- package/dist/server/flow-surfaces/executor.js +132 -0
- package/dist/server/flow-surfaces/field-binding-registry.d.ts +24 -0
- package/dist/server/flow-surfaces/field-binding-registry.js +396 -0
- package/dist/server/flow-surfaces/field-semantics.d.ts +15 -0
- package/dist/server/flow-surfaces/field-semantics.js +84 -0
- package/dist/server/flow-surfaces/field-type-resolver.d.ts +45 -0
- package/dist/server/flow-surfaces/field-type-resolver.js +312 -0
- package/dist/server/flow-surfaces/filter-group.d.ts +15 -0
- package/dist/server/flow-surfaces/filter-group.js +94 -0
- package/dist/server/flow-surfaces/hidden-popup-calendar.d.ts +86 -0
- package/dist/server/flow-surfaces/hidden-popup-calendar.js +554 -0
- package/dist/server/flow-surfaces/hidden-popup-contract.d.ts +116 -0
- package/dist/server/flow-surfaces/hidden-popup-contract.js +611 -0
- package/dist/server/flow-surfaces/hidden-popup-kanban.d.ts +62 -0
- package/dist/server/flow-surfaces/hidden-popup-kanban.js +651 -0
- package/dist/server/flow-surfaces/index.d.ts +11 -0
- package/dist/server/flow-surfaces/index.js +302 -0
- package/dist/server/flow-surfaces/locator.d.ts +28 -0
- package/dist/server/flow-surfaces/locator.js +240 -0
- package/dist/server/flow-surfaces/node-use-sets.d.ts +15 -0
- package/dist/server/flow-surfaces/node-use-sets.js +135 -0
- package/dist/server/flow-surfaces/payload-shape.d.ts +9 -0
- package/dist/server/flow-surfaces/payload-shape.js +61 -0
- package/dist/server/flow-surfaces/placement.d.ts +33 -0
- package/dist/server/flow-surfaces/placement.js +199 -0
- package/dist/server/flow-surfaces/planning/action-specs.d.ts +179 -0
- package/dist/server/flow-surfaces/planning/action-specs.js +190 -0
- package/dist/server/flow-surfaces/planning/compiler.d.ts +37 -0
- package/dist/server/flow-surfaces/planning/compiler.js +376 -0
- package/dist/server/flow-surfaces/planning/context.d.ts +30 -0
- package/dist/server/flow-surfaces/planning/context.js +139 -0
- package/dist/server/flow-surfaces/planning/created-keys.d.ts +34 -0
- package/dist/server/flow-surfaces/planning/created-keys.js +375 -0
- package/dist/server/flow-surfaces/planning/key-kind.d.ts +11 -0
- package/dist/server/flow-surfaces/planning/key-kind.js +88 -0
- package/dist/server/flow-surfaces/planning/key-persistence.d.ts +34 -0
- package/dist/server/flow-surfaces/planning/key-persistence.js +148 -0
- package/dist/server/flow-surfaces/planning/key-registry.d.ts +40 -0
- package/dist/server/flow-surfaces/planning/key-registry.js +206 -0
- package/dist/server/flow-surfaces/planning/runtime.d.ts +37 -0
- package/dist/server/flow-surfaces/planning/runtime.js +259 -0
- package/dist/server/flow-surfaces/planning/step-link.d.ts +14 -0
- package/dist/server/flow-surfaces/planning/step-link.js +104 -0
- package/dist/server/flow-surfaces/planning/types.d.ts +55 -0
- package/dist/server/flow-surfaces/planning/types.js +24 -0
- package/dist/server/flow-surfaces/public-compatibility.d.ts +28 -0
- package/dist/server/flow-surfaces/public-compatibility.js +161 -0
- package/dist/server/flow-surfaces/public-data-surface-default-filter.d.ts +24 -0
- package/dist/server/flow-surfaces/public-data-surface-default-filter.js +152 -0
- package/dist/server/flow-surfaces/reaction/errors.d.ts +20 -0
- package/dist/server/flow-surfaces/reaction/errors.js +69 -0
- package/dist/server/flow-surfaces/reaction/field-value.d.ts +34 -0
- package/dist/server/flow-surfaces/reaction/field-value.js +181 -0
- package/dist/server/flow-surfaces/reaction/fingerprint.d.ts +16 -0
- package/dist/server/flow-surfaces/reaction/fingerprint.js +71 -0
- package/dist/server/flow-surfaces/reaction/linkage.d.ts +136 -0
- package/dist/server/flow-surfaces/reaction/linkage.js +882 -0
- package/dist/server/flow-surfaces/reaction/meta.d.ts +11 -0
- package/dist/server/flow-surfaces/reaction/meta.js +451 -0
- package/dist/server/flow-surfaces/reaction/registry.d.ts +156 -0
- package/dist/server/flow-surfaces/reaction/registry.js +206 -0
- package/dist/server/flow-surfaces/reaction/resolver.d.ts +22 -0
- package/dist/server/flow-surfaces/reaction/resolver.js +202 -0
- package/dist/server/flow-surfaces/reaction/types.d.ts +241 -0
- package/dist/server/flow-surfaces/reaction/types.js +24 -0
- package/dist/server/flow-surfaces/reaction/utils.d.ts +17 -0
- package/dist/server/flow-surfaces/reaction/utils.js +67 -0
- package/dist/server/flow-surfaces/reaction/value-expr.d.ts +15 -0
- package/dist/server/flow-surfaces/reaction/value-expr.js +209 -0
- package/dist/server/flow-surfaces/reference-guards.d.ts +19 -0
- package/dist/server/flow-surfaces/reference-guards.js +103 -0
- package/dist/server/flow-surfaces/route-sync.d.ts +47 -0
- package/dist/server/flow-surfaces/route-sync.js +392 -0
- package/dist/server/flow-surfaces/service-helpers.d.ts +42 -0
- package/dist/server/flow-surfaces/service-helpers.js +310 -0
- package/dist/server/flow-surfaces/service-utils.d.ts +120 -0
- package/dist/server/flow-surfaces/service-utils.js +878 -0
- package/dist/server/flow-surfaces/service.d.ts +894 -0
- package/dist/server/flow-surfaces/service.js +16200 -0
- package/dist/server/flow-surfaces/support-matrix.d.ts +31 -0
- package/dist/server/flow-surfaces/support-matrix.js +282 -0
- package/dist/server/flow-surfaces/surface-context.d.ts +52 -0
- package/dist/server/flow-surfaces/surface-context.js +440 -0
- package/dist/server/flow-surfaces/template-compatibility.d.ts +42 -0
- package/dist/server/flow-surfaces/template-compatibility.js +189 -0
- package/dist/server/flow-surfaces/template-display.d.ts +20 -0
- package/dist/server/flow-surfaces/template-display.js +289 -0
- package/dist/server/flow-surfaces/template-service-utils.d.ts +62 -0
- package/dist/server/flow-surfaces/template-service-utils.js +281 -0
- package/dist/server/flow-surfaces/types.d.ts +288 -0
- package/dist/server/flow-surfaces/types.js +24 -0
- package/dist/server/index.d.ts +1 -0
- package/dist/server/index.js +7 -2
- package/dist/server/plugin.d.ts +0 -1
- package/dist/server/plugin.js +9 -34
- package/dist/server/repository.js +0 -5
- package/dist/server/variables/resolve.d.ts +21 -0
- package/dist/server/variables/resolve.js +79 -0
- package/dist/swagger/flow-surfaces.d.ts +6106 -0
- package/dist/swagger/flow-surfaces.examples.d.ts +1577 -0
- package/dist/swagger/flow-surfaces.examples.js +1816 -0
- package/dist/swagger/flow-surfaces.js +5375 -0
- package/dist/swagger/flow-surfaces.template-action-docs.d.ts +62 -0
- package/dist/swagger/flow-surfaces.template-action-docs.js +121 -0
- package/dist/swagger/flow-surfaces.template-schemas.d.ts +239 -0
- package/dist/swagger/flow-surfaces.template-schemas.js +255 -0
- package/dist/swagger/index.d.ts +6111 -0
- package/dist/swagger/index.js +50 -0
- package/package.json +3 -3
- /package/dist/ai/{tools → ai-employees/nathan/skills/frontend-developer/tools}/getContextApis.d.ts +0 -0
- /package/dist/ai/{tools → ai-employees/nathan/skills/frontend-developer/tools}/getContextEnvs.d.ts +0 -0
- /package/dist/ai/{tools → ai-employees/nathan/skills/frontend-developer/tools}/getContextVars.d.ts +0 -0
- /package/dist/ai/{tools → ai-employees/nathan/skills/frontend-developer/tools}/lintAndTestJS.d.ts +0 -0
|
@@ -0,0 +1,392 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is part of the NocoBase (R) project.
|
|
3
|
+
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
4
|
+
* Authors: NocoBase Team.
|
|
5
|
+
*
|
|
6
|
+
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
|
+
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
|
+
*/
|
|
9
|
+
|
|
10
|
+
var __create = Object.create;
|
|
11
|
+
var __defProp = Object.defineProperty;
|
|
12
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
13
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
14
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
15
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
16
|
+
var __export = (target, all) => {
|
|
17
|
+
for (var name in all)
|
|
18
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
19
|
+
};
|
|
20
|
+
var __copyProps = (to, from, except, desc) => {
|
|
21
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
22
|
+
for (let key of __getOwnPropNames(from))
|
|
23
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
24
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
25
|
+
}
|
|
26
|
+
return to;
|
|
27
|
+
};
|
|
28
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
29
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
30
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
31
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
32
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
33
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
34
|
+
mod
|
|
35
|
+
));
|
|
36
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
37
|
+
var route_sync_exports = {};
|
|
38
|
+
__export(route_sync_exports, {
|
|
39
|
+
FlowSurfaceRouteSync: () => FlowSurfaceRouteSync
|
|
40
|
+
});
|
|
41
|
+
module.exports = __toCommonJS(route_sync_exports);
|
|
42
|
+
var import_lodash = __toESM(require("lodash"));
|
|
43
|
+
var import_builder = require("./builder");
|
|
44
|
+
class FlowSurfaceRouteSync {
|
|
45
|
+
constructor(db, repository) {
|
|
46
|
+
this.db = db;
|
|
47
|
+
this.repository = repository;
|
|
48
|
+
}
|
|
49
|
+
async buildPageTree(pageRouteLike, transaction) {
|
|
50
|
+
var _a, _b, _c, _d, _e, _f, _g;
|
|
51
|
+
const pageRoute = await this.hydrateRoute(pageRouteLike, transaction);
|
|
52
|
+
const pageSchemaUid = ((_a = pageRoute == null ? void 0 : pageRoute.get) == null ? void 0 : _a.call(pageRoute, "schemaUid")) || (pageRoute == null ? void 0 : pageRoute.schemaUid);
|
|
53
|
+
const pageModel = await this.repository.findModelByParentId(pageSchemaUid, {
|
|
54
|
+
transaction,
|
|
55
|
+
subKey: "page",
|
|
56
|
+
includeAsyncNode: true
|
|
57
|
+
});
|
|
58
|
+
const tabs = await Promise.all(
|
|
59
|
+
import_lodash.default.sortBy(
|
|
60
|
+
import_lodash.default.castArray(((_b = pageRoute == null ? void 0 : pageRoute.get) == null ? void 0 : _b.call(pageRoute, "children")) || (pageRoute == null ? void 0 : pageRoute.children) || []),
|
|
61
|
+
(item) => {
|
|
62
|
+
var _a2;
|
|
63
|
+
return ((_a2 = item == null ? void 0 : item.get) == null ? void 0 : _a2.call(item, "sort")) ?? (item == null ? void 0 : item.sort);
|
|
64
|
+
}
|
|
65
|
+
).map((route) => this.buildTabAnchor(route, transaction))
|
|
66
|
+
);
|
|
67
|
+
const routeBacked = this.readPageRouteBackedState(pageRoute, pageModel);
|
|
68
|
+
if (pageModel == null ? void 0 : pageModel.uid) {
|
|
69
|
+
return {
|
|
70
|
+
...pageModel,
|
|
71
|
+
props: {
|
|
72
|
+
...pageModel.props || {},
|
|
73
|
+
routeId: ((_c = pageRoute == null ? void 0 : pageRoute.get) == null ? void 0 : _c.call(pageRoute, "id")) || (pageRoute == null ? void 0 : pageRoute.id),
|
|
74
|
+
...routeBacked
|
|
75
|
+
},
|
|
76
|
+
stepParams: {
|
|
77
|
+
...pageModel.stepParams || {},
|
|
78
|
+
pageSettings: {
|
|
79
|
+
...((_d = pageModel.stepParams) == null ? void 0 : _d.pageSettings) || {},
|
|
80
|
+
general: {
|
|
81
|
+
...((_f = (_e = pageModel.stepParams) == null ? void 0 : _e.pageSettings) == null ? void 0 : _f.general) || {},
|
|
82
|
+
...routeBacked
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
},
|
|
86
|
+
subModels: {
|
|
87
|
+
...pageModel.subModels || {},
|
|
88
|
+
tabs
|
|
89
|
+
}
|
|
90
|
+
};
|
|
91
|
+
}
|
|
92
|
+
return {
|
|
93
|
+
uid: pageSchemaUid,
|
|
94
|
+
use: "RootPageModel",
|
|
95
|
+
props: {
|
|
96
|
+
routeId: ((_g = pageRoute == null ? void 0 : pageRoute.get) == null ? void 0 : _g.call(pageRoute, "id")) || (pageRoute == null ? void 0 : pageRoute.id),
|
|
97
|
+
...routeBacked
|
|
98
|
+
},
|
|
99
|
+
stepParams: {
|
|
100
|
+
pageSettings: {
|
|
101
|
+
general: {
|
|
102
|
+
...routeBacked
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
},
|
|
106
|
+
subModels: {
|
|
107
|
+
tabs
|
|
108
|
+
}
|
|
109
|
+
};
|
|
110
|
+
}
|
|
111
|
+
async buildTabAnchor(tabRouteLike, transaction) {
|
|
112
|
+
var _a, _b, _c;
|
|
113
|
+
const tabRoute = await this.hydrateRoute(tabRouteLike, transaction);
|
|
114
|
+
const schemaUid = ((_a = tabRoute == null ? void 0 : tabRoute.get) == null ? void 0 : _a.call(tabRoute, "schemaUid")) || (tabRoute == null ? void 0 : tabRoute.schemaUid);
|
|
115
|
+
const routeNode = await this.repository.findModelById(schemaUid, {
|
|
116
|
+
transaction,
|
|
117
|
+
includeAsyncNode: true
|
|
118
|
+
});
|
|
119
|
+
const grid = ((_b = routeNode == null ? void 0 : routeNode.subModels) == null ? void 0 : _b.grid) || await this.repository.findModelByParentId(schemaUid, {
|
|
120
|
+
transaction,
|
|
121
|
+
subKey: "grid",
|
|
122
|
+
includeAsyncNode: true
|
|
123
|
+
});
|
|
124
|
+
return (0, import_builder.buildSyntheticRootPageTabModel)({
|
|
125
|
+
uid: schemaUid,
|
|
126
|
+
use: (routeNode == null ? void 0 : routeNode.use) || "RootPageTabModel",
|
|
127
|
+
props: (routeNode == null ? void 0 : routeNode.props) || {},
|
|
128
|
+
decoratorProps: (routeNode == null ? void 0 : routeNode.decoratorProps) || {},
|
|
129
|
+
flowRegistry: readRouteOptions(tabRoute).flowRegistry || (routeNode == null ? void 0 : routeNode.flowRegistry) || {},
|
|
130
|
+
stepParams: (routeNode == null ? void 0 : routeNode.stepParams) || {},
|
|
131
|
+
route: ((_c = tabRoute == null ? void 0 : tabRoute.toJSON) == null ? void 0 : _c.call(tabRoute)) || tabRoute,
|
|
132
|
+
title: readRouteProp(tabRoute, "title"),
|
|
133
|
+
icon: readRouteProp(tabRoute, "icon"),
|
|
134
|
+
documentTitle: readRouteOptions(tabRoute).documentTitle,
|
|
135
|
+
grid
|
|
136
|
+
});
|
|
137
|
+
}
|
|
138
|
+
async removeRouteAnchorChildren(schemaUid, transaction) {
|
|
139
|
+
if (!schemaUid) {
|
|
140
|
+
return;
|
|
141
|
+
}
|
|
142
|
+
const node = await this.repository.findModelById(schemaUid, {
|
|
143
|
+
transaction,
|
|
144
|
+
includeAsyncNode: true
|
|
145
|
+
});
|
|
146
|
+
const children = Object.values((node == null ? void 0 : node.subModels) || {}).flatMap((value) => import_lodash.default.castArray(value));
|
|
147
|
+
for (const child of children) {
|
|
148
|
+
await this.repository.remove(child.uid, { transaction });
|
|
149
|
+
}
|
|
150
|
+
const asyncGridChild = await this.repository.findModelByParentId(schemaUid, {
|
|
151
|
+
transaction,
|
|
152
|
+
subKey: "grid",
|
|
153
|
+
includeAsyncNode: true
|
|
154
|
+
});
|
|
155
|
+
if (asyncGridChild == null ? void 0 : asyncGridChild.uid) {
|
|
156
|
+
await this.repository.remove(asyncGridChild.uid, { transaction });
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
async removeTabAnchorTree(schemaUid, transaction) {
|
|
160
|
+
const tabAnchor = await this.findPersistedTabAnchor(schemaUid, transaction);
|
|
161
|
+
if (tabAnchor == null ? void 0 : tabAnchor.uid) {
|
|
162
|
+
await this.repository.remove(tabAnchor.uid, { transaction });
|
|
163
|
+
return;
|
|
164
|
+
}
|
|
165
|
+
await this.removeRouteAnchorChildren(schemaUid, transaction);
|
|
166
|
+
}
|
|
167
|
+
async persistPageSettings(target, current, nextPayload, transaction) {
|
|
168
|
+
var _a;
|
|
169
|
+
const route = await this.hydrateRoute(target.pageRoute, transaction);
|
|
170
|
+
const routeValues = this.buildPageRoutePatch(current, nextPayload, route);
|
|
171
|
+
if (Object.keys(routeValues).length) {
|
|
172
|
+
await this.db.getRepository("desktopRoutes").update({
|
|
173
|
+
filterByTk: String(route.get("id")),
|
|
174
|
+
values: routeValues,
|
|
175
|
+
transaction
|
|
176
|
+
});
|
|
177
|
+
}
|
|
178
|
+
const pageSchemaUid = ((_a = route == null ? void 0 : route.get) == null ? void 0 : _a.call(route, "schemaUid")) || (route == null ? void 0 : route.schemaUid);
|
|
179
|
+
const pageModel = target.pageModel || (pageSchemaUid ? await this.repository.findModelByParentId(pageSchemaUid, {
|
|
180
|
+
transaction,
|
|
181
|
+
subKey: "page",
|
|
182
|
+
includeAsyncNode: true
|
|
183
|
+
}) : null);
|
|
184
|
+
if (pageModel == null ? void 0 : pageModel.uid) {
|
|
185
|
+
await this.repository.patch(
|
|
186
|
+
{
|
|
187
|
+
...this.normalizePagePayload(current, nextPayload, routeValues),
|
|
188
|
+
uid: pageModel.uid
|
|
189
|
+
},
|
|
190
|
+
{ transaction }
|
|
191
|
+
);
|
|
192
|
+
}
|
|
193
|
+
}
|
|
194
|
+
async persistTabSettings(target, current, nextPayload, transaction) {
|
|
195
|
+
const route = await this.hydrateRoute(target.tabRoute, transaction);
|
|
196
|
+
const routeValues = this.buildTabRoutePatch(current, nextPayload, route);
|
|
197
|
+
if (Object.keys(routeValues).length) {
|
|
198
|
+
await this.db.getRepository("desktopRoutes").update({
|
|
199
|
+
filterByTk: String(route.get("id")),
|
|
200
|
+
values: routeValues,
|
|
201
|
+
transaction
|
|
202
|
+
});
|
|
203
|
+
}
|
|
204
|
+
const tabAnchor = await this.findPersistedTabAnchor(target.uid || (current == null ? void 0 : current.uid), transaction);
|
|
205
|
+
if (!(tabAnchor == null ? void 0 : tabAnchor.uid)) {
|
|
206
|
+
return;
|
|
207
|
+
}
|
|
208
|
+
const latestRoute = await this.hydrateRoute(target.tabRoute, transaction);
|
|
209
|
+
await this.repository.patch(
|
|
210
|
+
this.normalizeTabPayload(await this.buildTabAnchor(latestRoute, transaction), nextPayload, routeValues),
|
|
211
|
+
{ transaction }
|
|
212
|
+
);
|
|
213
|
+
}
|
|
214
|
+
async findPersistedTabAnchor(schemaUid, transaction) {
|
|
215
|
+
const node = await this.repository.findModelById(schemaUid, {
|
|
216
|
+
transaction,
|
|
217
|
+
includeAsyncNode: true
|
|
218
|
+
});
|
|
219
|
+
if ((node == null ? void 0 : node.use) === "RootPageTabModel" || (node == null ? void 0 : node.use) === "ChildPageTabModel") {
|
|
220
|
+
return node;
|
|
221
|
+
}
|
|
222
|
+
return null;
|
|
223
|
+
}
|
|
224
|
+
async hydrateRoute(routeLike, transaction) {
|
|
225
|
+
var _a;
|
|
226
|
+
if (!((_a = routeLike == null ? void 0 : routeLike.get) == null ? void 0 : _a.call(routeLike, "id"))) {
|
|
227
|
+
return routeLike;
|
|
228
|
+
}
|
|
229
|
+
return this.db.getRepository("desktopRoutes").findOne({
|
|
230
|
+
filterByTk: String(routeLike.get("id")),
|
|
231
|
+
appends: ["children"],
|
|
232
|
+
transaction
|
|
233
|
+
});
|
|
234
|
+
}
|
|
235
|
+
readPageRouteBackedState(route, pageModel) {
|
|
236
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j, _k, _l, _m, _n, _o, _p, _q, _r, _s, _t;
|
|
237
|
+
return {
|
|
238
|
+
title: readRouteProp(route, "title") ?? ((_a = pageModel == null ? void 0 : pageModel.props) == null ? void 0 : _a.title) ?? ((_d = (_c = (_b = pageModel == null ? void 0 : pageModel.stepParams) == null ? void 0 : _b.pageSettings) == null ? void 0 : _c.general) == null ? void 0 : _d.title),
|
|
239
|
+
icon: readRouteProp(route, "icon") ?? ((_e = pageModel == null ? void 0 : pageModel.props) == null ? void 0 : _e.icon) ?? ((_h = (_g = (_f = pageModel == null ? void 0 : pageModel.stepParams) == null ? void 0 : _f.pageSettings) == null ? void 0 : _g.general) == null ? void 0 : _h.icon),
|
|
240
|
+
enableTabs: !!(readRouteProp(route, "enableTabs") ?? ((_i = pageModel == null ? void 0 : pageModel.props) == null ? void 0 : _i.enableTabs) ?? ((_l = (_k = (_j = pageModel == null ? void 0 : pageModel.stepParams) == null ? void 0 : _j.pageSettings) == null ? void 0 : _k.general) == null ? void 0 : _l.enableTabs)),
|
|
241
|
+
enableHeader: firstDefined(
|
|
242
|
+
readRouteProp(route, "enableHeader"),
|
|
243
|
+
(_m = pageModel == null ? void 0 : pageModel.props) == null ? void 0 : _m.enableHeader,
|
|
244
|
+
(_p = (_o = (_n = pageModel == null ? void 0 : pageModel.stepParams) == null ? void 0 : _n.pageSettings) == null ? void 0 : _o.general) == null ? void 0 : _p.enableHeader
|
|
245
|
+
),
|
|
246
|
+
displayTitle: !!(readRouteProp(route, "displayTitle") ?? ((_q = pageModel == null ? void 0 : pageModel.props) == null ? void 0 : _q.displayTitle) ?? ((_t = (_s = (_r = pageModel == null ? void 0 : pageModel.stepParams) == null ? void 0 : _r.pageSettings) == null ? void 0 : _s.general) == null ? void 0 : _t.displayTitle) ?? true)
|
|
247
|
+
};
|
|
248
|
+
}
|
|
249
|
+
buildPageRoutePatch(current, nextPayload, route) {
|
|
250
|
+
var _a, _b, _c, _d, _e, _f, _g, _h;
|
|
251
|
+
const nextProps = nextPayload.props || {};
|
|
252
|
+
const nextGeneral = ((_b = (_a = nextPayload.stepParams) == null ? void 0 : _a.pageSettings) == null ? void 0 : _b.general) || {};
|
|
253
|
+
const routePatch = {};
|
|
254
|
+
const nextTitle = firstDefined(nextGeneral.title, nextProps.title);
|
|
255
|
+
const nextIcon = firstDefined(nextGeneral.icon, nextProps.icon);
|
|
256
|
+
const nextEnableTabs = firstDefined(nextGeneral.enableTabs, nextProps.enableTabs);
|
|
257
|
+
const nextEnableHeader = firstDefined(nextGeneral.enableHeader, nextProps.enableHeader);
|
|
258
|
+
const nextDisplayTitle = firstDefined(nextGeneral.displayTitle, nextProps.displayTitle);
|
|
259
|
+
if (!import_lodash.default.isUndefined(nextTitle)) {
|
|
260
|
+
routePatch.title = nextTitle;
|
|
261
|
+
}
|
|
262
|
+
if (!import_lodash.default.isUndefined(nextIcon)) {
|
|
263
|
+
routePatch.icon = nextIcon;
|
|
264
|
+
}
|
|
265
|
+
if (!import_lodash.default.isUndefined(nextEnableTabs)) {
|
|
266
|
+
routePatch.enableTabs = !!nextEnableTabs;
|
|
267
|
+
}
|
|
268
|
+
if (!import_lodash.default.isUndefined(nextEnableHeader)) {
|
|
269
|
+
routePatch.enableHeader = !!nextEnableHeader;
|
|
270
|
+
}
|
|
271
|
+
if (!import_lodash.default.isUndefined(nextDisplayTitle)) {
|
|
272
|
+
routePatch.displayTitle = !!nextDisplayTitle;
|
|
273
|
+
}
|
|
274
|
+
if (!Object.keys(routePatch).length) {
|
|
275
|
+
return {};
|
|
276
|
+
}
|
|
277
|
+
return {
|
|
278
|
+
title: routePatch.title ?? readRouteProp(route, "title") ?? ((_c = current == null ? void 0 : current.props) == null ? void 0 : _c.title),
|
|
279
|
+
...!import_lodash.default.isUndefined(routePatch.icon) ? { icon: routePatch.icon } : {},
|
|
280
|
+
enableTabs: routePatch.enableTabs ?? !!(readRouteProp(route, "enableTabs") ?? ((_d = current == null ? void 0 : current.props) == null ? void 0 : _d.enableTabs)),
|
|
281
|
+
...!import_lodash.default.isUndefined(routePatch.enableHeader) ? { enableHeader: routePatch.enableHeader } : !import_lodash.default.isUndefined(readRouteProp(route, "enableHeader")) ? { enableHeader: !!readRouteProp(route, "enableHeader") } : {},
|
|
282
|
+
displayTitle: routePatch.displayTitle ?? !!(readRouteProp(route, "displayTitle") ?? ((_e = current == null ? void 0 : current.props) == null ? void 0 : _e.displayTitle) ?? ((_h = (_g = (_f = current == null ? void 0 : current.stepParams) == null ? void 0 : _f.pageSettings) == null ? void 0 : _g.general) == null ? void 0 : _h.displayTitle) ?? true)
|
|
283
|
+
};
|
|
284
|
+
}
|
|
285
|
+
normalizePagePayload(current, nextPayload, routePatch) {
|
|
286
|
+
var _a, _b;
|
|
287
|
+
if (!Object.keys(routePatch).length) {
|
|
288
|
+
return nextPayload;
|
|
289
|
+
}
|
|
290
|
+
const pageSettings = ((_a = current == null ? void 0 : current.stepParams) == null ? void 0 : _a.pageSettings) || {};
|
|
291
|
+
const nextPageSettings = ((_b = nextPayload.stepParams) == null ? void 0 : _b.pageSettings) || {};
|
|
292
|
+
return {
|
|
293
|
+
...nextPayload,
|
|
294
|
+
props: {
|
|
295
|
+
...(current == null ? void 0 : current.props) || {},
|
|
296
|
+
...nextPayload.props || {},
|
|
297
|
+
...routePatch
|
|
298
|
+
},
|
|
299
|
+
stepParams: {
|
|
300
|
+
...(current == null ? void 0 : current.stepParams) || {},
|
|
301
|
+
...nextPayload.stepParams || {},
|
|
302
|
+
pageSettings: {
|
|
303
|
+
...pageSettings,
|
|
304
|
+
...nextPageSettings,
|
|
305
|
+
general: {
|
|
306
|
+
...pageSettings.general || {},
|
|
307
|
+
...nextPageSettings.general || {},
|
|
308
|
+
...routePatch
|
|
309
|
+
}
|
|
310
|
+
}
|
|
311
|
+
}
|
|
312
|
+
};
|
|
313
|
+
}
|
|
314
|
+
buildTabRoutePatch(_current, nextPayload, route) {
|
|
315
|
+
var _a, _b;
|
|
316
|
+
const nextProps = nextPayload.props || {};
|
|
317
|
+
const nextTab = ((_b = (_a = nextPayload.stepParams) == null ? void 0 : _a.pageTabSettings) == null ? void 0 : _b.tab) || {};
|
|
318
|
+
const routeOptions = readRouteOptions(route);
|
|
319
|
+
const patch = {};
|
|
320
|
+
const nextTitle = firstDefined(nextTab.title, nextProps.title);
|
|
321
|
+
const nextIcon = firstDefined(nextTab.icon, nextProps.icon);
|
|
322
|
+
if (!import_lodash.default.isUndefined(nextTitle)) {
|
|
323
|
+
patch.title = nextTitle;
|
|
324
|
+
}
|
|
325
|
+
if (!import_lodash.default.isUndefined(nextIcon)) {
|
|
326
|
+
patch.icon = nextIcon;
|
|
327
|
+
}
|
|
328
|
+
const nextOptions = {
|
|
329
|
+
...routeOptions || {},
|
|
330
|
+
...!import_lodash.default.isUndefined(nextTab.documentTitle) ? { documentTitle: nextTab.documentTitle } : {},
|
|
331
|
+
...!import_lodash.default.isUndefined(nextPayload.flowRegistry) ? { flowRegistry: nextPayload.flowRegistry } : {}
|
|
332
|
+
};
|
|
333
|
+
if (!import_lodash.default.isEqual(nextOptions, routeOptions || {})) {
|
|
334
|
+
patch.options = nextOptions;
|
|
335
|
+
}
|
|
336
|
+
if (!Object.keys(patch).length) {
|
|
337
|
+
return {};
|
|
338
|
+
}
|
|
339
|
+
return {
|
|
340
|
+
...!import_lodash.default.isUndefined(patch.title) ? { title: patch.title } : {},
|
|
341
|
+
...!import_lodash.default.isUndefined(patch.icon) ? { icon: patch.icon } : {},
|
|
342
|
+
...patch.options ? { options: patch.options } : {}
|
|
343
|
+
};
|
|
344
|
+
}
|
|
345
|
+
normalizeTabPayload(current, nextPayload, routePatch) {
|
|
346
|
+
var _a, _b, _c, _d, _e, _f, _g, _h;
|
|
347
|
+
const currentTab = ((_b = (_a = current == null ? void 0 : current.stepParams) == null ? void 0 : _a.pageTabSettings) == null ? void 0 : _b.tab) || {};
|
|
348
|
+
const nextTab = ((_d = (_c = nextPayload.stepParams) == null ? void 0 : _c.pageTabSettings) == null ? void 0 : _d.tab) || {};
|
|
349
|
+
const routeBackedTab = {
|
|
350
|
+
...!import_lodash.default.isUndefined(routePatch.title) ? { title: routePatch.title } : {},
|
|
351
|
+
...!import_lodash.default.isUndefined(routePatch.icon) ? { icon: routePatch.icon } : {},
|
|
352
|
+
...!import_lodash.default.isUndefined((_e = routePatch.options) == null ? void 0 : _e.documentTitle) ? { documentTitle: routePatch.options.documentTitle } : {}
|
|
353
|
+
};
|
|
354
|
+
return {
|
|
355
|
+
...nextPayload,
|
|
356
|
+
props: {
|
|
357
|
+
...(current == null ? void 0 : current.props) || {},
|
|
358
|
+
...nextPayload.props || {},
|
|
359
|
+
...import_lodash.default.pick(routeBackedTab, ["title", "icon"])
|
|
360
|
+
},
|
|
361
|
+
stepParams: {
|
|
362
|
+
...(current == null ? void 0 : current.stepParams) || {},
|
|
363
|
+
...nextPayload.stepParams || {},
|
|
364
|
+
pageTabSettings: {
|
|
365
|
+
...((_f = current == null ? void 0 : current.stepParams) == null ? void 0 : _f.pageTabSettings) || {},
|
|
366
|
+
...((_g = nextPayload.stepParams) == null ? void 0 : _g.pageTabSettings) || {},
|
|
367
|
+
tab: {
|
|
368
|
+
...currentTab,
|
|
369
|
+
...nextTab,
|
|
370
|
+
...routeBackedTab
|
|
371
|
+
}
|
|
372
|
+
}
|
|
373
|
+
},
|
|
374
|
+
flowRegistry: !import_lodash.default.isUndefined((_h = routePatch.options) == null ? void 0 : _h.flowRegistry) ? routePatch.options.flowRegistry : !import_lodash.default.isUndefined(nextPayload.flowRegistry) ? nextPayload.flowRegistry : current == null ? void 0 : current.flowRegistry
|
|
375
|
+
};
|
|
376
|
+
}
|
|
377
|
+
}
|
|
378
|
+
function readRouteProp(route, key) {
|
|
379
|
+
var _a;
|
|
380
|
+
return ((_a = route == null ? void 0 : route.get) == null ? void 0 : _a.call(route, key)) ?? (route == null ? void 0 : route[key]);
|
|
381
|
+
}
|
|
382
|
+
function readRouteOptions(route) {
|
|
383
|
+
var _a;
|
|
384
|
+
return ((_a = route == null ? void 0 : route.get) == null ? void 0 : _a.call(route, "options")) || (route == null ? void 0 : route.options) || {};
|
|
385
|
+
}
|
|
386
|
+
function firstDefined(...values) {
|
|
387
|
+
return values.find((value) => !import_lodash.default.isUndefined(value));
|
|
388
|
+
}
|
|
389
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
390
|
+
0 && (module.exports = {
|
|
391
|
+
FlowSurfaceRouteSync
|
|
392
|
+
});
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is part of the NocoBase (R) project.
|
|
3
|
+
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
4
|
+
* Authors: NocoBase Team.
|
|
5
|
+
*
|
|
6
|
+
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
|
+
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
|
+
*/
|
|
9
|
+
import _ from 'lodash';
|
|
10
|
+
export type FlowSurfaceFieldMenuCandidateDedupeShape = {
|
|
11
|
+
fieldPath: string;
|
|
12
|
+
associationPathName?: string;
|
|
13
|
+
explicitWrapperUse?: string;
|
|
14
|
+
explicitFieldUse?: string;
|
|
15
|
+
};
|
|
16
|
+
export declare function toTemplatePlainRow(row: any): any;
|
|
17
|
+
export declare function buildFlowTemplateSearchFilter(existing: any, search?: string): any;
|
|
18
|
+
export declare function normalizeTemplatePage(value: any): number;
|
|
19
|
+
export declare function normalizeTemplatePageSize(value: any): number;
|
|
20
|
+
export declare function normalizeFieldPath(fieldPath: string, associationPathName?: string): string;
|
|
21
|
+
export declare function hasConfiguredFlowContextValue(value: any): boolean;
|
|
22
|
+
export declare function buildFilterFieldMeta(field: any): _.Dictionary<any>;
|
|
23
|
+
export declare function getCollectionFields(collection: any): any[];
|
|
24
|
+
export declare function getCollectionTitle(collection: any): any;
|
|
25
|
+
export declare function getCollectionName(collection: any): any;
|
|
26
|
+
export declare function getCollectionTitleFieldName(collection: any): any;
|
|
27
|
+
export declare function getFieldName(field: any): any;
|
|
28
|
+
export declare function getFieldTitle(field: any): any;
|
|
29
|
+
export declare function resolveAssociationNameFromField(field: any, fallbackCollection?: any): any;
|
|
30
|
+
export declare function getFieldInterface(field: any): any;
|
|
31
|
+
export declare function getFieldType(field: any): any;
|
|
32
|
+
export declare function inferFlowContextTypeFromField(field: any): "string" | "number" | "boolean" | "object" | "array";
|
|
33
|
+
export declare function getFieldTarget(field: any): any;
|
|
34
|
+
export declare function getFieldFilterable(field: any): any;
|
|
35
|
+
export declare function inferAssociationLeafDisplayFieldUse(fieldInterface?: string): string;
|
|
36
|
+
export declare function inferFieldMenuEditableFieldUse(fieldInterface?: string): string;
|
|
37
|
+
export declare function isAssociationField(field: any): any;
|
|
38
|
+
export declare function resolveFieldFromCollection(collection: any, fieldPath: string): any;
|
|
39
|
+
export declare function resolveFieldTargetCollection(field: any, dataSourceKey: string, getCollection: (dataSourceKey: string, collectionName: string) => any): any;
|
|
40
|
+
export declare function buildCatalogCollectionCycleKey(collection: any, dataSourceKey?: string): string;
|
|
41
|
+
export declare function dedupeVisibleFieldCandidates<T extends FlowSurfaceFieldMenuCandidateDedupeShape>(candidates: T[]): T[];
|
|
42
|
+
export declare function getAssociationFilterTargetKey(field: any, targetCollection?: any): any;
|