@aerogel/core 0.0.0-next.9a02fcd3bcf698211dd7a71d4c48257c96dd7832 → 0.0.0-next.9e0c0bbdcff5db68a1087ef53cbdc0f53299f6bb

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.
Files changed (198) hide show
  1. package/dist/aerogel-core.d.ts +2529 -1597
  2. package/dist/aerogel-core.js +3265 -0
  3. package/dist/aerogel-core.js.map +1 -0
  4. package/package.json +30 -37
  5. package/src/bootstrap/bootstrap.test.ts +4 -8
  6. package/src/bootstrap/index.ts +25 -16
  7. package/src/bootstrap/options.ts +1 -1
  8. package/src/components/{AGAppLayout.vue → AppLayout.vue} +4 -4
  9. package/src/components/{AGAppModals.vue → AppModals.vue} +3 -4
  10. package/src/components/{AGAppOverlays.vue → AppOverlays.vue} +5 -10
  11. package/src/components/AppToasts.vue +16 -0
  12. package/src/components/contracts/AlertModal.ts +4 -0
  13. package/src/components/contracts/Button.ts +16 -0
  14. package/src/components/contracts/ConfirmModal.ts +41 -0
  15. package/src/components/contracts/DropdownMenu.ts +20 -0
  16. package/src/components/contracts/ErrorReportModal.ts +29 -0
  17. package/src/components/contracts/Input.ts +26 -0
  18. package/src/components/contracts/LoadingModal.ts +22 -0
  19. package/src/components/contracts/Modal.ts +21 -0
  20. package/src/components/contracts/PromptModal.ts +30 -0
  21. package/src/components/contracts/Select.ts +44 -0
  22. package/src/components/contracts/Toast.ts +13 -0
  23. package/src/components/contracts/index.ts +11 -0
  24. package/src/components/headless/HeadlessButton.vue +51 -0
  25. package/src/components/headless/HeadlessInput.vue +59 -0
  26. package/src/components/headless/HeadlessInputDescription.vue +27 -0
  27. package/src/components/headless/{forms/AGHeadlessInputError.vue → HeadlessInputError.vue} +4 -8
  28. package/src/components/headless/HeadlessInputInput.vue +75 -0
  29. package/src/components/headless/{forms/AGHeadlessInputLabel.vue → HeadlessInputLabel.vue} +3 -7
  30. package/src/components/headless/HeadlessInputTextArea.vue +40 -0
  31. package/src/components/headless/HeadlessModal.vue +92 -0
  32. package/src/components/headless/HeadlessModalContent.vue +30 -0
  33. package/src/components/headless/HeadlessModalDescription.vue +12 -0
  34. package/src/components/headless/HeadlessModalOverlay.vue +12 -0
  35. package/src/components/headless/HeadlessModalTitle.vue +12 -0
  36. package/src/components/headless/HeadlessSelect.vue +113 -0
  37. package/src/components/headless/{forms/AGHeadlessSelectError.vue → HeadlessSelectError.vue} +5 -6
  38. package/src/components/headless/HeadlessSelectLabel.vue +25 -0
  39. package/src/components/headless/HeadlessSelectOption.vue +34 -0
  40. package/src/components/headless/HeadlessSelectOptions.vue +37 -0
  41. package/src/components/headless/HeadlessSelectTrigger.vue +22 -0
  42. package/src/components/headless/HeadlessSelectValue.vue +18 -0
  43. package/src/components/headless/HeadlessToast.vue +18 -0
  44. package/src/components/headless/HeadlessToastAction.vue +13 -0
  45. package/src/components/headless/index.ts +19 -3
  46. package/src/components/index.ts +6 -9
  47. package/src/components/ui/AdvancedOptions.vue +18 -0
  48. package/src/components/ui/AlertModal.vue +13 -0
  49. package/src/components/ui/Button.vue +98 -0
  50. package/src/components/ui/Checkbox.vue +56 -0
  51. package/src/components/ui/ConfirmModal.vue +42 -0
  52. package/src/components/ui/DropdownMenu.vue +32 -0
  53. package/src/components/ui/DropdownMenuOption.vue +14 -0
  54. package/src/components/ui/DropdownMenuOptions.vue +27 -0
  55. package/src/components/ui/EditableContent.vue +82 -0
  56. package/src/components/ui/ErrorMessage.vue +15 -0
  57. package/src/components/ui/ErrorReportModal.vue +62 -0
  58. package/src/components/{modals/AGErrorReportModalButtons.vue → ui/ErrorReportModalButtons.vue} +34 -27
  59. package/src/components/ui/ErrorReportModalTitle.vue +24 -0
  60. package/src/components/ui/Form.vue +24 -0
  61. package/src/components/ui/Input.vue +56 -0
  62. package/src/components/ui/Link.vue +12 -0
  63. package/src/components/ui/LoadingModal.vue +32 -0
  64. package/src/components/ui/Markdown.vue +69 -0
  65. package/src/components/ui/Modal.vue +91 -0
  66. package/src/components/ui/ModalContext.vue +30 -0
  67. package/src/components/ui/ProgressBar.vue +51 -0
  68. package/src/components/ui/PromptModal.vue +35 -0
  69. package/src/components/ui/Select.vue +25 -0
  70. package/src/components/ui/SelectLabel.vue +17 -0
  71. package/src/components/ui/SelectOption.vue +29 -0
  72. package/src/components/ui/SelectOptions.vue +30 -0
  73. package/src/components/ui/SelectTrigger.vue +29 -0
  74. package/src/components/ui/SettingsModal.vue +15 -0
  75. package/src/components/{lib/AGStartupCrash.vue → ui/StartupCrash.vue} +8 -8
  76. package/src/components/ui/Toast.vue +42 -0
  77. package/src/components/ui/index.ts +30 -0
  78. package/src/directives/index.ts +11 -5
  79. package/src/directives/measure.ts +34 -6
  80. package/src/errors/Errors.state.ts +1 -1
  81. package/src/errors/Errors.ts +17 -18
  82. package/src/errors/JobCancelledError.ts +3 -0
  83. package/src/errors/index.ts +9 -6
  84. package/src/errors/utils.ts +17 -1
  85. package/src/forms/{Form.test.ts → FormController.test.ts} +33 -4
  86. package/src/forms/{Form.ts → FormController.ts} +85 -25
  87. package/src/forms/composition.ts +4 -4
  88. package/src/forms/index.ts +3 -1
  89. package/src/forms/utils.ts +36 -5
  90. package/src/forms/validation.ts +19 -0
  91. package/src/index.css +54 -0
  92. package/src/{main.ts → index.ts} +1 -0
  93. package/src/jobs/Job.ts +144 -2
  94. package/src/jobs/index.ts +4 -1
  95. package/src/jobs/listeners.ts +3 -0
  96. package/src/jobs/status.ts +4 -0
  97. package/src/lang/DefaultLangProvider.ts +46 -0
  98. package/src/lang/Lang.state.ts +11 -0
  99. package/src/lang/Lang.ts +48 -21
  100. package/src/lang/index.ts +12 -6
  101. package/src/lang/settings/Language.vue +48 -0
  102. package/src/lang/settings/index.ts +10 -0
  103. package/src/plugins/Plugin.ts +1 -1
  104. package/src/plugins/index.ts +10 -7
  105. package/src/services/App.state.ts +36 -3
  106. package/src/services/App.ts +19 -3
  107. package/src/services/Cache.ts +43 -0
  108. package/src/services/Events.ts +15 -5
  109. package/src/services/Service.ts +125 -54
  110. package/src/services/Storage.ts +20 -0
  111. package/src/services/index.ts +16 -5
  112. package/src/services/utils.ts +18 -0
  113. package/src/testing/index.ts +4 -3
  114. package/src/testing/setup.ts +11 -0
  115. package/src/ui/UI.state.ts +19 -7
  116. package/src/ui/UI.ts +188 -77
  117. package/src/ui/index.ts +19 -18
  118. package/src/ui/utils.ts +16 -0
  119. package/src/utils/classes.ts +49 -0
  120. package/src/utils/composition/events.ts +2 -2
  121. package/src/utils/composition/forms.ts +14 -4
  122. package/src/utils/composition/persistent.test.ts +33 -0
  123. package/src/utils/composition/persistent.ts +11 -0
  124. package/src/utils/composition/state.test.ts +47 -0
  125. package/src/utils/composition/state.ts +33 -0
  126. package/src/utils/index.ts +5 -1
  127. package/src/utils/markdown.test.ts +50 -0
  128. package/src/utils/markdown.ts +19 -6
  129. package/src/utils/types.ts +3 -0
  130. package/src/utils/vue.ts +28 -127
  131. package/dist/aerogel-core.cjs.js +0 -2
  132. package/dist/aerogel-core.cjs.js.map +0 -1
  133. package/dist/aerogel-core.esm.js +0 -2
  134. package/dist/aerogel-core.esm.js.map +0 -1
  135. package/histoire.config.ts +0 -7
  136. package/noeldemartin.config.js +0 -5
  137. package/postcss.config.js +0 -6
  138. package/src/assets/histoire.css +0 -3
  139. package/src/components/AGAppSnackbars.vue +0 -13
  140. package/src/components/constants.ts +0 -8
  141. package/src/components/forms/AGButton.vue +0 -44
  142. package/src/components/forms/AGCheckbox.vue +0 -41
  143. package/src/components/forms/AGForm.vue +0 -26
  144. package/src/components/forms/AGInput.vue +0 -38
  145. package/src/components/forms/AGSelect.story.vue +0 -46
  146. package/src/components/forms/AGSelect.vue +0 -60
  147. package/src/components/forms/index.ts +0 -5
  148. package/src/components/headless/forms/AGHeadlessButton.vue +0 -51
  149. package/src/components/headless/forms/AGHeadlessInput.ts +0 -28
  150. package/src/components/headless/forms/AGHeadlessInput.vue +0 -57
  151. package/src/components/headless/forms/AGHeadlessInputInput.vue +0 -47
  152. package/src/components/headless/forms/AGHeadlessSelect.ts +0 -42
  153. package/src/components/headless/forms/AGHeadlessSelect.vue +0 -77
  154. package/src/components/headless/forms/AGHeadlessSelectButton.vue +0 -24
  155. package/src/components/headless/forms/AGHeadlessSelectLabel.vue +0 -24
  156. package/src/components/headless/forms/AGHeadlessSelectOption.ts +0 -4
  157. package/src/components/headless/forms/AGHeadlessSelectOption.vue +0 -39
  158. package/src/components/headless/forms/AGHeadlessSelectOptions.ts +0 -3
  159. package/src/components/headless/forms/index.ts +0 -14
  160. package/src/components/headless/modals/AGHeadlessModal.ts +0 -34
  161. package/src/components/headless/modals/AGHeadlessModal.vue +0 -86
  162. package/src/components/headless/modals/AGHeadlessModalPanel.vue +0 -28
  163. package/src/components/headless/modals/AGHeadlessModalTitle.vue +0 -13
  164. package/src/components/headless/modals/index.ts +0 -4
  165. package/src/components/headless/snackbars/AGHeadlessSnackbar.vue +0 -10
  166. package/src/components/headless/snackbars/index.ts +0 -40
  167. package/src/components/lib/AGErrorMessage.vue +0 -16
  168. package/src/components/lib/AGLink.vue +0 -9
  169. package/src/components/lib/AGMarkdown.vue +0 -36
  170. package/src/components/lib/AGMeasured.vue +0 -15
  171. package/src/components/lib/index.ts +0 -5
  172. package/src/components/modals/AGAlertModal.ts +0 -15
  173. package/src/components/modals/AGAlertModal.vue +0 -14
  174. package/src/components/modals/AGConfirmModal.ts +0 -27
  175. package/src/components/modals/AGConfirmModal.vue +0 -26
  176. package/src/components/modals/AGErrorReportModal.ts +0 -46
  177. package/src/components/modals/AGErrorReportModal.vue +0 -54
  178. package/src/components/modals/AGErrorReportModalTitle.vue +0 -25
  179. package/src/components/modals/AGLoadingModal.ts +0 -23
  180. package/src/components/modals/AGLoadingModal.vue +0 -15
  181. package/src/components/modals/AGModal.ts +0 -10
  182. package/src/components/modals/AGModal.vue +0 -39
  183. package/src/components/modals/AGModalContext.ts +0 -8
  184. package/src/components/modals/AGModalContext.vue +0 -22
  185. package/src/components/modals/AGModalTitle.vue +0 -9
  186. package/src/components/modals/AGPromptModal.ts +0 -30
  187. package/src/components/modals/AGPromptModal.vue +0 -34
  188. package/src/components/modals/index.ts +0 -17
  189. package/src/components/snackbars/AGSnackbar.vue +0 -36
  190. package/src/components/snackbars/index.ts +0 -3
  191. package/src/components/utils.ts +0 -10
  192. package/src/directives/initial-focus.ts +0 -11
  193. package/src/main.histoire.ts +0 -1
  194. package/src/utils/tailwindcss.test.ts +0 -26
  195. package/src/utils/tailwindcss.ts +0 -7
  196. package/tailwind.config.js +0 -4
  197. package/tsconfig.json +0 -11
  198. package/vite.config.ts +0 -14
