@opentiny/tiny-engine-plugin-page 2.0.0-alpha.1 → 2.0.0-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/dist/index.js +640 -662
- package/dist/style.css +1 -1
- package/package.json +7 -7
package/dist/index.js
CHANGED
|
@@ -1,58 +1,58 @@
|
|
|
1
1
|
import "./style.css";
|
|
2
|
-
import { reactive as z, watchEffect as Y, computed as re, inject as
|
|
3
|
-
import { usePage as L, useModal as Q, useNotify as
|
|
4
|
-
import {
|
|
5
|
-
import { isEqual as
|
|
6
|
-
import { Checkbox as
|
|
7
|
-
import { constants as
|
|
8
|
-
import { isVsCodeEnv as
|
|
9
|
-
import { handlePageUpdate as
|
|
10
|
-
import { generateRouter as
|
|
11
|
-
import { REGEXP_PAGE_NAME as
|
|
12
|
-
import { useHttp as
|
|
13
|
-
import { previewPage as
|
|
14
|
-
import
|
|
15
|
-
import { IconFolderOpened as
|
|
2
|
+
import { reactive as z, watchEffect as Y, computed as re, inject as He, resolveComponent as c, openBlock as N, createElementBlock as J, createVNode as r, withCtx as y, createTextVNode as ae, createElementVNode as V, toDisplayString as _e, ref as U, createBlock as A, createCommentVNode as H, nextTick as Le, Fragment as de, renderList as Be, provide as je } from "vue";
|
|
3
|
+
import { usePage as L, useModal as Q, useNotify as R, useBlock as qe, useEditorInfo as Je, getMergeMeta as be, useApp as le, useCanvas as me, useLayout as oe, useBreadcrumb as Ke, useHelp as Xe, HOOK_NAME as We } from "@opentiny/tiny-engine-meta-register";
|
|
4
|
+
import { BlockHistoryList as ze, MetaCodeEditor as Qe, LifeCycles as Ye, PluginSetting as ke, SvgButton as Pe, ButtonGroup as we, PluginPanel as Ze } from "@opentiny/tiny-engine-common";
|
|
5
|
+
import { isEqual as ce, extend as ne } from "@opentiny/vue-renderless/common/object";
|
|
6
|
+
import { Checkbox as xe, Form as $e, FormItem as et, Input as Ee, Select as tt, Radio as at, Button as Ve, Collapse as fe, CollapseItem as ye, Search as nt, Tree as ot } from "@opentiny/vue";
|
|
7
|
+
import { constants as Ge } from "@opentiny/tiny-engine-utils";
|
|
8
|
+
import { isVsCodeEnv as Re } from "@opentiny/tiny-engine-common/js/environments";
|
|
9
|
+
import { handlePageUpdate as st } from "@opentiny/tiny-engine-common/js/http";
|
|
10
|
+
import { generateRouter as rt, generatePage as lt } from "@opentiny/tiny-engine-common/js/vscodeGenerateFile";
|
|
11
|
+
import { REGEXP_PAGE_NAME as ct, REGEXP_ROUTE as Te, REGEXP_FOLDER_NAME as it } from "@opentiny/tiny-engine-common/js/verification";
|
|
12
|
+
import { useHttp as gt } from "@opentiny/tiny-engine-http";
|
|
13
|
+
import { previewPage as pt } from "@opentiny/tiny-engine-common/js/preview";
|
|
14
|
+
import ut from "@opentiny/vue-renderless/common/deps/throttle";
|
|
15
|
+
import { IconSearch as dt, IconFolderOpened as _t, IconFolderClosed as mt } from "@opentiny/vue-icon";
|
|
16
16
|
import { getCanvasStatus as Ne } from "@opentiny/tiny-engine-common/js/canvas";
|
|
17
|
-
const B =
|
|
18
|
-
fetchPageList:
|
|
17
|
+
const B = gt(), Pt = (n) => B.get(`/app-center/api/pages/list/${n}`), Se = (n) => B.get(`/app-center/api/pages/detail/${n}`), ft = (n) => B.get(`/app-center/api/pages/delete/${n}`), yt = (n) => B.post("/app-center/api/pages/create", n), St = (n, t) => B.post(`/app-center/api/pages/update/${n}`, t), Dt = (n) => B.post("/app-center/api/pages/copy", n), Ae = (n) => B.get(`/app-center/api/pages/histories?page=${n}`), ht = (n) => B.post("/app-center/api/pageHistory/restore", n), vt = (n) => B.get(`/app-center/api/pages/histories/${n}`), Ct = (n, t) => B.post(`/app-center/api/pages/update/${n}`, t), ie = {
|
|
18
|
+
fetchPageList: Pt,
|
|
19
19
|
fetchPageDetail: Se,
|
|
20
|
-
requestDeletePage:
|
|
21
|
-
requestCreatePage:
|
|
22
|
-
requestCopyPage:
|
|
23
|
-
fetchPageHistory:
|
|
24
|
-
fetchHistoryDetail:
|
|
25
|
-
handleRouteHomeUpdate:
|
|
26
|
-
requestRestorePageHistory:
|
|
27
|
-
requestUpdatePage:
|
|
20
|
+
requestDeletePage: ft,
|
|
21
|
+
requestCreatePage: yt,
|
|
22
|
+
requestCopyPage: Dt,
|
|
23
|
+
fetchPageHistory: Ae,
|
|
24
|
+
fetchHistoryDetail: vt,
|
|
25
|
+
handleRouteHomeUpdate: St,
|
|
26
|
+
requestRestorePageHistory: ht,
|
|
27
|
+
requestUpdatePage: Ct
|
|
28
28
|
};
|
|
29
29
|
const K = (n, t) => {
|
|
30
|
-
const
|
|
30
|
+
const s = n.__vccOpts || n;
|
|
31
31
|
for (const [e, _] of t)
|
|
32
|
-
|
|
33
|
-
return
|
|
34
|
-
},
|
|
32
|
+
s[e] = _;
|
|
33
|
+
return s;
|
|
34
|
+
}, It = {
|
|
35
35
|
components: {
|
|
36
|
-
TinyCheckbox:
|
|
36
|
+
TinyCheckbox: xe
|
|
37
37
|
},
|
|
38
38
|
setup() {
|
|
39
|
-
const { pageSettingState: n, STATIC_PAGE_GROUP_ID: t } = L(), { handleRouteHomeUpdate:
|
|
39
|
+
const { pageSettingState: n, STATIC_PAGE_GROUP_ID: t } = L(), { handleRouteHomeUpdate: s } = ie, { confirm: e } = Q(), _ = z({
|
|
40
40
|
checked: !1,
|
|
41
41
|
selectDisable: !1
|
|
42
42
|
});
|
|
43
43
|
Y(() => {
|
|
44
|
-
var
|
|
45
|
-
const o = !!((
|
|
44
|
+
var g;
|
|
45
|
+
const o = !!((g = n.currentPageData) != null && g.isHome);
|
|
46
46
|
_.checked = o, _.selectDisable = o;
|
|
47
47
|
});
|
|
48
|
-
const
|
|
48
|
+
const m = re(() => {
|
|
49
49
|
let o = "暂无主页";
|
|
50
50
|
if (n.pages[t]) {
|
|
51
|
-
const
|
|
52
|
-
|
|
51
|
+
const u = n.pages[t].data.filter((P) => P.isHome);
|
|
52
|
+
u[0] && (o = u[0].name);
|
|
53
53
|
}
|
|
54
54
|
return o;
|
|
55
|
-
}), a =
|
|
55
|
+
}), a = He("openSettingPanel");
|
|
56
56
|
return {
|
|
57
57
|
pageSettingState: n,
|
|
58
58
|
settingHome: () => {
|
|
@@ -61,14 +61,14 @@ const K = (n, t) => {
|
|
|
61
61
|
type: "warning ",
|
|
62
62
|
message: "是否确定要将此页面设置为主页?您所做的任何未保存的更改都将被丢弃。",
|
|
63
63
|
exec: () => {
|
|
64
|
-
const { id: o } = n.currentPageData,
|
|
65
|
-
|
|
66
|
-
n.updateTreeData(), a({ data: n.currentPageData }), n.isNew = !1,
|
|
64
|
+
const { id: o } = n.currentPageData, g = n.ROOT_ID, u = { ...n.currentPageData };
|
|
65
|
+
u.parentId = g, u.isHome = !0, s(o, u).then(() => {
|
|
66
|
+
n.updateTreeData(), a({ data: n.currentPageData }), n.isNew = !1, Re && rt({
|
|
67
67
|
pageId: o,
|
|
68
|
-
componentsTree:
|
|
69
|
-
}),
|
|
68
|
+
componentsTree: u
|
|
69
|
+
}), R({ message: "主页设置成功!", type: "success" });
|
|
70
70
|
}).catch(() => {
|
|
71
|
-
|
|
71
|
+
R({ message: "主页设置失败!", type: "error" });
|
|
72
72
|
});
|
|
73
73
|
},
|
|
74
74
|
cancel: () => {
|
|
@@ -76,44 +76,40 @@ const K = (n, t) => {
|
|
|
76
76
|
}
|
|
77
77
|
});
|
|
78
78
|
},
|
|
79
|
-
homePage:
|
|
79
|
+
homePage: m,
|
|
80
80
|
state: _
|
|
81
81
|
};
|
|
82
82
|
}
|
|
83
|
-
},
|
|
84
|
-
function
|
|
83
|
+
}, bt = { class: "home" }, Tt = { class: "tip" }, Nt = { class: "home-page" };
|
|
84
|
+
function Ot(n, t, s, e, _, m) {
|
|
85
85
|
const a = c("tiny-checkbox");
|
|
86
|
-
return N(), J("div",
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
t[2] || (t[2] = R("span", null, "当前主页是", -1)),
|
|
103
|
-
R("span", wt, "【" + _e(e.homePage) + "】", 1)
|
|
104
|
-
])
|
|
86
|
+
return N(), J("div", bt, [
|
|
87
|
+
r(a, {
|
|
88
|
+
class: "selectHome",
|
|
89
|
+
modelValue: e.state.checked,
|
|
90
|
+
"onUpdate:modelValue": t[0] || (t[0] = (l) => e.state.checked = l),
|
|
91
|
+
disabled: e.state.selectDisable,
|
|
92
|
+
onChange: e.settingHome
|
|
93
|
+
}, {
|
|
94
|
+
default: y(() => t[1] || (t[1] = [
|
|
95
|
+
ae("设为主页")
|
|
96
|
+
])),
|
|
97
|
+
_: 1
|
|
98
|
+
}, 8, ["modelValue", "disabled", "onChange"]),
|
|
99
|
+
V("div", Tt, [
|
|
100
|
+
t[2] || (t[2] = V("span", null, "当前主页是", -1)),
|
|
101
|
+
V("span", Nt, "【" + _e(e.homePage) + "】", 1)
|
|
105
102
|
])
|
|
106
103
|
]);
|
|
107
104
|
}
|
|
108
|
-
const
|
|
105
|
+
const Ft = /* @__PURE__ */ K(It, [["render", Ot], ["__scopeId", "data-v-b15de911"]]), kt = {
|
|
109
106
|
components: {
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
TinyRadio: nt
|
|
107
|
+
TinyForm: $e,
|
|
108
|
+
TinyFormItem: et,
|
|
109
|
+
TinyInput: Ee,
|
|
110
|
+
TinySelect: tt,
|
|
111
|
+
PageHome: Ft,
|
|
112
|
+
TinyRadio: at
|
|
117
113
|
},
|
|
118
114
|
props: {
|
|
119
115
|
modelValue: {
|
|
@@ -129,26 +125,26 @@ const xt = /* @__PURE__ */ K(Tt, [["render", kt], ["__scopeId", "data-v-d8eb1045
|
|
|
129
125
|
const {
|
|
130
126
|
pageSettingState: n,
|
|
131
127
|
changeTreeData: t,
|
|
132
|
-
STATIC_PAGE_GROUP_ID:
|
|
128
|
+
STATIC_PAGE_GROUP_ID: s
|
|
133
129
|
} = L(), e = n.ROOT_ID, _ = U(n.currentPageData.parentId);
|
|
134
130
|
Y(() => {
|
|
135
131
|
_.value = n.oldParentId;
|
|
136
132
|
});
|
|
137
|
-
const
|
|
138
|
-
let
|
|
139
|
-
for (;
|
|
140
|
-
const
|
|
141
|
-
if (!
|
|
133
|
+
const m = re(() => {
|
|
134
|
+
let D = n.currentPageData.route || "", S = n.currentPageData.parentId;
|
|
135
|
+
for (; S !== e; ) {
|
|
136
|
+
const p = n.treeDataMapping[S];
|
|
137
|
+
if (!p)
|
|
142
138
|
break;
|
|
143
|
-
|
|
139
|
+
D = `${p.route}/${D}`, S = p.parentId;
|
|
144
140
|
}
|
|
145
|
-
return
|
|
141
|
+
return D.startsWith("/") && (D = D.slice(1)), D;
|
|
146
142
|
}), a = {
|
|
147
143
|
name: [{
|
|
148
144
|
required: !0,
|
|
149
145
|
message: "请输入页面 ID"
|
|
150
146
|
}, {
|
|
151
|
-
pattern:
|
|
147
|
+
pattern: ct,
|
|
152
148
|
message: "只允许包含英文字母,且为大写开头驼峰格式, 如DemoPage"
|
|
153
149
|
}, {
|
|
154
150
|
min: 3,
|
|
@@ -167,7 +163,7 @@ const xt = /* @__PURE__ */ K(Tt, [["render", kt], ["__scopeId", "data-v-d8eb1045
|
|
|
167
163
|
required: !0,
|
|
168
164
|
message: "请输入页面文件夹 ID"
|
|
169
165
|
}, {
|
|
170
|
-
pattern:
|
|
166
|
+
pattern: it,
|
|
171
167
|
message: "只允许包含英文字母、数字、下横线_、中横线-, 且以英文字母开头"
|
|
172
168
|
}, {
|
|
173
169
|
min: 3,
|
|
@@ -185,105 +181,105 @@ const xt = /* @__PURE__ */ K(Tt, [["render", kt], ["__scopeId", "data-v-d8eb1045
|
|
|
185
181
|
required: !0,
|
|
186
182
|
message: "必须选择页面类型"
|
|
187
183
|
}]
|
|
188
|
-
}, o = (
|
|
189
|
-
const
|
|
190
|
-
return
|
|
191
|
-
!
|
|
192
|
-
}),
|
|
193
|
-
},
|
|
184
|
+
}, o = (D) => {
|
|
185
|
+
const S = [];
|
|
186
|
+
return D.forEach((p) => {
|
|
187
|
+
!p.isPage && p.id !== n.currentPageData.id && (S.push(p), p.children || (p.children = []), p.children = o(p.children));
|
|
188
|
+
}), S;
|
|
189
|
+
}, g = re(() => {
|
|
194
190
|
var F;
|
|
195
|
-
const
|
|
191
|
+
const D = r(c("SvgIcon"), {
|
|
196
192
|
name: "text-page-folder-closed",
|
|
197
193
|
class: "folder-icon"
|
|
198
|
-
}, null),
|
|
194
|
+
}, null), S = r(c("SvgIcon"), {
|
|
199
195
|
name: "text-page-folder",
|
|
200
196
|
class: "folder-icon"
|
|
201
|
-
}, null),
|
|
197
|
+
}, null), p = ((F = n.pages[s]) == null ? void 0 : F.data) || [];
|
|
202
198
|
return {
|
|
203
199
|
data: [{
|
|
204
200
|
name: "无",
|
|
205
201
|
id: e
|
|
206
|
-
}, ...o(JSON.parse(JSON.stringify(
|
|
207
|
-
shrinkIcon:
|
|
208
|
-
expandIcon:
|
|
202
|
+
}, ...o(JSON.parse(JSON.stringify(p)))],
|
|
203
|
+
shrinkIcon: S,
|
|
204
|
+
expandIcon: D,
|
|
209
205
|
renderContent: (Z, {
|
|
210
206
|
node: X,
|
|
211
207
|
data: W
|
|
212
|
-
}) =>
|
|
208
|
+
}) => r("span", {
|
|
213
209
|
style: "display:flex"
|
|
214
|
-
}, [X.isLeaf && W.id !== e ?
|
|
210
|
+
}, [X.isLeaf && W.id !== e ? r(c("svg-icon"), {
|
|
215
211
|
name: "text-page-folder-closed",
|
|
216
212
|
style: "margin-right:14px"
|
|
217
|
-
}, null) : null,
|
|
213
|
+
}, null) : null, r("span", {
|
|
218
214
|
class: "label"
|
|
219
215
|
}, [X.label])])
|
|
220
216
|
};
|
|
221
|
-
}),
|
|
217
|
+
}), u = U(null);
|
|
222
218
|
return {
|
|
223
219
|
pageRules: a,
|
|
224
220
|
folderRules: l,
|
|
225
221
|
pageSettingState: n,
|
|
226
|
-
generalForm:
|
|
227
|
-
validGeneralForm: () => new Promise((
|
|
228
|
-
|
|
229
|
-
|
|
222
|
+
generalForm: u,
|
|
223
|
+
validGeneralForm: () => new Promise((D, S) => {
|
|
224
|
+
u.value.validate((p) => {
|
|
225
|
+
p ? D(p) : S(p);
|
|
230
226
|
});
|
|
231
227
|
}),
|
|
232
|
-
treeFolderOp:
|
|
233
|
-
currentRoute:
|
|
234
|
-
changeParentForderId: (
|
|
235
|
-
t(
|
|
228
|
+
treeFolderOp: g,
|
|
229
|
+
currentRoute: m,
|
|
230
|
+
changeParentForderId: (D) => {
|
|
231
|
+
t(D.id, _.value), _.value = D.id;
|
|
236
232
|
}
|
|
237
233
|
};
|
|
238
234
|
}
|
|
239
235
|
};
|
|
240
|
-
const
|
|
236
|
+
const wt = { class: "general-config" }, xt = { class: "tip" }, Et = {
|
|
241
237
|
key: 0,
|
|
242
238
|
class: "text"
|
|
243
|
-
},
|
|
239
|
+
}, Vt = {
|
|
244
240
|
key: 1,
|
|
245
241
|
class: "route-text"
|
|
246
|
-
},
|
|
247
|
-
function
|
|
248
|
-
const a = c("tiny-radio"), l = c("tiny-form-item"), o = c("tiny-input"),
|
|
249
|
-
return N(), J("div",
|
|
250
|
-
|
|
242
|
+
}, Gt = { class: "text-dim" };
|
|
243
|
+
function Rt(n, t, s, e, _, m) {
|
|
244
|
+
const a = c("tiny-radio"), l = c("tiny-form-item"), o = c("tiny-input"), g = c("tiny-select"), u = c("tiny-form"), P = c("page-home");
|
|
245
|
+
return N(), J("div", wt, [
|
|
246
|
+
r(u, {
|
|
251
247
|
ref: "generalForm",
|
|
252
248
|
model: e.pageSettingState.currentPageData,
|
|
253
|
-
rules:
|
|
249
|
+
rules: s.isFolder ? e.folderRules : e.pageRules,
|
|
254
250
|
"label-width": "120px",
|
|
255
251
|
"validate-type": "text",
|
|
256
252
|
"inline-message": !0,
|
|
257
253
|
"label-align": !0,
|
|
258
|
-
"label-position": "
|
|
254
|
+
"label-position": "top",
|
|
259
255
|
class: "general-config-form"
|
|
260
256
|
}, {
|
|
261
|
-
default:
|
|
262
|
-
|
|
257
|
+
default: y(() => [
|
|
258
|
+
s.isFolder ? H("", !0) : (N(), A(l, {
|
|
263
259
|
key: 0,
|
|
264
260
|
prop: "group",
|
|
265
|
-
label: "
|
|
261
|
+
label: "页面类型",
|
|
266
262
|
class: "form-item-page-type"
|
|
267
263
|
}, {
|
|
268
|
-
default:
|
|
269
|
-
|
|
264
|
+
default: y(() => [
|
|
265
|
+
r(a, {
|
|
270
266
|
modelValue: e.pageSettingState.currentPageData.group,
|
|
271
|
-
"onUpdate:modelValue": t[0] || (t[0] = (
|
|
267
|
+
"onUpdate:modelValue": t[0] || (t[0] = (f) => e.pageSettingState.currentPageData.group = f),
|
|
272
268
|
class: "page-type-radio",
|
|
273
269
|
label: "staticPages"
|
|
274
270
|
}, {
|
|
275
|
-
default:
|
|
271
|
+
default: y(() => t[5] || (t[5] = [
|
|
276
272
|
ae(" 静态页面 ")
|
|
277
273
|
])),
|
|
278
274
|
_: 1
|
|
279
275
|
}, 8, ["modelValue"]),
|
|
280
|
-
|
|
276
|
+
r(a, {
|
|
281
277
|
modelValue: e.pageSettingState.currentPageData.group,
|
|
282
|
-
"onUpdate:modelValue": t[1] || (t[1] = (
|
|
278
|
+
"onUpdate:modelValue": t[1] || (t[1] = (f) => e.pageSettingState.currentPageData.group = f),
|
|
283
279
|
class: "page-type-radio",
|
|
284
280
|
label: "publicPages"
|
|
285
281
|
}, {
|
|
286
|
-
default:
|
|
282
|
+
default: y(() => t[6] || (t[6] = [
|
|
287
283
|
ae(" 公共页面 ")
|
|
288
284
|
])),
|
|
289
285
|
_: 1
|
|
@@ -291,28 +287,28 @@ function Mt(n, t, r, e, _, f) {
|
|
|
291
287
|
]),
|
|
292
288
|
_: 1
|
|
293
289
|
})),
|
|
294
|
-
|
|
290
|
+
r(l, {
|
|
295
291
|
prop: "name",
|
|
296
|
-
label: `${
|
|
292
|
+
label: `${s.isFolder ? "文件夹" : "页面"}名称`
|
|
297
293
|
}, {
|
|
298
|
-
default:
|
|
299
|
-
|
|
294
|
+
default: y(() => [
|
|
295
|
+
r(o, {
|
|
300
296
|
modelValue: e.pageSettingState.currentPageData.name,
|
|
301
|
-
"onUpdate:modelValue": t[2] || (t[2] = (
|
|
302
|
-
placeholder: `请设置${
|
|
297
|
+
"onUpdate:modelValue": t[2] || (t[2] = (f) => e.pageSettingState.currentPageData.name = f),
|
|
298
|
+
placeholder: `请设置${s.isFolder ? "文件夹" : "页面"}名称`
|
|
303
299
|
}, null, 8, ["modelValue", "placeholder"])
|
|
304
300
|
]),
|
|
305
301
|
_: 1
|
|
306
302
|
}, 8, ["label"]),
|
|
307
303
|
e.pageSettingState.currentPageData.group !== "publicPages" ? (N(), A(l, {
|
|
308
304
|
key: 1,
|
|
309
|
-
label: "
|
|
305
|
+
label: "父文件夹",
|
|
310
306
|
prop: "parentId"
|
|
311
307
|
}, {
|
|
312
|
-
default:
|
|
313
|
-
|
|
308
|
+
default: y(() => [
|
|
309
|
+
r(g, {
|
|
314
310
|
modelValue: e.pageSettingState.currentPageData.parentId,
|
|
315
|
-
"onUpdate:modelValue": t[3] || (t[3] = (
|
|
311
|
+
"onUpdate:modelValue": t[3] || (t[3] = (f) => e.pageSettingState.currentPageData.parentId = f),
|
|
316
312
|
"value-field": "id",
|
|
317
313
|
"render-type": "tree",
|
|
318
314
|
"tree-op": e.treeFolderOp,
|
|
@@ -324,30 +320,21 @@ function Mt(n, t, r, e, _, f) {
|
|
|
324
320
|
]),
|
|
325
321
|
_: 1
|
|
326
322
|
})) : H("", !0),
|
|
327
|
-
|
|
328
|
-
label: "
|
|
323
|
+
r(l, {
|
|
324
|
+
label: "页面路由",
|
|
329
325
|
prop: "route"
|
|
330
326
|
}, {
|
|
331
|
-
default:
|
|
332
|
-
|
|
327
|
+
default: y(() => [
|
|
328
|
+
r(o, {
|
|
333
329
|
modelValue: e.pageSettingState.currentPageData.route,
|
|
334
|
-
"onUpdate:modelValue": t[4] || (t[4] = (
|
|
330
|
+
"onUpdate:modelValue": t[4] || (t[4] = (f) => e.pageSettingState.currentPageData.route = f),
|
|
335
331
|
placeholder: "请设置路由"
|
|
336
|
-
},
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
R("div", Gt, [
|
|
343
|
-
s(i, {
|
|
344
|
-
class: "icon",
|
|
345
|
-
name: "text-page-link"
|
|
346
|
-
}),
|
|
347
|
-
e.pageSettingState.currentPageData.route ? (N(), J("span", At, [
|
|
348
|
-
t[8] || (t[8] = R("span", { class: "text" }, "website.com/", -1)),
|
|
349
|
-
R("span", Ut, _e(e.currentRoute), 1)
|
|
350
|
-
])) : (N(), J("span", Rt, "路由将以website.com开头"))
|
|
332
|
+
}, null, 8, ["modelValue"]),
|
|
333
|
+
V("div", xt, [
|
|
334
|
+
e.pageSettingState.currentPageData.route ? (N(), J("span", Vt, [
|
|
335
|
+
t[7] || (t[7] = V("span", { class: "text" }, "website.com/", -1)),
|
|
336
|
+
V("span", Gt, _e(e.currentRoute), 1)
|
|
337
|
+
])) : (N(), J("span", Et, "路由将以website.com开头"))
|
|
351
338
|
])
|
|
352
339
|
]),
|
|
353
340
|
_: 1
|
|
@@ -355,12 +342,12 @@ function Mt(n, t, r, e, _, f) {
|
|
|
355
342
|
]),
|
|
356
343
|
_: 1
|
|
357
344
|
}, 8, ["model", "rules"]),
|
|
358
|
-
!
|
|
345
|
+
!s.isFolder && !e.pageSettingState.isNew && e.pageSettingState.currentPageData.group !== "public" ? (N(), A(P, { key: 0 })) : H("", !0)
|
|
359
346
|
]);
|
|
360
347
|
}
|
|
361
|
-
const
|
|
348
|
+
const Ue = /* @__PURE__ */ K(kt, [["render", Rt], ["__scopeId", "data-v-98016952"]]), At = {
|
|
362
349
|
components: {
|
|
363
|
-
BlockHistoryList:
|
|
350
|
+
BlockHistoryList: ze
|
|
364
351
|
},
|
|
365
352
|
props: {
|
|
366
353
|
curPageData: {
|
|
@@ -370,42 +357,42 @@ const Me = /* @__PURE__ */ K(Et, [["render", Mt], ["__scopeId", "data-v-404ee316
|
|
|
370
357
|
},
|
|
371
358
|
emits: ["restorePage"],
|
|
372
359
|
setup(n, { emit: t }) {
|
|
373
|
-
const { pageSettingState:
|
|
374
|
-
const { id:
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
}),
|
|
379
|
-
}) :
|
|
360
|
+
const { pageSettingState: s } = L(), { getDateFromNow: e } = qe(), { confirm: _ } = Q(), m = U([]), a = (g) => {
|
|
361
|
+
const { id: u, version: P } = Je().useInfo(), f = P ? `&app=${u}&version=${P}` : "";
|
|
362
|
+
g ? Ae(g + f).then((D) => {
|
|
363
|
+
D && (D.forEach((S) => {
|
|
364
|
+
S.backupTitle = S.message, S.backupTime = e(new Date(S.time));
|
|
365
|
+
}), m.value = D.reverse());
|
|
366
|
+
}) : m.value = [];
|
|
380
367
|
};
|
|
381
368
|
return Y(() => {
|
|
382
|
-
var
|
|
383
|
-
const
|
|
384
|
-
a(
|
|
369
|
+
var u;
|
|
370
|
+
const g = ((u = s.currentPageData) == null ? void 0 : u.id) || "";
|
|
371
|
+
a(g);
|
|
385
372
|
}), {
|
|
386
|
-
list:
|
|
387
|
-
previewHistory: (
|
|
388
|
-
var
|
|
389
|
-
|
|
390
|
-
id:
|
|
391
|
-
history:
|
|
392
|
-
framework: (
|
|
393
|
-
platform: (
|
|
373
|
+
list: m,
|
|
374
|
+
previewHistory: (g) => {
|
|
375
|
+
var u, P;
|
|
376
|
+
g && pt({
|
|
377
|
+
id: g.page,
|
|
378
|
+
history: g.id,
|
|
379
|
+
framework: (u = be("engine.config")) == null ? void 0 : u.dslMode,
|
|
380
|
+
platform: (P = be("engine.config")) == null ? void 0 : P.platformId
|
|
394
381
|
});
|
|
395
382
|
},
|
|
396
|
-
restoreHistory: (
|
|
383
|
+
restoreHistory: (g) => {
|
|
397
384
|
_({
|
|
398
385
|
title: "提示",
|
|
399
386
|
message: "您即将还原历史页面,是否继续还原?",
|
|
400
387
|
exec: () => {
|
|
401
|
-
t("restorePage",
|
|
388
|
+
t("restorePage", g);
|
|
402
389
|
}
|
|
403
390
|
});
|
|
404
391
|
}
|
|
405
392
|
};
|
|
406
393
|
}
|
|
407
394
|
};
|
|
408
|
-
function
|
|
395
|
+
function Ut(n, t, s, e, _, m) {
|
|
409
396
|
const a = c("block-history-list");
|
|
410
397
|
return N(), A(a, {
|
|
411
398
|
history: e.list,
|
|
@@ -413,20 +400,17 @@ function Lt(n, t, r, e, _, f) {
|
|
|
413
400
|
onRestore: e.restoreHistory
|
|
414
401
|
}, null, 8, ["history", "onPreview", "onRestore"]);
|
|
415
402
|
}
|
|
416
|
-
const
|
|
417
|
-
const
|
|
403
|
+
const Mt = /* @__PURE__ */ K(At, [["render", Ut]]);
|
|
404
|
+
const Ht = {
|
|
418
405
|
components: {
|
|
419
|
-
MetaCodeEditor:
|
|
420
|
-
|
|
421
|
-
TinyFormItem: Ee,
|
|
422
|
-
TinySwitch: ot,
|
|
423
|
-
TinyAlert: st
|
|
406
|
+
MetaCodeEditor: Qe,
|
|
407
|
+
TinyCheckbox: xe
|
|
424
408
|
},
|
|
425
409
|
setup() {
|
|
426
|
-
const n = U(""), t = U(""), { pageSettingState:
|
|
410
|
+
const n = U(""), t = U(""), { pageSettingState: s } = L(), e = re(() => s.currentPageData);
|
|
427
411
|
return Y(() => {
|
|
428
412
|
var l, o;
|
|
429
|
-
n.value = ((l =
|
|
413
|
+
n.value = ((l = s.currentPageData.page_content) == null ? void 0 : l.inputs) || "", t.value = ((o = s.currentPageData.page_content) == null ? void 0 : o.outputs) || "";
|
|
430
414
|
}), {
|
|
431
415
|
inputValue: n,
|
|
432
416
|
outputValue: t,
|
|
@@ -435,7 +419,7 @@ const jt = {
|
|
|
435
419
|
const o = JSON.parse(l.content);
|
|
436
420
|
n.value = l.content, e.value.page_content.inputs = o;
|
|
437
421
|
} catch (o) {
|
|
438
|
-
|
|
422
|
+
R({
|
|
439
423
|
title: "输入配置保存失败(必须符合JSON格式)",
|
|
440
424
|
message: `${(o == null ? void 0 : o.message) || o}`,
|
|
441
425
|
type: "error"
|
|
@@ -447,87 +431,73 @@ const jt = {
|
|
|
447
431
|
const o = JSON.parse(l.content);
|
|
448
432
|
t.value = l.content, e.value.page_content.outputs = o;
|
|
449
433
|
} catch (o) {
|
|
450
|
-
|
|
434
|
+
R({
|
|
451
435
|
title: "输出配置保存失败(必须符合JSON格式)",
|
|
452
436
|
message: `${(o == null ? void 0 : o.message) || o}`,
|
|
453
437
|
type: "error"
|
|
454
438
|
});
|
|
455
439
|
}
|
|
456
440
|
},
|
|
457
|
-
pageSettingState:
|
|
441
|
+
pageSettingState: s,
|
|
458
442
|
hasContent: (l) => Array.isArray(l) && l.length > 0 || typeof l == "object" && Object.keys(l).length > 0
|
|
459
443
|
};
|
|
460
444
|
}
|
|
461
|
-
},
|
|
462
|
-
function
|
|
463
|
-
const a = c("
|
|
464
|
-
return N(), J("div",
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
class: "input-output-form"
|
|
445
|
+
}, Lt = { class: "input-or-output" };
|
|
446
|
+
function Bt(n, t, s, e, _, m) {
|
|
447
|
+
const a = c("svg-icon"), l = c("meta-code-editor"), o = c("tiny-checkbox");
|
|
448
|
+
return N(), J("div", Lt, [
|
|
449
|
+
r(l, {
|
|
450
|
+
modelValue: e.inputValue,
|
|
451
|
+
title: "输入配置",
|
|
452
|
+
"button-text": "输入配置",
|
|
453
|
+
language: "json",
|
|
454
|
+
buttonShowContent: e.hasContent(e.inputValue),
|
|
455
|
+
single: "",
|
|
456
|
+
onSave: e.saveInputValue
|
|
474
457
|
}, {
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
}, {
|
|
480
|
-
default: P(() => [
|
|
481
|
-
s(l, {
|
|
482
|
-
modelValue: e.inputValue,
|
|
483
|
-
title: "输入配置",
|
|
484
|
-
"button-text": "输入配置",
|
|
485
|
-
language: "json",
|
|
486
|
-
buttonShowContent: e.hasContent(e.inputValue),
|
|
487
|
-
single: "",
|
|
488
|
-
onSave: e.saveInputValue
|
|
489
|
-
}, null, 8, ["modelValue", "buttonShowContent", "onSave"])
|
|
490
|
-
]),
|
|
491
|
-
_: 1
|
|
492
|
-
}),
|
|
493
|
-
s(o, {
|
|
494
|
-
label: "输出配置",
|
|
495
|
-
class: "item-wrap"
|
|
496
|
-
}, {
|
|
497
|
-
default: P(() => [
|
|
498
|
-
s(l, {
|
|
499
|
-
modelValue: e.outputValue,
|
|
500
|
-
title: "输出配置",
|
|
501
|
-
"button-text": "输出配置",
|
|
502
|
-
language: "json",
|
|
503
|
-
buttonShowContent: e.hasContent(e.outputValue),
|
|
504
|
-
single: "",
|
|
505
|
-
onSave: e.saveOutputValue
|
|
506
|
-
}, null, 8, ["modelValue", "buttonShowContent", "onSave"])
|
|
507
|
-
]),
|
|
508
|
-
_: 1
|
|
509
|
-
}),
|
|
510
|
-
s(o, {
|
|
511
|
-
label: "根元素设置",
|
|
512
|
-
class: "page-root-form-item"
|
|
513
|
-
}, {
|
|
514
|
-
default: P(() => [
|
|
515
|
-
s(p, {
|
|
516
|
-
modelValue: e.pageSettingState.currentPageData.isBody,
|
|
517
|
-
"onUpdate:modelValue": t[0] || (t[0] = (S) => e.pageSettingState.currentPageData.isBody = S)
|
|
518
|
-
}, null, 8, ["modelValue"]),
|
|
519
|
-
t[1] || (t[1] = R("p", { class: "page-root-tips" }, "设置根元素为Body,默认为div", -1))
|
|
520
|
-
]),
|
|
521
|
-
_: 1
|
|
458
|
+
icon: y(() => [
|
|
459
|
+
r(a, {
|
|
460
|
+
class: "edit-btn-icon",
|
|
461
|
+
name: "to-edit"
|
|
522
462
|
})
|
|
523
463
|
]),
|
|
524
464
|
_: 1
|
|
525
|
-
})
|
|
465
|
+
}, 8, ["modelValue", "buttonShowContent", "onSave"]),
|
|
466
|
+
t[2] || (t[2] = V("div", { class: "input-output-tips" }, "传递给页面的参数(类似组件的输入属性)", -1)),
|
|
467
|
+
r(l, {
|
|
468
|
+
modelValue: e.outputValue,
|
|
469
|
+
title: "输出配置",
|
|
470
|
+
"button-text": "输出配置",
|
|
471
|
+
language: "json",
|
|
472
|
+
buttonShowContent: e.hasContent(e.outputValue),
|
|
473
|
+
single: "",
|
|
474
|
+
onSave: e.saveOutputValue
|
|
475
|
+
}, {
|
|
476
|
+
icon: y(() => [
|
|
477
|
+
r(a, {
|
|
478
|
+
class: "edit-btn-icon",
|
|
479
|
+
name: "to-edit"
|
|
480
|
+
})
|
|
481
|
+
]),
|
|
482
|
+
_: 1
|
|
483
|
+
}, 8, ["modelValue", "buttonShowContent", "onSave"]),
|
|
484
|
+
t[3] || (t[3] = V("div", { class: "input-output-div" }, "页面传递出的事件(类似组件触发的输出事件)", -1)),
|
|
485
|
+
r(o, {
|
|
486
|
+
class: "selectHome",
|
|
487
|
+
modelValue: e.pageSettingState.currentPageData.isBody,
|
|
488
|
+
"onUpdate:modelValue": t[0] || (t[0] = (g) => e.pageSettingState.currentPageData.isBody = g)
|
|
489
|
+
}, {
|
|
490
|
+
default: y(() => t[1] || (t[1] = [
|
|
491
|
+
V("span", null, "设为根元素为Body", -1)
|
|
492
|
+
])),
|
|
493
|
+
_: 1
|
|
494
|
+
}, 8, ["modelValue"]),
|
|
495
|
+
t[4] || (t[4] = V("div", { class: "input-output-div" }, "默认为div", -1))
|
|
526
496
|
]);
|
|
527
497
|
}
|
|
528
|
-
const
|
|
529
|
-
COMPONENT_NAME:
|
|
530
|
-
} =
|
|
498
|
+
const jt = /* @__PURE__ */ K(Ht, [["render", Bt], ["__scopeId", "data-v-9ba45379"]]), {
|
|
499
|
+
COMPONENT_NAME: qt
|
|
500
|
+
} = Ge, De = U(!1), se = () => {
|
|
531
501
|
De.value = !0;
|
|
532
502
|
}, q = () => {
|
|
533
503
|
De.value = !1;
|
|
@@ -540,18 +510,18 @@ const Kt = /* @__PURE__ */ K(jt, [["render", Jt], ["__scopeId", "data-v-f6322c01
|
|
|
540
510
|
inputOutput: "inputOutput",
|
|
541
511
|
lifeCycles: "lifeCycles",
|
|
542
512
|
history: "history"
|
|
543
|
-
},
|
|
513
|
+
}, Jt = {
|
|
544
514
|
components: {
|
|
545
|
-
TinyButton:
|
|
546
|
-
TinyCollapse:
|
|
515
|
+
TinyButton: Ve,
|
|
516
|
+
TinyCollapse: fe,
|
|
547
517
|
TinyCollapseItem: ye,
|
|
548
|
-
PageInputOutput:
|
|
549
|
-
LifeCycles:
|
|
550
|
-
PageGeneral:
|
|
551
|
-
PageHistory:
|
|
552
|
-
PluginSetting:
|
|
553
|
-
SvgButton:
|
|
554
|
-
ButtonGroup:
|
|
518
|
+
PageInputOutput: jt,
|
|
519
|
+
LifeCycles: Ye,
|
|
520
|
+
PageGeneral: Ue,
|
|
521
|
+
PageHistory: Mt,
|
|
522
|
+
PluginSetting: ke,
|
|
523
|
+
SvgButton: Pe,
|
|
524
|
+
ButtonGroup: we
|
|
555
525
|
},
|
|
556
526
|
props: {
|
|
557
527
|
isFolder: {
|
|
@@ -564,29 +534,29 @@ const Kt = /* @__PURE__ */ K(jt, [["render", Jt], ["__scopeId", "data-v-f6322c01
|
|
|
564
534
|
emit: t
|
|
565
535
|
}) {
|
|
566
536
|
const {
|
|
567
|
-
requestCreatePage:
|
|
537
|
+
requestCreatePage: s,
|
|
568
538
|
requestDeletePage: e
|
|
569
|
-
} =
|
|
539
|
+
} = ie, {
|
|
570
540
|
appInfoState: _
|
|
571
541
|
} = le(), {
|
|
572
|
-
DEFAULT_PAGE:
|
|
542
|
+
DEFAULT_PAGE: m,
|
|
573
543
|
pageSettingState: a,
|
|
574
544
|
changeTreeData: l,
|
|
575
545
|
isCurrentDataSame: o,
|
|
576
|
-
initCurrentPageData:
|
|
577
|
-
isTemporaryPage:
|
|
578
|
-
STATIC_PAGE_GROUP_ID:
|
|
546
|
+
initCurrentPageData: g,
|
|
547
|
+
isTemporaryPage: u,
|
|
548
|
+
STATIC_PAGE_GROUP_ID: P
|
|
579
549
|
} = L(), {
|
|
580
|
-
pageState:
|
|
581
|
-
initData:
|
|
582
|
-
} =
|
|
583
|
-
confirm:
|
|
584
|
-
} = Q(),
|
|
550
|
+
pageState: f,
|
|
551
|
+
initData: D
|
|
552
|
+
} = me(), {
|
|
553
|
+
confirm: S
|
|
554
|
+
} = Q(), p = U(null), h = z({
|
|
585
555
|
activeName: Object.values(Oe),
|
|
586
556
|
title: "页面设置",
|
|
587
557
|
historyMessage: ""
|
|
588
|
-
}),
|
|
589
|
-
|
|
558
|
+
}), G = () => {
|
|
559
|
+
ce(a.currentPageData, a.currentPageDataCopy) ? q() : S({
|
|
590
560
|
title: "提示",
|
|
591
561
|
message: "您即将使用未保存的更改关闭此页。是否要在关闭之前放弃这些更改?",
|
|
592
562
|
exec: () => {
|
|
@@ -596,73 +566,73 @@ const Kt = /* @__PURE__ */ K(jt, [["render", Jt], ["__scopeId", "data-v-f6322c01
|
|
|
596
566
|
}, F = () => {
|
|
597
567
|
const {
|
|
598
568
|
page_content: C,
|
|
599
|
-
...
|
|
600
|
-
} =
|
|
601
|
-
page_content:
|
|
602
|
-
...
|
|
569
|
+
...v
|
|
570
|
+
} = m, {
|
|
571
|
+
page_content: I,
|
|
572
|
+
...k
|
|
603
573
|
} = a.currentPageData, x = {
|
|
604
|
-
...
|
|
605
|
-
...
|
|
574
|
+
...v,
|
|
575
|
+
...k,
|
|
606
576
|
page_content: {
|
|
607
577
|
...C,
|
|
608
|
-
...
|
|
578
|
+
...I,
|
|
609
579
|
fileName: a.currentPageData.name
|
|
610
580
|
},
|
|
611
581
|
app: _.selectedId,
|
|
612
582
|
isPage: !0
|
|
613
583
|
};
|
|
614
|
-
x.id && (delete x.id, delete x._id),
|
|
615
|
-
a.updateTreeData(), a.isNew = !1,
|
|
584
|
+
x.id && (delete x.id, delete x._id), s(x).then((i) => {
|
|
585
|
+
a.updateTreeData(), a.isNew = !1, u.saved = !1, t("openNewPage", i), q(), oe().closePlugin(), R({
|
|
616
586
|
type: "success",
|
|
617
587
|
message: "新建页面成功!"
|
|
618
|
-
}),
|
|
619
|
-
}).catch((
|
|
620
|
-
|
|
588
|
+
}), Re && lt(i);
|
|
589
|
+
}).catch((i) => {
|
|
590
|
+
R({
|
|
621
591
|
type: "error",
|
|
622
592
|
title: "新建页面失败",
|
|
623
|
-
message: JSON.stringify((
|
|
593
|
+
message: JSON.stringify((i == null ? void 0 : i.message) || i)
|
|
624
594
|
});
|
|
625
595
|
});
|
|
626
|
-
}, Z = (C,
|
|
627
|
-
const
|
|
628
|
-
return
|
|
596
|
+
}, Z = (C, v) => {
|
|
597
|
+
const I = a.currentPageDataCopy.route !== a.currentPageData.route;
|
|
598
|
+
return st(C, v, I);
|
|
629
599
|
}, X = (C) => {
|
|
630
|
-
C.id = C.page, ["page", "backupTime", "backupTitle", "time"].forEach((
|
|
631
|
-
const
|
|
600
|
+
C.id = C.page, ["page", "backupTime", "backupTitle", "time"].forEach((k) => delete C[k]);
|
|
601
|
+
const I = {
|
|
632
602
|
...a.currentPageData,
|
|
633
603
|
...C,
|
|
634
604
|
message: "还原页面"
|
|
635
605
|
};
|
|
636
|
-
Z(C.id,
|
|
606
|
+
Z(C.id, I).then((k) => {
|
|
637
607
|
var x;
|
|
638
|
-
((x =
|
|
608
|
+
((x = f == null ? void 0 : f.currentPage) == null ? void 0 : x.id) === (k == null ? void 0 : k.id) && D(k.page_content, k);
|
|
639
609
|
});
|
|
640
610
|
}, W = async () => {
|
|
641
611
|
const {
|
|
642
612
|
id: C,
|
|
643
|
-
name:
|
|
644
|
-
page_content:
|
|
645
|
-
} = a.currentPageData,
|
|
613
|
+
name: v,
|
|
614
|
+
page_content: I
|
|
615
|
+
} = a.currentPageData, k = {
|
|
646
616
|
...a.currentPageData,
|
|
647
617
|
page_content: {
|
|
648
|
-
...
|
|
649
|
-
fileName:
|
|
618
|
+
...I,
|
|
619
|
+
fileName: v
|
|
650
620
|
}
|
|
651
|
-
}, x = await Z(C,
|
|
652
|
-
|
|
653
|
-
},
|
|
621
|
+
}, x = await Z(C, k);
|
|
622
|
+
g(x);
|
|
623
|
+
}, ge = (C) => {
|
|
654
624
|
if (!C)
|
|
655
625
|
return;
|
|
656
|
-
const
|
|
657
|
-
|
|
658
|
-
...
|
|
626
|
+
const v = a.currentPageData.page_content;
|
|
627
|
+
v.lifeCycles = {
|
|
628
|
+
...v.lifeCycles || {},
|
|
659
629
|
...C
|
|
660
630
|
};
|
|
661
631
|
}, $ = () => {
|
|
662
|
-
const C = a.currentPageData,
|
|
663
|
-
a.isNew = !0,
|
|
664
|
-
},
|
|
665
|
-
o() ? $() :
|
|
632
|
+
const C = a.currentPageData, v = ne(!0, {}, C);
|
|
633
|
+
a.isNew = !0, v.name = `${v.name}Copy`, v.route = `${v.route}Copy`, a.currentPageData = v, a.currentPageDataCopy = ne(!0, {}, v);
|
|
634
|
+
}, pe = () => {
|
|
635
|
+
o() ? $() : S({
|
|
666
636
|
title: "提示",
|
|
667
637
|
message: "您即将复制的页面有更改未保存,是否确定跳过更改直接复制?",
|
|
668
638
|
exec: () => {
|
|
@@ -670,66 +640,66 @@ const Kt = /* @__PURE__ */ K(jt, [["render", Jt], ["__scopeId", "data-v-f6322c01
|
|
|
670
640
|
}
|
|
671
641
|
});
|
|
672
642
|
}, ee = () => {
|
|
673
|
-
|
|
643
|
+
S({
|
|
674
644
|
title: "创建历史备份信息",
|
|
675
645
|
status: "custom",
|
|
676
646
|
message: {
|
|
677
|
-
render: () =>
|
|
647
|
+
render: () => r(Ee, {
|
|
678
648
|
placeholder: "历史备份信息",
|
|
679
|
-
modelValue:
|
|
680
|
-
"onUpdate:modelValue": (x) =>
|
|
649
|
+
modelValue: h.historyMessage,
|
|
650
|
+
"onUpdate:modelValue": (x) => h.historyMessage = x
|
|
681
651
|
}, null)
|
|
682
652
|
},
|
|
683
653
|
exec: () => {
|
|
684
|
-
a.currentPageData.message =
|
|
654
|
+
a.currentPageData.message = h.historyMessage.trim() || "Page auto save", a.isNew ? F() : W(), h.historyMessage = "";
|
|
685
655
|
}
|
|
686
656
|
});
|
|
687
|
-
},
|
|
688
|
-
|
|
657
|
+
}, ue = () => {
|
|
658
|
+
p.value.validGeneralForm().then(ee);
|
|
689
659
|
}, te = (C = []) => {
|
|
690
660
|
if (!Array.isArray(C))
|
|
691
661
|
return [];
|
|
692
|
-
const
|
|
693
|
-
return C.forEach((
|
|
694
|
-
var
|
|
695
|
-
if (
|
|
696
|
-
|
|
662
|
+
const v = [];
|
|
663
|
+
return C.forEach((I) => {
|
|
664
|
+
var k;
|
|
665
|
+
if (I != null && I.isPage) {
|
|
666
|
+
v.push(I);
|
|
697
667
|
return;
|
|
698
668
|
}
|
|
699
|
-
!(
|
|
700
|
-
}),
|
|
669
|
+
!(I != null && I.isPage) && ((k = I == null ? void 0 : I.children) != null && k.length) && v.push(...te(I.children));
|
|
670
|
+
}), v;
|
|
701
671
|
};
|
|
702
672
|
return {
|
|
703
|
-
state:
|
|
673
|
+
state: h,
|
|
704
674
|
isShow: De,
|
|
705
|
-
savePageSetting:
|
|
706
|
-
copyPage:
|
|
675
|
+
savePageSetting: ue,
|
|
676
|
+
copyPage: pe,
|
|
707
677
|
pageSettingState: a,
|
|
708
|
-
pageGeneralRef:
|
|
678
|
+
pageGeneralRef: p,
|
|
709
679
|
deletePage: () => {
|
|
710
|
-
|
|
680
|
+
S({
|
|
711
681
|
title: "提示",
|
|
712
682
|
message: "您是否要删除页面?",
|
|
713
683
|
exec: () => {
|
|
714
|
-
var
|
|
715
|
-
const C = ((
|
|
684
|
+
var v;
|
|
685
|
+
const C = ((v = a.currentPageData) == null ? void 0 : v.id) || "";
|
|
716
686
|
e(C).then(() => {
|
|
717
|
-
a.updateTreeData().then((
|
|
687
|
+
a.updateTreeData().then((I) => {
|
|
718
688
|
var T, O;
|
|
719
|
-
if (((T =
|
|
689
|
+
if (((T = f == null ? void 0 : f.currentPage) == null ? void 0 : T.id) !== C)
|
|
720
690
|
return;
|
|
721
|
-
const
|
|
722
|
-
groupId:
|
|
723
|
-
}) =>
|
|
724
|
-
componentName:
|
|
691
|
+
const k = ((O = (I || []).find(({
|
|
692
|
+
groupId: w
|
|
693
|
+
}) => w === P)) == null ? void 0 : O.data) || [], x = te(k), i = x.find((w) => w.isHome), d = x == null ? void 0 : x[0], b = {
|
|
694
|
+
componentName: qt.Page
|
|
725
695
|
};
|
|
726
|
-
t("openNewPage",
|
|
727
|
-
}), q(),
|
|
696
|
+
t("openNewPage", i || d || b);
|
|
697
|
+
}), q(), R({
|
|
728
698
|
message: "删除页面成功!",
|
|
729
699
|
type: "success"
|
|
730
700
|
});
|
|
731
701
|
}).catch(() => {
|
|
732
|
-
|
|
702
|
+
R({
|
|
733
703
|
message: "删除页面失败!",
|
|
734
704
|
type: "error"
|
|
735
705
|
});
|
|
@@ -737,111 +707,113 @@ const Kt = /* @__PURE__ */ K(jt, [["render", Jt], ["__scopeId", "data-v-f6322c01
|
|
|
737
707
|
}
|
|
738
708
|
});
|
|
739
709
|
},
|
|
740
|
-
cancelPageSetting:
|
|
710
|
+
cancelPageSetting: G,
|
|
741
711
|
closePageSettingPanel: q,
|
|
742
|
-
updatePageLifeCycles:
|
|
712
|
+
updatePageLifeCycles: ge,
|
|
743
713
|
restorePage: X,
|
|
744
714
|
PAGE_SETTING_SESSION: Oe
|
|
745
715
|
};
|
|
746
716
|
}
|
|
747
717
|
};
|
|
748
|
-
const
|
|
749
|
-
function
|
|
750
|
-
const a = c("tiny-button"), l = c("svg-button"), o = c("button-group"),
|
|
751
|
-
return e.isShow ? (N(), A(
|
|
718
|
+
const Kt = { class: "page-setting-content" }, Xt = { class: "life-cycles-container" };
|
|
719
|
+
function Wt(n, t, s, e, _, m) {
|
|
720
|
+
const a = c("tiny-button"), l = c("svg-button"), o = c("button-group"), g = c("page-general"), u = c("tiny-collapse-item"), P = c("page-input-output"), f = c("life-cycles"), D = c("page-history"), S = c("tiny-collapse"), p = c("plugin-setting");
|
|
721
|
+
return e.isShow ? (N(), A(p, {
|
|
752
722
|
key: 0,
|
|
753
723
|
title: e.state.title,
|
|
754
724
|
class: "page-plugin-setting"
|
|
755
725
|
}, {
|
|
756
|
-
header:
|
|
757
|
-
|
|
758
|
-
default:
|
|
759
|
-
|
|
726
|
+
header: y(() => [
|
|
727
|
+
r(o, null, {
|
|
728
|
+
default: y(() => [
|
|
729
|
+
r(a, {
|
|
760
730
|
type: "primary",
|
|
761
731
|
onClick: e.savePageSetting
|
|
762
732
|
}, {
|
|
763
|
-
default:
|
|
733
|
+
default: y(() => t[1] || (t[1] = [
|
|
764
734
|
ae("保存")
|
|
765
735
|
])),
|
|
766
736
|
_: 1
|
|
767
737
|
}, 8, ["onClick"]),
|
|
768
738
|
e.pageSettingState.isNew ? H("", !0) : (N(), A(l, {
|
|
769
739
|
key: 0,
|
|
770
|
-
name: "delete",
|
|
771
|
-
tips: "删除页面",
|
|
772
|
-
onClick: e.deletePage
|
|
773
|
-
}, null, 8, ["onClick"])),
|
|
774
|
-
e.pageSettingState.isNew ? H("", !0) : (N(), A(l, {
|
|
775
|
-
key: 1,
|
|
776
740
|
name: "text-copy-page",
|
|
777
741
|
placement: "bottom",
|
|
778
742
|
tips: "复制页面",
|
|
779
743
|
onClick: e.copyPage
|
|
780
|
-
}, null, 8, ["onClick"]))
|
|
744
|
+
}, null, 8, ["onClick"])),
|
|
745
|
+
e.pageSettingState.isNew ? H("", !0) : (N(), A(l, {
|
|
746
|
+
key: 1,
|
|
747
|
+
name: "delete",
|
|
748
|
+
tips: "删除页面",
|
|
749
|
+
onClick: e.deletePage
|
|
750
|
+
}, null, 8, ["onClick"])),
|
|
751
|
+
r(l, {
|
|
752
|
+
class: "close-plugin-setting-icon",
|
|
753
|
+
name: "close",
|
|
754
|
+
onClick: e.cancelPageSetting
|
|
755
|
+
}, null, 8, ["onClick"])
|
|
781
756
|
]),
|
|
782
757
|
_: 1
|
|
783
|
-
})
|
|
784
|
-
s(l, {
|
|
785
|
-
class: "close-plugin-setting-icon",
|
|
786
|
-
name: "close",
|
|
787
|
-
onClick: e.cancelPageSetting
|
|
788
|
-
}, null, 8, ["onClick"])
|
|
758
|
+
})
|
|
789
759
|
]),
|
|
790
|
-
content:
|
|
791
|
-
|
|
792
|
-
|
|
760
|
+
content: y(() => [
|
|
761
|
+
V("div", Kt, [
|
|
762
|
+
r(S, {
|
|
793
763
|
modelValue: e.state.activeName,
|
|
794
|
-
"onUpdate:modelValue": t[0] || (t[0] = (
|
|
764
|
+
"onUpdate:modelValue": t[0] || (t[0] = (h) => e.state.activeName = h),
|
|
795
765
|
class: "page-setting-collapse"
|
|
796
766
|
}, {
|
|
797
|
-
default:
|
|
798
|
-
|
|
767
|
+
default: y(() => [
|
|
768
|
+
r(u, {
|
|
799
769
|
title: "基本设置",
|
|
800
770
|
name: e.PAGE_SETTING_SESSION.general
|
|
801
771
|
}, {
|
|
802
|
-
default:
|
|
803
|
-
|
|
772
|
+
default: y(() => [
|
|
773
|
+
r(g, {
|
|
804
774
|
ref: "pageGeneralRef",
|
|
805
|
-
isFolder:
|
|
775
|
+
isFolder: s.isFolder
|
|
806
776
|
}, null, 8, ["isFolder"])
|
|
807
777
|
]),
|
|
808
778
|
_: 1
|
|
809
779
|
}, 8, ["name"]),
|
|
810
|
-
e.pageSettingState.currentPageData.group !== "public" ? (N(), A(
|
|
780
|
+
e.pageSettingState.currentPageData.group !== "public" ? (N(), A(u, {
|
|
811
781
|
key: 0,
|
|
812
782
|
class: "base-setting",
|
|
813
783
|
title: "输入输出",
|
|
814
784
|
name: e.PAGE_SETTING_SESSION.inputOutput
|
|
815
785
|
}, {
|
|
816
|
-
default:
|
|
817
|
-
|
|
786
|
+
default: y(() => [
|
|
787
|
+
r(P)
|
|
818
788
|
]),
|
|
819
789
|
_: 1
|
|
820
790
|
}, 8, ["name"])) : H("", !0),
|
|
821
|
-
e.pageSettingState.currentPageData.group !== "public" ? (N(), A(
|
|
791
|
+
e.pageSettingState.currentPageData.group !== "public" ? (N(), A(u, {
|
|
822
792
|
key: 1,
|
|
823
793
|
class: "input-output",
|
|
824
794
|
title: "页面生命周期配置",
|
|
825
795
|
name: e.PAGE_SETTING_SESSION.lifeCycles
|
|
826
796
|
}, {
|
|
827
|
-
default:
|
|
828
|
-
var
|
|
797
|
+
default: y(() => {
|
|
798
|
+
var h;
|
|
829
799
|
return [
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
800
|
+
V("div", Xt, [
|
|
801
|
+
r(f, {
|
|
802
|
+
bindLifeCycles: (h = e.pageSettingState.currentPageData.page_content) == null ? void 0 : h.lifeCycles,
|
|
803
|
+
onUpdatePageLifeCycles: e.updatePageLifeCycles
|
|
804
|
+
}, null, 8, ["bindLifeCycles", "onUpdatePageLifeCycles"])
|
|
805
|
+
])
|
|
834
806
|
];
|
|
835
807
|
}),
|
|
836
808
|
_: 1
|
|
837
809
|
}, 8, ["name"])) : H("", !0),
|
|
838
|
-
|
|
810
|
+
r(u, {
|
|
839
811
|
class: "history-source",
|
|
840
812
|
title: "历史备份",
|
|
841
813
|
name: e.PAGE_SETTING_SESSION.history
|
|
842
814
|
}, {
|
|
843
|
-
default:
|
|
844
|
-
|
|
815
|
+
default: y(() => [
|
|
816
|
+
r(D, { onRestorePage: e.restorePage }, null, 8, ["onRestorePage"])
|
|
845
817
|
]),
|
|
846
818
|
_: 1
|
|
847
819
|
}, 8, ["name"])
|
|
@@ -853,7 +825,7 @@ function Qt(n, t, r, e, _, f) {
|
|
|
853
825
|
_: 1
|
|
854
826
|
}, 8, ["title"])) : H("", !0);
|
|
855
827
|
}
|
|
856
|
-
const
|
|
828
|
+
const zt = /* @__PURE__ */ K(Jt, [["render", Wt], ["__scopeId", "data-v-988bf056"]]);
|
|
857
829
|
let he = U(!1);
|
|
858
830
|
const Fe = () => {
|
|
859
831
|
he.value = !0;
|
|
@@ -861,15 +833,15 @@ const Fe = () => {
|
|
|
861
833
|
he.value = !1;
|
|
862
834
|
const { resetPageData: n } = L();
|
|
863
835
|
n();
|
|
864
|
-
},
|
|
836
|
+
}, Qt = {
|
|
865
837
|
components: {
|
|
866
|
-
TinyButton:
|
|
867
|
-
TinyCollapse:
|
|
838
|
+
TinyButton: Ve,
|
|
839
|
+
TinyCollapse: fe,
|
|
868
840
|
TinyCollapseItem: ye,
|
|
869
|
-
PluginSetting:
|
|
870
|
-
PageGeneral:
|
|
871
|
-
SvgButton:
|
|
872
|
-
ButtonGroup:
|
|
841
|
+
PluginSetting: ke,
|
|
842
|
+
PageGeneral: Ue,
|
|
843
|
+
SvgButton: Pe,
|
|
844
|
+
ButtonGroup: we
|
|
873
845
|
},
|
|
874
846
|
props: {
|
|
875
847
|
isFolder: {
|
|
@@ -881,57 +853,57 @@ const Fe = () => {
|
|
|
881
853
|
const n = z({
|
|
882
854
|
activeName: ["folderGeneralRef"],
|
|
883
855
|
title: "文件夹设置"
|
|
884
|
-
}), t = U(null), { requestCreatePage:
|
|
885
|
-
|
|
856
|
+
}), t = U(null), { requestCreatePage: s, requestUpdatePage: e, requestDeletePage: _ } = ie, { appInfoState: m } = le(), { pageSettingState: a, changeTreeData: l } = L(), { confirm: o } = Q(), g = () => {
|
|
857
|
+
ce(a.currentPageData, a.currentPageDataCopy) ? M() : o({
|
|
886
858
|
title: "提示",
|
|
887
859
|
message: "您即将使用未保存的更改关闭此页。是否要在关闭之前放弃这些更改?",
|
|
888
860
|
exec: () => {
|
|
889
861
|
a.isNew || (l(a.oldParentId, a.currentPageData.parentId), Object.assign(a.currentPageData, a.currentPageDataCopy)), M();
|
|
890
862
|
}
|
|
891
863
|
});
|
|
892
|
-
},
|
|
893
|
-
const
|
|
864
|
+
}, u = () => {
|
|
865
|
+
const p = {
|
|
894
866
|
...a.currentPageData,
|
|
895
|
-
app:
|
|
867
|
+
app: m.selectedId,
|
|
896
868
|
isPage: !1
|
|
897
869
|
};
|
|
898
|
-
|
|
899
|
-
a.updateTreeData(), a.isNew = !1, M(),
|
|
870
|
+
s(p).then(() => {
|
|
871
|
+
a.updateTreeData(), a.isNew = !1, M(), R({
|
|
900
872
|
type: "success",
|
|
901
873
|
message: "新建文件夹成功!"
|
|
902
874
|
});
|
|
903
|
-
}).catch((
|
|
904
|
-
|
|
875
|
+
}).catch((h) => {
|
|
876
|
+
R({
|
|
905
877
|
type: "error",
|
|
906
878
|
title: "新建文件夹失败",
|
|
907
|
-
message: JSON.stringify((
|
|
879
|
+
message: JSON.stringify((h == null ? void 0 : h.message) || h)
|
|
908
880
|
});
|
|
909
881
|
});
|
|
910
|
-
},
|
|
911
|
-
const { id:
|
|
912
|
-
e(
|
|
913
|
-
a.updateTreeData(), a.isNew = !1, M(),
|
|
882
|
+
}, P = () => {
|
|
883
|
+
const { id: S } = a.currentPageData;
|
|
884
|
+
e(S, { ...a.currentPageData, page_content: null }).then(() => {
|
|
885
|
+
a.updateTreeData(), a.isNew = !1, M(), R({
|
|
914
886
|
type: "success",
|
|
915
887
|
message: "更新文件夹成功!"
|
|
916
888
|
});
|
|
917
|
-
}).catch((
|
|
918
|
-
|
|
889
|
+
}).catch((p) => {
|
|
890
|
+
R({
|
|
919
891
|
type: "error",
|
|
920
892
|
title: "更新文件夹失败",
|
|
921
|
-
message: JSON.stringify((
|
|
893
|
+
message: JSON.stringify((p == null ? void 0 : p.message) || p)
|
|
922
894
|
});
|
|
923
895
|
});
|
|
924
896
|
};
|
|
925
897
|
return {
|
|
926
898
|
saveFolderSetting: () => {
|
|
927
899
|
t.value.validGeneralForm().then(() => {
|
|
928
|
-
a.isNew ?
|
|
900
|
+
a.isNew ? u() : P();
|
|
929
901
|
});
|
|
930
902
|
},
|
|
931
|
-
deleteFolder:
|
|
932
|
-
var
|
|
933
|
-
if ((
|
|
934
|
-
|
|
903
|
+
deleteFolder: ut(5e3, !0, () => {
|
|
904
|
+
var S, p;
|
|
905
|
+
if ((p = (S = a.treeDataMapping[a.currentPageData.id]) == null ? void 0 : S.children) != null && p.length) {
|
|
906
|
+
R({
|
|
935
907
|
type: "error",
|
|
936
908
|
message: "此文件夹不是空文件夹,不能删除!"
|
|
937
909
|
});
|
|
@@ -941,15 +913,15 @@ const Fe = () => {
|
|
|
941
913
|
title: "提示",
|
|
942
914
|
message: "您是否要删除文件夹?",
|
|
943
915
|
exec: () => {
|
|
944
|
-
var
|
|
945
|
-
const
|
|
946
|
-
_(
|
|
947
|
-
a.updateTreeData(), M(),
|
|
916
|
+
var G;
|
|
917
|
+
const h = ((G = a.currentPageData) == null ? void 0 : G.id) || "";
|
|
918
|
+
_(h).then(() => {
|
|
919
|
+
a.updateTreeData(), M(), R({
|
|
948
920
|
type: "success",
|
|
949
921
|
message: "删除文件夹成功!"
|
|
950
922
|
});
|
|
951
923
|
}).catch((F) => {
|
|
952
|
-
|
|
924
|
+
R({
|
|
953
925
|
type: "success",
|
|
954
926
|
title: "删除文件夹失败!",
|
|
955
927
|
message: JSON.stringify((F == null ? void 0 : F.message) || F)
|
|
@@ -963,25 +935,25 @@ const Fe = () => {
|
|
|
963
935
|
isShow: he,
|
|
964
936
|
state: n,
|
|
965
937
|
pageSettingState: a,
|
|
966
|
-
closeFolderSetting:
|
|
938
|
+
closeFolderSetting: g
|
|
967
939
|
};
|
|
968
940
|
}
|
|
969
|
-
},
|
|
970
|
-
function
|
|
971
|
-
const a = c("tiny-button"), l = c("svg-button"), o = c("button-group"),
|
|
972
|
-
return e.isShow ? (N(), A(
|
|
941
|
+
}, Yt = { class: "page-setting-content" };
|
|
942
|
+
function Zt(n, t, s, e, _, m) {
|
|
943
|
+
const a = c("tiny-button"), l = c("svg-button"), o = c("button-group"), g = c("page-general"), u = c("tiny-collapse-item"), P = c("tiny-collapse"), f = c("plugin-setting");
|
|
944
|
+
return e.isShow ? (N(), A(f, {
|
|
973
945
|
key: 0,
|
|
974
946
|
title: e.state.title,
|
|
975
947
|
class: "pageFolder-plugin-setting"
|
|
976
948
|
}, {
|
|
977
|
-
header:
|
|
978
|
-
|
|
979
|
-
default:
|
|
980
|
-
|
|
949
|
+
header: y(() => [
|
|
950
|
+
r(o, null, {
|
|
951
|
+
default: y(() => [
|
|
952
|
+
r(a, {
|
|
981
953
|
type: "primary",
|
|
982
954
|
onClick: e.saveFolderSetting
|
|
983
955
|
}, {
|
|
984
|
-
default:
|
|
956
|
+
default: y(() => t[1] || (t[1] = [
|
|
985
957
|
ae("保存")
|
|
986
958
|
])),
|
|
987
959
|
_: 1
|
|
@@ -993,7 +965,7 @@ function ea(n, t, r, e, _, f) {
|
|
|
993
965
|
tips: "删除",
|
|
994
966
|
onClick: e.deleteFolder
|
|
995
967
|
}, null, 8, ["onClick"])),
|
|
996
|
-
|
|
968
|
+
r(l, {
|
|
997
969
|
class: "close-plugin-setting-icon",
|
|
998
970
|
name: "close",
|
|
999
971
|
onClick: e.closeFolderSetting
|
|
@@ -1002,21 +974,21 @@ function ea(n, t, r, e, _, f) {
|
|
|
1002
974
|
_: 1
|
|
1003
975
|
})
|
|
1004
976
|
]),
|
|
1005
|
-
content:
|
|
1006
|
-
|
|
1007
|
-
|
|
977
|
+
content: y(() => [
|
|
978
|
+
V("div", Yt, [
|
|
979
|
+
r(P, {
|
|
1008
980
|
modelValue: e.state.activeName,
|
|
1009
|
-
"onUpdate:modelValue": t[0] || (t[0] = (
|
|
981
|
+
"onUpdate:modelValue": t[0] || (t[0] = (D) => e.state.activeName = D)
|
|
1010
982
|
}, {
|
|
1011
|
-
default:
|
|
1012
|
-
|
|
983
|
+
default: y(() => [
|
|
984
|
+
r(u, {
|
|
1013
985
|
title: "基本设置",
|
|
1014
986
|
name: "folderGeneralRef"
|
|
1015
987
|
}, {
|
|
1016
|
-
default:
|
|
1017
|
-
|
|
988
|
+
default: y(() => [
|
|
989
|
+
r(g, {
|
|
1018
990
|
ref: "folderGeneralRef",
|
|
1019
|
-
isFolder:
|
|
991
|
+
isFolder: s.isFolder
|
|
1020
992
|
}, null, 8, ["isFolder"])
|
|
1021
993
|
]),
|
|
1022
994
|
_: 1
|
|
@@ -1029,16 +1001,17 @@ function ea(n, t, r, e, _, f) {
|
|
|
1029
1001
|
_: 1
|
|
1030
1002
|
}, 8, ["title"])) : H("", !0);
|
|
1031
1003
|
}
|
|
1032
|
-
const
|
|
1033
|
-
ELEMENT_TAG:
|
|
1034
|
-
PAGE_STATUS:
|
|
1035
|
-
COMPONENT_NAME:
|
|
1036
|
-
} =
|
|
1004
|
+
const $t = /* @__PURE__ */ K(Qt, [["render", Zt], ["__scopeId", "data-v-10a6e512"]]), {
|
|
1005
|
+
ELEMENT_TAG: ea,
|
|
1006
|
+
PAGE_STATUS: ta,
|
|
1007
|
+
COMPONENT_NAME: aa
|
|
1008
|
+
} = Ge, na = {
|
|
1037
1009
|
components: {
|
|
1038
|
-
TinySearch:
|
|
1039
|
-
TinyTree:
|
|
1040
|
-
TinyCollapse:
|
|
1041
|
-
TinyCollapseItem: ye
|
|
1010
|
+
TinySearch: nt,
|
|
1011
|
+
TinyTree: ot,
|
|
1012
|
+
TinyCollapse: fe,
|
|
1013
|
+
TinyCollapseItem: ye,
|
|
1014
|
+
TinyIconSearch: dt()
|
|
1042
1015
|
},
|
|
1043
1016
|
props: {
|
|
1044
1017
|
isFolder: {
|
|
@@ -1051,239 +1024,244 @@ const ta = /* @__PURE__ */ K(Zt, [["render", ea], ["__scopeId", "data-v-10a6e512
|
|
|
1051
1024
|
emit: t
|
|
1052
1025
|
}) {
|
|
1053
1026
|
const {
|
|
1054
|
-
appInfoState:
|
|
1027
|
+
appInfoState: s
|
|
1055
1028
|
} = le(), {
|
|
1056
1029
|
confirm: e
|
|
1057
1030
|
} = Q(), {
|
|
1058
1031
|
initData: _,
|
|
1059
|
-
pageState:
|
|
1032
|
+
pageState: m,
|
|
1060
1033
|
isBlock: a,
|
|
1061
1034
|
isSaved: l
|
|
1062
|
-
} =
|
|
1035
|
+
} = me(), {
|
|
1063
1036
|
pageSettingState: o,
|
|
1064
|
-
changeTreeData:
|
|
1065
|
-
isCurrentDataSame:
|
|
1066
|
-
STATIC_PAGE_GROUP_ID:
|
|
1067
|
-
COMMON_PAGE_GROUP_ID:
|
|
1037
|
+
changeTreeData: g,
|
|
1038
|
+
isCurrentDataSame: u,
|
|
1039
|
+
STATIC_PAGE_GROUP_ID: P,
|
|
1040
|
+
COMMON_PAGE_GROUP_ID: f
|
|
1068
1041
|
} = L(), {
|
|
1069
|
-
fetchPageList:
|
|
1070
|
-
fetchPageDetail:
|
|
1071
|
-
} =
|
|
1072
|
-
setBreadcrumbPage:
|
|
1073
|
-
} =
|
|
1042
|
+
fetchPageList: D,
|
|
1043
|
+
fetchPageDetail: S
|
|
1044
|
+
} = ie, {
|
|
1045
|
+
setBreadcrumbPage: p
|
|
1046
|
+
} = Ke(), h = U([]), G = o.ROOT_ID, F = z({
|
|
1074
1047
|
pageSearchValue: "",
|
|
1075
|
-
collapseValue: [
|
|
1048
|
+
collapseValue: [P, f],
|
|
1076
1049
|
currentNodeData: {}
|
|
1077
|
-
}), Z = (
|
|
1050
|
+
}), Z = (i, d, b) => {
|
|
1078
1051
|
const T = {
|
|
1079
|
-
[
|
|
1080
|
-
id:
|
|
1052
|
+
[G]: {
|
|
1053
|
+
id: G,
|
|
1081
1054
|
name: "站点根目录",
|
|
1082
1055
|
children: []
|
|
1083
1056
|
}
|
|
1084
1057
|
};
|
|
1085
|
-
return
|
|
1086
|
-
T[O[
|
|
1087
|
-
}),
|
|
1088
|
-
let
|
|
1089
|
-
|
|
1058
|
+
return i.forEach((O) => {
|
|
1059
|
+
T[O[b]] = O, O.parentId === G && T[G].children.push(O);
|
|
1060
|
+
}), i.forEach((O) => {
|
|
1061
|
+
let w = T[O[d]];
|
|
1062
|
+
w && w.id !== G ? (w.children = w.children || [], w.children.push(O)) : w && w.id;
|
|
1090
1063
|
}), o.treeDataMapping = T, o.treeDataMapping;
|
|
1091
|
-
}, X = (
|
|
1092
|
-
Array.isArray(
|
|
1093
|
-
|
|
1094
|
-
|
|
1064
|
+
}, X = (i) => {
|
|
1065
|
+
Array.isArray(h == null ? void 0 : h.value) && Le(() => {
|
|
1066
|
+
h.value.forEach((d) => {
|
|
1067
|
+
d == null || d.filter(i);
|
|
1095
1068
|
});
|
|
1096
1069
|
});
|
|
1097
|
-
}, W = async (
|
|
1098
|
-
const
|
|
1070
|
+
}, W = async (i, d) => {
|
|
1071
|
+
const b = d || await D(i), T = {
|
|
1099
1072
|
groupName: "静态页面",
|
|
1100
|
-
groupId:
|
|
1073
|
+
groupId: P,
|
|
1101
1074
|
data: []
|
|
1102
1075
|
}, O = {
|
|
1103
1076
|
groupName: "公共页面",
|
|
1104
|
-
groupId:
|
|
1077
|
+
groupId: f,
|
|
1105
1078
|
data: []
|
|
1106
1079
|
};
|
|
1107
|
-
|
|
1108
|
-
const
|
|
1080
|
+
b.forEach((j) => {
|
|
1081
|
+
const Me = j.name ? j : {
|
|
1109
1082
|
...j,
|
|
1110
1083
|
name: j.folderName,
|
|
1111
1084
|
group: "staticPages"
|
|
1112
|
-
},
|
|
1085
|
+
}, Ce = j.meta ? {
|
|
1113
1086
|
...j,
|
|
1114
1087
|
...j.meta,
|
|
1115
1088
|
name: j.fileName,
|
|
1116
1089
|
isPage: !0,
|
|
1117
|
-
isBody: j.meta.rootElement ===
|
|
1118
|
-
} :
|
|
1119
|
-
children:
|
|
1120
|
-
...
|
|
1121
|
-
} =
|
|
1122
|
-
|
|
1090
|
+
isBody: j.meta.rootElement === ea.Body
|
|
1091
|
+
} : Me, {
|
|
1092
|
+
children: Ta,
|
|
1093
|
+
...Ie
|
|
1094
|
+
} = Ce;
|
|
1095
|
+
Ce.group === "staticPages" ? T.data.push(Ie) : O.data.push(Ie);
|
|
1123
1096
|
});
|
|
1124
|
-
const
|
|
1125
|
-
return T.data =
|
|
1097
|
+
const w = Z([...T.data], "parentId", "id");
|
|
1098
|
+
return T.data = w[G].children, o.pages = [T, O], X(F.pageSearchValue), o.pages;
|
|
1126
1099
|
};
|
|
1127
|
-
o.updateTreeData = async () => await W(
|
|
1128
|
-
const
|
|
1129
|
-
|
|
1130
|
-
}, $ = (
|
|
1131
|
-
const
|
|
1132
|
-
|
|
1133
|
-
},
|
|
1134
|
-
if (
|
|
1100
|
+
o.updateTreeData = async () => await W(s.selectedId);
|
|
1101
|
+
const ge = () => {
|
|
1102
|
+
m.currentVm = null, m.hoverVm = null, m.properties = {}, m.pageSchema = null;
|
|
1103
|
+
}, $ = (i) => {
|
|
1104
|
+
const d = new URL(window.location);
|
|
1105
|
+
d.searchParams.delete("blockid"), d.searchParams.set("pageid", i), window.history.pushState({}, "", d);
|
|
1106
|
+
}, pe = (i) => {
|
|
1107
|
+
if (i !== 0 && !i) {
|
|
1135
1108
|
$(""), _({
|
|
1136
|
-
componentName:
|
|
1109
|
+
componentName: aa.Page
|
|
1137
1110
|
}, {}), oe().layoutState.pageStatus = {
|
|
1138
1111
|
state: "empty",
|
|
1139
1112
|
data: {}
|
|
1140
1113
|
};
|
|
1141
1114
|
return;
|
|
1142
1115
|
}
|
|
1143
|
-
|
|
1144
|
-
$(
|
|
1116
|
+
S(i).then((d) => {
|
|
1117
|
+
$(i), q(), M(), oe().closePlugin(), oe().layoutState.pageStatus = Ne(d.occupier), _(d.page_content, d);
|
|
1145
1118
|
});
|
|
1146
|
-
}, ee = (
|
|
1147
|
-
|
|
1148
|
-
let
|
|
1149
|
-
|
|
1150
|
-
},
|
|
1119
|
+
}, ee = (i) => {
|
|
1120
|
+
m.hoverVm = null, F.currentNodeData = i;
|
|
1121
|
+
let d = "";
|
|
1122
|
+
i.isPage && (d = (i == null ? void 0 : i.name) || ""), p([d]), ge(), pe(i.id);
|
|
1123
|
+
}, ue = (i, d) => {
|
|
1151
1124
|
var O;
|
|
1152
|
-
|
|
1125
|
+
i.stopPropagation();
|
|
1153
1126
|
const {
|
|
1154
|
-
id:
|
|
1127
|
+
id: b,
|
|
1155
1128
|
isPage: T
|
|
1156
|
-
} =
|
|
1157
|
-
!a() &&
|
|
1129
|
+
} = d.data;
|
|
1130
|
+
!a() && b === ((O = F == null ? void 0 : F.currentNodeData) == null ? void 0 : O.id) || !T || (l() && u() ? ee(d.data) : e({
|
|
1158
1131
|
title: "提示",
|
|
1159
1132
|
message: `${a() ? "区块" : "页面"}尚未保存,是否要继续切换?`,
|
|
1160
1133
|
exec: () => {
|
|
1161
|
-
|
|
1134
|
+
g(o.oldParentId, o.currentPageData.parentId), Object.assign(o.currentPageData, o.currentPageDataCopy), ee(d.data);
|
|
1162
1135
|
}
|
|
1163
1136
|
}));
|
|
1164
|
-
}, te = (
|
|
1137
|
+
}, te = (i, d, b) => {
|
|
1165
1138
|
var T;
|
|
1166
|
-
if (
|
|
1167
|
-
const O = ((T =
|
|
1139
|
+
if (i.stopPropagation(), b && d.data.isPage) {
|
|
1140
|
+
const O = ((T = d.data.occupier) == null ? void 0 : T.username) || "";
|
|
1168
1141
|
Q().message({
|
|
1169
1142
|
message: `您点击的页面被${O}锁定,暂时无法编辑,请联系解锁`,
|
|
1170
1143
|
status: "info"
|
|
1171
1144
|
});
|
|
1172
1145
|
return;
|
|
1173
1146
|
}
|
|
1174
|
-
|
|
1147
|
+
ce(o.currentPageData, o.currentPageDataCopy) ? t("openSettingPanel", d) : e({
|
|
1175
1148
|
title: "提示",
|
|
1176
1149
|
message: `当前页面或文件夹${o.currentPageData.name}尚未保存,是否要继续切换?`,
|
|
1177
1150
|
exec: () => {
|
|
1178
|
-
|
|
1151
|
+
g(o.oldParentId, o.currentPageData.parentId), Object.assign(o.currentPageData, o.currentPageDataCopy), t("openSettingPanel", d);
|
|
1179
1152
|
}
|
|
1180
1153
|
});
|
|
1181
|
-
},
|
|
1182
|
-
node:
|
|
1183
|
-
data:
|
|
1154
|
+
}, ve = (i, {
|
|
1155
|
+
node: d,
|
|
1156
|
+
data: b
|
|
1184
1157
|
}) => {
|
|
1185
|
-
!
|
|
1186
|
-
const T = Ne(
|
|
1158
|
+
!b.isPage && !b.children ? b.trueFolder = !0 : b.trueFolder = !1;
|
|
1159
|
+
const T = Ne(b.occupier).state === ta.Lock, O = T ? r(c("SvgIcon"), {
|
|
1187
1160
|
class: "page-edit-icon",
|
|
1188
1161
|
name: "locked-outline",
|
|
1189
|
-
onMousedown: (
|
|
1162
|
+
onMousedown: (w) => te(w, d, T)
|
|
1190
1163
|
}, null) : null;
|
|
1191
|
-
return
|
|
1164
|
+
return r("span", {
|
|
1192
1165
|
class: "tiny-tree-node__label",
|
|
1193
|
-
onMousedown: (
|
|
1194
|
-
}, [
|
|
1166
|
+
onMousedown: (w) => ue(w, d)
|
|
1167
|
+
}, [r("span", {
|
|
1195
1168
|
class: "page-name-label",
|
|
1196
|
-
title:
|
|
1197
|
-
}, [
|
|
1169
|
+
title: d.label
|
|
1170
|
+
}, [b.isPage ? r(c("SvgIcon"), {
|
|
1198
1171
|
name: "text-page-common",
|
|
1199
1172
|
class: "icon-page"
|
|
1200
|
-
}, null) : null,
|
|
1173
|
+
}, null) : null, b.trueFolder ? r(c("SvgIcon"), {
|
|
1201
1174
|
name: "text-page-folder-closed",
|
|
1202
1175
|
class: "folder-icon"
|
|
1203
|
-
}, null) : null,
|
|
1176
|
+
}, null) : null, r("span", {
|
|
1204
1177
|
class: "label"
|
|
1205
|
-
}, [
|
|
1178
|
+
}, [d.label])]), r("span", {
|
|
1206
1179
|
class: "icons"
|
|
1207
|
-
}, [
|
|
1180
|
+
}, [b.isPage ? O : null, b.isHome ? r("span", {
|
|
1208
1181
|
class: "home"
|
|
1209
|
-
}, [
|
|
1182
|
+
}, [r(c("SvgIcon"), {
|
|
1210
1183
|
class: "page-edit-icon",
|
|
1211
1184
|
name: "text-page-home"
|
|
1212
|
-
}, null)]) : null,
|
|
1185
|
+
}, null)]) : null, r(c("SvgIcon"), {
|
|
1213
1186
|
name: "setting",
|
|
1214
1187
|
class: "setting page-edit-icon",
|
|
1215
|
-
onMousedown: (
|
|
1188
|
+
onMousedown: (w) => te(w, d, T)
|
|
1216
1189
|
}, null)])]);
|
|
1217
1190
|
};
|
|
1218
1191
|
Y(() => {
|
|
1219
|
-
|
|
1192
|
+
s.selectedId && W(s.selectedId);
|
|
1220
1193
|
});
|
|
1221
|
-
const C = (
|
|
1222
|
-
var
|
|
1223
|
-
return
|
|
1224
|
-
},
|
|
1225
|
-
|
|
1226
|
-
},
|
|
1227
|
-
|
|
1228
|
-
},
|
|
1194
|
+
const C = (i, d) => {
|
|
1195
|
+
var b;
|
|
1196
|
+
return i ? ((b = d.name) == null ? void 0 : b.toLowerCase().indexOf(i == null ? void 0 : i.toLowerCase())) !== -1 : !0;
|
|
1197
|
+
}, v = (i) => {
|
|
1198
|
+
i && h.value.push(i);
|
|
1199
|
+
}, I = (i) => {
|
|
1200
|
+
i.stopPropagation(), i.preventDefault(), t("add");
|
|
1201
|
+
}, k = r(c("SvgIcon"), {
|
|
1229
1202
|
name: "text-page-folder-closed",
|
|
1230
1203
|
class: "folder-icon"
|
|
1231
|
-
}, null), x =
|
|
1204
|
+
}, null), x = r(c("SvgIcon"), {
|
|
1232
1205
|
name: "text-page-folder",
|
|
1233
1206
|
class: "folder-icon"
|
|
1234
1207
|
}, null);
|
|
1235
1208
|
return {
|
|
1236
|
-
createPublicPage:
|
|
1209
|
+
createPublicPage: I,
|
|
1237
1210
|
state: F,
|
|
1238
1211
|
switchPage: ee,
|
|
1239
1212
|
pageSettingState: o,
|
|
1240
1213
|
searchPageData: X,
|
|
1241
|
-
renderContent:
|
|
1214
|
+
renderContent: ve,
|
|
1242
1215
|
refreshPageList: W,
|
|
1243
1216
|
filterPageTreeData: C,
|
|
1244
|
-
getPageTreeRefs:
|
|
1245
|
-
IconFolderOpened:
|
|
1246
|
-
IconFolderClosed:
|
|
1217
|
+
getPageTreeRefs: v,
|
|
1218
|
+
IconFolderOpened: _t(),
|
|
1219
|
+
IconFolderClosed: mt(),
|
|
1247
1220
|
shrinkIcon: x,
|
|
1248
|
-
expandIcon:
|
|
1221
|
+
expandIcon: k
|
|
1249
1222
|
};
|
|
1250
1223
|
}
|
|
1251
1224
|
};
|
|
1252
|
-
const
|
|
1253
|
-
function
|
|
1254
|
-
const a = c("tiny-search"), l = c("tiny-
|
|
1255
|
-
return N(), J(
|
|
1256
|
-
|
|
1257
|
-
|
|
1225
|
+
const oa = { class: "app-manage-search" }, sa = { class: "title" }, ra = { class: "app-manage-tree" };
|
|
1226
|
+
function la(n, t, s, e, _, m) {
|
|
1227
|
+
const a = c("tiny-icon-search"), l = c("tiny-search"), o = c("tiny-tree"), g = c("tiny-collapse-item"), u = c("tiny-collapse");
|
|
1228
|
+
return N(), J(de, null, [
|
|
1229
|
+
V("div", oa, [
|
|
1230
|
+
r(l, {
|
|
1258
1231
|
modelValue: e.state.pageSearchValue,
|
|
1259
1232
|
"onUpdate:modelValue": [
|
|
1260
|
-
t[0] || (t[0] = (
|
|
1233
|
+
t[0] || (t[0] = (P) => e.state.pageSearchValue = P),
|
|
1261
1234
|
e.searchPageData
|
|
1262
1235
|
],
|
|
1263
1236
|
clearable: "",
|
|
1264
|
-
placeholder: "
|
|
1265
|
-
},
|
|
1237
|
+
placeholder: "搜索"
|
|
1238
|
+
}, {
|
|
1239
|
+
prefix: y(() => [
|
|
1240
|
+
r(a)
|
|
1241
|
+
]),
|
|
1242
|
+
_: 1
|
|
1243
|
+
}, 8, ["modelValue", "onUpdate:modelValue"])
|
|
1266
1244
|
]),
|
|
1267
|
-
|
|
1245
|
+
r(u, {
|
|
1268
1246
|
modelValue: e.state.collapseValue,
|
|
1269
|
-
"onUpdate:modelValue": t[1] || (t[1] = (
|
|
1247
|
+
"onUpdate:modelValue": t[1] || (t[1] = (P) => e.state.collapseValue = P),
|
|
1270
1248
|
class: "page-manage-collapse lowcode-scrollbar"
|
|
1271
1249
|
}, {
|
|
1272
|
-
default:
|
|
1273
|
-
(N(!0), J(
|
|
1274
|
-
key:
|
|
1275
|
-
name:
|
|
1250
|
+
default: y(() => [
|
|
1251
|
+
(N(!0), J(de, null, Be(e.pageSettingState.pages, (P, f) => (N(), A(g, {
|
|
1252
|
+
key: f,
|
|
1253
|
+
name: P.groupId
|
|
1276
1254
|
}, {
|
|
1277
|
-
title:
|
|
1278
|
-
|
|
1255
|
+
title: y(() => [
|
|
1256
|
+
V("span", sa, _e(P.groupName), 1)
|
|
1279
1257
|
]),
|
|
1280
|
-
default:
|
|
1281
|
-
|
|
1282
|
-
(N(), A(
|
|
1258
|
+
default: y(() => [
|
|
1259
|
+
V("div", ra, [
|
|
1260
|
+
(N(), A(o, {
|
|
1283
1261
|
ref_for: !0,
|
|
1284
1262
|
ref: e.getPageTreeRefs,
|
|
1285
1263
|
key: e.pageSettingState.pageTreeKey,
|
|
1286
|
-
data:
|
|
1264
|
+
data: P.data,
|
|
1287
1265
|
props: {
|
|
1288
1266
|
children: "children",
|
|
1289
1267
|
label: "name"
|
|
@@ -1305,25 +1283,24 @@ function ia(n, t, r, e, _, f) {
|
|
|
1305
1283
|
}, 8, ["modelValue"])
|
|
1306
1284
|
], 64);
|
|
1307
1285
|
}
|
|
1308
|
-
const
|
|
1286
|
+
const ca = /* @__PURE__ */ K(na, [["render", la], ["__scopeId", "data-v-796a5e7e"]]), ia = {
|
|
1309
1287
|
getPageById: async (n) => {
|
|
1310
1288
|
if (n)
|
|
1311
1289
|
return Se(n);
|
|
1312
1290
|
},
|
|
1313
1291
|
openPageSettingPanel: se
|
|
1314
|
-
},
|
|
1292
|
+
}, ga = {
|
|
1315
1293
|
components: {
|
|
1316
|
-
PageSetting:
|
|
1317
|
-
PluginPanel:
|
|
1318
|
-
SvgButton:
|
|
1319
|
-
PageFolderSetting:
|
|
1320
|
-
PageTree:
|
|
1321
|
-
LinkButton: et
|
|
1294
|
+
PageSetting: zt,
|
|
1295
|
+
PluginPanel: Ze,
|
|
1296
|
+
SvgButton: Pe,
|
|
1297
|
+
PageFolderSetting: $t,
|
|
1298
|
+
PageTree: ca
|
|
1322
1299
|
},
|
|
1323
1300
|
props: {
|
|
1324
1301
|
title: {
|
|
1325
1302
|
type: String,
|
|
1326
|
-
default: "
|
|
1303
|
+
default: "页面"
|
|
1327
1304
|
}
|
|
1328
1305
|
},
|
|
1329
1306
|
setup() {
|
|
@@ -1331,15 +1308,15 @@ const ga = /* @__PURE__ */ K(sa, [["render", ia], ["__scopeId", "data-v-8a51cf49
|
|
|
1331
1308
|
appInfoState: n
|
|
1332
1309
|
} = le(), {
|
|
1333
1310
|
pageState: t
|
|
1334
|
-
} =
|
|
1335
|
-
pageSettingState:
|
|
1311
|
+
} = me(), {
|
|
1312
|
+
pageSettingState: s,
|
|
1336
1313
|
DEFAULT_PAGE: e,
|
|
1337
1314
|
isTemporaryPage: _,
|
|
1338
|
-
initCurrentPageData:
|
|
1339
|
-
} = L(), a = U(null), l =
|
|
1315
|
+
initCurrentPageData: m
|
|
1316
|
+
} = L(), a = U(null), l = s.ROOT_ID, o = Xe().getDocsUrl("page"), g = z({
|
|
1340
1317
|
isFolder: !1
|
|
1341
|
-
}),
|
|
1342
|
-
M(),
|
|
1318
|
+
}), u = (p) => {
|
|
1319
|
+
M(), s.isNew = !0, s.currentPageData = {
|
|
1343
1320
|
...e,
|
|
1344
1321
|
parentId: l,
|
|
1345
1322
|
route: "",
|
|
@@ -1347,94 +1324,95 @@ const ga = /* @__PURE__ */ K(sa, [["render", ia], ["__scopeId", "data-v-8a51cf49
|
|
|
1347
1324
|
page_content: {
|
|
1348
1325
|
lifeCycles: {}
|
|
1349
1326
|
},
|
|
1350
|
-
group:
|
|
1351
|
-
},
|
|
1352
|
-
},
|
|
1353
|
-
q(),
|
|
1327
|
+
group: p
|
|
1328
|
+
}, s.currentPageDataCopy = ne(!0, {}, s.currentPageData), g.isFolder = !1, se();
|
|
1329
|
+
}, P = () => {
|
|
1330
|
+
q(), s.isNew = !0, s.currentPageData = {
|
|
1354
1331
|
parentId: l,
|
|
1355
1332
|
route: "",
|
|
1356
1333
|
name: "untitled"
|
|
1357
|
-
},
|
|
1334
|
+
}, s.currentPageDataCopy = ne(!0, {}, s.currentPageData), g.isFolder = !0, Fe();
|
|
1358
1335
|
};
|
|
1359
1336
|
Y(() => {
|
|
1360
1337
|
_.saved && se();
|
|
1361
1338
|
});
|
|
1362
|
-
const
|
|
1339
|
+
const f = async (p) => {
|
|
1363
1340
|
var F;
|
|
1364
|
-
|
|
1365
|
-
const
|
|
1366
|
-
|
|
1367
|
-
const
|
|
1368
|
-
|
|
1341
|
+
g.isFolder = !p.data.isPage, s.isNew = !1;
|
|
1342
|
+
const h = p.data.id !== s.currentPageData.id;
|
|
1343
|
+
g.isFolder ? (h && q(), Fe()) : (h && M(), se());
|
|
1344
|
+
const G = await Se((F = p.data) == null ? void 0 : F.id);
|
|
1345
|
+
m(G);
|
|
1369
1346
|
};
|
|
1370
|
-
return
|
|
1371
|
-
state:
|
|
1347
|
+
return je("openSettingPanel", f), {
|
|
1348
|
+
state: g,
|
|
1372
1349
|
appInfoState: n,
|
|
1373
1350
|
pageState: t,
|
|
1374
|
-
openNewPage: (
|
|
1375
|
-
a.value.switchPage(
|
|
1351
|
+
openNewPage: (p) => {
|
|
1352
|
+
a.value.switchPage(p);
|
|
1376
1353
|
},
|
|
1377
1354
|
pageTreeRef: a,
|
|
1378
1355
|
pluginPanelClosed: () => {
|
|
1379
1356
|
q(), M();
|
|
1380
1357
|
},
|
|
1381
|
-
openSettingPanel:
|
|
1382
|
-
createNewFolder:
|
|
1383
|
-
createNewPage:
|
|
1358
|
+
openSettingPanel: f,
|
|
1359
|
+
createNewFolder: P,
|
|
1360
|
+
createNewPage: u,
|
|
1384
1361
|
docsUrl: o
|
|
1385
1362
|
};
|
|
1386
1363
|
}
|
|
1387
1364
|
};
|
|
1388
|
-
function
|
|
1389
|
-
const a = c("
|
|
1390
|
-
return N(), J(
|
|
1391
|
-
|
|
1392
|
-
title:
|
|
1393
|
-
onClose: e.pluginPanelClosed
|
|
1365
|
+
function pa(n, t, s, e, _, m) {
|
|
1366
|
+
const a = c("svg-button"), l = c("page-tree"), o = c("plugin-panel"), g = c("page-setting"), u = c("page-folder-setting");
|
|
1367
|
+
return N(), J(de, null, [
|
|
1368
|
+
r(o, {
|
|
1369
|
+
title: s.title,
|
|
1370
|
+
onClose: e.pluginPanelClosed,
|
|
1371
|
+
docsUrl: e.docsUrl,
|
|
1372
|
+
isShowDocsIcon: !0
|
|
1394
1373
|
}, {
|
|
1395
|
-
header:
|
|
1396
|
-
|
|
1397
|
-
s(l, {
|
|
1374
|
+
header: y(() => [
|
|
1375
|
+
r(a, {
|
|
1398
1376
|
class: "add-folder-icon",
|
|
1399
1377
|
name: "add-folder",
|
|
1400
1378
|
placement: "bottom",
|
|
1401
1379
|
tips: "新建文件夹",
|
|
1402
1380
|
onClick: e.createNewFolder
|
|
1403
1381
|
}, null, 8, ["onClick"]),
|
|
1404
|
-
|
|
1382
|
+
r(a, {
|
|
1405
1383
|
class: "new-page-icon",
|
|
1406
1384
|
name: "new-page",
|
|
1407
1385
|
placement: "bottom",
|
|
1408
1386
|
tips: "新建页面",
|
|
1409
|
-
onClick: t[0] || (t[0] = (
|
|
1387
|
+
onClick: t[0] || (t[0] = (P) => e.createNewPage("staticPages"))
|
|
1410
1388
|
})
|
|
1411
1389
|
]),
|
|
1412
|
-
content:
|
|
1413
|
-
|
|
1390
|
+
content: y(() => [
|
|
1391
|
+
r(l, {
|
|
1414
1392
|
ref: "pageTreeRef",
|
|
1415
1393
|
isFolder: e.state.isFolder,
|
|
1416
|
-
onAdd: t[1] || (t[1] = (
|
|
1394
|
+
onAdd: t[1] || (t[1] = (P) => e.createNewPage("publicPages")),
|
|
1417
1395
|
onOpenSettingPanel: e.openSettingPanel
|
|
1418
1396
|
}, null, 8, ["isFolder", "onOpenSettingPanel"])
|
|
1419
1397
|
]),
|
|
1420
1398
|
_: 1
|
|
1421
|
-
}, 8, ["title", "onClose"]),
|
|
1422
|
-
|
|
1399
|
+
}, 8, ["title", "onClose", "docsUrl"]),
|
|
1400
|
+
r(g, {
|
|
1423
1401
|
isFolder: e.state.isFolder,
|
|
1424
1402
|
onOpenNewPage: e.openNewPage
|
|
1425
1403
|
}, null, 8, ["isFolder", "onOpenNewPage"]),
|
|
1426
|
-
|
|
1404
|
+
r(u, {
|
|
1427
1405
|
isFolder: e.state.isFolder
|
|
1428
1406
|
}, null, 8, ["isFolder"])
|
|
1429
1407
|
], 64);
|
|
1430
1408
|
}
|
|
1431
|
-
const
|
|
1409
|
+
const ua = /* @__PURE__ */ K(ga, [["render", pa], ["__scopeId", "data-v-2467df4f"]]), da = {
|
|
1432
1410
|
id: "engine.plugins.appmanage",
|
|
1433
|
-
title: "
|
|
1411
|
+
title: "页面",
|
|
1434
1412
|
type: "plugins",
|
|
1435
1413
|
icon: "plugin-icon-page",
|
|
1436
1414
|
align: "top"
|
|
1437
|
-
},
|
|
1415
|
+
}, _a = {
|
|
1438
1416
|
app: "",
|
|
1439
1417
|
name: "",
|
|
1440
1418
|
route: "",
|
|
@@ -1471,11 +1449,11 @@ const ma = /* @__PURE__ */ K(ua, [["render", da], ["__scopeId", "data-v-a8f91d2d
|
|
|
1471
1449
|
// 根节点ID
|
|
1472
1450
|
updateTreeData: null,
|
|
1473
1451
|
treeDataMapping: {}
|
|
1474
|
-
}),
|
|
1452
|
+
}), ma = z({
|
|
1475
1453
|
saved: !1
|
|
1476
|
-
}),
|
|
1454
|
+
}), Pa = () => {
|
|
1477
1455
|
const n = E.currentPageData || {}, t = E.currentPageDataCopy || {};
|
|
1478
|
-
let
|
|
1456
|
+
let s = !0;
|
|
1479
1457
|
return Object.keys(t).some((e) => {
|
|
1480
1458
|
if (["children", "label", "createdBy", "assets", "occupier"].includes(e))
|
|
1481
1459
|
return !1;
|
|
@@ -1484,52 +1462,52 @@ const ma = /* @__PURE__ */ K(ua, [["render", da], ["__scopeId", "data-v-a8f91d2d
|
|
|
1484
1462
|
inputs: t[e].inputs,
|
|
1485
1463
|
outputs: t[e].outputs,
|
|
1486
1464
|
lifeCycles: t[e].lifeCycles
|
|
1487
|
-
},
|
|
1465
|
+
}, m = {
|
|
1488
1466
|
inputs: n[e].inputs,
|
|
1489
1467
|
outputs: n[e].outputs,
|
|
1490
1468
|
lifeCycles: n[e].lifeCycles
|
|
1491
1469
|
};
|
|
1492
|
-
JSON.stringify(_) !== JSON.stringify(
|
|
1470
|
+
JSON.stringify(_) !== JSON.stringify(m) && (s = !1);
|
|
1493
1471
|
} else
|
|
1494
|
-
t[e] !== n[e] && (
|
|
1495
|
-
return !
|
|
1496
|
-
}),
|
|
1497
|
-
},
|
|
1498
|
-
var
|
|
1472
|
+
t[e] !== n[e] && (s = !1);
|
|
1473
|
+
return !s;
|
|
1474
|
+
}), s;
|
|
1475
|
+
}, fa = (n, t) => {
|
|
1476
|
+
var s, e;
|
|
1499
1477
|
if (n && t && n !== t) {
|
|
1500
|
-
const _ = E.treeDataMapping[n],
|
|
1501
|
-
l > -1 && (
|
|
1478
|
+
const _ = E.treeDataMapping[n], m = E.treeDataMapping[t], a = E.currentPageData.id, l = (e = (s = m.children) == null ? void 0 : s.findIndex) == null ? void 0 : e.call(s, ({ id: o }) => o === a);
|
|
1479
|
+
l > -1 && (m.children.splice(l, 1), _.children || (_.children = []), _.children.unshift(E.currentPageData), E.pageTreeKey++);
|
|
1502
1480
|
}
|
|
1503
|
-
},
|
|
1481
|
+
}, ya = () => E.currentPageData.page_content || {}, Sa = (n) => {
|
|
1504
1482
|
E.currentPageData = n, E.currentPageDataCopy = ne(!0, {}, n), E.oldParentId = n.parentId;
|
|
1505
|
-
},
|
|
1483
|
+
}, Da = () => {
|
|
1506
1484
|
E.currentPageData = {}, E.currentPageDataCopy = {}, E.oldParentId = null;
|
|
1507
|
-
},
|
|
1508
|
-
DEFAULT_PAGE:
|
|
1485
|
+
}, ha = () => !ce(E.currentPageData, E.currentPageDataCopy), va = 0, Ca = 1, Ia = () => ({
|
|
1486
|
+
DEFAULT_PAGE: _a,
|
|
1509
1487
|
pageSettingState: E,
|
|
1510
|
-
isTemporaryPage:
|
|
1511
|
-
isCurrentDataSame:
|
|
1512
|
-
changeTreeData:
|
|
1513
|
-
getPageContent:
|
|
1514
|
-
resetPageData:
|
|
1515
|
-
initCurrentPageData:
|
|
1516
|
-
isChangePageData:
|
|
1517
|
-
STATIC_PAGE_GROUP_ID:
|
|
1518
|
-
COMMON_PAGE_GROUP_ID:
|
|
1519
|
-
}),
|
|
1488
|
+
isTemporaryPage: ma,
|
|
1489
|
+
isCurrentDataSame: Pa,
|
|
1490
|
+
changeTreeData: fa,
|
|
1491
|
+
getPageContent: ya,
|
|
1492
|
+
resetPageData: Da,
|
|
1493
|
+
initCurrentPageData: Sa,
|
|
1494
|
+
isChangePageData: ha,
|
|
1495
|
+
STATIC_PAGE_GROUP_ID: va,
|
|
1496
|
+
COMMON_PAGE_GROUP_ID: Ca
|
|
1497
|
+
}), ba = {
|
|
1520
1498
|
id: "engine.service.page",
|
|
1521
1499
|
type: "MetaService",
|
|
1522
|
-
apis:
|
|
1500
|
+
apis: Ia(),
|
|
1523
1501
|
composable: {
|
|
1524
|
-
name:
|
|
1502
|
+
name: We.usePage
|
|
1525
1503
|
}
|
|
1526
|
-
},
|
|
1527
|
-
...
|
|
1528
|
-
apis:
|
|
1529
|
-
entry:
|
|
1530
|
-
metas: [
|
|
1504
|
+
}, ja = {
|
|
1505
|
+
...da,
|
|
1506
|
+
apis: ia,
|
|
1507
|
+
entry: ua,
|
|
1508
|
+
metas: [ba]
|
|
1531
1509
|
};
|
|
1532
1510
|
export {
|
|
1533
|
-
|
|
1534
|
-
|
|
1511
|
+
ba as PageService,
|
|
1512
|
+
ja as default
|
|
1535
1513
|
};
|