{"version":3,"sources":["node_modules/@ngxs/router-plugin/fesm2015/ngxs-router-plugin.js","node_modules/@angular/forms/fesm2022/forms.mjs","node_modules/@ngxs/form-plugin/fesm2015/ngxs-form-plugin.js"],"sourcesContent":["import * as i0 from '@angular/core';\nimport { InjectionToken, NgZone, Injector, Injectable, NgModule } from '@angular/core';\nimport * as i1 from '@ngxs/store';\nimport { Action, Selector, State, Store, NgxsModule } from '@ngxs/store';\nimport { __decorate, __metadata } from 'tslib';\nimport * as i2 from '@angular/router';\nimport { NavigationStart, RoutesRecognized, ResolveEnd, NavigationCancel, NavigationError, NavigationEnd, Router } from '@angular/router';\nimport { Subscription } from 'rxjs';\n\n/**\n * Public event api of the router\n */\nlet Navigate = /*#__PURE__*/(() => {\n class Navigate {\n constructor(path, queryParams, extras) {\n this.path = path;\n this.queryParams = queryParams;\n this.extras = extras;\n }\n }\n Navigate.type = '[Router] Navigate';\n /**\n *\n * Angular Routers internal state events\n *\n */\n /**\n * An action dispatched when the router starts the navigation.\n */\n return Navigate;\n})();\nlet RouterRequest = /*#__PURE__*/(() => {\n class RouterRequest {\n constructor(routerState, event, trigger = 'none') {\n this.routerState = routerState;\n this.event = event;\n this.trigger = trigger;\n }\n }\n RouterRequest.type = '[Router] RouterRequest';\n /**\n * An action dispatched when the router navigates.\n */\n return RouterRequest;\n})();\nlet RouterNavigation = /*#__PURE__*/(() => {\n class RouterNavigation {\n constructor(routerState, event, trigger = 'none') {\n this.routerState = routerState;\n this.event = event;\n this.trigger = trigger;\n }\n }\n RouterNavigation.type = '[Router] RouterNavigation';\n /**\n * An action dispatched when the router cancel navigation.\n */\n return RouterNavigation;\n})();\nlet RouterCancel = /*#__PURE__*/(() => {\n class RouterCancel {\n constructor(routerState, storeState, event, trigger = 'none') {\n this.routerState = routerState;\n this.storeState = storeState;\n this.event = event;\n this.trigger = trigger;\n }\n }\n RouterCancel.type = '[Router] RouterCancel';\n /**\n * An action dispatched when the router errors.\n */\n return RouterCancel;\n})();\nlet RouterError = /*#__PURE__*/(() => {\n class RouterError {\n constructor(routerState, storeState, event, trigger = 'none') {\n this.routerState = routerState;\n this.storeState = storeState;\n this.event = event;\n this.trigger = trigger;\n }\n }\n RouterError.type = '[Router] RouterError';\n /**\n * An action dispatched when the `ResolveEnd` event is triggered.\n */\n return RouterError;\n})();\nlet RouterDataResolved = /*#__PURE__*/(() => {\n class RouterDataResolved {\n constructor(routerState, event, trigger = 'none') {\n this.routerState = routerState;\n this.event = event;\n this.trigger = trigger;\n }\n }\n RouterDataResolved.type = '[Router] RouterDataResolved';\n /**\n * An action dispatched when the router navigation has been finished successfully.\n */\n return RouterDataResolved;\n})();\nlet RouterNavigated = /*#__PURE__*/(() => {\n class RouterNavigated {\n constructor(routerState, event, trigger = 'none') {\n this.routerState = routerState;\n this.event = event;\n this.trigger = trigger;\n }\n }\n RouterNavigated.type = '[Router] RouterNavigated';\n return RouterNavigated;\n})();\nclass RouterStateSerializer {}\nclass DefaultRouterStateSerializer {\n serialize(routerState) {\n return {\n root: this.serializeRoute(routerState.root),\n url: routerState.url\n };\n }\n serializeRoute(route) {\n const children = route.children.map(c => this.serializeRoute(c));\n return {\n url: route.url,\n params: route.params,\n queryParams: route.queryParams,\n fragment: route.fragment,\n data: route.data,\n outlet: route.outlet,\n component: null,\n routeConfig: null,\n root: null,\n parent: null,\n firstChild: children[0],\n children: children,\n pathFromRoot: null,\n paramMap: route.paramMap,\n queryParamMap: route.queryParamMap,\n toString: route.toString\n };\n }\n}\nconst USER_OPTIONS = new InjectionToken('USER_OPTIONS', {\n providedIn: 'root',\n factory: () => undefined\n});\nconst NGXS_ROUTER_PLUGIN_OPTIONS = new InjectionToken('NGXS_ROUTER_PLUGIN_OPTIONS', {\n providedIn: 'root',\n factory: () => ({})\n});\nfunction createRouterPluginOptions(options) {\n return {\n navigationActionTiming: options && options.navigationActionTiming || 1 /* PreActivation */\n };\n}\nvar RouterState_1;\nlet RouterState = RouterState_1 = class RouterState {\n constructor(_store, _router, _serializer, _ngZone, injector) {\n this._store = _store;\n this._router = _router;\n this._serializer = _serializer;\n this._ngZone = _ngZone;\n /**\n * Determines how navigation was performed by the `RouterState` itself\n * or outside via `new Navigate(...)`\n */\n this._trigger = 'none';\n /**\n * That's the serialized state from the `Router` class\n */\n this._routerState = null;\n /**\n * That's the value of the `RouterState` state\n */\n this._storeState = null;\n this._lastEvent = null;\n this._subscription = new Subscription();\n this._options = null;\n // Note: do not use `@Inject` since it fails on lower versions of Angular with Jest\n // integration, it cannot resolve the token provider.\n this._options = injector.get(NGXS_ROUTER_PLUGIN_OPTIONS, null);\n this._setUpStoreListener();\n this._setUpRouterEventsListener();\n }\n static state(state) {\n return state && state.state;\n }\n static url(state) {\n return state && state.state && state.state.url;\n }\n ngOnDestroy() {\n this._subscription.unsubscribe();\n }\n navigate(_, action) {\n return this._ngZone.run(() => this._router.navigate(action.path, Object.assign({\n queryParams: action.queryParams\n }, action.extras)));\n }\n angularRouterAction(ctx, action) {\n ctx.setState({\n trigger: action.trigger,\n state: action.routerState,\n navigationId: action.event.id\n });\n }\n _setUpStoreListener() {\n const subscription = this._store.select(RouterState_1).subscribe(state => {\n this._navigateIfNeeded(state);\n });\n this._subscription.add(subscription);\n }\n _navigateIfNeeded(routerState) {\n if (routerState && routerState.trigger === 'devtools') {\n this._storeState = this._store.selectSnapshot(RouterState_1);\n }\n const canSkipNavigation = !this._storeState || !this._storeState.state || !routerState || routerState.trigger === 'router' || this._router.url === this._storeState.state.url || this._lastEvent instanceof NavigationStart;\n if (canSkipNavigation) {\n return;\n }\n this._storeState = this._store.selectSnapshot(RouterState_1);\n this._trigger = 'store';\n this._ngZone.run(() => this._router.navigateByUrl(this._storeState.state.url));\n }\n _setUpRouterEventsListener() {\n const dispatchRouterNavigationLate = this._options != null && this._options.navigationActionTiming === 2 /* PostActivation */;\n let lastRoutesRecognized;\n const subscription = this._router.events.subscribe(event => {\n this._lastEvent = event;\n if (event instanceof NavigationStart) {\n this._navigationStart(event);\n } else if (event instanceof RoutesRecognized) {\n lastRoutesRecognized = event;\n if (!dispatchRouterNavigationLate && this._trigger !== 'store') {\n this._dispatchRouterNavigation(lastRoutesRecognized);\n }\n } else if (event instanceof ResolveEnd) {\n this._dispatchRouterDataResolved(event);\n } else if (event instanceof NavigationCancel) {\n this._dispatchRouterCancel(event);\n this._reset();\n } else if (event instanceof NavigationError) {\n this._dispatchRouterError(event);\n this._reset();\n } else if (event instanceof NavigationEnd) {\n if (this._trigger !== 'store') {\n if (dispatchRouterNavigationLate) {\n this._dispatchRouterNavigation(lastRoutesRecognized);\n }\n this._dispatchRouterNavigated(event);\n }\n this._reset();\n }\n });\n this._subscription.add(subscription);\n }\n /** Reacts to `NavigationStart`. */\n _navigationStart(event) {\n this._routerState = this._serializer.serialize(this._router.routerState.snapshot);\n if (this._trigger !== 'none') {\n this._storeState = this._store.selectSnapshot(RouterState_1);\n this._dispatchRouterAction(new RouterRequest(this._routerState, event, this._trigger));\n }\n }\n /** Reacts to `ResolveEnd`. */\n _dispatchRouterDataResolved(event) {\n const routerState = this._serializer.serialize(event.state);\n this._dispatchRouterAction(new RouterDataResolved(routerState, event, this._trigger));\n }\n /** Reacts to `RoutesRecognized` or `NavigationEnd`, depends on the `navigationActionTiming`. */\n _dispatchRouterNavigation(lastRoutesRecognized) {\n const nextRouterState = this._serializer.serialize(lastRoutesRecognized.state);\n this._dispatchRouterAction(new RouterNavigation(nextRouterState, new RoutesRecognized(lastRoutesRecognized.id, lastRoutesRecognized.url, lastRoutesRecognized.urlAfterRedirects, nextRouterState), this._trigger));\n }\n /** Reacts to `NavigationCancel`. */\n _dispatchRouterCancel(event) {\n this._dispatchRouterAction(new RouterCancel(this._routerState, this._storeState, event, this._trigger));\n }\n /** Reacts to `NavigationEnd`. */\n _dispatchRouterError(event) {\n this._dispatchRouterAction(new RouterError(this._routerState, this._storeState, new NavigationError(event.id, event.url, `${event}`), this._trigger));\n }\n /** Reacts to `NavigationEnd`. */\n _dispatchRouterNavigated(event) {\n const routerState = this._serializer.serialize(this._router.routerState.snapshot);\n this._dispatchRouterAction(new RouterNavigated(routerState, event, this._trigger));\n }\n _dispatchRouterAction(action) {\n this._trigger = 'router';\n try {\n this._store.dispatch(action);\n } finally {\n this._trigger = 'none';\n }\n }\n _reset() {\n this._trigger = 'none';\n this._storeState = null;\n this._routerState = null;\n }\n};\n/** @nocollapse */\nRouterState.ɵfac = function RouterState_Factory(t) {\n return new (t || RouterState)(i0.ɵɵinject(i1.Store), i0.ɵɵinject(i2.Router), i0.ɵɵinject(RouterStateSerializer), i0.ɵɵinject(i0.NgZone), i0.ɵɵinject(i0.Injector));\n};\n/** @nocollapse */\nRouterState.ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: RouterState,\n factory: RouterState.ɵfac\n});\n__decorate([Action(Navigate), __metadata(\"design:type\", Function), __metadata(\"design:paramtypes\", [Object, Navigate]), __metadata(\"design:returntype\", void 0)], RouterState.prototype, \"navigate\", null);\n__decorate([Action([RouterRequest, RouterNavigation, RouterError, RouterCancel, RouterDataResolved, RouterNavigated]), __metadata(\"design:type\", Function), __metadata(\"design:paramtypes\", [Object, Object]), __metadata(\"design:returntype\", void 0)], RouterState.prototype, \"angularRouterAction\", null);\n__decorate([Selector(), __metadata(\"design:type\", Function), __metadata(\"design:paramtypes\", [Object]), __metadata(\"design:returntype\", void 0)], RouterState, \"state\", null);\n__decorate([Selector(), __metadata(\"design:type\", Function), __metadata(\"design:paramtypes\", [Object]), __metadata(\"design:returntype\", Object)], RouterState, \"url\", null);\nRouterState = RouterState_1 = __decorate([State({\n name: 'router',\n defaults: {\n state: undefined,\n navigationId: undefined,\n trigger: 'none'\n }\n}), __metadata(\"design:paramtypes\", [Store, Router, RouterStateSerializer, NgZone, Injector])], RouterState);\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nlet NgxsRouterPluginModule = /*#__PURE__*/(() => {\n class NgxsRouterPluginModule {\n static forRoot(options) {\n return {\n ngModule: NgxsRouterPluginModule,\n providers: [{\n provide: USER_OPTIONS,\n useValue: options\n }, {\n provide: NGXS_ROUTER_PLUGIN_OPTIONS,\n useFactory: createRouterPluginOptions,\n deps: [USER_OPTIONS]\n }, {\n provide: RouterStateSerializer,\n useClass: DefaultRouterStateSerializer\n }]\n };\n }\n }\n /** @nocollapse */\n /** @nocollapse */\n /** @nocollapse */NgxsRouterPluginModule.ɵfac = function NgxsRouterPluginModule_Factory(t) {\n return new (t || NgxsRouterPluginModule)();\n };\n NgxsRouterPluginModule.ɵmod = /* @__PURE__ */i0.ɵɵdefineNgModule({\n type: NgxsRouterPluginModule\n });\n NgxsRouterPluginModule.ɵinj = /* @__PURE__ */i0.ɵɵdefineInjector({\n imports: [[NgxsModule.forFeature([RouterState])]]\n });\n return NgxsRouterPluginModule;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n\n/**\n * The public api for consumers of @ngxs/router-plugin\n */\n\n/**\n * Generated bundle index. Do not edit.\n */\n\nexport { DefaultRouterStateSerializer, Navigate, NgxsRouterPluginModule, RouterCancel, RouterDataResolved, RouterError, RouterNavigated, RouterNavigation, RouterRequest, RouterState, RouterStateSerializer };\n","/**\n * @license Angular v17.3.12\n * (c) 2010-2024 Google LLC. https://angular.io/\n * License: MIT\n */\n\nimport * as i0 from '@angular/core';\nimport { Directive, InjectionToken, forwardRef, Optional, Inject, ɵisPromise, ɵisSubscribable, ɵRuntimeError, Self, EventEmitter, Input, Host, SkipSelf, booleanAttribute, ChangeDetectorRef, Output, Injectable, inject, NgModule, Version } from '@angular/core';\nimport { ɵgetDOM } from '@angular/common';\nimport { from, forkJoin } from 'rxjs';\nimport { map } from 'rxjs/operators';\n\n/**\n * Base class for all ControlValueAccessor classes defined in Forms package.\n * Contains common logic and utility functions.\n *\n * Note: this is an *internal-only* class and should not be extended or used directly in\n * applications code.\n */\nlet BaseControlValueAccessor = /*#__PURE__*/(() => {\n class BaseControlValueAccessor {\n constructor(_renderer, _elementRef) {\n this._renderer = _renderer;\n this._elementRef = _elementRef;\n /**\n * The registered callback function called when a change or input event occurs on the input\n * element.\n * @nodoc\n */\n this.onChange = _ => {};\n /**\n * The registered callback function called when a blur event occurs on the input element.\n * @nodoc\n */\n this.onTouched = () => {};\n }\n /**\n * Helper method that sets a property on a target element using the current Renderer\n * implementation.\n * @nodoc\n */\n setProperty(key, value) {\n this._renderer.setProperty(this._elementRef.nativeElement, key, value);\n }\n /**\n * Registers a function called when the control is touched.\n * @nodoc\n */\n registerOnTouched(fn) {\n this.onTouched = fn;\n }\n /**\n * Registers a function called when the control value changes.\n * @nodoc\n */\n registerOnChange(fn) {\n this.onChange = fn;\n }\n /**\n * Sets the \"disabled\" property on the range input element.\n * @nodoc\n */\n setDisabledState(isDisabled) {\n this.setProperty('disabled', isDisabled);\n }\n static {\n this.ɵfac = function BaseControlValueAccessor_Factory(t) {\n return new (t || BaseControlValueAccessor)(i0.ɵɵdirectiveInject(i0.Renderer2), i0.ɵɵdirectiveInject(i0.ElementRef));\n };\n }\n static {\n this.ɵdir = /* @__PURE__ */i0.ɵɵdefineDirective({\n type: BaseControlValueAccessor\n });\n }\n }\n return BaseControlValueAccessor;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n/**\n * Base class for all built-in ControlValueAccessor classes (except DefaultValueAccessor, which is\n * used in case no other CVAs can be found). We use this class to distinguish between default CVA,\n * built-in CVAs and custom CVAs, so that Forms logic can recognize built-in CVAs and treat custom\n * ones with higher priority (when both built-in and custom CVAs are present).\n *\n * Note: this is an *internal-only* class and should not be extended or used directly in\n * applications code.\n */\nlet BuiltInControlValueAccessor = /*#__PURE__*/(() => {\n class BuiltInControlValueAccessor extends BaseControlValueAccessor {\n static {\n this.ɵfac = /* @__PURE__ */(() => {\n let ɵBuiltInControlValueAccessor_BaseFactory;\n return function BuiltInControlValueAccessor_Factory(t) {\n return (ɵBuiltInControlValueAccessor_BaseFactory || (ɵBuiltInControlValueAccessor_BaseFactory = i0.ɵɵgetInheritedFactory(BuiltInControlValueAccessor)))(t || BuiltInControlValueAccessor);\n };\n })();\n }\n static {\n this.ɵdir = /* @__PURE__ */i0.ɵɵdefineDirective({\n type: BuiltInControlValueAccessor,\n features: [i0.ɵɵInheritDefinitionFeature]\n });\n }\n }\n return BuiltInControlValueAccessor;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n/**\n * Used to provide a `ControlValueAccessor` for form controls.\n *\n * See `DefaultValueAccessor` for how to implement one.\n *\n * @publicApi\n */\nconst NG_VALUE_ACCESSOR = /*#__PURE__*/new InjectionToken(ngDevMode ? 'NgValueAccessor' : '');\nconst CHECKBOX_VALUE_ACCESSOR = {\n provide: NG_VALUE_ACCESSOR,\n useExisting: /*#__PURE__*/forwardRef(() => CheckboxControlValueAccessor),\n multi: true\n};\n/**\n * @description\n * A `ControlValueAccessor` for writing a value and listening to changes on a checkbox input\n * element.\n *\n * @usageNotes\n *\n * ### Using a checkbox with a reactive form.\n *\n * The following example shows how to use a checkbox with a reactive form.\n *\n * ```ts\n * const rememberLoginControl = new FormControl();\n * ```\n *\n * ```\n * \n * ```\n *\n * @ngModule ReactiveFormsModule\n * @ngModule FormsModule\n * @publicApi\n */\nlet CheckboxControlValueAccessor = /*#__PURE__*/(() => {\n class CheckboxControlValueAccessor extends BuiltInControlValueAccessor {\n /**\n * Sets the \"checked\" property on the input element.\n * @nodoc\n */\n writeValue(value) {\n this.setProperty('checked', value);\n }\n static {\n this.ɵfac = /* @__PURE__ */(() => {\n let ɵCheckboxControlValueAccessor_BaseFactory;\n return function CheckboxControlValueAccessor_Factory(t) {\n return (ɵCheckboxControlValueAccessor_BaseFactory || (ɵCheckboxControlValueAccessor_BaseFactory = i0.ɵɵgetInheritedFactory(CheckboxControlValueAccessor)))(t || CheckboxControlValueAccessor);\n };\n })();\n }\n static {\n this.ɵdir = /* @__PURE__ */i0.ɵɵdefineDirective({\n type: CheckboxControlValueAccessor,\n selectors: [[\"input\", \"type\", \"checkbox\", \"formControlName\", \"\"], [\"input\", \"type\", \"checkbox\", \"formControl\", \"\"], [\"input\", \"type\", \"checkbox\", \"ngModel\", \"\"]],\n hostBindings: function CheckboxControlValueAccessor_HostBindings(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵlistener(\"change\", function CheckboxControlValueAccessor_change_HostBindingHandler($event) {\n return ctx.onChange($event.target.checked);\n })(\"blur\", function CheckboxControlValueAccessor_blur_HostBindingHandler() {\n return ctx.onTouched();\n });\n }\n },\n features: [i0.ɵɵProvidersFeature([CHECKBOX_VALUE_ACCESSOR]), i0.ɵɵInheritDefinitionFeature]\n });\n }\n }\n return CheckboxControlValueAccessor;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nconst DEFAULT_VALUE_ACCESSOR = {\n provide: NG_VALUE_ACCESSOR,\n useExisting: /*#__PURE__*/forwardRef(() => DefaultValueAccessor),\n multi: true\n};\n/**\n * We must check whether the agent is Android because composition events\n * behave differently between iOS and Android.\n */\nfunction _isAndroid() {\n const userAgent = ɵgetDOM() ? ɵgetDOM().getUserAgent() : '';\n return /android (\\d+)/.test(userAgent.toLowerCase());\n}\n/**\n * @description\n * Provide this token to control if form directives buffer IME input until\n * the \"compositionend\" event occurs.\n * @publicApi\n */\nconst COMPOSITION_BUFFER_MODE = /*#__PURE__*/new InjectionToken(ngDevMode ? 'CompositionEventMode' : '');\n/**\n * The default `ControlValueAccessor` for writing a value and listening to changes on input\n * elements. The accessor is used by the `FormControlDirective`, `FormControlName`, and\n * `NgModel` directives.\n *\n * {@searchKeywords ngDefaultControl}\n *\n * @usageNotes\n *\n * ### Using the default value accessor\n *\n * The following example shows how to use an input element that activates the default value accessor\n * (in this case, a text field).\n *\n * ```ts\n * const firstNameControl = new FormControl();\n * ```\n *\n * ```\n * \n * ```\n *\n * This value accessor is used by default for `` and `