@@ -1,12 +1,20 @@
1
+ import Aerogel from 'virtual:aerogel';
2
+
1
3
  import { PromisedValue, facade, forever, updateLocationQueryParameters } from '@noeldemartin/utils';
4
+ import { markRaw } from 'vue';
2
5
 
3
- import Events from '@/services/Events';
4
- import type { Plugin } from '@/plugins';
6
+ import Events from '@aerogel/core/services/Events';
7
+ import type { Plugin } from '@aerogel/core/plugins';
8
+ import type { AppSetting, Services } from '@aerogel/core/services';
5
9
 
6
10
  import Service from './App.state';
7
11
 
12
+ export { defineSettings } from './App.state';
13
+ export type { AppSetting } from './App.state';
14
+
8
15
  export class AppService extends Service {
9
16
 
17
+ public readonly name = Aerogel.name;
10
18
  public readonly ready = new PromisedValue<void>();
11
19
  public readonly mounted = new PromisedValue<void>();
12
20
 
@@ -18,6 +26,10 @@ export class AppService extends Service {
18
26
  return this.mounted.isResolved();
19
27
  }
20
28
 
29
+ public addSetting(setting: AppSetting): void {
30
+ this.settings.push(markRaw(setting));
31
+ }
32
+
21
33
  public async whenReady<T>(callback: () => T): Promise<T> {
22
34
  const result = await this.ready.then(callback);
23
35
 
@@ -37,7 +49,11 @@ export class AppService extends Service {
37
49
  return (this.plugins[name] as T) ?? null;
38
50
  }
39
51
 
40
- protected async boot(): Promise<void> {
52
+ public service<T extends keyof Services>(name: T): Services[T] | null {
53
+ return this.instance?.config.globalProperties[name] ?? null;
54
+ }
55
+
56
+ protected override async boot(): Promise<void> {
41
57
  Events.once('application-ready', () => this.ready.resolve());
42
58
  Events.once('application-mounted', () => this.mounted.resolve());
43
59
  }
@@ -0,0 +1,43 @@
1
+ import { PromisedValue, facade, tap } from '@noeldemartin/utils';
2
+
3
+ import Service from '@aerogel/core/services/Service';
4
+
5
+ export class CacheService extends Service {
6
+
7
+ private cache?: PromisedValue<Cache> = undefined;
8
+
9
+ public async get(url: string): Promise<Response | null> {
10
+ const cache = await this.open();
11
+ const response = await cache.match(url);
12
+
13
+ return response ?? null;
14
+ }
15
+
16
+ public async store(url: string, response: Response): Promise<void> {
17
+ const cache = await this.open();
18
+
19
+ await cache.put(url, response);
20
+ }
21
+
22
+ public async replace(url: string, response: Response): Promise<void> {
23
+ const cache = await this.open();
24
+ const keys = await cache.keys(url);
25
+
26
+ if (keys.length === 0) {
27
+ return;
28
+ }
29
+
30
+ await cache.put(url, response);
31
+ }
32
+
33
+ protected async open(): Promise<Cache> {
34
+ return (this.cache =
35
+ this.cache ??
36
+ tap(new PromisedValue<Cache>(), (cache) => {
37
+ caches.open('app').then((instance) => cache.resolve(instance));
38
+ }));
39
+ }
40
+
41
+ }
42
+
43
+ export default facade(CacheService);
@@ -1,10 +1,10 @@
1
1
  import { arrayRemove, facade, fail, tap } from '@noeldemartin/utils';
2
2
 
3
- import Service from '@/services/Service';
3
+ import Service from '@aerogel/core/services/Service';
4
4
 
5
5
  export interface EventsPayload {}
6
6
  export interface EventListenerOptions {
7
- priority: number;
7
+ priority: EventListenerPriority;
8
8
  }
9
9
  export type AerogelGlobalEvents = Partial<{ [Event in EventWithoutPayload]: () => unknown }> &
10
10
  Partial<{ [Event in EventWithPayload]: EventListener<EventsPayload[Event]> }>;
@@ -26,11 +26,13 @@ export const EventListenerPriorities = {
26
26
  High: 256,
27
27
  } as const;
28
28
 
29
+ export type EventListenerPriority = (typeof EventListenerPriorities)[keyof typeof EventListenerPriorities];
30
+
29
31
  export class EventsService extends Service {
30
32
 
31
33
  private listeners: Record<string, { priorities: number[]; handlers: Record<number, EventListener[]> }> = {};
32
34
 
33
- protected async boot(): Promise<void> {
35
+ protected override async boot(): Promise<void> {
34
36
  Object.entries(globalThis.__aerogelEvents__ ?? {}).forEach(([event, listener]) =>
35
37
  this.on(event as string, listener as EventListener));
36
38
  }
@@ -48,19 +50,27 @@ export class EventsService extends Service {
48
50
 
49
51
  /* eslint-disable max-len */
50
52
  public on<Event extends EventWithoutPayload>(event: Event, listener: () => unknown): () => void;
53
+ public on<Event extends EventWithoutPayload>(event: Event, priority: EventListenerPriority, listener: () => unknown): () => void; // prettier-ignore
51
54
  public on<Event extends EventWithoutPayload>(event: Event, options: Partial<EventListenerOptions>, listener: () => unknown): () => void; // prettier-ignore
52
55
  public on<Event extends EventWithPayload>(event: Event, listener: EventListener<EventsPayload[Event]>): () => void | void; // prettier-ignore
56
+ public on<Event extends EventWithPayload>(event: Event, priority: EventListenerPriority, listener: EventListener<EventsPayload[Event]>): () => void | void; // prettier-ignore
53
57
  public on<Event extends EventWithPayload>(event: Event, options: Partial<EventListenerOptions>, listener: EventListener<EventsPayload[Event]>): () => void | void; // prettier-ignore
54
58
  public on<Event extends string>(event: UnknownEvent<Event>, listener: EventListener): () => void;
59
+ public on<Event extends string>(event: UnknownEvent<Event>, priority: EventListenerPriority, listener: EventListener): () => void; // prettier-ignore
55
60
  public on<Event extends string>(event: UnknownEvent<Event>, options: Partial<EventListenerOptions>, listener: EventListener): () => void; // prettier-ignore
56
61
  /* eslint-enable max-len */
57
62
 
58
63
  public on(
59
64
  event: string,
60
- optionsOrListener: Partial<EventListenerOptions> | EventListener,
65
+ optionsOrListener: Partial<EventListenerOptions> | EventListenerPriority | EventListener,
61
66
  listener?: EventListener,
62
67
  ): () => void {
63
- const options = typeof optionsOrListener === 'function' ? {} : optionsOrListener;
68
+ const options =
69
+ typeof optionsOrListener === 'function'
70
+ ? {}
71
+ : typeof optionsOrListener === 'number'
72
+ ? { priority: optionsOrListener }
73
+ : optionsOrListener;
64
74
  const handler = typeof optionsOrListener === 'function' ? optionsOrListener : (listener as EventListener);
65
75
 
66
76
  this.registerListener(event, options, handler);
@@ -1,49 +1,68 @@
1
- import { MagicObject, PromisedValue, Storage, isEmpty, objectDeepClone, objectOnly } from '@noeldemartin/utils';
2
- import type { Constructor } from '@noeldemartin/utils';
3
- import type { MaybeRef } from 'vue';
1
+ import {
2
+ MagicObject,
3
+ PromisedValue,
4
+ Storage,
5
+ arrayFrom,
6
+ fail,
7
+ isEmpty,
8
+ objectDeepClone,
9
+ objectOnly,
10
+ } from '@noeldemartin/utils';
11
+ import type { Constructor, Nullable } from '@noeldemartin/utils';
4
12
  import type { Store } from 'pinia';
5
13
 
6
- import ServiceBootError from '@/errors/ServiceBootError';
7
- import { defineServiceStore } from '@/services/store';
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';
8
17
 
9
18
  export type ServiceState = Record<string, any>; // eslint-disable-line @typescript-eslint/no-explicit-any
10
19
  export type DefaultServiceState = any; // eslint-disable-line @typescript-eslint/no-explicit-any
11
20
  export type ServiceConstructor<T extends Service = Service> = Constructor<T> & typeof Service;
12
- export type UnrefServiceState<State extends ServiceState> = {
13
- [K in keyof State]: State[K] extends MaybeRef<infer T> ? T : State[K];
14
- };
15
21
 
16
22
  export type ComputedStateDefinition<TState extends ServiceState, TComputedState extends ServiceState> = {
17
- [K in keyof TComputedState]: (state: UnrefServiceState<TState>) => TComputedState[K];
23
+ [K in keyof TComputedState]: (state: Unref<TState>) => TComputedState[K];
18
24
  } & ThisType<{
19
25
  readonly [K in keyof TComputedState]: TComputedState[K];
20
26
  }>;
21
27
 
28
+ export type StateWatchers<TService extends Service, TState extends ServiceState> = {
29
+ [K in keyof TState]?: (this: TService, value: TState[K], oldValue: TState[K]) => unknown;
30
+ };
31
+
32
+ export type ServiceWithState<
33
+ State extends ServiceState = ServiceState,
34
+ ComputedState extends ServiceState = {},
35
+ ServiceStorage = Partial<State>,
36
+ > = Constructor<Unref<State>> &
37
+ Constructor<ComputedState> &
38
+ Constructor<Service<Unref<State>, ComputedState, Unref<ServiceStorage>>>;
39
+
22
40
  export function defineServiceState<
23
41
  State extends ServiceState = ServiceState,
24
- ComputedState extends ServiceState = {}
42
+ ComputedState extends ServiceState = {},
43
+ ServiceStorage = Partial<State>,
25
44
  >(options: {
26
45
  name: string;
27
46
  initialState: State | (() => State);
28
47
  persist?: (keyof State)[];
48
+ watch?: StateWatchers<Service, State>;
29
49
  computed?: ComputedStateDefinition<State, ComputedState>;
30
- serialize?: (state: Partial<State>) => Partial<State>;
31
- }): Constructor<UnrefServiceState<State>> &
32
- Constructor<ComputedState> &
33
- Constructor<Service<UnrefServiceState<State>, ComputedState, Partial<UnrefServiceState<State>>>> {
34
- return class extends Service<UnrefServiceState<State>, ComputedState> {
50
+ serialize?: (state: Partial<State>) => ServiceStorage;
51
+ restore?: (state: ServiceStorage) => Partial<State>;
52
+ }): ServiceWithState<State, ComputedState, ServiceStorage> {
53
+ return class extends Service<Unref<State>, ComputedState, ServiceStorage> {
35
54
 
36
- public static persist = (options.persist as string[]) ?? [];
55
+ public static override persist = (options.persist as string[]) ?? [];
37
56
 
38
- protected usesStore(): boolean {
57
+ protected override usesStore(): boolean {
39
58
  return true;
40
59
  }
41
60
 
42
- protected getName(): string | null {
61
+ protected override getName(): string | null {
43
62
  return options.name ?? null;
44
63
  }
45
64
 
46
- protected getInitialState(): UnrefServiceState<State> {
65
+ protected override getInitialState(): Unref<State> {
47
66
  if (typeof options.initialState === 'function') {
48
67
  return options.initialState();
49
68
  }
@@ -64,26 +83,32 @@ export function defineServiceState<
64
83
  state[key as keyof State] = value;
65
84
 
66
85
  return state;
67
- }, {} as UnrefServiceState<State>);
86
+ }, {} as Unref<State>);
87
+ }
88
+
89
+ protected override getComputedStateDefinition(): ComputedStateDefinition<Unref<State>, ComputedState> {
90
+ return (options.computed ?? {}) as ComputedStateDefinition<Unref<State>, ComputedState>;
68
91
  }
69
92
 
70
- protected getComputedStateDefinition(): ComputedStateDefinition<UnrefServiceState<State>, ComputedState> {
71
- return (options.computed ?? {}) as ComputedStateDefinition<UnrefServiceState<State>, ComputedState>;
93
+ protected override getStateWatchers(): StateWatchers<Service, Unref<State>> {
94
+ return (options.watch ?? {}) as StateWatchers<Service, Unref<State>>;
72
95
  }
73
96
 
74
- protected serializePersistedState(state: Partial<State>): Partial<State> {
75
- return options.serialize?.(state) ?? state;
97
+ protected override serializePersistedState(state: Partial<State>): ServiceStorage {
98
+ return options.serialize?.(state) ?? (state as ServiceStorage);
76
99
  }
77
100
 
78
- } as unknown as Constructor<UnrefServiceState<State>> &
79
- Constructor<ComputedState> &
80
- Constructor<Service<UnrefServiceState<State>, ComputedState, Partial<UnrefServiceState<State>>>>;
101
+ protected override deserializePersistedState(state: ServiceStorage): Partial<State> {
102
+ return options.restore?.(state) ?? (state as Partial<State>);
103
+ }
104
+
105
+ } as unknown as ServiceWithState<State, ComputedState, ServiceStorage>;
81
106
  }
82
107
 
83
108
  export default class Service<
84
109
  State extends ServiceState = DefaultServiceState,
85
110
  ComputedState extends ServiceState = {},
86
- ServiceStorage extends Partial<State> = Partial<State>
111
+ ServiceStorage = Partial<State>,
87
112
  > extends MagicObject {
88
113
 
89
114
  public static persist: string[] = [];
@@ -91,7 +116,8 @@ export default class Service<
91
116
  protected _name: string;
92
117
  private _booted: PromisedValue<void>;
93
118
  private _computedStateKeys: Set<keyof State>;
94
- private _store: Store | false;
119
+ private _watchers: StateWatchers<Service, State>;
120
+ private _store: Store<string, State, ComputedState, {}> | false;
95
121
 
96
122
  constructor() {
97
123
  super();
@@ -101,6 +127,7 @@ export default class Service<
101
127
  this._name = this.getName() ?? new.target.name;
102
128
  this._booted = new PromisedValue();
103
129
  this._computedStateKeys = new Set(Object.keys(getters));
130
+ this._watchers = this.getStateWatchers();
104
131
  this._store =
105
132
  this.usesStore() &&
106
133
  defineServiceStore(this._name, {
@@ -115,6 +142,12 @@ export default class Service<
115
142
  return this._booted;
116
143
  }
117
144
 
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
+ return super.static<T, K>(property as K);
149
+ }
150
+
118
151
  public launch(): Promise<void> {
119
152
  const handleError = (error: unknown) => this._booted.reject(new ServiceBootError(this._name, error));
120
153
 
@@ -149,10 +182,10 @@ export default class Service<
149
182
  const store = this._store as any;
150
183
 
151
184
  if (property) {
152
- return store ? store[property] : undefined;
185
+ return store ? store[property] : (undefined as State[P]);
153
186
  }
154
187
 
155
- return store ? store : {};
188
+ return store ? store : ({} as State);
156
189
  }
157
190
 
158
191
  public setState<P extends keyof State>(property: P, value: State[P]): void;
@@ -162,16 +195,31 @@ export default class Service<
162
195
  return;
163
196
  }
164
197
 
165
- const state = (
166
- typeof stateOrProperty === 'string' ? { [stateOrProperty]: value } : stateOrProperty
167
- ) as Partial<State>;
198
+ const update = typeof stateOrProperty === 'string' ? { [stateOrProperty]: value } : stateOrProperty;
199
+ const old = objectOnly(this._store.$state as State, Object.keys(update));
200
+
201
+ Object.assign(this._store.$state, update);
202
+ this.onStateUpdated(update as Partial<State>, old as Partial<State>);
203
+ }
204
+
205
+ public updatePersistedState<T extends keyof State>(key: T): void;
206
+ public updatePersistedState<T extends keyof State>(keys: T[]): void;
207
+ public updatePersistedState<T extends keyof State>(keyOrKeys: T | T[]): void {
208
+ if (!this._store) {
209
+ return;
210
+ }
211
+
212
+ const keys = arrayFrom(keyOrKeys) as Array<keyof State>;
213
+ const state = objectOnly(this._store.$state as State, keys);
168
214
 
169
- Object.assign(this._store.$state, state);
215
+ if (isEmpty(state)) {
216
+ return;
217
+ }
170
218
 
171
- this.onStateUpdated(state);
219
+ this.onPersistentStateUpdated(state);
172
220
  }
173
221
 
174
- protected __get(property: string): unknown {
222
+ protected override __get(property: string): unknown {
175
223
  if (this.hasState(property)) {
176
224
  return this.getState(property);
177
225
  }
@@ -179,19 +227,29 @@ export default class Service<
179
227
  return super.__get(property);
180
228
  }
181
229
 
182
- protected __set(property: string, value: unknown): void {
230
+ protected override __set(property: string, value: unknown): void {
183
231
  this.setState({ [property]: value } as Partial<State>);
184
232
  }
185
233
 
186
- protected onStateUpdated(state: Partial<State>): void {
187
- // TODO fix this.static()
188
- const persist = (this.constructor as unknown as { persist: string[] }).persist;
189
- const persisted = objectOnly(state, persist);
234
+ protected onStateUpdated(update: Partial<State>, old: Partial<State>): void {
235
+ const persisted = objectOnly(update, this.static('persist'));
190
236
 
191
- if (isEmpty(persisted)) {
192
- return;
237
+ if (!isEmpty(persisted)) {
238
+ this.onPersistentStateUpdated(persisted as Partial<State>);
239
+ }
240
+
241
+ for (const property in update) {
242
+ const watcher = this._watchers[property] as Nullable<(value: unknown, oldValue: unknown) => unknown>;
243
+
244
+ if (!watcher || update[property] === old[property]) {
245
+ continue;
246
+ }
247
+
248
+ watcher.call(this, update[property], old[property]);
193
249
  }
250
+ }
194
251
 
252
+ protected onPersistentStateUpdated(persisted: Partial<State>): void {
195
253
  const storage = Storage.get<ServiceStorage>(this._name);
196
254
 
197
255
  if (!storage) {
@@ -220,34 +278,47 @@ export default class Service<
220
278
  return {} as ComputedStateDefinition<State, ComputedState>;
221
279
  }
222
280
 
223
- protected serializePersistedState(state: Partial<State>): Partial<State> {
224
- return state;
281
+ protected getStateWatchers(): StateWatchers<Service, State> {
282
+ return {};
283
+ }
284
+
285
+ protected serializePersistedState(state: Partial<State>): ServiceStorage {
286
+ return state as ServiceStorage;
287
+ }
288
+
289
+ protected deserializePersistedState(state: ServiceStorage): Partial<State> {
290
+ return state as Partial<State>;
225
291
  }
226
292
 
227
293
  protected async frameworkBoot(): Promise<void> {
228
- this.initializePersistedState();
294
+ this.restorePersistedState();
229
295
  }
230
296
 
231
297
  protected async boot(): Promise<void> {
232
298
  // Placeholder for overrides, don't place any functionality here.
233
299
  }
234
300
 
235
- protected initializePersistedState(): void {
236
- // TODO fix this.static()
237
- const persist = (this.constructor as unknown as { persist: string[] }).persist;
238
-
239
- if (!this.usesStore() || isEmpty(persist)) {
301
+ protected restorePersistedState(): void {
302
+ if (!this.usesStore() || isEmpty(this.static('persist'))) {
240
303
  return;
241
304
  }
242
305
 
243
306
  if (Storage.has(this._name)) {
244
307
  const persisted = Storage.require<ServiceStorage>(this._name);
245
- this.setState(persisted);
308
+ this.setState(this.deserializePersistedState(persisted));
246
309
 
247
310
  return;
248
311
  }
249
312
 
250
- Storage.set(this._name, objectOnly(this.getState(), persist));
313
+ Storage.set(this._name, objectOnly(this.getState(), this.static('persist')));
314
+ }
315
+
316
+ protected requireStore(): Store<string, State, ComputedState, {}> {
317
+ if (!this._store) {
318
+ return fail(`Failed getting '${this._name}' store`);
319
+ }
320
+
321
+ return this._store;
251
322
  }
252
323
 
253
324
  }
@@ -0,0 +1,20 @@
1
+ import { facade } from '@noeldemartin/utils';
2
+
3
+ import Events from '@aerogel/core/services/Events';
4
+ import Service from '@aerogel/core/services/Service';
5
+
6
+ export class StorageService extends Service {
7
+
8
+ public async purge(): Promise<void> {
9
+ await Events.emit('purge-storage');
10
+ }
11
+
12
+ }
13
+
14
+ export default facade(StorageService);
15
+
16
+ declare module '@aerogel/core/services/Events' {
17
+ export interface EventsPayload {
18
+ 'purge-storage': void;
19
+ }
20
+ }
@@ -1,22 +1,29 @@
1
1
  import type { App as VueApp } from 'vue';
2
2
 
3
- import { definePlugin } from '@/plugins';
3
+ import { definePlugin } from '@aerogel/core/plugins';
4
+ import { isDevelopment, isTesting } from '@noeldemartin/utils';
4
5
 
5
6
  import App from './App';
7
+ import Cache from './Cache';
6
8
  import Events from './Events';
7
9
  import Service from './Service';
10
+ import Storage from './Storage';
8
11
  import { getPiniaStore } from './store';
12
+ import type { AppSetting } from './App.state';
9
13
 
10
14
  export * from './App';
15
+ export * from './Cache';
11
16
  export * from './Events';
12
17
  export * from './Service';
13
18
  export * from './store';
19
+ export * from './utils';
14
20
 
15
- export { App, Events, Service };
21
+ export { App, Cache, Events, Storage, Service };
16
22
 
17
23
  const defaultServices = {
18
24
  $app: App,
19
25
  $events: Events,
26
+ $storage: Storage,
20
27
  };
21
28
 
22
29
  export type DefaultServices = typeof defaultServices;
@@ -34,7 +41,9 @@ export async function bootServices(app: VueApp, services: Record<string, Service
34
41
 
35
42
  Object.assign(app.config.globalProperties, services);
36
43
 
37
- App.development && Object.assign(window, services);
44
+ if (isDevelopment() || isTesting()) {
45
+ Object.assign(globalThis, services);
46
+ }
38
47
  }
39
48
 
40
49
  export default definePlugin({
@@ -45,17 +54,19 @@ export default definePlugin({
45
54
  };
46
55
 
47
56
  app.use(getPiniaStore());
57
+ options.settings?.forEach((setting) => App.addSetting(setting));
48
58
 
49
59
  await bootServices(app, services);
50
60
  },
51
61
  });
52
62
 
53
- declare module '@/bootstrap/options' {
63
+ declare module '@aerogel/core/bootstrap/options' {
54
64
  export interface AerogelOptions {
55
65
  services?: Record<string, Service>;
66
+ settings?: AppSetting[];
56
67
  }
57
68
  }
58
69
 
59
- declare module '@vue/runtime-core' {
70
+ declare module 'vue' {
60
71
  interface ComponentCustomProperties extends Services {}
61
72
  }
@@ -0,0 +1,18 @@
1
+ import { objectOnly } from '@noeldemartin/utils';
2
+
3
+ export type Replace<
4
+ TOriginal extends Record<string, unknown>,
5
+ TReplacements extends Partial<Record<keyof TOriginal, unknown>>,
6
+ > = {
7
+ [K in keyof TOriginal]: TReplacements extends Record<K, infer Replacement> ? Replacement : TOriginal[K];
8
+ };
9
+
10
+ export function replaceExisting<
11
+ TOriginal extends Record<string, unknown>,
12
+ TReplacements extends Partial<Record<keyof TOriginal, unknown>>,
13
+ >(original: TOriginal, replacements: TReplacements): Replace<TOriginal, TReplacements> {
14
+ return {
15
+ ...original,
16
+ ...objectOnly(replacements, Object.keys(original)),
17
+ } as Replace<TOriginal, TReplacements>;
18
+ }
@@ -1,7 +1,8 @@
1
+ import { isTesting } from '@noeldemartin/utils';
1
2
  import type { GetClosureArgs } from '@noeldemartin/utils';
2
3
 
3
- import Events from '@/services/Events';
4
- import { definePlugin } from '@/plugins';
4
+ import Events from '@aerogel/core/services/Events';
5
+ import { definePlugin } from '@aerogel/core/plugins';
5
6
 
6
7
  export interface AerogelTestingRuntime {
7
8
  on: (typeof Events)['on'];
@@ -9,7 +10,7 @@ export interface AerogelTestingRuntime {
9
10
 
10
11
  export default definePlugin({
11
12
  async install() {
12
- if (import.meta.env.MODE !== 'testing') {
13
+ if (!isTesting()) {
13
14
  return;
14
15
  }
15
16
 
@@ -0,0 +1,11 @@
1
+ import { FakeLocalStorage } from '@noeldemartin/testing';
2
+ import { beforeEach, vi } from 'vitest';
3
+
4
+ vi.mock('dompurify', async () => {
5
+ return { default: { sanitize: (html: string) => html } };
6
+ });
7
+
8
+ beforeEach(() => {
9
+ FakeLocalStorage.reset();
10
+ FakeLocalStorage.patchGlobal();
11
+ });
@@ -1,8 +1,10 @@
1
1
  import type { Component } from 'vue';
2
2
 
3
- import { defineServiceState } from '@/services/Service';
3
+ import { defineServiceState } from '@aerogel/core/services/Service';
4
4
 
5
- export interface Modal<T = unknown> {
5
+ import { Layouts, getCurrentLayout } from './utils';
6
+
7
+ export interface UIModal<T = unknown> {
6
8
  id: string;
7
9
  properties: Record<string, unknown>;
8
10
  component: Component;
@@ -10,14 +12,19 @@ export interface Modal<T = unknown> {
10
12
  afterClose: Promise<T | undefined>;
11
13
  }
12
14
 
15
+ export interface UIModalContext {
16
+ modal: UIModal;
17
+ childIndex?: number;
18
+ }
19
+
13
20
  export interface ModalComponent<
14
21
  // eslint-disable-next-line @typescript-eslint/no-unused-vars
15
- Properties extends Record<string, unknown> = Record<string, unknown>,
22
+ Properties extends object = object,
16
23
  // eslint-disable-next-line @typescript-eslint/no-unused-vars
17
- Result = unknown
24
+ Result = unknown,
18
25
  > {}
19
26
 
20
- export interface Snackbar {
27
+ export interface UIToast {
21
28
  id: string;
22
29
  component: Component;
23
30
  properties: Record<string, unknown>;
@@ -26,7 +33,12 @@ export interface Snackbar {
26
33
  export default defineServiceState({
27
34
  name: 'ui',
28
35
  initialState: {
29
- modals: [] as Modal[],
30
- snackbars: [] as Snackbar[],
36
+ modals: [] as UIModal[],
37
+ toasts: [] as UIToast[],
38
+ layout: getCurrentLayout(),
39
+ },
40
+ computed: {
41
+ mobile: ({ layout }) => layout === Layouts.Mobile,
42
+ desktop: ({ layout }) => layout === Layouts.Desktop,
31
43
  },
32
44
  });