@aerogel/core 0.0.0-next.c29ffcd25bffdbed37ecce3aac1ba14cde3e9d39 → 0.0.0-next.c33ad773d3eb977461630ff22012d99eeedf46cb
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/aerogel-core.d.ts +1840 -1813
- package/dist/aerogel-core.js +3129 -0
- package/dist/aerogel-core.js.map +1 -0
- package/package.json +27 -37
- package/src/bootstrap/bootstrap.test.ts +4 -7
- package/src/bootstrap/index.ts +14 -15
- package/src/bootstrap/options.ts +1 -1
- package/src/components/{AGAppLayout.vue → AppLayout.vue} +4 -4
- package/src/components/{AGAppModals.vue → AppModals.vue} +3 -4
- package/src/components/{AGAppOverlays.vue → AppOverlays.vue} +5 -10
- package/src/components/AppToasts.vue +16 -0
- package/src/components/composition.ts +1 -1
- package/src/components/contracts/AlertModal.ts +4 -0
- package/src/components/contracts/Button.ts +16 -0
- package/src/components/contracts/ConfirmModal.ts +41 -0
- package/src/components/contracts/DropdownMenu.ts +11 -0
- package/src/components/contracts/ErrorReportModal.ts +29 -0
- package/src/components/contracts/Input.ts +26 -0
- package/src/components/contracts/LoadingModal.ts +18 -0
- package/src/components/contracts/Modal.ts +13 -0
- package/src/components/contracts/PromptModal.ts +28 -0
- package/src/components/contracts/Select.ts +33 -0
- package/src/components/contracts/Toast.ts +13 -0
- package/src/components/contracts/index.ts +9 -0
- package/src/components/contracts/shared.ts +9 -0
- package/src/components/headless/HeadlessButton.vue +50 -0
- package/src/components/headless/HeadlessInput.vue +59 -0
- package/src/components/headless/{forms/AGHeadlessInputDescription.vue → HeadlessInputDescription.vue} +7 -8
- package/src/components/headless/{forms/AGHeadlessInputError.vue → HeadlessInputError.vue} +4 -8
- package/src/components/headless/{forms/AGHeadlessInputInput.vue → HeadlessInputInput.vue} +13 -22
- package/src/components/headless/{forms/AGHeadlessInputLabel.vue → HeadlessInputLabel.vue} +3 -7
- package/src/components/headless/{forms/AGHeadlessInputTextArea.vue → HeadlessInputTextArea.vue} +8 -11
- package/src/components/headless/{modals/AGHeadlessModal.vue → HeadlessModal.vue} +17 -23
- package/src/components/headless/HeadlessModalContent.vue +24 -0
- package/src/components/headless/HeadlessModalOverlay.vue +12 -0
- package/src/components/headless/HeadlessModalTitle.vue +12 -0
- package/src/components/headless/HeadlessSelect.vue +92 -0
- package/src/components/headless/{forms/AGHeadlessSelectError.vue → HeadlessSelectError.vue} +5 -6
- package/src/components/headless/HeadlessSelectLabel.vue +25 -0
- package/src/components/headless/HeadlessSelectOption.vue +34 -0
- package/src/components/headless/HeadlessSelectOptions.vue +30 -0
- package/src/components/headless/HeadlessSelectTrigger.vue +22 -0
- package/src/components/headless/HeadlessSelectValue.vue +15 -0
- package/src/components/headless/HeadlessToast.vue +18 -0
- package/src/components/headless/HeadlessToastAction.vue +13 -0
- package/src/components/headless/index.ts +18 -3
- package/src/components/index.ts +4 -10
- package/src/components/ui/AdvancedOptions.vue +18 -0
- package/src/components/ui/AlertModal.vue +13 -0
- package/src/components/ui/Button.vue +98 -0
- package/src/components/ui/Checkbox.vue +56 -0
- package/src/components/ui/ConfirmModal.vue +42 -0
- package/src/components/ui/DropdownMenu.vue +33 -0
- package/src/components/ui/EditableContent.vue +82 -0
- package/src/components/ui/ErrorMessage.vue +15 -0
- package/src/components/ui/ErrorReportModal.vue +62 -0
- package/src/components/{modals/AGErrorReportModalButtons.vue → ui/ErrorReportModalButtons.vue} +34 -27
- package/src/components/ui/ErrorReportModalTitle.vue +24 -0
- package/src/components/{forms/AGForm.vue → ui/Form.vue} +4 -5
- package/src/components/ui/Input.vue +56 -0
- package/src/components/ui/Link.vue +12 -0
- package/src/components/ui/LoadingModal.vue +32 -0
- package/src/components/ui/Markdown.vue +69 -0
- package/src/components/ui/Modal.vue +70 -0
- package/src/components/{modals/AGModalContext.vue → ui/ModalContext.vue} +7 -9
- package/src/components/ui/ProgressBar.vue +50 -0
- package/src/components/ui/PromptModal.vue +35 -0
- package/src/components/ui/Select.vue +53 -0
- package/src/components/{lib/AGStartupCrash.vue → ui/StartupCrash.vue} +8 -8
- package/src/components/ui/Toast.vue +42 -0
- package/src/components/ui/index.ts +23 -0
- package/src/components/utils.ts +106 -9
- package/src/directives/index.ts +9 -5
- package/src/directives/measure.ts +1 -1
- package/src/errors/Errors.state.ts +1 -1
- package/src/errors/Errors.ts +17 -18
- package/src/errors/index.ts +9 -6
- package/src/errors/utils.ts +1 -1
- package/src/forms/{Form.test.ts → FormController.test.ts} +5 -4
- package/src/forms/{Form.ts → FormController.ts} +22 -19
- package/src/forms/composition.ts +4 -4
- package/src/forms/index.ts +2 -2
- package/src/forms/utils.ts +2 -2
- package/src/index.css +41 -0
- package/src/jobs/Job.ts +2 -2
- package/src/lang/DefaultLangProvider.ts +7 -4
- package/src/lang/Lang.state.ts +1 -1
- package/src/lang/Lang.ts +1 -1
- package/src/lang/index.ts +8 -6
- package/src/plugins/Plugin.ts +1 -1
- package/src/plugins/index.ts +10 -7
- package/src/services/App.state.ts +4 -3
- package/src/services/App.ts +4 -4
- package/src/services/Cache.ts +1 -1
- package/src/services/Events.ts +2 -2
- package/src/services/Service.ts +21 -21
- package/src/services/Storage.ts +3 -3
- package/src/services/index.ts +5 -4
- package/src/services/utils.ts +2 -2
- package/src/testing/index.ts +4 -3
- package/src/testing/setup.ts +3 -19
- package/src/ui/UI.state.ts +12 -7
- package/src/ui/UI.ts +63 -58
- package/src/ui/index.ts +18 -18
- package/src/utils/composition/events.ts +2 -2
- package/src/utils/composition/forms.ts +4 -3
- package/src/utils/markdown.ts +3 -5
- package/src/utils/vdom.ts +31 -0
- package/src/utils/vue.ts +7 -16
- package/dist/aerogel-core.cjs.js +0 -2
- package/dist/aerogel-core.cjs.js.map +0 -1
- package/dist/aerogel-core.esm.js +0 -2
- package/dist/aerogel-core.esm.js.map +0 -1
- package/histoire.config.ts +0 -7
- package/noeldemartin.config.js +0 -5
- package/postcss.config.js +0 -6
- package/src/assets/histoire.css +0 -3
- package/src/components/AGAppSnackbars.vue +0 -13
- package/src/components/constants.ts +0 -8
- package/src/components/forms/AGButton.vue +0 -44
- package/src/components/forms/AGCheckbox.vue +0 -41
- package/src/components/forms/AGInput.vue +0 -40
- package/src/components/forms/AGSelect.story.vue +0 -46
- package/src/components/forms/AGSelect.vue +0 -60
- package/src/components/forms/index.ts +0 -5
- package/src/components/headless/forms/AGHeadlessButton.ts +0 -3
- package/src/components/headless/forms/AGHeadlessButton.vue +0 -62
- package/src/components/headless/forms/AGHeadlessInput.ts +0 -34
- package/src/components/headless/forms/AGHeadlessInput.vue +0 -70
- package/src/components/headless/forms/AGHeadlessSelect.ts +0 -42
- package/src/components/headless/forms/AGHeadlessSelect.vue +0 -77
- package/src/components/headless/forms/AGHeadlessSelectButton.vue +0 -24
- package/src/components/headless/forms/AGHeadlessSelectLabel.vue +0 -24
- package/src/components/headless/forms/AGHeadlessSelectOption.ts +0 -4
- package/src/components/headless/forms/AGHeadlessSelectOption.vue +0 -39
- package/src/components/headless/forms/AGHeadlessSelectOptions.ts +0 -3
- package/src/components/headless/forms/composition.ts +0 -10
- package/src/components/headless/forms/index.ts +0 -18
- package/src/components/headless/modals/AGHeadlessModal.ts +0 -36
- package/src/components/headless/modals/AGHeadlessModalPanel.vue +0 -32
- package/src/components/headless/modals/AGHeadlessModalTitle.vue +0 -23
- package/src/components/headless/modals/index.ts +0 -4
- package/src/components/headless/snackbars/AGHeadlessSnackbar.vue +0 -10
- package/src/components/headless/snackbars/index.ts +0 -40
- package/src/components/interfaces.ts +0 -24
- package/src/components/lib/AGErrorMessage.vue +0 -16
- package/src/components/lib/AGLink.vue +0 -9
- package/src/components/lib/AGMarkdown.vue +0 -54
- package/src/components/lib/AGMeasured.vue +0 -16
- package/src/components/lib/AGProgressBar.vue +0 -45
- package/src/components/lib/index.ts +0 -6
- package/src/components/modals/AGAlertModal.ts +0 -18
- package/src/components/modals/AGAlertModal.vue +0 -14
- package/src/components/modals/AGConfirmModal.ts +0 -42
- package/src/components/modals/AGConfirmModal.vue +0 -26
- package/src/components/modals/AGErrorReportModal.ts +0 -49
- package/src/components/modals/AGErrorReportModal.vue +0 -54
- package/src/components/modals/AGErrorReportModalTitle.vue +0 -25
- package/src/components/modals/AGLoadingModal.ts +0 -29
- package/src/components/modals/AGLoadingModal.vue +0 -15
- package/src/components/modals/AGModal.ts +0 -11
- package/src/components/modals/AGModal.vue +0 -39
- package/src/components/modals/AGModalContext.ts +0 -8
- package/src/components/modals/AGModalTitle.vue +0 -9
- package/src/components/modals/AGPromptModal.ts +0 -41
- package/src/components/modals/AGPromptModal.vue +0 -34
- package/src/components/modals/index.ts +0 -17
- package/src/components/snackbars/AGSnackbar.vue +0 -36
- package/src/components/snackbars/index.ts +0 -3
- package/src/directives/initial-focus.ts +0 -11
- package/src/main.histoire.ts +0 -1
- package/tailwind.config.js +0 -4
- package/tsconfig.json +0 -11
- package/vite.config.ts +0 -17
- /package/src/{main.ts → index.ts} +0 -0
package/src/errors/Errors.ts
CHANGED
|
@@ -1,16 +1,15 @@
|
|
|
1
|
-
import { JSError, facade, isObject, objectWithoutEmpty, toString } from '@noeldemartin/utils';
|
|
1
|
+
import { JSError, facade, isDevelopment, isObject, isTesting, objectWithoutEmpty, toString } from '@noeldemartin/utils';
|
|
2
2
|
|
|
3
|
-
import App from '
|
|
4
|
-
import ServiceBootError from '
|
|
5
|
-
import UI, { UIComponents } from '
|
|
6
|
-
import { translateWithDefault } from '
|
|
3
|
+
import App from '@aerogel/core/services/App';
|
|
4
|
+
import ServiceBootError from '@aerogel/core/errors/ServiceBootError';
|
|
5
|
+
import UI, { UIComponents } from '@aerogel/core/ui/UI';
|
|
6
|
+
import { translateWithDefault } from '@aerogel/core/lang/utils';
|
|
7
|
+
import { Events } from '@aerogel/core/services';
|
|
8
|
+
import type { ErrorReportModalProps } from '@aerogel/core/components/contracts/ErrorReportModal';
|
|
9
|
+
import type { ModalComponent } from '@aerogel/core/ui/UI.state';
|
|
7
10
|
|
|
8
11
|
import Service from './Errors.state';
|
|
9
|
-
import { Colors } from '@/components/constants';
|
|
10
|
-
import { Events } from '@/services';
|
|
11
|
-
import type { AGErrorReportModalProps } from '@/components/modals/AGErrorReportModal';
|
|
12
12
|
import type { ErrorReport, ErrorReportLog, ErrorSource } from './Errors.state';
|
|
13
|
-
import type { ModalComponent } from '@/ui/UI.state';
|
|
14
13
|
|
|
15
14
|
export class ErrorsService extends Service {
|
|
16
15
|
|
|
@@ -34,7 +33,7 @@ export class ErrorsService extends Service {
|
|
|
34
33
|
return;
|
|
35
34
|
}
|
|
36
35
|
|
|
37
|
-
UI.openModal<ModalComponent<
|
|
36
|
+
UI.openModal<ModalComponent<ErrorReportModalProps>>(UI.requireComponent(UIComponents.ErrorReportModal), {
|
|
38
37
|
reports,
|
|
39
38
|
});
|
|
40
39
|
}
|
|
@@ -42,11 +41,11 @@ export class ErrorsService extends Service {
|
|
|
42
41
|
public async report(error: ErrorSource, message?: string): Promise<void> {
|
|
43
42
|
await Events.emit('error', { error, message });
|
|
44
43
|
|
|
45
|
-
if (
|
|
44
|
+
if (isTesting('unit')) {
|
|
46
45
|
throw error;
|
|
47
46
|
}
|
|
48
47
|
|
|
49
|
-
if (
|
|
48
|
+
if (isDevelopment()) {
|
|
50
49
|
this.logError(error);
|
|
51
50
|
}
|
|
52
51
|
|
|
@@ -71,17 +70,17 @@ export class ErrorsService extends Service {
|
|
|
71
70
|
date: new Date(),
|
|
72
71
|
};
|
|
73
72
|
|
|
74
|
-
UI.
|
|
73
|
+
UI.toast(
|
|
75
74
|
message ??
|
|
76
75
|
translateWithDefault('errors.notice', 'Something went wrong, but it\'s not your fault. Try again!'),
|
|
77
76
|
{
|
|
78
|
-
|
|
77
|
+
variant: 'danger',
|
|
79
78
|
actions: [
|
|
80
79
|
{
|
|
81
|
-
|
|
80
|
+
label: translateWithDefault('errors.viewDetails', 'View details'),
|
|
82
81
|
dismiss: true,
|
|
83
|
-
|
|
84
|
-
UI.openModal<ModalComponent<
|
|
82
|
+
click: () =>
|
|
83
|
+
UI.openModal<ModalComponent<ErrorReportModalProps>>(
|
|
85
84
|
UI.requireComponent(UIComponents.ErrorReportModal),
|
|
86
85
|
{ reports: [report] },
|
|
87
86
|
),
|
|
@@ -178,7 +177,7 @@ export class ErrorsService extends Service {
|
|
|
178
177
|
|
|
179
178
|
export default facade(ErrorsService);
|
|
180
179
|
|
|
181
|
-
declare module '
|
|
180
|
+
declare module '@aerogel/core/services/Events' {
|
|
182
181
|
export interface EventsPayload {
|
|
183
182
|
error: { error: ErrorSource; message?: string };
|
|
184
183
|
}
|
package/src/errors/index.ts
CHANGED
|
@@ -1,13 +1,16 @@
|
|
|
1
1
|
import type { App } from 'vue';
|
|
2
2
|
|
|
3
|
-
import { bootServices } from '
|
|
4
|
-
import { definePlugin } from '
|
|
3
|
+
import { bootServices } from '@aerogel/core/services';
|
|
4
|
+
import { definePlugin } from '@aerogel/core/plugins';
|
|
5
5
|
|
|
6
6
|
import Errors from './Errors';
|
|
7
|
-
import { ErrorReport, ErrorReportLog, ErrorSource } from './Errors.state';
|
|
7
|
+
import type { ErrorReport, ErrorReportLog, ErrorSource } from './Errors.state';
|
|
8
8
|
|
|
9
9
|
export * from './utils';
|
|
10
|
-
export { Errors
|
|
10
|
+
export { Errors };
|
|
11
|
+
export { default as JobCancelledError } from './JobCancelledError';
|
|
12
|
+
export { default as ServiceBootError } from './ServiceBootError';
|
|
13
|
+
export type { ErrorSource, ErrorReport, ErrorReportLog };
|
|
11
14
|
|
|
12
15
|
const services = { $errors: Errors };
|
|
13
16
|
const frameworkHandler: ErrorHandler = (error) => {
|
|
@@ -35,12 +38,12 @@ export default definePlugin({
|
|
|
35
38
|
},
|
|
36
39
|
});
|
|
37
40
|
|
|
38
|
-
declare module '
|
|
41
|
+
declare module '@aerogel/core/bootstrap/options' {
|
|
39
42
|
export interface AerogelOptions {
|
|
40
43
|
handleError?(error: ErrorSource): boolean;
|
|
41
44
|
}
|
|
42
45
|
}
|
|
43
46
|
|
|
44
|
-
declare module '
|
|
47
|
+
declare module '@aerogel/core/services' {
|
|
45
48
|
export interface Services extends ErrorsServices {}
|
|
46
49
|
}
|
package/src/errors/utils.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { JSError, isObject, toString } from '@noeldemartin/utils';
|
|
2
|
-
import { translateWithDefault } from '
|
|
2
|
+
import { translateWithDefault } from '@aerogel/core/lang/utils';
|
|
3
3
|
import type { ErrorSource } from './Errors.state';
|
|
4
4
|
|
|
5
5
|
const handlers: ErrorHandler[] = [];
|
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
import { describe, expect, expectTypeOf, it } from 'vitest';
|
|
2
2
|
|
|
3
|
-
import { useForm } from '
|
|
4
|
-
import {
|
|
5
|
-
import { numberInput, requiredStringInput } from '@/forms/utils';
|
|
3
|
+
import { useForm } from '@aerogel/core/forms/composition';
|
|
4
|
+
import { numberInput, requiredStringInput } from '@aerogel/core/forms/utils';
|
|
6
5
|
|
|
7
|
-
|
|
6
|
+
import { FormFieldTypes } from './FormController';
|
|
7
|
+
|
|
8
|
+
describe('FormController', () => {
|
|
8
9
|
|
|
9
10
|
it('defines magic fields', () => {
|
|
10
11
|
const form = useForm({
|
|
@@ -38,21 +38,21 @@ export type FormErrors<T> = {
|
|
|
38
38
|
export type GetFormFieldValue<TType> = TType extends typeof FormFieldTypes.String
|
|
39
39
|
? string
|
|
40
40
|
: TType extends typeof FormFieldTypes.Number
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
41
|
+
? number
|
|
42
|
+
: TType extends typeof FormFieldTypes.Boolean
|
|
43
|
+
? boolean
|
|
44
|
+
: TType extends typeof FormFieldTypes.Object
|
|
45
|
+
? object
|
|
46
|
+
: TType extends typeof FormFieldTypes.Date
|
|
47
|
+
? Date
|
|
48
|
+
: never;
|
|
49
49
|
|
|
50
|
-
const validForms: WeakMap<
|
|
50
|
+
const validForms: WeakMap<FormController, ComputedRef<boolean>> = new WeakMap();
|
|
51
51
|
|
|
52
52
|
export type SubmitFormListener = () => unknown;
|
|
53
53
|
export type FocusFormListener = (input: string) => unknown;
|
|
54
54
|
|
|
55
|
-
export default class
|
|
55
|
+
export default class FormController<Fields extends FormFieldDefinitions = FormFieldDefinitions> extends MagicObject {
|
|
56
56
|
|
|
57
57
|
public errors: DeepReadonly<UnwrapNestedRefs<FormErrors<Fields>>>;
|
|
58
58
|
|
|
@@ -113,11 +113,14 @@ export default class Form<Fields extends FormFieldDefinitions = FormFieldDefinit
|
|
|
113
113
|
}
|
|
114
114
|
|
|
115
115
|
public validate(): boolean {
|
|
116
|
-
const errors = Object.entries(this._fields).reduce(
|
|
117
|
-
formErrors[name
|
|
116
|
+
const errors = Object.entries(this._fields).reduce(
|
|
117
|
+
(formErrors, [name, definition]) => {
|
|
118
|
+
formErrors[name] = this.getFieldErrors(name, definition);
|
|
118
119
|
|
|
119
|
-
|
|
120
|
-
|
|
120
|
+
return formErrors;
|
|
121
|
+
},
|
|
122
|
+
{} as Record<string, string[] | null>,
|
|
123
|
+
);
|
|
121
124
|
|
|
122
125
|
this.resetErrors(errors);
|
|
123
126
|
|
|
@@ -165,7 +168,7 @@ export default class Form<Fields extends FormFieldDefinitions = FormFieldDefinit
|
|
|
165
168
|
this._listeners['focus']?.forEach((listener) => listener(input));
|
|
166
169
|
}
|
|
167
170
|
|
|
168
|
-
protected __get(property: string): unknown {
|
|
171
|
+
protected override __get(property: string): unknown {
|
|
169
172
|
if (!(property in this._fields)) {
|
|
170
173
|
return super.__get(property);
|
|
171
174
|
}
|
|
@@ -173,7 +176,7 @@ export default class Form<Fields extends FormFieldDefinitions = FormFieldDefinit
|
|
|
173
176
|
return this.getFieldValue(property);
|
|
174
177
|
}
|
|
175
178
|
|
|
176
|
-
protected __set(property: string, value: unknown): void {
|
|
179
|
+
protected override __set(property: string, value: unknown): void {
|
|
177
180
|
if (!(property in this._fields)) {
|
|
178
181
|
super.__set(property, value);
|
|
179
182
|
|
|
@@ -204,10 +207,10 @@ export default class Form<Fields extends FormFieldDefinitions = FormFieldDefinit
|
|
|
204
207
|
return {} as FormData<Fields>;
|
|
205
208
|
}
|
|
206
209
|
|
|
207
|
-
const data = Object.entries(fields).reduce((
|
|
208
|
-
|
|
210
|
+
const data = Object.entries(fields).reduce((initialData, [name, definition]) => {
|
|
211
|
+
initialData[name as keyof Fields] = (definition.default ?? null) as FormData<Fields>[keyof Fields];
|
|
209
212
|
|
|
210
|
-
return
|
|
213
|
+
return initialData;
|
|
211
214
|
}, {} as FormData<Fields>);
|
|
212
215
|
|
|
213
216
|
return reactive(data) as FormData<Fields>;
|
package/src/forms/composition.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import
|
|
2
|
-
import type { FormData, FormFieldDefinitions } from '
|
|
1
|
+
import FormController from '@aerogel/core/forms/FormController';
|
|
2
|
+
import type { FormData, FormFieldDefinitions } from '@aerogel/core/forms/FormController';
|
|
3
3
|
|
|
4
|
-
export function useForm<const T extends FormFieldDefinitions>(fields: T):
|
|
5
|
-
return new
|
|
4
|
+
export function useForm<const T extends FormFieldDefinitions>(fields: T): FormController<T> & FormData<T> {
|
|
5
|
+
return new FormController(fields) as FormController<T> & FormData<T>;
|
|
6
6
|
}
|
package/src/forms/index.ts
CHANGED
package/src/forms/utils.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { FormFieldTypes } from './
|
|
2
|
-
import type { FormFieldDefinition } from './
|
|
1
|
+
import { FormFieldTypes } from './FormController';
|
|
2
|
+
import type { FormFieldDefinition } from './FormController';
|
|
3
3
|
|
|
4
4
|
export function booleanInput(
|
|
5
5
|
defaultValue?: boolean,
|
package/src/index.css
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
@source './';
|
|
2
|
+
@source '../../plugin-local-first/src';
|
|
3
|
+
@source '../../plugin-solid/src';
|
|
4
|
+
|
|
5
|
+
@theme {
|
|
6
|
+
--color-background: oklch(1 0 0);
|
|
7
|
+
--color-primary: oklch(0.205 0 0);
|
|
8
|
+
--color-danger: oklch(0.577 0.245 27.325);
|
|
9
|
+
--color-accent: oklch(0.97 0 0);
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.clickable {
|
|
13
|
+
position: relative;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.clickable::after {
|
|
17
|
+
--clickable-size: 44px;
|
|
18
|
+
--clickable-inset-by: min(0px, calc((100% - var(--clickable-size)) / 2));
|
|
19
|
+
|
|
20
|
+
content: '';
|
|
21
|
+
position: absolute;
|
|
22
|
+
top: var(--clickable-inset-by);
|
|
23
|
+
left: var(--clickable-inset-by);
|
|
24
|
+
right: var(--clickable-inset-by);
|
|
25
|
+
bottom: var(--clickable-inset-by);
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
input[type='number'].appearance-textfield {
|
|
29
|
+
appearance: textfield;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
input[type='number'].appearance-textfield::-webkit-outer-spin-button,
|
|
33
|
+
input[type='number'].appearance-textfield::-webkit-inner-spin-button {
|
|
34
|
+
appearance: none;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
button[data-markdown-action] {
|
|
38
|
+
color: var(--tw-prose-links);
|
|
39
|
+
text-decoration: underline;
|
|
40
|
+
font-weight: 500;
|
|
41
|
+
}
|
package/src/jobs/Job.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ListenersManager, PromisedValue, round, tap, toError } from '@noeldemartin/utils';
|
|
2
2
|
import type { Listeners } from '@noeldemartin/utils';
|
|
3
3
|
|
|
4
|
-
import JobCancelledError from '
|
|
4
|
+
import JobCancelledError from '@aerogel/core/errors/JobCancelledError';
|
|
5
5
|
|
|
6
6
|
import type { JobListener } from './listeners';
|
|
7
7
|
import type { JobStatus } from './status';
|
|
@@ -9,7 +9,7 @@ import type { JobStatus } from './status';
|
|
|
9
9
|
export default abstract class Job<
|
|
10
10
|
Listener extends JobListener = JobListener,
|
|
11
11
|
Status extends JobStatus = JobStatus,
|
|
12
|
-
SerializedStatus extends JobStatus = JobStatus
|
|
12
|
+
SerializedStatus extends JobStatus = JobStatus,
|
|
13
13
|
> {
|
|
14
14
|
|
|
15
15
|
protected status: Status;
|
|
@@ -1,10 +1,13 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { isDevelopment } from '@noeldemartin/utils';
|
|
2
2
|
|
|
3
3
|
import type { LangProvider } from './Lang';
|
|
4
4
|
|
|
5
5
|
export default class DefaultLangProvider implements LangProvider {
|
|
6
6
|
|
|
7
|
-
constructor(
|
|
7
|
+
constructor(
|
|
8
|
+
private locale: string,
|
|
9
|
+
private fallbackLocale: string,
|
|
10
|
+
) {}
|
|
8
11
|
|
|
9
12
|
public getLocale(): string {
|
|
10
13
|
return this.locale;
|
|
@@ -28,14 +31,14 @@ export default class DefaultLangProvider implements LangProvider {
|
|
|
28
31
|
|
|
29
32
|
public translate(key: string): string {
|
|
30
33
|
// eslint-disable-next-line no-console
|
|
31
|
-
|
|
34
|
+
isDevelopment() && console.warn('Lang provider is missing');
|
|
32
35
|
|
|
33
36
|
return key;
|
|
34
37
|
}
|
|
35
38
|
|
|
36
39
|
public translateWithDefault(_: string, defaultMessage: string): string {
|
|
37
40
|
// eslint-disable-next-line no-console
|
|
38
|
-
|
|
41
|
+
isDevelopment() && console.warn('Lang provider is missing');
|
|
39
42
|
|
|
40
43
|
return defaultMessage;
|
|
41
44
|
}
|
package/src/lang/Lang.state.ts
CHANGED
package/src/lang/Lang.ts
CHANGED
|
@@ -52,7 +52,7 @@ export class LangService extends Service {
|
|
|
52
52
|
return navigator.languages.find((locale) => locales.includes(locale)) ?? 'en';
|
|
53
53
|
}
|
|
54
54
|
|
|
55
|
-
protected async boot(): Promise<void> {
|
|
55
|
+
protected override async boot(): Promise<void> {
|
|
56
56
|
if (!globalThis.document) {
|
|
57
57
|
return;
|
|
58
58
|
}
|
package/src/lang/index.ts
CHANGED
|
@@ -1,10 +1,12 @@
|
|
|
1
|
-
import { bootServices } from '
|
|
2
|
-
import { definePlugin } from '
|
|
1
|
+
import { bootServices } from '@aerogel/core/services';
|
|
2
|
+
import { definePlugin } from '@aerogel/core/plugins';
|
|
3
3
|
|
|
4
|
-
import Lang
|
|
4
|
+
import Lang from './Lang';
|
|
5
|
+
import type { LangProvider } from './Lang';
|
|
5
6
|
import { translate, translateWithDefault } from './utils';
|
|
6
7
|
|
|
7
|
-
export { Lang,
|
|
8
|
+
export { Lang, translate, translateWithDefault };
|
|
9
|
+
export type { LangProvider };
|
|
8
10
|
|
|
9
11
|
const services = { $lang: Lang };
|
|
10
12
|
|
|
@@ -19,11 +21,11 @@ export default definePlugin({
|
|
|
19
21
|
},
|
|
20
22
|
});
|
|
21
23
|
|
|
22
|
-
declare module '
|
|
24
|
+
declare module '@aerogel/core/services' {
|
|
23
25
|
export interface Services extends LangServices {}
|
|
24
26
|
}
|
|
25
27
|
|
|
26
|
-
declare module '
|
|
28
|
+
declare module 'vue' {
|
|
27
29
|
interface ComponentCustomProperties {
|
|
28
30
|
$td: typeof translateWithDefault;
|
|
29
31
|
}
|
package/src/plugins/Plugin.ts
CHANGED
package/src/plugins/index.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { GetClosureArgs } from '@noeldemartin/utils';
|
|
2
2
|
|
|
3
|
-
import App from '
|
|
3
|
+
import App from '@aerogel/core/services/App';
|
|
4
4
|
|
|
5
5
|
import type { Plugin } from './Plugin';
|
|
6
6
|
|
|
@@ -13,13 +13,16 @@ export function definePlugin<T extends Plugin>(plugin: T): T {
|
|
|
13
13
|
export async function installPlugins(plugins: Plugin[], ...args: GetClosureArgs<Plugin['install']>): Promise<void> {
|
|
14
14
|
App.setState(
|
|
15
15
|
'plugins',
|
|
16
|
-
plugins.reduce(
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
16
|
+
plugins.reduce(
|
|
17
|
+
(pluginsMap, plugin) => {
|
|
18
|
+
if (plugin.name) {
|
|
19
|
+
pluginsMap[plugin.name] = plugin;
|
|
20
|
+
}
|
|
20
21
|
|
|
21
|
-
|
|
22
|
-
|
|
22
|
+
return pluginsMap;
|
|
23
|
+
},
|
|
24
|
+
{} as Record<string, Plugin>,
|
|
25
|
+
),
|
|
23
26
|
);
|
|
24
27
|
|
|
25
28
|
await Promise.all(plugins.map((plugin) => plugin.install(...args)) ?? []);
|
|
@@ -1,16 +1,17 @@
|
|
|
1
1
|
import Aerogel from 'virtual:aerogel';
|
|
2
2
|
|
|
3
|
+
import { getEnv } from '@noeldemartin/utils';
|
|
3
4
|
import type { App } from 'vue';
|
|
4
5
|
|
|
5
|
-
import { defineServiceState } from '
|
|
6
|
-
import type { Plugin } from '
|
|
6
|
+
import { defineServiceState } from '@aerogel/core/services/Service';
|
|
7
|
+
import type { Plugin } from '@aerogel/core/plugins/Plugin';
|
|
7
8
|
|
|
8
9
|
export default defineServiceState({
|
|
9
10
|
name: 'app',
|
|
10
11
|
initialState: {
|
|
11
12
|
plugins: {} as Record<string, Plugin>,
|
|
12
13
|
instance: null as App | null,
|
|
13
|
-
environment:
|
|
14
|
+
environment: getEnv() ?? 'development',
|
|
14
15
|
version: Aerogel.version,
|
|
15
16
|
sourceUrl: Aerogel.sourceUrl,
|
|
16
17
|
},
|
package/src/services/App.ts
CHANGED
|
@@ -2,9 +2,9 @@ import Aerogel from 'virtual:aerogel';
|
|
|
2
2
|
|
|
3
3
|
import { PromisedValue, facade, forever, updateLocationQueryParameters } from '@noeldemartin/utils';
|
|
4
4
|
|
|
5
|
-
import Events from '
|
|
6
|
-
import type { Plugin } from '
|
|
7
|
-
import type { Services } from '
|
|
5
|
+
import Events from '@aerogel/core/services/Events';
|
|
6
|
+
import type { Plugin } from '@aerogel/core/plugins';
|
|
7
|
+
import type { Services } from '@aerogel/core/services';
|
|
8
8
|
|
|
9
9
|
import Service from './App.state';
|
|
10
10
|
|
|
@@ -45,7 +45,7 @@ export class AppService extends Service {
|
|
|
45
45
|
return this.instance?.config.globalProperties[name] ?? null;
|
|
46
46
|
}
|
|
47
47
|
|
|
48
|
-
protected async boot(): Promise<void> {
|
|
48
|
+
protected override async boot(): Promise<void> {
|
|
49
49
|
Events.once('application-ready', () => this.ready.resolve());
|
|
50
50
|
Events.once('application-mounted', () => this.mounted.resolve());
|
|
51
51
|
}
|
package/src/services/Cache.ts
CHANGED
package/src/services/Events.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { arrayRemove, facade, fail, tap } from '@noeldemartin/utils';
|
|
2
2
|
|
|
3
|
-
import Service from '
|
|
3
|
+
import Service from '@aerogel/core/services/Service';
|
|
4
4
|
|
|
5
5
|
export interface EventsPayload {}
|
|
6
6
|
export interface EventListenerOptions {
|
|
@@ -32,7 +32,7 @@ export class EventsService extends Service {
|
|
|
32
32
|
|
|
33
33
|
private listeners: Record<string, { priorities: number[]; handlers: Record<number, EventListener[]> }> = {};
|
|
34
34
|
|
|
35
|
-
protected async boot(): Promise<void> {
|
|
35
|
+
protected override async boot(): Promise<void> {
|
|
36
36
|
Object.entries(globalThis.__aerogelEvents__ ?? {}).forEach(([event, listener]) =>
|
|
37
37
|
this.on(event as string, listener as EventListener));
|
|
38
38
|
}
|
package/src/services/Service.ts
CHANGED
|
@@ -11,9 +11,9 @@ import {
|
|
|
11
11
|
import type { Constructor, Nullable } from '@noeldemartin/utils';
|
|
12
12
|
import type { Store } from 'pinia';
|
|
13
13
|
|
|
14
|
-
import ServiceBootError from '
|
|
15
|
-
import { defineServiceStore } from '
|
|
16
|
-
import type { Unref } from '
|
|
14
|
+
import ServiceBootError from '@aerogel/core/errors/ServiceBootError';
|
|
15
|
+
import { defineServiceStore } from '@aerogel/core/services/store';
|
|
16
|
+
import type { Unref } from '@aerogel/core/utils/vue';
|
|
17
17
|
|
|
18
18
|
export type ServiceState = Record<string, any>; // eslint-disable-line @typescript-eslint/no-explicit-any
|
|
19
19
|
export type DefaultServiceState = any; // eslint-disable-line @typescript-eslint/no-explicit-any
|
|
@@ -32,7 +32,7 @@ export type StateWatchers<TService extends Service, TState extends ServiceState>
|
|
|
32
32
|
export type ServiceWithState<
|
|
33
33
|
State extends ServiceState = ServiceState,
|
|
34
34
|
ComputedState extends ServiceState = {},
|
|
35
|
-
ServiceStorage = Partial<State
|
|
35
|
+
ServiceStorage = Partial<State>,
|
|
36
36
|
> = Constructor<Unref<State>> &
|
|
37
37
|
Constructor<ComputedState> &
|
|
38
38
|
Constructor<Service<Unref<State>, ComputedState, Unref<ServiceStorage>>>;
|
|
@@ -40,7 +40,7 @@ export type ServiceWithState<
|
|
|
40
40
|
export function defineServiceState<
|
|
41
41
|
State extends ServiceState = ServiceState,
|
|
42
42
|
ComputedState extends ServiceState = {},
|
|
43
|
-
ServiceStorage = Partial<State
|
|
43
|
+
ServiceStorage = Partial<State>,
|
|
44
44
|
>(options: {
|
|
45
45
|
name: string;
|
|
46
46
|
initialState: State | (() => State);
|
|
@@ -52,17 +52,17 @@ export function defineServiceState<
|
|
|
52
52
|
}): ServiceWithState<State, ComputedState, ServiceStorage> {
|
|
53
53
|
return class extends Service<Unref<State>, ComputedState, ServiceStorage> {
|
|
54
54
|
|
|
55
|
-
public static persist = (options.persist as string[]) ?? [];
|
|
55
|
+
public static override persist = (options.persist as string[]) ?? [];
|
|
56
56
|
|
|
57
|
-
protected usesStore(): boolean {
|
|
57
|
+
protected override usesStore(): boolean {
|
|
58
58
|
return true;
|
|
59
59
|
}
|
|
60
60
|
|
|
61
|
-
protected getName(): string | null {
|
|
61
|
+
protected override getName(): string | null {
|
|
62
62
|
return options.name ?? null;
|
|
63
63
|
}
|
|
64
64
|
|
|
65
|
-
protected getInitialState(): Unref<State> {
|
|
65
|
+
protected override getInitialState(): Unref<State> {
|
|
66
66
|
if (typeof options.initialState === 'function') {
|
|
67
67
|
return options.initialState();
|
|
68
68
|
}
|
|
@@ -86,19 +86,19 @@ export function defineServiceState<
|
|
|
86
86
|
}, {} as Unref<State>);
|
|
87
87
|
}
|
|
88
88
|
|
|
89
|
-
protected getComputedStateDefinition(): ComputedStateDefinition<Unref<State>, ComputedState> {
|
|
89
|
+
protected override getComputedStateDefinition(): ComputedStateDefinition<Unref<State>, ComputedState> {
|
|
90
90
|
return (options.computed ?? {}) as ComputedStateDefinition<Unref<State>, ComputedState>;
|
|
91
91
|
}
|
|
92
92
|
|
|
93
|
-
protected getStateWatchers(): StateWatchers<Service, Unref<State>> {
|
|
93
|
+
protected override getStateWatchers(): StateWatchers<Service, Unref<State>> {
|
|
94
94
|
return (options.watch ?? {}) as StateWatchers<Service, Unref<State>>;
|
|
95
95
|
}
|
|
96
96
|
|
|
97
|
-
protected serializePersistedState(state: Partial<State>): ServiceStorage {
|
|
97
|
+
protected override serializePersistedState(state: Partial<State>): ServiceStorage {
|
|
98
98
|
return options.serialize?.(state) ?? (state as ServiceStorage);
|
|
99
99
|
}
|
|
100
100
|
|
|
101
|
-
protected deserializePersistedState(state: ServiceStorage): Partial<State> {
|
|
101
|
+
protected override deserializePersistedState(state: ServiceStorage): Partial<State> {
|
|
102
102
|
return options.restore?.(state) ?? (state as Partial<State>);
|
|
103
103
|
}
|
|
104
104
|
|
|
@@ -108,7 +108,7 @@ export function defineServiceState<
|
|
|
108
108
|
export default class Service<
|
|
109
109
|
State extends ServiceState = DefaultServiceState,
|
|
110
110
|
ComputedState extends ServiceState = {},
|
|
111
|
-
ServiceStorage = Partial<State
|
|
111
|
+
ServiceStorage = Partial<State>,
|
|
112
112
|
> extends MagicObject {
|
|
113
113
|
|
|
114
114
|
public static persist: string[] = [];
|
|
@@ -142,9 +142,9 @@ export default class Service<
|
|
|
142
142
|
return this._booted;
|
|
143
143
|
}
|
|
144
144
|
|
|
145
|
-
public static<T extends typeof Service>(): T;
|
|
146
|
-
public static<T extends typeof Service, K extends keyof T>(property: K): T[K];
|
|
147
|
-
public static<T extends typeof Service, K extends keyof T>(property?: K): T | T[K] {
|
|
145
|
+
public override static<T extends typeof Service>(): T;
|
|
146
|
+
public override static<T extends typeof Service, K extends keyof T>(property: K): T[K];
|
|
147
|
+
public override static<T extends typeof Service, K extends keyof T>(property?: K): T | T[K] {
|
|
148
148
|
return super.static<T, K>(property as K);
|
|
149
149
|
}
|
|
150
150
|
|
|
@@ -182,10 +182,10 @@ export default class Service<
|
|
|
182
182
|
const store = this._store as any;
|
|
183
183
|
|
|
184
184
|
if (property) {
|
|
185
|
-
return store ? store[property] : undefined;
|
|
185
|
+
return store ? store[property] : (undefined as State[P]);
|
|
186
186
|
}
|
|
187
187
|
|
|
188
|
-
return store ? store : {};
|
|
188
|
+
return store ? store : ({} as State);
|
|
189
189
|
}
|
|
190
190
|
|
|
191
191
|
public setState<P extends keyof State>(property: P, value: State[P]): void;
|
|
@@ -219,7 +219,7 @@ export default class Service<
|
|
|
219
219
|
this.onPersistentStateUpdated(state);
|
|
220
220
|
}
|
|
221
221
|
|
|
222
|
-
protected __get(property: string): unknown {
|
|
222
|
+
protected override __get(property: string): unknown {
|
|
223
223
|
if (this.hasState(property)) {
|
|
224
224
|
return this.getState(property);
|
|
225
225
|
}
|
|
@@ -227,7 +227,7 @@ export default class Service<
|
|
|
227
227
|
return super.__get(property);
|
|
228
228
|
}
|
|
229
229
|
|
|
230
|
-
protected __set(property: string, value: unknown): void {
|
|
230
|
+
protected override __set(property: string, value: unknown): void {
|
|
231
231
|
this.setState({ [property]: value } as Partial<State>);
|
|
232
232
|
}
|
|
233
233
|
|
package/src/services/Storage.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { facade } from '@noeldemartin/utils';
|
|
2
2
|
|
|
3
|
-
import Events from '
|
|
4
|
-
import Service from '
|
|
3
|
+
import Events from '@aerogel/core/services/Events';
|
|
4
|
+
import Service from '@aerogel/core/services/Service';
|
|
5
5
|
|
|
6
6
|
export class StorageService extends Service {
|
|
7
7
|
|
|
@@ -13,7 +13,7 @@ export class StorageService extends Service {
|
|
|
13
13
|
|
|
14
14
|
export default facade(StorageService);
|
|
15
15
|
|
|
16
|
-
declare module '
|
|
16
|
+
declare module '@aerogel/core/services/Events' {
|
|
17
17
|
export interface EventsPayload {
|
|
18
18
|
'purge-storage': void;
|
|
19
19
|
}
|