amis-core 6.8.0 → 6.9.0-beta.0
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/esm/Root.js +1 -1
- package/esm/RootRenderer.d.ts +1 -1
- package/esm/RootRenderer.js +24 -2
- package/esm/SchemaRenderer.js +32 -17
- package/esm/Scoped.d.ts +1 -1
- package/esm/Scoped.js +1 -1
- package/esm/StatusScoped.js +1 -1
- package/esm/WithRootStore.js +1 -1
- package/esm/WithStore.js +10 -10
- package/esm/actions/Action.js +1 -1
- package/esm/actions/AjaxAction.js +1 -1
- package/esm/actions/BreakAction.js +1 -1
- package/esm/actions/BroadcastAction.js +1 -1
- package/esm/actions/CmptAction.js +57 -50
- package/esm/actions/ContinueAction.js +1 -1
- package/esm/actions/CopyAction.js +1 -1
- package/esm/actions/CustomAction.js +1 -1
- package/esm/actions/DialogAction.js +1 -1
- package/esm/actions/DrawerAction.js +1 -1
- package/esm/actions/EmailAction.js +1 -1
- package/esm/actions/EventAction.js +1 -1
- package/esm/actions/LinkAction.js +1 -1
- package/esm/actions/LoopAction.js +1 -1
- package/esm/actions/PageAction.js +1 -1
- package/esm/actions/ParallelAction.js +1 -1
- package/esm/actions/PrintAction.js +1 -1
- package/esm/actions/StatusAction.js +1 -1
- package/esm/actions/SwitchAction.js +1 -1
- package/esm/actions/ToastAction.js +3 -3
- package/esm/actions/WaitAction.js +1 -1
- package/esm/components/CustomStyle.js +1 -1
- package/esm/components/ErrorBoundary.js +1 -1
- package/esm/components/LazyComponent.d.ts +40 -2
- package/esm/components/LazyComponent.js +13 -7
- package/esm/components/Overlay.js +1 -1
- package/esm/components/PopOver.d.ts +1 -1
- package/esm/components/PopOver.js +1 -1
- package/esm/env.d.ts +0 -4
- package/esm/env.js +1 -1
- package/esm/envOverwrite.js +1 -1
- package/esm/factory.d.ts +19 -2
- package/esm/factory.js +205 -45
- package/esm/index.d.ts +4 -4
- package/esm/index.js +9 -5
- package/esm/locale.d.ts +1 -1
- package/esm/locale.js +13 -2
- package/esm/polyfills.js +1 -1
- package/esm/renderers/Form.d.ts +5 -5
- package/esm/renderers/Form.js +27 -14
- package/esm/renderers/Item.d.ts +19 -13
- package/esm/renderers/Item.js +13 -14
- package/esm/renderers/Options.d.ts +3 -3
- package/esm/renderers/Options.js +42 -19
- package/esm/renderers/Placeholder.js +1 -1
- package/esm/renderers/builtin.js +1 -1
- package/esm/renderers/register.js +1 -1
- package/esm/renderers/wrapControl.d.ts +3 -3
- package/esm/renderers/wrapControl.js +24 -10
- package/esm/store/app.d.ts +3 -3
- package/esm/store/app.js +1 -1
- package/esm/store/combo.d.ts +17 -15
- package/esm/store/combo.js +1 -1
- package/esm/store/crud.d.ts +3 -3
- package/esm/store/crud.js +1 -1
- package/esm/store/form.d.ts +8 -7
- package/esm/store/form.js +28 -6
- package/esm/store/formItem.js +3 -3
- package/esm/store/iRenderer.d.ts +4 -3
- package/esm/store/iRenderer.js +28 -4
- package/esm/store/index.d.ts +1 -0
- package/esm/store/index.js +3 -2
- package/esm/store/list.d.ts +3 -3
- package/esm/store/list.js +1 -1
- package/esm/store/manager.js +1 -1
- package/esm/store/modal.d.ts +3 -3
- package/esm/store/modal.js +1 -1
- package/esm/store/node.js +1 -1
- package/esm/store/pagination.d.ts +3 -3
- package/esm/store/pagination.js +1 -1
- package/esm/store/root.d.ts +5 -3
- package/esm/store/root.js +45 -21
- package/esm/store/service.d.ts +3 -3
- package/esm/store/service.js +10 -4
- package/esm/store/status.js +1 -1
- package/esm/store/table.d.ts +17 -15
- package/esm/store/table.js +1 -1
- package/esm/store/table2.d.ts +3 -3
- package/esm/store/table2.js +1 -1
- package/esm/theme.d.ts +1 -1
- package/esm/theme.js +13 -2
- package/esm/types.d.ts +19 -2
- package/esm/utils/Animation.js +1 -1
- package/esm/utils/ColorScale.js +1 -1
- package/esm/utils/DataSchema.js +1 -1
- package/esm/utils/DataScope.js +1 -1
- package/esm/utils/RootClose.js +1 -1
- package/esm/utils/SimpleMap.js +1 -1
- package/esm/utils/api.d.ts +21 -1
- package/esm/utils/api.js +138 -41
- package/esm/utils/arraySlice.js +1 -1
- package/esm/utils/attachmentAdpator.js +1 -1
- package/esm/utils/autobind.js +1 -1
- package/esm/utils/browser.js +1 -1
- package/esm/utils/columnsSplit.js +1 -1
- package/esm/utils/concatData.js +1 -1
- package/esm/utils/dataMapping.js +1 -1
- package/esm/utils/date.js +1 -1
- package/esm/utils/debug.js +1 -1
- package/esm/utils/decodeEntity.js +1 -1
- package/esm/utils/dom.js +1 -1
- package/esm/utils/errors.js +1 -1
- package/esm/utils/escapeHtml.js +1 -1
- package/esm/utils/filter-schema.js +1 -1
- package/esm/utils/filter.js +1 -1
- package/esm/utils/formatDuration.js +1 -1
- package/esm/utils/formula.js +1 -1
- package/esm/utils/getVariable.js +1 -1
- package/esm/utils/grammar.js +1 -1
- package/esm/utils/handleAction.js +1 -1
- package/esm/utils/helper.js +1 -1
- package/esm/utils/highlight.js +1 -1
- package/esm/utils/icon.js +1 -1
- package/esm/utils/image.js +1 -1
- package/esm/utils/isPureVariable.js +1 -1
- package/esm/utils/json-schema-2-amis-schema.js +1 -1
- package/esm/utils/keyToPath.js +1 -1
- package/esm/utils/labelToString.js +4 -1
- package/esm/utils/makeSorter.js +1 -1
- package/esm/utils/math.js +1 -1
- package/esm/utils/memoryParse.js +1 -1
- package/esm/utils/normalizeLink.js +1 -1
- package/esm/utils/normalizeOptions.js +1 -1
- package/esm/utils/object.js +1 -1
- package/esm/utils/offset.js +1 -1
- package/esm/utils/offsetParent.js +1 -1
- package/esm/utils/optionValueCompare.js +1 -1
- package/esm/utils/position.js +1 -1
- package/esm/utils/prettyBytes.js +1 -1
- package/esm/utils/printElement.js +1 -1
- package/esm/utils/renderer-event.js +1 -1
- package/esm/utils/replaceText.js +1 -1
- package/esm/utils/resize-sensor.js +1 -1
- package/esm/utils/resolveCondition.js +1 -1
- package/esm/utils/resolveVariable.js +1 -1
- package/esm/utils/resolveVariableAndFilter.js +1 -1
- package/esm/utils/resolveVariableAndFilterForAsync.js +1 -1
- package/esm/utils/scrollPosition.js +1 -1
- package/esm/utils/string2regExp.js +1 -1
- package/esm/utils/stripNumber.js +1 -1
- package/esm/utils/style-helper.js +1 -1
- package/esm/utils/style.js +1 -1
- package/esm/utils/toNumber.js +1 -1
- package/esm/utils/tokenize.js +1 -1
- package/esm/utils/tpl-builtin.js +1 -1
- package/esm/utils/tpl-lodash.js +1 -1
- package/esm/utils/tpl.js +1 -1
- package/esm/utils/uncontrollable.js +1 -1
- package/esm/utils/validateId.js +1 -1
- package/esm/utils/validations.js +1 -1
- package/esm/utils/visitedCache.js +1 -1
- package/lib/Root.js +1 -1
- package/lib/RootRenderer.js +23 -1
- package/lib/SchemaRenderer.js +30 -15
- package/lib/Scoped.d.ts +1 -1
- package/lib/Scoped.js +1 -1
- package/lib/StatusScoped.js +1 -1
- package/lib/WithRootStore.js +1 -1
- package/lib/WithStore.js +10 -10
- package/lib/actions/Action.js +1 -1
- package/lib/actions/AjaxAction.js +1 -1
- package/lib/actions/BreakAction.js +1 -1
- package/lib/actions/BroadcastAction.js +1 -1
- package/lib/actions/CmptAction.js +56 -49
- package/lib/actions/ContinueAction.js +1 -1
- package/lib/actions/CopyAction.js +1 -1
- package/lib/actions/CustomAction.js +1 -1
- package/lib/actions/DialogAction.js +1 -1
- package/lib/actions/DrawerAction.js +1 -1
- package/lib/actions/EmailAction.js +1 -1
- package/lib/actions/EventAction.js +1 -1
- package/lib/actions/LinkAction.js +1 -1
- package/lib/actions/LoopAction.js +1 -1
- package/lib/actions/PageAction.js +1 -1
- package/lib/actions/ParallelAction.js +1 -1
- package/lib/actions/PrintAction.js +1 -1
- package/lib/actions/StatusAction.js +1 -1
- package/lib/actions/SwitchAction.js +1 -1
- package/lib/actions/ToastAction.js +2 -2
- package/lib/actions/WaitAction.js +1 -1
- package/lib/components/CustomStyle.js +1 -1
- package/lib/components/ErrorBoundary.js +1 -1
- package/lib/components/LazyComponent.d.ts +40 -2
- package/lib/components/LazyComponent.js +14 -7
- package/lib/components/Overlay.js +1 -1
- package/lib/components/PopOver.d.ts +1 -1
- package/lib/components/PopOver.js +1 -1
- package/lib/env.d.ts +0 -4
- package/lib/env.js +1 -1
- package/lib/envOverwrite.js +1 -1
- package/lib/factory.d.ts +19 -2
- package/lib/factory.js +211 -44
- package/lib/index.d.ts +4 -4
- package/lib/index.js +16 -2
- package/lib/locale.d.ts +1 -1
- package/lib/locale.js +13 -2
- package/lib/polyfills.js +1 -1
- package/lib/renderers/Form.d.ts +5 -5
- package/lib/renderers/Form.js +25 -12
- package/lib/renderers/Item.d.ts +19 -13
- package/lib/renderers/Item.js +12 -13
- package/lib/renderers/Options.d.ts +3 -3
- package/lib/renderers/Options.js +42 -19
- package/lib/renderers/Placeholder.js +1 -1
- package/lib/renderers/builtin.js +1 -1
- package/lib/renderers/register.js +1 -1
- package/lib/renderers/wrapControl.d.ts +3 -3
- package/lib/renderers/wrapControl.js +24 -10
- package/lib/store/app.d.ts +3 -3
- package/lib/store/app.js +1 -1
- package/lib/store/combo.d.ts +41 -40
- package/lib/store/combo.js +1 -1
- package/lib/store/crud.d.ts +3 -3
- package/lib/store/crud.js +2 -2
- package/lib/store/form.d.ts +18 -18
- package/lib/store/form.js +28 -6
- package/lib/store/formItem.js +3 -3
- package/lib/store/iRenderer.d.ts +4 -3
- package/lib/store/iRenderer.js +28 -4
- package/lib/store/index.d.ts +1 -0
- package/lib/store/index.js +3 -1
- package/lib/store/list.d.ts +3 -3
- package/lib/store/list.js +1 -1
- package/lib/store/manager.js +1 -1
- package/lib/store/modal.d.ts +3 -3
- package/lib/store/modal.js +1 -1
- package/lib/store/node.js +1 -1
- package/lib/store/pagination.d.ts +3 -3
- package/lib/store/pagination.js +1 -1
- package/lib/store/root.d.ts +5 -3
- package/lib/store/root.js +43 -19
- package/lib/store/service.d.ts +3 -3
- package/lib/store/service.js +10 -4
- package/lib/store/status.js +1 -1
- package/lib/store/table.d.ts +37 -36
- package/lib/store/table.js +1 -1
- package/lib/store/table2.d.ts +3 -3
- package/lib/store/table2.js +1 -1
- package/lib/theme.d.ts +1 -1
- package/lib/theme.js +13 -2
- package/lib/types.d.ts +19 -2
- package/lib/utils/Animation.js +1 -1
- package/lib/utils/ColorScale.js +1 -1
- package/lib/utils/DataSchema.js +1 -1
- package/lib/utils/DataScope.js +1 -1
- package/lib/utils/RootClose.js +1 -1
- package/lib/utils/SimpleMap.js +1 -1
- package/lib/utils/api.d.ts +21 -1
- package/lib/utils/api.js +141 -40
- package/lib/utils/arraySlice.js +1 -1
- package/lib/utils/attachmentAdpator.js +1 -1
- package/lib/utils/autobind.js +1 -1
- package/lib/utils/browser.js +1 -1
- package/lib/utils/columnsSplit.js +1 -1
- package/lib/utils/concatData.js +1 -1
- package/lib/utils/dataMapping.js +1 -1
- package/lib/utils/date.js +1 -1
- package/lib/utils/debug.js +2 -2
- package/lib/utils/decodeEntity.js +1 -1
- package/lib/utils/dom.js +1 -1
- package/lib/utils/errors.js +1 -1
- package/lib/utils/escapeHtml.js +1 -1
- package/lib/utils/filter-schema.js +1 -1
- package/lib/utils/filter.js +1 -1
- package/lib/utils/formatDuration.js +1 -1
- package/lib/utils/formula.js +1 -1
- package/lib/utils/getVariable.js +1 -1
- package/lib/utils/grammar.js +1 -1
- package/lib/utils/handleAction.js +1 -1
- package/lib/utils/helper.js +1 -1
- package/lib/utils/highlight.js +1 -1
- package/lib/utils/icon.js +1 -1
- package/lib/utils/image.js +1 -1
- package/lib/utils/isPureVariable.js +1 -1
- package/lib/utils/json-schema-2-amis-schema.js +1 -1
- package/lib/utils/keyToPath.js +1 -1
- package/lib/utils/labelToString.js +4 -1
- package/lib/utils/makeSorter.js +1 -1
- package/lib/utils/math.js +1 -1
- package/lib/utils/memoryParse.js +1 -1
- package/lib/utils/normalizeLink.js +1 -1
- package/lib/utils/normalizeOptions.js +1 -1
- package/lib/utils/object.js +1 -1
- package/lib/utils/offset.js +1 -1
- package/lib/utils/offsetParent.js +1 -1
- package/lib/utils/optionValueCompare.js +1 -1
- package/lib/utils/position.js +1 -1
- package/lib/utils/prettyBytes.js +1 -1
- package/lib/utils/printElement.js +1 -1
- package/lib/utils/renderer-event.js +1 -1
- package/lib/utils/replaceText.js +1 -1
- package/lib/utils/resize-sensor.js +1 -1
- package/lib/utils/resolveCondition.js +1 -1
- package/lib/utils/resolveVariable.js +1 -1
- package/lib/utils/resolveVariableAndFilter.js +1 -1
- package/lib/utils/resolveVariableAndFilterForAsync.js +1 -1
- package/lib/utils/scrollPosition.js +1 -1
- package/lib/utils/string2regExp.js +1 -1
- package/lib/utils/stripNumber.js +1 -1
- package/lib/utils/style-helper.js +1 -1
- package/lib/utils/style.js +1 -1
- package/lib/utils/toNumber.js +1 -1
- package/lib/utils/tokenize.js +1 -1
- package/lib/utils/tpl-builtin.js +1 -1
- package/lib/utils/tpl-lodash.js +1 -1
- package/lib/utils/tpl.js +1 -1
- package/lib/utils/uncontrollable.js +1 -1
- package/lib/utils/validateId.js +1 -1
- package/lib/utils/validations.js +1 -1
- package/lib/utils/visitedCache.js +1 -1
- package/package.json +2 -2
package/lib/store/iRenderer.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { Instance, SnapshotIn } from 'mobx-state-tree';
|
|
2
2
|
import { IScopedContext } from '../Scoped';
|
|
3
|
+
import { DataChangeReason } from '../types';
|
|
3
4
|
export declare const iRendererStore: import("mobx-state-tree").IModelType<{
|
|
4
5
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
5
6
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -37,10 +38,10 @@ export declare const iRendererStore: import("mobx-state-tree").IModelType<{
|
|
|
37
38
|
readonly pristineDiff: any;
|
|
38
39
|
} & {
|
|
39
40
|
setTopStore(value: any): void;
|
|
40
|
-
initData(data?: object, skipSetPristine?: boolean): void;
|
|
41
|
+
initData(data?: object, skipSetPristine?: boolean, changeReason?: DataChangeReason): void;
|
|
41
42
|
reset(): void;
|
|
42
|
-
updateData(data?: object, tag?: object, replace?: boolean, concatFields?: string | string[]): void;
|
|
43
|
-
changeValue(name: string, value: any, changePristine?: boolean, force?: boolean, otherModifier?: ((data: Object) => void) | undefined): void;
|
|
43
|
+
updateData(data?: object, tag?: object, replace?: boolean, concatFields?: string | string[], changeReason?: DataChangeReason): void;
|
|
44
|
+
changeValue(name: string, value: any, changePristine?: boolean, force?: boolean, otherModifier?: ((data: Object) => void) | undefined, changeReason?: DataChangeReason): void;
|
|
44
45
|
setCurrentAction(action: any, resolveDefinitions?: ((schema: any) => any) | undefined): void;
|
|
45
46
|
openDialog(ctx: any, additonal?: object, callback?: ((confirmed: boolean, values: any) => void) | undefined, scoped?: IScopedContext): void;
|
|
46
47
|
closeDialog(confirmed?: any, data?: any): void;
|
package/lib/store/iRenderer.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* amis-core v6.
|
|
2
|
+
* amis-core v6.9.0-beta.0
|
|
3
3
|
* Copyright 2018-2024 fex
|
|
4
4
|
*/
|
|
5
5
|
|
|
@@ -100,7 +100,7 @@ var iRendererStore = node.StoreNode.named('iRendererStore')
|
|
|
100
100
|
setTopStore: function (value) {
|
|
101
101
|
top = value;
|
|
102
102
|
},
|
|
103
|
-
initData: function (data, skipSetPristine) {
|
|
103
|
+
initData: function (data, skipSetPristine, changeReason) {
|
|
104
104
|
if (data === void 0) { data = {}; }
|
|
105
105
|
if (skipSetPristine === void 0) { skipSetPristine = false; }
|
|
106
106
|
self.initedAt = Date.now();
|
|
@@ -111,13 +111,21 @@ var iRendererStore = node.StoreNode.named('iRendererStore')
|
|
|
111
111
|
self.pristine = data;
|
|
112
112
|
self.pristineRaw = data;
|
|
113
113
|
}
|
|
114
|
+
changeReason &&
|
|
115
|
+
Object.isExtensible(data) &&
|
|
116
|
+
Object.defineProperty(data, '__changeReason', {
|
|
117
|
+
value: changeReason,
|
|
118
|
+
enumerable: false,
|
|
119
|
+
configurable: false,
|
|
120
|
+
writable: false
|
|
121
|
+
});
|
|
114
122
|
self.data = data;
|
|
115
123
|
self.upStreamData = data;
|
|
116
124
|
},
|
|
117
125
|
reset: function () {
|
|
118
126
|
self.data = self.pristine;
|
|
119
127
|
},
|
|
120
|
-
updateData: function (data, tag, replace, concatFields) {
|
|
128
|
+
updateData: function (data, tag, replace, concatFields, changeReason) {
|
|
121
129
|
if (data === void 0) { data = {}; }
|
|
122
130
|
if (concatFields) {
|
|
123
131
|
data = concatData.concatData(data, self.data, concatFields);
|
|
@@ -137,9 +145,17 @@ var iRendererStore = node.StoreNode.named('iRendererStore')
|
|
|
137
145
|
configurable: false,
|
|
138
146
|
writable: false
|
|
139
147
|
});
|
|
148
|
+
changeReason &&
|
|
149
|
+
Object.isExtensible(newData) &&
|
|
150
|
+
Object.defineProperty(newData, '__changeReason', {
|
|
151
|
+
value: changeReason,
|
|
152
|
+
enumerable: false,
|
|
153
|
+
configurable: false,
|
|
154
|
+
writable: false
|
|
155
|
+
});
|
|
140
156
|
self.data = newData;
|
|
141
157
|
},
|
|
142
|
-
changeValue: function (name, value, changePristine, force, otherModifier) {
|
|
158
|
+
changeValue: function (name, value, changePristine, force, otherModifier, changeReason) {
|
|
143
159
|
if (!name) {
|
|
144
160
|
return;
|
|
145
161
|
}
|
|
@@ -189,6 +205,14 @@ var iRendererStore = node.StoreNode.named('iRendererStore')
|
|
|
189
205
|
writable: false
|
|
190
206
|
});
|
|
191
207
|
}
|
|
208
|
+
changeReason &&
|
|
209
|
+
Object.isExtensible(data) &&
|
|
210
|
+
Object.defineProperty(data, '__changeReason', {
|
|
211
|
+
value: changeReason,
|
|
212
|
+
enumerable: false,
|
|
213
|
+
configurable: false,
|
|
214
|
+
writable: false
|
|
215
|
+
});
|
|
192
216
|
self.data = data;
|
|
193
217
|
},
|
|
194
218
|
setCurrentAction: function (action, resolveDefinitions) {
|
package/lib/store/index.d.ts
CHANGED
|
@@ -122,4 +122,5 @@ export declare const RendererStore: import("mobx-state-tree").IModelType<{
|
|
|
122
122
|
export type IRendererStore = Instance<typeof RendererStore>;
|
|
123
123
|
export { iRendererStore, IIRendererStore };
|
|
124
124
|
export declare const RegisterStore: (store: any) => void;
|
|
125
|
+
export declare const registerStore: (store: any) => void;
|
|
125
126
|
export { ServiceStore, IServiceStore, FormStore, IFormStore, ComboStore, IComboStore, CRUDStore, ICRUDStore, TableStore, IColumn, IRow, ITableStore, TableStore2, ITableStore2, IColumn2, IRow2, ListStore, IListStore, ModalStore, IModalStore, FormItemStore, IFormItemStore, PaginationStore, IPaginationStore, AppStore, IAppStore, StoreNode, IStoreNode };
|
package/lib/store/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* amis-core v6.
|
|
2
|
+
* amis-core v6.9.0-beta.0
|
|
3
3
|
* Copyright 2018-2024 fex
|
|
4
4
|
*/
|
|
5
5
|
|
|
@@ -83,6 +83,7 @@ var RendererStore = mobxStateTree.types
|
|
|
83
83
|
var RegisterStore = function (store) {
|
|
84
84
|
allowedStoreList.push(store);
|
|
85
85
|
};
|
|
86
|
+
var registerStore = RegisterStore;
|
|
86
87
|
|
|
87
88
|
exports.iRendererStore = iRenderer.iRendererStore;
|
|
88
89
|
exports.ServiceStore = service.ServiceStore;
|
|
@@ -99,3 +100,4 @@ exports.PaginationStore = pagination.PaginationStore;
|
|
|
99
100
|
exports.AppStore = app.AppStore;
|
|
100
101
|
exports.RegisterStore = RegisterStore;
|
|
101
102
|
exports.RendererStore = RendererStore;
|
|
103
|
+
exports.registerStore = registerStore;
|
package/lib/store/list.d.ts
CHANGED
|
@@ -110,10 +110,10 @@ export declare const ListStore: import("mobx-state-tree").IModelType<{
|
|
|
110
110
|
readonly pristineDiff: any;
|
|
111
111
|
} & {
|
|
112
112
|
setTopStore(value: any): void;
|
|
113
|
-
initData(data?: object, skipSetPristine?: boolean): void;
|
|
113
|
+
initData(data?: object, skipSetPristine?: boolean, changeReason?: import("..").DataChangeReason | undefined): void;
|
|
114
114
|
reset(): void;
|
|
115
|
-
updateData(data?: object, tag?: object | undefined, replace?: boolean | undefined, concatFields?: string | string[] | undefined): void;
|
|
116
|
-
changeValue(name: string, value: any, changePristine?: boolean | undefined, force?: boolean | undefined, otherModifier?: ((data: Object) => void) | undefined): void;
|
|
115
|
+
updateData(data?: object, tag?: object | undefined, replace?: boolean | undefined, concatFields?: string | string[] | undefined, changeReason?: import("..").DataChangeReason | undefined): void;
|
|
116
|
+
changeValue(name: string, value: any, changePristine?: boolean | undefined, force?: boolean | undefined, otherModifier?: ((data: Object) => void) | undefined, changeReason?: import("..").DataChangeReason | undefined): void;
|
|
117
117
|
setCurrentAction(action: any, resolveDefinitions?: ((schema: any) => any) | undefined): void;
|
|
118
118
|
openDialog(ctx: any, additonal?: object | undefined, callback?: ((confirmed: boolean, values: any) => void) | undefined, scoped?: import("..").IScopedContext | undefined): void;
|
|
119
119
|
closeDialog(confirmed?: any, data?: any): void;
|
package/lib/store/list.js
CHANGED
package/lib/store/manager.js
CHANGED
package/lib/store/modal.d.ts
CHANGED
|
@@ -51,10 +51,10 @@ export declare const ModalStore: import("mobx-state-tree").IModelType<{
|
|
|
51
51
|
readonly pristineDiff: any;
|
|
52
52
|
} & {
|
|
53
53
|
setTopStore(value: any): void;
|
|
54
|
-
initData(data?: object, skipSetPristine?: boolean): void;
|
|
54
|
+
initData(data?: object, skipSetPristine?: boolean, changeReason?: import("..").DataChangeReason | undefined): void;
|
|
55
55
|
reset(): void;
|
|
56
|
-
updateData(data?: object, tag?: object | undefined, replace?: boolean | undefined, concatFields?: string | string[] | undefined): void;
|
|
57
|
-
changeValue(name: string, value: any, changePristine?: boolean | undefined, force?: boolean | undefined, otherModifier?: ((data: Object) => void) | undefined): void;
|
|
56
|
+
updateData(data?: object, tag?: object | undefined, replace?: boolean | undefined, concatFields?: string | string[] | undefined, changeReason?: import("..").DataChangeReason | undefined): void;
|
|
57
|
+
changeValue(name: string, value: any, changePristine?: boolean | undefined, force?: boolean | undefined, otherModifier?: ((data: Object) => void) | undefined, changeReason?: import("..").DataChangeReason | undefined): void;
|
|
58
58
|
setCurrentAction(action: any, resolveDefinitions?: ((schema: any) => any) | undefined): void;
|
|
59
59
|
openDialog(ctx: any, additonal?: object | undefined, callback?: ((confirmed: boolean, values: any) => void) | undefined, scoped?: import("..").IScopedContext | undefined): void;
|
|
60
60
|
closeDialog(confirmed?: any, data?: any): void;
|
package/lib/store/modal.js
CHANGED
package/lib/store/node.js
CHANGED
|
@@ -43,10 +43,10 @@ export declare const PaginationStore: import("mobx-state-tree").IModelType<{
|
|
|
43
43
|
readonly pristineDiff: any;
|
|
44
44
|
} & {
|
|
45
45
|
setTopStore(value: any): void;
|
|
46
|
-
initData(data?: object, skipSetPristine?: boolean): void;
|
|
46
|
+
initData(data?: object, skipSetPristine?: boolean, changeReason?: import("..").DataChangeReason | undefined): void;
|
|
47
47
|
reset(): void;
|
|
48
|
-
updateData(data?: object, tag?: object | undefined, replace?: boolean | undefined, concatFields?: string | string[] | undefined): void;
|
|
49
|
-
changeValue(name: string, value: any, changePristine?: boolean | undefined, force?: boolean | undefined, otherModifier?: ((data: Object) => void) | undefined): void;
|
|
48
|
+
updateData(data?: object, tag?: object | undefined, replace?: boolean | undefined, concatFields?: string | string[] | undefined, changeReason?: import("..").DataChangeReason | undefined): void;
|
|
49
|
+
changeValue(name: string, value: any, changePristine?: boolean | undefined, force?: boolean | undefined, otherModifier?: ((data: Object) => void) | undefined, changeReason?: import("..").DataChangeReason | undefined): void;
|
|
50
50
|
setCurrentAction(action: any, resolveDefinitions?: ((schema: any) => any) | undefined): void;
|
|
51
51
|
openDialog(ctx: any, additonal?: object | undefined, callback?: ((confirmed: boolean, values: any) => void) | undefined, scoped?: import("..").IScopedContext | undefined): void;
|
|
52
52
|
closeDialog(confirmed?: any, data?: any): void;
|
package/lib/store/pagination.js
CHANGED
package/lib/store/root.d.ts
CHANGED
|
@@ -33,6 +33,7 @@ export declare const RootStore: import("mobx-state-tree").IModelType<{
|
|
|
33
33
|
runtimeError: import("mobx-state-tree").IType<any, any, any>;
|
|
34
34
|
runtimeErrorStack: import("mobx-state-tree").IType<any, any, any>;
|
|
35
35
|
query: import("mobx-state-tree").IType<any, any, any>;
|
|
36
|
+
ready: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
36
37
|
}, {
|
|
37
38
|
readonly parentStore: any;
|
|
38
39
|
readonly __: any;
|
|
@@ -50,10 +51,10 @@ export declare const RootStore: import("mobx-state-tree").IModelType<{
|
|
|
50
51
|
readonly pristineDiff: any;
|
|
51
52
|
} & {
|
|
52
53
|
setTopStore(value: any): void;
|
|
53
|
-
initData(data?: object, skipSetPristine?: boolean): void;
|
|
54
|
+
initData(data?: object, skipSetPristine?: boolean, changeReason?: import("..").DataChangeReason | undefined): void;
|
|
54
55
|
reset(): void;
|
|
55
|
-
updateData(data?: object, tag?: object | undefined, replace?: boolean | undefined, concatFields?: string | string[] | undefined): void;
|
|
56
|
-
changeValue(name: string, value: any, changePristine?: boolean | undefined, force?: boolean | undefined, otherModifier?: ((data: Object) => void) | undefined): void;
|
|
56
|
+
updateData(data?: object, tag?: object | undefined, replace?: boolean | undefined, concatFields?: string | string[] | undefined, changeReason?: import("..").DataChangeReason | undefined): void;
|
|
57
|
+
changeValue(name: string, value: any, changePristine?: boolean | undefined, force?: boolean | undefined, otherModifier?: ((data: Object) => void) | undefined, changeReason?: import("..").DataChangeReason | undefined): void;
|
|
57
58
|
setCurrentAction(action: any, resolveDefinitions?: ((schema: any) => any) | undefined): void;
|
|
58
59
|
openDialog(ctx: any, additonal?: object | undefined, callback?: ((confirmed: boolean, values: any) => void) | undefined, scoped?: import("..").IScopedContext | undefined): void;
|
|
59
60
|
closeDialog(confirmed?: any, data?: any): void;
|
|
@@ -84,5 +85,6 @@ export declare const RootStore: import("mobx-state-tree").IModelType<{
|
|
|
84
85
|
updateContext(context: any): void;
|
|
85
86
|
setRuntimeError(error: any, errorStack: any): void;
|
|
86
87
|
updateLocation(location?: any, parseFn?: Function): void;
|
|
88
|
+
init: (schema: any) => Promise<any>;
|
|
87
89
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
88
90
|
export type IRootStore = Instance<typeof RootStore>;
|
package/lib/store/root.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* amis-core v6.
|
|
2
|
+
* amis-core v6.9.0-beta.0
|
|
3
3
|
* Copyright 2018-2024 fex
|
|
4
4
|
*/
|
|
5
5
|
|
|
@@ -59,7 +59,8 @@ var RootStore = service.ServiceStore.named('RootStore')
|
|
|
59
59
|
.props({
|
|
60
60
|
runtimeError: mobxStateTree.types.frozen(),
|
|
61
61
|
runtimeErrorStack: mobxStateTree.types.frozen(),
|
|
62
|
-
query: mobxStateTree.types.frozen()
|
|
62
|
+
query: mobxStateTree.types.frozen(),
|
|
63
|
+
ready: false
|
|
63
64
|
})
|
|
64
65
|
.volatile(function (self) {
|
|
65
66
|
return {
|
|
@@ -79,22 +80,45 @@ var RootStore = service.ServiceStore.named('RootStore')
|
|
|
79
80
|
return result;
|
|
80
81
|
}
|
|
81
82
|
}); })
|
|
82
|
-
.actions(function (self) {
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
83
|
+
.actions(function (self) {
|
|
84
|
+
var init = mobxStateTree.flow(function init(fn) {
|
|
85
|
+
var ret;
|
|
86
|
+
return tslib.__generator(this, function (_a) {
|
|
87
|
+
switch (_a.label) {
|
|
88
|
+
case 0:
|
|
89
|
+
_a.trys.push([0, , 3, 4]);
|
|
90
|
+
ret = fn();
|
|
91
|
+
if (!(ret === null || ret === void 0 ? void 0 : ret.then)) return [3 /*break*/, 2];
|
|
92
|
+
return [4 /*yield*/, ret];
|
|
93
|
+
case 1:
|
|
94
|
+
_a.sent();
|
|
95
|
+
_a.label = 2;
|
|
96
|
+
case 2: return [3 /*break*/, 4];
|
|
97
|
+
case 3:
|
|
98
|
+
self.ready = true;
|
|
99
|
+
return [7 /*endfinally*/];
|
|
100
|
+
case 4: return [2 /*return*/];
|
|
101
|
+
}
|
|
102
|
+
});
|
|
103
|
+
});
|
|
104
|
+
return {
|
|
105
|
+
updateContext: function (context) {
|
|
106
|
+
// 因为 context 不是受控属性,直接共用引用好了
|
|
107
|
+
// 否则还会触发孩子节点的重新渲染
|
|
108
|
+
Object.assign(self.context, context);
|
|
109
|
+
},
|
|
110
|
+
setRuntimeError: function (error, errorStack) {
|
|
111
|
+
self.runtimeError = error;
|
|
112
|
+
self.runtimeErrorStack = errorStack;
|
|
113
|
+
},
|
|
114
|
+
updateLocation: function (location, parseFn) {
|
|
115
|
+
var query = parseFn ? parseFn(location) : helper.parseQuery(location);
|
|
116
|
+
if (helper.isObjectShallowModified(query, self.query, false)) {
|
|
117
|
+
self.query = query;
|
|
118
|
+
}
|
|
119
|
+
},
|
|
120
|
+
init: init
|
|
121
|
+
};
|
|
122
|
+
});
|
|
99
123
|
|
|
100
124
|
exports.RootStore = RootStore;
|
package/lib/store/service.d.ts
CHANGED
|
@@ -47,10 +47,10 @@ export declare const ServiceStore: import("mobx-state-tree").IModelType<{
|
|
|
47
47
|
readonly pristineDiff: any;
|
|
48
48
|
} & {
|
|
49
49
|
setTopStore(value: any): void;
|
|
50
|
-
initData(data?: object, skipSetPristine?: boolean): void;
|
|
50
|
+
initData(data?: object, skipSetPristine?: boolean, changeReason?: import("../types").DataChangeReason | undefined): void;
|
|
51
51
|
reset(): void;
|
|
52
|
-
updateData(data?: object, tag?: object | undefined, replace?: boolean | undefined, concatFields?: string | string[] | undefined): void;
|
|
53
|
-
changeValue(name: string, value: any, changePristine?: boolean | undefined, force?: boolean | undefined, otherModifier?: ((data: Object) => void) | undefined): void;
|
|
52
|
+
updateData(data?: object, tag?: object | undefined, replace?: boolean | undefined, concatFields?: string | string[] | undefined, changeReason?: import("../types").DataChangeReason | undefined): void;
|
|
53
|
+
changeValue(name: string, value: any, changePristine?: boolean | undefined, force?: boolean | undefined, otherModifier?: ((data: Object) => void) | undefined, changeReason?: import("../types").DataChangeReason | undefined): void;
|
|
54
54
|
setCurrentAction(action: any, resolveDefinitions?: ((schema: any) => any) | undefined): void;
|
|
55
55
|
openDialog(ctx: any, additonal?: object | undefined, callback?: ((confirmed: boolean, values: any) => void) | undefined, scoped?: import("..").IScopedContext | undefined): void;
|
|
56
56
|
closeDialog(confirmed?: any, data?: any): void;
|
package/lib/store/service.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* amis-core v6.
|
|
2
|
+
* amis-core v6.9.0-beta.0
|
|
3
3
|
* Copyright 2018-2024 fex
|
|
4
4
|
*/
|
|
5
5
|
|
|
@@ -207,7 +207,9 @@ var ServiceStore = iRenderer.iRendererStore
|
|
|
207
207
|
if (!helper.isEmpty(json.data) || json.ok) {
|
|
208
208
|
self.updatedAt = Date.now();
|
|
209
209
|
json.data &&
|
|
210
|
-
self.updateData(api.normalizeApiResponseData(json.data), undefined, !!api$1.replaceData, api$1.concatDataFields
|
|
210
|
+
self.updateData(api.normalizeApiResponseData(json.data), undefined, !!api$1.replaceData, api$1.concatDataFields, {
|
|
211
|
+
type: 'api'
|
|
212
|
+
});
|
|
211
213
|
self.hasRemoteData = true;
|
|
212
214
|
}
|
|
213
215
|
if (!!json.ok) return [3 /*break*/, 2];
|
|
@@ -278,7 +280,9 @@ var ServiceStore = iRenderer.iRendererStore
|
|
|
278
280
|
if (!helper.isEmpty(json.data) || json.ok) {
|
|
279
281
|
self.updatedAt = Date.now();
|
|
280
282
|
json.data &&
|
|
281
|
-
self.updateData(api.normalizeApiResponseData(json.data), undefined, !!api$1.replaceData, api$1.concatDataFields
|
|
283
|
+
self.updateData(api.normalizeApiResponseData(json.data), undefined, !!api$1.replaceData, api$1.concatDataFields, {
|
|
284
|
+
type: 'api'
|
|
285
|
+
});
|
|
282
286
|
}
|
|
283
287
|
if (!!json.ok) return [3 /*break*/, 4];
|
|
284
288
|
if (!(options && options.onFailed)) return [3 /*break*/, 3];
|
|
@@ -393,7 +397,9 @@ var ServiceStore = iRenderer.iRendererStore
|
|
|
393
397
|
}, api.normalizeApiResponseData(json.data));
|
|
394
398
|
self.schemaKey = '' + Date.now();
|
|
395
399
|
object.isObject(json.data.data) &&
|
|
396
|
-
self.updateData(json.data.data, undefined, !!api$1.replaceData, api$1.concatDataFields
|
|
400
|
+
self.updateData(json.data.data, undefined, !!api$1.replaceData, api$1.concatDataFields, {
|
|
401
|
+
type: 'api'
|
|
402
|
+
});
|
|
397
403
|
}
|
|
398
404
|
updateMessage((_h = (_g = (_f = api$1 === null || api$1 === void 0 ? void 0 : api$1.messages) === null || _f === void 0 ? void 0 : _f.success) !== null && _g !== void 0 ? _g : json.msg) !== null && _h !== void 0 ? _h : (options && options.successMessage));
|
|
399
405
|
// 配置了获取成功提示后提示,默认是空不会提示。
|
package/lib/store/status.js
CHANGED