@antelopejs/dms 0.3.8 → 0.4.1
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/CHANGELOG.md +42 -0
- package/dist/implementations/dms/guards.d.ts +1 -1
- package/dist/implementations/dms-base/table-view.d.ts +1 -1
- package/dist/pages/settings/users/category.d.ts +1 -1
- package/dist/pages/settings/users/members.d.ts +2 -2
- package/dist/pages/settings/users/notifications.d.ts +2 -2
- package/dist/test/antelope.test.js +3 -3
- package/dist/test/attachment-host/native.d.ts +2 -2
- package/dist/test/unit/interfaces/dms-base/table-view-form-page-urls.test.js +52 -0
- package/dist/test/unit/interfaces/dms-base/table-view-form-page-urls.test.js.map +1 -1
- package/dist/validation/auth.schema.d.ts +18 -18
- package/dist/validation/onboarding/register-admin.schema.d.ts +3 -3
- package/frontend-vue/package.json +2 -2
- package/frontend-vue/pnpm-lock.yaml +15 -15
- package/package.json +12 -23
- package/skills/dms/REFERENCE.md +2 -3
- package/skills/dms/SKILL.md +1 -1
- package/skills/dms-module/REFERENCE.md +4 -5
- package/skills/dms-module/SKILL.md +1 -1
- package/frontend-vue/tests/theming-browser.mjs +0 -130
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,47 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## v0.4.1
|
|
4
|
+
|
|
5
|
+
[compare changes](https://github.com/AntelopeJS/dms/compare/v0.4.0...v0.4.1)
|
|
6
|
+
|
|
7
|
+
### 🩹 Fixes
|
|
8
|
+
|
|
9
|
+
- **table-view:** Derive form route keys from the page permission id ([#43](https://github.com/AntelopeJS/dms/pull/43))
|
|
10
|
+
|
|
11
|
+
### 🏡 Chore
|
|
12
|
+
|
|
13
|
+
- **release:** @antelopejs/interface-dms v0.2.1 ([eb3b712](https://github.com/AntelopeJS/dms/commit/eb3b712))
|
|
14
|
+
|
|
15
|
+
### ❤️ Contributors
|
|
16
|
+
|
|
17
|
+
- Antony Rizzitelli <rizzitelli.antony@pm.me>
|
|
18
|
+
|
|
19
|
+
## v0.4.0
|
|
20
|
+
|
|
21
|
+
[compare changes](https://github.com/AntelopeJS/dms/compare/v0.3.8...v0.4.0)
|
|
22
|
+
|
|
23
|
+
### 💅 Refactors
|
|
24
|
+
|
|
25
|
+
- **build:** Merge tsconfig.build.json into tsconfig.json ([#39](https://github.com/AntelopeJS/dms/pull/39))
|
|
26
|
+
- **package:** ⚠️ Drop moduleResolution node support and pack-based checks ([#41](https://github.com/AntelopeJS/dms/pull/41))
|
|
27
|
+
|
|
28
|
+
### 🏡 Chore
|
|
29
|
+
|
|
30
|
+
- **release:** @antelopejs/interface-dms v0.2.0 ([98ad6f4](https://github.com/AntelopeJS/dms/commit/98ad6f4))
|
|
31
|
+
|
|
32
|
+
### 🤖 CI
|
|
33
|
+
|
|
34
|
+
- **release:** Release next from a dedicated branch and restore requireCommits ([#38](https://github.com/AntelopeJS/dms/pull/38))
|
|
35
|
+
- **release:** Reference the shared release workflows through v1 ([#40](https://github.com/AntelopeJS/dms/pull/40))
|
|
36
|
+
|
|
37
|
+
#### ⚠️ Breaking Changes
|
|
38
|
+
|
|
39
|
+
- **package:** ⚠️ Drop moduleResolution node support and pack-based checks ([#41](https://github.com/AntelopeJS/dms/pull/41))
|
|
40
|
+
|
|
41
|
+
### ❤️ Contributors
|
|
42
|
+
|
|
43
|
+
- Antony Rizzitelli <rizzitelli.antony@pm.me>
|
|
44
|
+
|
|
3
45
|
## v0.3.8
|
|
4
46
|
|
|
5
47
|
[compare changes](https://github.com/AntelopeJS/dms/compare/v0.3.7...v0.3.8)
|
|
@@ -3,5 +3,5 @@ import { Action, type ComponentTargetInput } from "@antelopejs/interface-dms/com
|
|
|
3
3
|
import type { TenantGuardOptions } from "@antelopejs/interface-dms/guards";
|
|
4
4
|
import type { TenantTokenInput } from "@antelopejs/interface-dms/auth";
|
|
5
5
|
export declare namespace internal {
|
|
6
|
-
const AuthUserWithPermissionValidator: (target: ComponentTargetInput | ControllerClass | Action, data: TenantTokenInput, options?: TenantGuardOptions) => Promise<false | import("@antelopejs/interface-dms/
|
|
6
|
+
const AuthUserWithPermissionValidator: (target: ComponentTargetInput | ControllerClass | Action, data: TenantTokenInput, options?: TenantGuardOptions) => Promise<false | import("@antelopejs/interface-dms/auth/db").User>;
|
|
7
7
|
}
|
|
@@ -22,7 +22,7 @@ export declare function startExport(controller: DataControllerThis, ctx: Request
|
|
|
22
22
|
format: string;
|
|
23
23
|
extension: string;
|
|
24
24
|
}>;
|
|
25
|
-
export declare function getExportStatus(controller: DataControllerThis, ctx: RequestContext, exportId: string, user?: User): Promise<import("@antelopejs/interface-dms/
|
|
25
|
+
export declare function getExportStatus(controller: DataControllerThis, ctx: RequestContext, exportId: string, user?: User): Promise<import("@antelopejs/interface-dms/base").ExportJobStatus>;
|
|
26
26
|
export declare function downloadExport(controller: DataControllerThis, ctx: RequestContext, exportId: string, user?: User): Promise<void>;
|
|
27
27
|
interface RuleValidationResult {
|
|
28
28
|
eligibleIds: string[];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const userCategory: import("@antelopejs/interface-dms
|
|
1
|
+
export declare const userCategory: import("@antelopejs/interface-dms").CategoryInfo;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { type RequestContext } from "@antelopejs/interface-api";
|
|
2
2
|
import type { Action } from "@antelopejs/interface-dms/component";
|
|
3
3
|
import { type User, UserModel } from "@antelopejs/interface-dms/auth/db";
|
|
4
|
-
export declare const membersTable: import("@antelopejs/interface-dms
|
|
4
|
+
export declare const membersTable: import("@antelopejs/interface-dms").ComponentBuilder<import("@antelopejs/interface-dms/base").TableViewOptionsSerialized>;
|
|
5
5
|
export declare const membersTableAddAction: Action;
|
|
6
6
|
declare const MembersSettingsController_base: {
|
|
7
7
|
new (...args: any[]): {};
|
|
@@ -9,7 +9,7 @@ declare const MembersSettingsController_base: {
|
|
|
9
9
|
location: string;
|
|
10
10
|
};
|
|
11
11
|
export declare class MembersSettingsController extends MembersSettingsController_base {
|
|
12
|
-
static table: import("@antelopejs/interface-dms
|
|
12
|
+
static table: import("@antelopejs/interface-dms").ComponentBuilder<import("@antelopejs/interface-dms/base").TableViewOptionsSerialized>;
|
|
13
13
|
invite(ctx: RequestContext, _user: User, userModel: UserModel, body: unknown): Promise<{
|
|
14
14
|
redirectPath: string;
|
|
15
15
|
}>;
|
|
@@ -15,8 +15,8 @@ export declare class NotificationsApiController extends NotificationsApiControll
|
|
|
15
15
|
getPreferences(preferencesModel: UserNotificationPreferencesModel): Promise<Record<string, boolean>>;
|
|
16
16
|
updatePreferences(body: unknown, preferencesModel: UserNotificationPreferencesModel): Promise<Record<string, boolean>>;
|
|
17
17
|
getCategories(): Promise<{
|
|
18
|
-
categories: import("@antelopejs/interface-dms/
|
|
19
|
-
subjects: import("@antelopejs/interface-dms/
|
|
18
|
+
categories: import("@antelopejs/interface-dms/notifications/types").NotificationCategoryInfo[];
|
|
19
|
+
subjects: import("@antelopejs/interface-dms/notifications/types").NotificationSubjectInfo[];
|
|
20
20
|
}>;
|
|
21
21
|
getNotifications(notificationsModel: UserNotificationsModel, limitParam?: string, offsetParam?: string): Promise<import("../../../db").UserNotification[]>;
|
|
22
22
|
getUnreadCount(notificationsModel: UserNotificationsModel): Promise<{
|
|
@@ -66,7 +66,7 @@ exports.default = (0, config_1.defineConfig)({
|
|
|
66
66
|
},
|
|
67
67
|
},
|
|
68
68
|
mongodb: {
|
|
69
|
-
source: providerSource(LOCAL_MONGODB_PATH, "@antelopejs/mongodb", "1.3.
|
|
69
|
+
source: providerSource(LOCAL_MONGODB_PATH, "@antelopejs/mongodb", "1.3.1"),
|
|
70
70
|
},
|
|
71
71
|
"auth-jwt": {
|
|
72
72
|
source: {
|
|
@@ -86,13 +86,13 @@ exports.default = (0, config_1.defineConfig)({
|
|
|
86
86
|
},
|
|
87
87
|
},
|
|
88
88
|
"file-storage-local": {
|
|
89
|
-
source: providerSource(LOCAL_STORAGE_PATH, "@antelopejs/file-storage-local", "0.1.
|
|
89
|
+
source: providerSource(LOCAL_STORAGE_PATH, "@antelopejs/file-storage-local", "0.1.5"),
|
|
90
90
|
},
|
|
91
91
|
nodemailer: {
|
|
92
92
|
source: {
|
|
93
93
|
type: "package",
|
|
94
94
|
package: "@antelopejs/nodemailer",
|
|
95
|
-
version: "0.0.
|
|
95
|
+
version: "0.0.5",
|
|
96
96
|
},
|
|
97
97
|
config: {
|
|
98
98
|
ethereal: true,
|
|
@@ -5,10 +5,10 @@ declare const NativeFilePage_base: {
|
|
|
5
5
|
location: string;
|
|
6
6
|
};
|
|
7
7
|
export declare class NativeFilePage extends NativeFilePage_base {
|
|
8
|
-
static content: import("@antelopejs/interface-dms").ComponentBuilder<import("@antelopejs/interface-dms/base
|
|
8
|
+
static content: import("@antelopejs/interface-dms").ComponentBuilder<import("@antelopejs/interface-dms/base").TableViewOptionsSerialized>;
|
|
9
9
|
}
|
|
10
10
|
declare const NativeAttachmentFormController_base: import("@antelopejs/interface-api").ControllerClass<object>;
|
|
11
11
|
export declare class NativeAttachmentFormController extends NativeAttachmentFormController_base {
|
|
12
|
-
get(_user: User): Promise<import("@antelopejs/interface-dms").ComponentInfoSerialized<import("@antelopejs/interface-dms/base
|
|
12
|
+
get(_user: User): Promise<import("@antelopejs/interface-dms").ComponentInfoSerialized<import("@antelopejs/interface-dms/base").TableViewOptionsSerialized>>;
|
|
13
13
|
}
|
|
14
14
|
export {};
|
|
@@ -137,6 +137,14 @@ const detailTable = (0, table_view_1.TableView)(DocumentAPI, {
|
|
|
137
137
|
formContainer: { type: "page" },
|
|
138
138
|
realtime: false,
|
|
139
139
|
});
|
|
140
|
+
const customPermissionTable = (0, table_view_1.TableView)(DocumentAPI, {
|
|
141
|
+
formContainer: { type: "page" },
|
|
142
|
+
realtime: false,
|
|
143
|
+
});
|
|
144
|
+
const customPermissionDrawerTable = (0, table_view_1.TableView)(DocumentAPI, {
|
|
145
|
+
formContainer: { type: "drawer" },
|
|
146
|
+
realtime: false,
|
|
147
|
+
});
|
|
140
148
|
let DefaultPage = class DefaultPage extends (0, page_1.RootPageController)("fpu-default", {
|
|
141
149
|
displayName: "Default form pages",
|
|
142
150
|
}) {
|
|
@@ -195,6 +203,24 @@ let DetailPage = class DetailPage extends (0, page_1.RootPageController)("fpu-de
|
|
|
195
203
|
DetailPage = __decorate([
|
|
196
204
|
(0, page_1.RegisterPage)()
|
|
197
205
|
], DetailPage);
|
|
206
|
+
let CustomPermissionPage = class CustomPermissionPage extends (0, page_1.RootPageController)("fpu-permission", {
|
|
207
|
+
displayName: "Custom page permission",
|
|
208
|
+
permission: { id: "fpu.custom-permission" },
|
|
209
|
+
}) {
|
|
210
|
+
static table = customPermissionTable;
|
|
211
|
+
};
|
|
212
|
+
CustomPermissionPage = __decorate([
|
|
213
|
+
(0, page_1.RegisterPage)()
|
|
214
|
+
], CustomPermissionPage);
|
|
215
|
+
let CustomPermissionDrawerPage = class CustomPermissionDrawerPage extends (0, page_1.RootPageController)("fpu-permission-drawer", {
|
|
216
|
+
displayName: "Custom page permission, drawer forms",
|
|
217
|
+
permission: { id: "fpu.custom-permission-drawer" },
|
|
218
|
+
}) {
|
|
219
|
+
static table = customPermissionDrawerTable;
|
|
220
|
+
};
|
|
221
|
+
CustomPermissionDrawerPage = __decorate([
|
|
222
|
+
(0, page_1.RegisterPage)()
|
|
223
|
+
], CustomPermissionDrawerPage);
|
|
198
224
|
const pages = [
|
|
199
225
|
DefaultPage,
|
|
200
226
|
CustomPage,
|
|
@@ -203,6 +229,8 @@ const pages = [
|
|
|
203
229
|
NestedPage,
|
|
204
230
|
SiblingsPage,
|
|
205
231
|
DetailPage,
|
|
232
|
+
CustomPermissionPage,
|
|
233
|
+
CustomPermissionDrawerPage,
|
|
206
234
|
];
|
|
207
235
|
async function formPages(table) {
|
|
208
236
|
return (await table.serialize()).options?.formPages;
|
|
@@ -301,6 +329,30 @@ describe("[unit] interfaces/dms-base — serialized form page URLs", () => {
|
|
|
301
329
|
(0, chai_1.expect)(failure?.message ?? "").to.contain('at "/fpu-clash/clash"');
|
|
302
330
|
(0, chai_1.expect)((0, page_1.GetPageLayoutBySlug)("/fpu-clash")).to.equal(undefined);
|
|
303
331
|
});
|
|
332
|
+
it("names the form routes of a page with a custom permission id after the table view", async () => {
|
|
333
|
+
(0, chai_1.expect)((0, interface_core_1.GetMetadata)(CustomPermissionPage, page_1.PageMetadata).ComponentPermissionIds(customPermissionTable)).to.deep.equal(["fpu.custom-permission.table"]);
|
|
334
|
+
(0, chai_1.expect)(await formPages(customPermissionTable)).to.deep.equal({
|
|
335
|
+
new: "/fpu-permission/table/new",
|
|
336
|
+
edit: "/fpu-permission/table/:id/edit",
|
|
337
|
+
view: "/fpu-permission/table/:id/view",
|
|
338
|
+
});
|
|
339
|
+
(0, chai_1.expect)((0, page_1.GetPageLayoutBySlug)("/fpu-permission/table/new")).to.not.equal(undefined);
|
|
340
|
+
});
|
|
341
|
+
it("registers a page with a custom permission id and drawer forms", async () => {
|
|
342
|
+
(0, chai_1.expect)(await formPages(customPermissionDrawerTable)).to.equal(undefined);
|
|
343
|
+
(0, chai_1.expect)((0, page_1.GetPageLayoutBySlug)("/fpu-permission-drawer")).to.not.equal(undefined);
|
|
344
|
+
});
|
|
345
|
+
it("fails the registration of a page mounting a table view owned by another", async () => {
|
|
346
|
+
class BorrowingPage extends (0, page_1.RootPageController)("fpu-borrowing", {
|
|
347
|
+
displayName: "Borrowed table view",
|
|
348
|
+
}) {
|
|
349
|
+
}
|
|
350
|
+
const meta = (0, interface_core_1.GetMetadata)(BorrowingPage, page_1.PageMetadata);
|
|
351
|
+
meta.SetComponent("table", defaultTable);
|
|
352
|
+
const failure = await meta.Register().then(() => undefined, (error) => error);
|
|
353
|
+
(0, chai_1.expect)(failure?.message ?? "").to.contain('TableView permission id "fpu-default.table" names no component');
|
|
354
|
+
(0, chai_1.expect)((0, page_1.GetPageLayoutBySlug)("/fpu-borrowing")).to.equal(undefined);
|
|
355
|
+
});
|
|
304
356
|
it("serializes no form page URL when the container is not a page", async () => {
|
|
305
357
|
(0, chai_1.expect)(await formPages(drawerTable)).to.equal(undefined);
|
|
306
358
|
});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"table-view-form-page-urls.test.js","sourceRoot":"","sources":["../../../../../src/test/unit/interfaces/dms-base/table-view-form-page-urls.test.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"table-view-form-page-urls.test.js","sourceRoot":"","sources":["../../../../../src/test/unit/interfaces/dms-base/table-view-form-page-urls.test.ts"],"names":[],"mappings":"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"}
|
|
@@ -7,29 +7,29 @@ export declare const authSchema: {
|
|
|
7
7
|
lang: z.ZodString;
|
|
8
8
|
token: z.ZodString;
|
|
9
9
|
}, "strip", z.ZodTypeAny, {
|
|
10
|
-
name: string;
|
|
11
|
-
lang: string;
|
|
12
|
-
email: string;
|
|
13
10
|
token: string;
|
|
14
|
-
password: string;
|
|
15
|
-
}, {
|
|
16
11
|
name: string;
|
|
17
|
-
|
|
12
|
+
password: string;
|
|
18
13
|
email: string;
|
|
14
|
+
lang: string;
|
|
15
|
+
}, {
|
|
19
16
|
token: string;
|
|
17
|
+
name: string;
|
|
20
18
|
password: string;
|
|
19
|
+
email: string;
|
|
20
|
+
lang: string;
|
|
21
21
|
}>;
|
|
22
22
|
login: z.ZodObject<{
|
|
23
23
|
email: z.ZodString;
|
|
24
24
|
password: z.ZodString;
|
|
25
25
|
keep_login: z.ZodOptional<z.ZodBoolean>;
|
|
26
26
|
}, "strip", z.ZodTypeAny, {
|
|
27
|
-
email: string;
|
|
28
27
|
password: string;
|
|
28
|
+
email: string;
|
|
29
29
|
keep_login?: boolean | undefined;
|
|
30
30
|
}, {
|
|
31
|
-
email: string;
|
|
32
31
|
password: string;
|
|
32
|
+
email: string;
|
|
33
33
|
keep_login?: boolean | undefined;
|
|
34
34
|
}>;
|
|
35
35
|
oauthCallback: z.ZodObject<{
|
|
@@ -42,14 +42,14 @@ export declare const authSchema: {
|
|
|
42
42
|
code: string;
|
|
43
43
|
state: string;
|
|
44
44
|
state_cookie: string;
|
|
45
|
-
language?: string | undefined;
|
|
46
45
|
invite?: string | undefined;
|
|
46
|
+
language?: string | undefined;
|
|
47
47
|
}, {
|
|
48
48
|
code: string;
|
|
49
49
|
state: string;
|
|
50
50
|
state_cookie: string;
|
|
51
|
-
language?: string | undefined;
|
|
52
51
|
invite?: string | undefined;
|
|
52
|
+
language?: string | undefined;
|
|
53
53
|
}>;
|
|
54
54
|
refresh: z.ZodObject<{
|
|
55
55
|
token: z.ZodString;
|
|
@@ -83,37 +83,37 @@ export declare const authSchema: {
|
|
|
83
83
|
token: z.ZodString;
|
|
84
84
|
email: z.ZodString;
|
|
85
85
|
}, "strip", z.ZodTypeAny, {
|
|
86
|
-
email: string;
|
|
87
86
|
token: string;
|
|
88
|
-
}, {
|
|
89
87
|
email: string;
|
|
88
|
+
}, {
|
|
90
89
|
token: string;
|
|
90
|
+
email: string;
|
|
91
91
|
}>;
|
|
92
92
|
reset: z.ZodObject<{
|
|
93
93
|
token: z.ZodString;
|
|
94
94
|
email: z.ZodString;
|
|
95
95
|
password: z.ZodString;
|
|
96
96
|
}, "strip", z.ZodTypeAny, {
|
|
97
|
-
email: string;
|
|
98
97
|
token: string;
|
|
99
98
|
password: string;
|
|
100
|
-
}, {
|
|
101
99
|
email: string;
|
|
100
|
+
}, {
|
|
102
101
|
token: string;
|
|
103
102
|
password: string;
|
|
103
|
+
email: string;
|
|
104
104
|
}>;
|
|
105
105
|
verify2FA: z.ZodObject<{
|
|
106
106
|
token: z.ZodString;
|
|
107
107
|
code: z.ZodString;
|
|
108
108
|
method: z.ZodEnum<["totp", "email", "backup"]>;
|
|
109
109
|
}, "strip", z.ZodTypeAny, {
|
|
110
|
-
code: string;
|
|
111
110
|
method: "email" | "totp" | "backup";
|
|
112
111
|
token: string;
|
|
113
|
-
}, {
|
|
114
112
|
code: string;
|
|
113
|
+
}, {
|
|
115
114
|
method: "email" | "totp" | "backup";
|
|
116
115
|
token: string;
|
|
116
|
+
code: string;
|
|
117
117
|
}>;
|
|
118
118
|
request2FAEmail: z.ZodObject<{
|
|
119
119
|
token: z.ZodString;
|
|
@@ -133,11 +133,11 @@ export declare const authSchema: {
|
|
|
133
133
|
method: z.ZodEnum<["totp", "email"]>;
|
|
134
134
|
code: z.ZodString;
|
|
135
135
|
}, "strip", z.ZodTypeAny, {
|
|
136
|
-
code: string;
|
|
137
136
|
method: "email" | "totp";
|
|
138
|
-
}, {
|
|
139
137
|
code: string;
|
|
138
|
+
}, {
|
|
140
139
|
method: "email" | "totp";
|
|
140
|
+
code: string;
|
|
141
141
|
}>;
|
|
142
142
|
regenerateBackup: z.ZodObject<{
|
|
143
143
|
code: z.ZodString;
|
|
@@ -5,18 +5,18 @@ export declare const onboardingRegisterAdminSchema: z.ZodEffects<z.ZodObject<{
|
|
|
5
5
|
password: z.ZodString;
|
|
6
6
|
}, "strip", z.ZodTypeAny, {
|
|
7
7
|
name: string;
|
|
8
|
-
email: string;
|
|
9
8
|
password: string;
|
|
9
|
+
email: string;
|
|
10
10
|
}, {
|
|
11
11
|
name: string;
|
|
12
|
-
email: string;
|
|
13
12
|
password: string;
|
|
13
|
+
email: string;
|
|
14
14
|
}>, {
|
|
15
15
|
email: string;
|
|
16
16
|
name: string;
|
|
17
17
|
password: string;
|
|
18
18
|
}, {
|
|
19
19
|
name: string;
|
|
20
|
-
email: string;
|
|
21
20
|
password: string;
|
|
21
|
+
email: string;
|
|
22
22
|
}>;
|
|
@@ -58,8 +58,8 @@
|
|
|
58
58
|
"zod": "^3.24.2"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
|
-
"@antelopejs/core": ">=1.
|
|
62
|
-
"@antelopejs/dms-frontend": ">=0.2.
|
|
61
|
+
"@antelopejs/core": ">=1.9.1 <2",
|
|
62
|
+
"@antelopejs/dms-frontend": ">=0.2.6 <1.0.0",
|
|
63
63
|
"@eslint/js": "^8.57.0",
|
|
64
64
|
"@inertiajs/vue3": "^3.7.0",
|
|
65
65
|
"@nuxt/ui": "4.10.0",
|
|
@@ -121,11 +121,11 @@ importers:
|
|
|
121
121
|
version: 3.25.76
|
|
122
122
|
devDependencies:
|
|
123
123
|
'@antelopejs/core':
|
|
124
|
-
specifier: '>=1.
|
|
125
|
-
version: 1.
|
|
124
|
+
specifier: '>=1.9.1 <2'
|
|
125
|
+
version: 1.9.1(@types/node@24.8.1)
|
|
126
126
|
'@antelopejs/dms-frontend':
|
|
127
|
-
specifier: '>=0.2.
|
|
128
|
-
version: 0.2.
|
|
127
|
+
specifier: '>=0.2.6 <1.0.0'
|
|
128
|
+
version: 0.2.6(@antelopejs/core@1.9.1(@types/node@24.8.1))
|
|
129
129
|
'@eslint/js':
|
|
130
130
|
specifier: ^8.57.0
|
|
131
131
|
version: 8.57.0
|
|
@@ -196,12 +196,12 @@ packages:
|
|
|
196
196
|
resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
|
|
197
197
|
engines: {node: '>=10'}
|
|
198
198
|
|
|
199
|
-
'@antelopejs/core@1.
|
|
200
|
-
resolution: {integrity: sha512-
|
|
199
|
+
'@antelopejs/core@1.9.1':
|
|
200
|
+
resolution: {integrity: sha512-MPLJak0rPluV4lgsdsO5ba03sgTxIGSncajBcoaoppuppQmksdpaemojIHiVLJ4LiG0iiH21Roaed8XXy1XkYQ==}
|
|
201
201
|
hasBin: true
|
|
202
202
|
|
|
203
|
-
'@antelopejs/dms-frontend@0.2.
|
|
204
|
-
resolution: {integrity: sha512-
|
|
203
|
+
'@antelopejs/dms-frontend@0.2.6':
|
|
204
|
+
resolution: {integrity: sha512-dCR9EWkpW4CekV5M87igyCZyRNXt9fVr5M2t9neATj1JqN/r6MltYJd4ShKnilSN4zQZ4ykkuFL/b9b0k79rDw==}
|
|
205
205
|
engines: {node: '>=20.12.0'}
|
|
206
206
|
hasBin: true
|
|
207
207
|
peerDependencies:
|
|
@@ -210,8 +210,8 @@ packages:
|
|
|
210
210
|
'@antelopejs/core':
|
|
211
211
|
optional: true
|
|
212
212
|
|
|
213
|
-
'@antelopejs/interface-core@0.1.
|
|
214
|
-
resolution: {integrity: sha512-
|
|
213
|
+
'@antelopejs/interface-core@0.1.1':
|
|
214
|
+
resolution: {integrity: sha512-nGxElt51KGWIwGsUcFdGT7ikQEqDB+mLj4NQ/eFL/DI1+j65GJqq9PdkVT4x3/YKchNA48iMbzXyW7bKUsQ8Iw==}
|
|
215
215
|
|
|
216
216
|
'@antfu/install-pkg@1.1.0':
|
|
217
217
|
resolution: {integrity: sha512-MGQsmw10ZyI+EJo45CdSER4zEb+p31LpDAFp2Z3gkSd1yqVZGi0Ebx++YTEMonJy4oChEMLsxZ64j8FH6sSqtQ==}
|
|
@@ -4325,9 +4325,9 @@ snapshots:
|
|
|
4325
4325
|
|
|
4326
4326
|
'@alloc/quick-lru@5.2.0': {}
|
|
4327
4327
|
|
|
4328
|
-
'@antelopejs/core@1.
|
|
4328
|
+
'@antelopejs/core@1.9.1(@types/node@24.8.1)':
|
|
4329
4329
|
dependencies:
|
|
4330
|
-
'@antelopejs/interface-core': 0.1.
|
|
4330
|
+
'@antelopejs/interface-core': 0.1.1
|
|
4331
4331
|
'@types/proper-lockfile': 4.1.4
|
|
4332
4332
|
boxen: 8.0.1
|
|
4333
4333
|
chalk: 4.1.2
|
|
@@ -4344,7 +4344,7 @@ snapshots:
|
|
|
4344
4344
|
transitivePeerDependencies:
|
|
4345
4345
|
- '@types/node'
|
|
4346
4346
|
|
|
4347
|
-
'@antelopejs/dms-frontend@0.2.
|
|
4347
|
+
'@antelopejs/dms-frontend@0.2.6(@antelopejs/core@1.9.1(@types/node@24.8.1))':
|
|
4348
4348
|
dependencies:
|
|
4349
4349
|
boxen: 5.1.2
|
|
4350
4350
|
chalk: 4.1.2
|
|
@@ -4355,14 +4355,14 @@ snapshots:
|
|
|
4355
4355
|
semver: 7.8.5
|
|
4356
4356
|
unzipper: 0.12.5
|
|
4357
4357
|
optionalDependencies:
|
|
4358
|
-
'@antelopejs/core': 1.
|
|
4358
|
+
'@antelopejs/core': 1.9.1(@types/node@24.8.1)
|
|
4359
4359
|
'@oxc-parser/binding-darwin-arm64': 0.95.0
|
|
4360
4360
|
'@oxc-parser/binding-darwin-x64': 0.95.0
|
|
4361
4361
|
'@oxc-parser/binding-linux-arm64-gnu': 0.95.0
|
|
4362
4362
|
'@oxc-parser/binding-linux-x64-gnu': 0.95.0
|
|
4363
4363
|
'@oxc-parser/binding-win32-x64-msvc': 0.95.0
|
|
4364
4364
|
|
|
4365
|
-
'@antelopejs/interface-core@0.1.
|
|
4365
|
+
'@antelopejs/interface-core@0.1.1':
|
|
4366
4366
|
dependencies:
|
|
4367
4367
|
reflect-metadata: 0.2.2
|
|
4368
4368
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@antelopejs/dms",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.1",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+https://github.com/AntelopeJS/dms.git"
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
"types": "dist/index.d.ts",
|
|
10
10
|
"files": [
|
|
11
11
|
"dist",
|
|
12
|
+
"!dist/.tsbuildinfo",
|
|
12
13
|
"frontend-vue",
|
|
13
14
|
"skills",
|
|
14
15
|
"package.json",
|
|
@@ -31,11 +32,11 @@
|
|
|
31
32
|
"2fa": "^0.1.2",
|
|
32
33
|
"@antelopejs/interface-api": ">=0.0.13 <1.0.0",
|
|
33
34
|
"@antelopejs/interface-api-util": ">=0.1.2 <1.0.0",
|
|
34
|
-
"@antelopejs/interface-core": ">=0.
|
|
35
|
+
"@antelopejs/interface-core": ">=0.1.1 <1.0.0",
|
|
35
36
|
"@antelopejs/interface-data-api": ">=0.1.9 <1.0.0",
|
|
36
37
|
"@antelopejs/interface-database": ">=0.1.7 <1.0.0",
|
|
37
38
|
"@antelopejs/interface-database-decorators": ">=0.1.6 <1.0.0",
|
|
38
|
-
"@antelopejs/interface-dms": ">=0.
|
|
39
|
+
"@antelopejs/interface-dms": ">=0.2.0 <1.0.0",
|
|
39
40
|
"@antelopejs/interface-email": ">=0.0.5 <1.0.0",
|
|
40
41
|
"@antelopejs/interface-file-storage": ">=0.1.3 <1.0.0",
|
|
41
42
|
"archiver": "^7.0.1",
|
|
@@ -51,7 +52,7 @@
|
|
|
51
52
|
"zod": "~3.24.2"
|
|
52
53
|
},
|
|
53
54
|
"devDependencies": {
|
|
54
|
-
"@antelopejs/core": ">=1.9.
|
|
55
|
+
"@antelopejs/core": ">=1.9.1 <2",
|
|
55
56
|
"@antelopejs/tooling-configs": ">=0.0.6 <1.0.0",
|
|
56
57
|
"@types/archiver": "^6.0.4",
|
|
57
58
|
"@types/chai": "^4.3.20",
|
|
@@ -73,7 +74,7 @@
|
|
|
73
74
|
"release-it-changelogen": "^0.1.0",
|
|
74
75
|
"rimraf": "^6.1.3",
|
|
75
76
|
"tsc-alias": "^1.9.1",
|
|
76
|
-
"typescript": "^
|
|
77
|
+
"typescript": "^6.0.3"
|
|
77
78
|
},
|
|
78
79
|
"exports": {
|
|
79
80
|
".": {
|
|
@@ -83,24 +84,17 @@
|
|
|
83
84
|
"./package.json": "./package.json",
|
|
84
85
|
"./interfaces/*": null
|
|
85
86
|
},
|
|
86
|
-
"typesVersions": {
|
|
87
|
-
"*": {
|
|
88
|
-
"pages": [
|
|
89
|
-
"dist/pages/index.d.ts"
|
|
90
|
-
]
|
|
91
|
-
}
|
|
92
|
-
},
|
|
93
87
|
"publishConfig": {
|
|
94
88
|
"access": "public",
|
|
95
89
|
"provenance": true,
|
|
96
90
|
"registry": "https://registry.npmjs.org/"
|
|
97
91
|
},
|
|
98
92
|
"optionalDependencies": {
|
|
99
|
-
"@antelopejs/interface-dms-automation": ">=0.0
|
|
93
|
+
"@antelopejs/interface-dms-automation": ">=0.1.0 <1.0.0",
|
|
100
94
|
"@antelopejs/interface-redis": ">=0.0.8 <1.0.0"
|
|
101
95
|
},
|
|
102
96
|
"peerDependencies": {
|
|
103
|
-
"@antelopejs/core": ">=1.
|
|
97
|
+
"@antelopejs/core": ">=1.9.1 <2"
|
|
104
98
|
},
|
|
105
99
|
"peerDependenciesMeta": {
|
|
106
100
|
"@antelopejs/core": {
|
|
@@ -108,22 +102,17 @@
|
|
|
108
102
|
}
|
|
109
103
|
},
|
|
110
104
|
"scripts": {
|
|
111
|
-
"build": "pnpm --filter @antelopejs/interface-dms build && rimraf dist && tsc
|
|
105
|
+
"build": "pnpm --filter @antelopejs/interface-dms build && rimraf dist && tsc && tsc-alias",
|
|
112
106
|
"format": "oxfmt . && pnpm --dir frontend-vue format",
|
|
113
107
|
"dev": "ajs project run --inspect -w -p playground",
|
|
114
108
|
"frontend:dev": "pnpm --dir playground frontend:dev",
|
|
115
109
|
"lint:fix": "oxlint --fix --max-warnings=1000000 && oxfmt . && pnpm --dir frontend-vue lint:fix",
|
|
116
110
|
"lint": "oxlint && oxfmt --check . && pnpm --dir frontend-vue lint",
|
|
117
|
-
"
|
|
118
|
-
"
|
|
119
|
-
"check:inertia-contracts": "node scripts/check-inertia-contracts.mjs",
|
|
120
|
-
"check:inertia-modules": "node scripts/check-inertia-modules.mjs",
|
|
121
|
-
"typecheck": "pnpm --filter @antelopejs/interface-dms build && tsc -p tsconfig.json",
|
|
122
|
-
"check:package": "node scripts/check-package.mjs",
|
|
123
|
-
"test": "pnpm run build && ajs module test . && pnpm run check:package",
|
|
111
|
+
"typecheck": "pnpm --filter @antelopejs/interface-dms build && tsc --noEmit",
|
|
112
|
+
"test": "pnpm run build && ajs module test .",
|
|
124
113
|
"test:unit": "pnpm run build && DMS_TEST_DIR=dist/test/unit ajs module test .",
|
|
125
114
|
"test:integration": "pnpm run build && DMS_TEST_DIR=dist/test/integration ajs module test .",
|
|
126
|
-
"test:watch": "tsc -
|
|
115
|
+
"test:watch": "tsc -w & tsc-alias -w",
|
|
127
116
|
"release": "pnpm --filter @antelopejs/interface-dms build && pnpm --dir frontend-vue install --frozen-lockfile && release-it",
|
|
128
117
|
"knip": "knip --dependencies",
|
|
129
118
|
"knip:all": "knip"
|
package/skills/dms/REFERENCE.md
CHANGED
|
@@ -15,8 +15,7 @@ List a section to see its files:
|
|
|
15
15
|
| `docs/04.components/` | Component catalog: charts/widgets, layout, forms, tables, tree, DataTypes, DataController, file storage |
|
|
16
16
|
| `docs/05.extending-the-dashboard/` | Dashboard chrome, theming, custom DataTypes (frontend side), table-view displays, component events, period filtering |
|
|
17
17
|
| `docs/06.frontend-composables/` | Composables a custom frontend module's Vue calls: auth'd requests, realtime, page context, UI toolkit |
|
|
18
|
-
| `docs/07.
|
|
19
|
-
| `docs/08.interfaces/` | The contract reference for `@antelopejs/interface-dms`, one folder per domain: `core`, `auth`, `base`, `notifications`, `html-render` |
|
|
18
|
+
| `docs/07.interfaces/` | The contract reference for `@antelopejs/interface-dms`, one folder per domain: `core`, `auth`, `base`, `notifications`, `html-render` |
|
|
20
19
|
|
|
21
20
|
## Exact interface surfaces: don't memorize, look them up
|
|
22
21
|
|
|
@@ -37,7 +36,7 @@ Three ways to read a contract:
|
|
|
37
36
|
node "<antelopejs-plugin>/scripts/resolve-interface.mjs" show <scope>/interface-<name>
|
|
38
37
|
```
|
|
39
38
|
|
|
40
|
-
2. **The prose reference** — `docs/
|
|
39
|
+
2. **The prose reference** — `docs/07.interfaces/`, one folder per domain, with the whole subpath
|
|
41
40
|
map in its `index.md`.
|
|
42
41
|
|
|
43
42
|
3. **The sources shipped with this skill** — this workspace carries the interface package; read
|
package/skills/dms/SKILL.md
CHANGED
|
@@ -75,7 +75,7 @@ chatbox.
|
|
|
75
75
|
## Docs & exact interface surfaces (read for depth)
|
|
76
76
|
|
|
77
77
|
Long-form reference docs live in this package's `docs/` directory (shipped with the package; also
|
|
78
|
-
at the repo root), in
|
|
78
|
+
at the repo root), in seven numbered sections — the last, `docs/07.interfaces/`, is the contract
|
|
79
79
|
reference for `@antelopejs/interface-dms` domain by domain. DataTypes, component builder options, and auth
|
|
80
80
|
decorators are **versioned interface contracts** — look them up rather than hand-recalling; treat
|
|
81
81
|
skill examples as patterns, not gospel. See [REFERENCE.md](REFERENCE.md) for the docs map and the
|
|
@@ -55,10 +55,9 @@ AntelopeJS — see the **antelopejs** plugin's author/consume skills. The DMS-sp
|
|
|
55
55
|
`src/implementations/<name>/index.ts` in the module, **wire** with `ImplementInterface` in
|
|
56
56
|
`construct` (the lifecycle entry in [SKILL.md](SKILL.md)). Keep `/** @internal */` on the
|
|
57
57
|
`internal` namespace — the convention marking the registration surface as non-consumer API.
|
|
58
|
-
- **Expose** each directory index as an explicit `exports` entry
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
`import { … } from "@antelopejs/interface-<name>"`.
|
|
58
|
+
- **Expose** each directory index as an explicit `exports` entry; consumers resolve it with
|
|
59
|
+
`moduleResolution: bundler`, `node16` or `nodenext`. Consumers add the interface package to
|
|
60
|
+
`dependencies` and `import { … } from "@antelopejs/interface-<name>"`.
|
|
62
61
|
- Anything consumer-facing lives in the interface package; never re-export internal modules —
|
|
63
62
|
if a helper needs internal infrastructure, use the hook-setter indirection pattern the
|
|
64
63
|
existing modules use rather than exposing the internals. Runtime behaviour stays in the
|
|
@@ -76,7 +75,7 @@ AntelopeJS — see the **antelopejs** plugin's author/consume skills. The DMS-sp
|
|
|
76
75
|
3. **Scaffold the layout above**: `src/index.ts`, `src/pages/`, `src/routes/` (if it serves data),
|
|
77
76
|
`packages/interface-<name>/` + `src/implementations/<name>/` (only if it exposes one),
|
|
78
77
|
`frontend-vue/` (components registered from the root `dms.frontend.ts`), and the manifest
|
|
79
|
-
(`antelopeJs` block, plus the interface package's `exports
|
|
78
|
+
(`antelopeJs` block, plus the interface package's `exports`).
|
|
80
79
|
4. **Wire the basics**: `RegisterModule({ id, title, icon, … })`, one `@RegisterPage()` page,
|
|
81
80
|
the `AddFrontendModule` call. Add the `$dms_<name>.*` keys to **every** locale file under
|
|
82
81
|
`frontend-vue/i18n/locales/`.
|
|
@@ -25,7 +25,7 @@ defining the module's own interface, and the scaffolding checklist.
|
|
|
25
25
|
## The `package.json` manifest
|
|
26
26
|
|
|
27
27
|
The `antelopeJs` block is what makes it a DMS module ([REFERENCE.md](REFERENCE.md) has the full
|
|
28
|
-
manifest, including the `exports
|
|
28
|
+
manifest, including the `exports` entries for an interface subpath).
|
|
29
29
|
`implements` lists only the interfaces the module *provides* — the official modules keep it `[]`
|
|
30
30
|
when they provide none (`dms-lang`, `dms-saas`); consumed interfaces are plain `dependencies`
|
|
31
31
|
(no manifest field). Typical dependencies: `@antelopejs/dms` plus
|
|
@@ -1,130 +0,0 @@
|
|
|
1
|
-
import assert from "node:assert/strict";
|
|
2
|
-
import { execFileSync } from "node:child_process";
|
|
3
|
-
import { mkdirSync } from "node:fs";
|
|
4
|
-
import { resolve } from "node:path";
|
|
5
|
-
|
|
6
|
-
const [url, theme = "custom", screenshots] = process.argv.slice(2);
|
|
7
|
-
if (!url)
|
|
8
|
-
throw new Error(
|
|
9
|
-
"Usage: node tests/theming-browser.mjs URL [custom|default] [screenshots]",
|
|
10
|
-
);
|
|
11
|
-
const session = "dms-theming-test";
|
|
12
|
-
const transitionWait = "500";
|
|
13
|
-
const browser = (...args) =>
|
|
14
|
-
execFileSync("agent-browser", ["--session", session, ...args], {
|
|
15
|
-
encoding: "utf8",
|
|
16
|
-
}).trim();
|
|
17
|
-
const evaluate = (expression) => JSON.parse(browser("eval", expression));
|
|
18
|
-
|
|
19
|
-
function inspectTheme() {
|
|
20
|
-
const root = getComputedStyle(document.documentElement);
|
|
21
|
-
const probe = document.createElement("span");
|
|
22
|
-
document.body.append(probe);
|
|
23
|
-
const colors = ["--ui-primary", "--ui-color-primary-600", "--ui-success"].map(
|
|
24
|
-
(token) => {
|
|
25
|
-
probe.style.backgroundColor = `var(${token})`;
|
|
26
|
-
return getComputedStyle(probe).backgroundColor;
|
|
27
|
-
},
|
|
28
|
-
);
|
|
29
|
-
probe.remove();
|
|
30
|
-
const background = (selector) =>
|
|
31
|
-
getComputedStyle(document.querySelector(selector)).backgroundColor;
|
|
32
|
-
const images = [...document.querySelectorAll("main img")].filter(
|
|
33
|
-
(image) => image.getClientRects().length,
|
|
34
|
-
);
|
|
35
|
-
return {
|
|
36
|
-
radius: root.getPropertyValue("--ui-radius").trim(),
|
|
37
|
-
font: root.getPropertyValue("--font-sans"),
|
|
38
|
-
accent: root.getPropertyValue("--dms-accent").trim(),
|
|
39
|
-
accentPalette: ["500", "400"].map((shade) =>
|
|
40
|
-
root.getPropertyValue(`--ui-color-primary-${shade}`).trim(),
|
|
41
|
-
),
|
|
42
|
-
config: document.querySelector("#config").textContent,
|
|
43
|
-
colors,
|
|
44
|
-
button: background("#primary"),
|
|
45
|
-
primary: background("#primary-switch"),
|
|
46
|
-
success: background("#success-switch"),
|
|
47
|
-
surface: background(".dms-card"),
|
|
48
|
-
logosLoaded:
|
|
49
|
-
images.length === 2 &&
|
|
50
|
-
images.every((image) => image.complete && image.naturalWidth > 0),
|
|
51
|
-
logos: images.map((image) => new URL(image.src).pathname),
|
|
52
|
-
};
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
function checkLogos(result, mode) {
|
|
56
|
-
assert.ok(result.logosLoaded, "logos loaded");
|
|
57
|
-
const logoRoot = theme === "custom" ? "/brand" : "/images/antelope-logo";
|
|
58
|
-
assert.deepEqual(result.logos, [
|
|
59
|
-
`${logoRoot}/${mode}.svg`,
|
|
60
|
-
`${logoRoot}/icon.svg`,
|
|
61
|
-
]);
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
function checkTheme(mode) {
|
|
65
|
-
const result = evaluate(`(${inspectTheme.toString()})()`);
|
|
66
|
-
const isCustom = theme === "custom";
|
|
67
|
-
assert.ok(result.radius.endsWith("rem"), "radius unit");
|
|
68
|
-
assert.equal(
|
|
69
|
-
Number.parseFloat(result.radius),
|
|
70
|
-
isCustom ? 0.5 : 0.25,
|
|
71
|
-
"radius",
|
|
72
|
-
);
|
|
73
|
-
assert.ok(result.font.includes(isCustom ? "Georgia" : "Geist"), "font");
|
|
74
|
-
assert.ok(
|
|
75
|
-
result.config.includes(isCustom ? "example" : "dms"),
|
|
76
|
-
"layer precedence",
|
|
77
|
-
);
|
|
78
|
-
assert.equal(result.button, result.colors[0], "primary action");
|
|
79
|
-
assert.equal(result.primary, result.colors[1], "primary switch shade");
|
|
80
|
-
assert.equal(
|
|
81
|
-
result.success,
|
|
82
|
-
result.colors[2],
|
|
83
|
-
"success switch semantic color",
|
|
84
|
-
);
|
|
85
|
-
const darkSurface = isCustom ? "rgb(36, 21, 54)" : "rgb(16, 17, 25)";
|
|
86
|
-
assert.equal(
|
|
87
|
-
result.surface,
|
|
88
|
-
mode === "dark" ? darkSurface : "rgb(255, 255, 255)",
|
|
89
|
-
);
|
|
90
|
-
assert.equal(
|
|
91
|
-
result.accent,
|
|
92
|
-
result.accentPalette[Number(mode === "dark")],
|
|
93
|
-
"glow accent",
|
|
94
|
-
);
|
|
95
|
-
checkLogos(result, mode);
|
|
96
|
-
console.log(`${theme}/${mode}: tokens, switches and logos passed`);
|
|
97
|
-
}
|
|
98
|
-
|
|
99
|
-
function checkMode(mode) {
|
|
100
|
-
const modeCondition = `document.documentElement.classList.contains('dark') === ${mode === "dark"}`;
|
|
101
|
-
if (!evaluate(modeCondition)) browser("click", "#mode");
|
|
102
|
-
browser("wait", "--fn", modeCondition);
|
|
103
|
-
browser("wait", transitionWait);
|
|
104
|
-
checkTheme(mode);
|
|
105
|
-
browser("click", "#primary-switch");
|
|
106
|
-
browser(
|
|
107
|
-
"wait",
|
|
108
|
-
"--fn",
|
|
109
|
-
'document.querySelector("#primary-switch").getAttribute("aria-checked") === "false"',
|
|
110
|
-
);
|
|
111
|
-
browser("click", "#primary-switch");
|
|
112
|
-
browser("wait", transitionWait);
|
|
113
|
-
checkTheme(mode);
|
|
114
|
-
if (!screenshots) return;
|
|
115
|
-
mkdirSync(screenshots, { recursive: true });
|
|
116
|
-
browser("screenshot", resolve(screenshots, `${theme}-${mode}.png`));
|
|
117
|
-
}
|
|
118
|
-
|
|
119
|
-
try {
|
|
120
|
-
browser("open", url);
|
|
121
|
-
browser("set", "viewport", "1280", "900", "2");
|
|
122
|
-
browser(
|
|
123
|
-
"wait",
|
|
124
|
-
"--fn",
|
|
125
|
-
'document.querySelector("main")?.dataset.ready === "true"',
|
|
126
|
-
);
|
|
127
|
-
for (const mode of ["light", "dark"]) checkMode(mode);
|
|
128
|
-
} finally {
|
|
129
|
-
browser("close");
|
|
130
|
-
}
|