@fluid-topics/ft-app-context 1.2.2 → 1.2.4

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.
@@ -1,7 +1,7 @@
1
1
  import { PropertyValues } from "lit";
2
2
  import { ElementDefinitionsMap, FtLitElement } from "@fluid-topics/ft-wc-utils";
3
3
  import { FtAppContextProperties } from "./ft-app-context.properties";
4
- import { FtMessageContext, FtMetadataConfiguration, FtSession, FtUiLocale } from "@fluid-topics/public-api";
4
+ import { FtLocalesConfiguration, FtMessageContext, FtMetadataConfiguration, FtSession, FtUiLocale } from "@fluid-topics/public-api";
5
5
  export declare class FtAppContext extends FtLitElement implements FtAppContextProperties {
6
6
  static elementDefinitions: ElementDefinitionsMap;
7
7
  static styles: import("lit").CSSResult;
@@ -20,12 +20,13 @@ export declare class FtAppContext extends FtLitElement implements FtAppContextPr
20
20
  apiProvider: () => import("@fluid-topics/public-api").FluidTopicsApi | undefined;
21
21
  messageContexts: FtMessageContext[];
22
22
  session?: FtSession;
23
+ localesConfiguration?: FtLocalesConfiguration;
23
24
  private cache;
24
25
  render(): import("lit").TemplateResult<1>;
25
26
  update(props: PropertyValues<FtAppContext>): void;
26
27
  private cleanSessionDebouncer;
27
28
  private updateIfNeeded;
28
29
  private updateSession;
29
- updateUiLocales(): Promise<void>;
30
30
  updateMetadataConfiguration(): Promise<void>;
31
+ updateLocalesConfiguration(): Promise<void>;
31
32
  }
@@ -5,7 +5,7 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
5
5
  return c > 3 && r && Object.defineProperty(target, key, r), r;
6
6
  };
7
7
  import { html } from "lit";
8
- import { property } from "lit/decorators.js";
8
+ import { property, state } from "lit/decorators.js";
9
9
  import { CacheRegistry, Debouncer, FtLitElement, jsonProperty } from "@fluid-topics/ft-wc-utils";
10
10
  import { styles } from "./ft-app-context.styles";
11
11
  import { ftAppInfoStore } from "./redux-stores/FtAppInfoStore";
@@ -34,6 +34,7 @@ class FtAppContext extends FtLitElement {
34
34
  `;
35
35
  }
36
36
  update(props) {
37
+ var _a, _b, _c, _d, _e;
37
38
  super.update(props);
38
39
  if (props.has("baseUrl")) {
39
40
  ftAppInfoStore.actions.baseUrl(this.baseUrl);
@@ -60,9 +61,6 @@ class FtAppContext extends FtLitElement {
60
61
  if (props.has("session")) {
61
62
  ftAppInfoStore.actions.session(this.session);
62
63
  }
63
- if (props.has("availableUiLocales")) {
64
- ftAppInfoStore.actions.availableUiLocales(Array.isArray(this.availableUiLocales) ? this.availableUiLocales : []);
65
- }
66
64
  if (props.has("messageContexts") && this.messageContexts != null) {
67
65
  this.messageContexts.forEach(context => ftI18nService.addContext(context));
68
66
  }
@@ -75,18 +73,25 @@ class FtAppContext extends FtLitElement {
75
73
  if (props.has("forcedOffline")) {
76
74
  ftAppInfoStore.actions.forcedOffline(this.forcedOffline);
77
75
  }
76
+ if (props.has("localesConfiguration")) {
77
+ ftAppInfoStore.actions.defaultLocales((_a = this.localesConfiguration) === null || _a === void 0 ? void 0 : _a.defaultLocales);
78
+ ftAppInfoStore.actions.availableUiLocales((_c = (_b = this.localesConfiguration) === null || _b === void 0 ? void 0 : _b.availableUiLocales) !== null && _c !== void 0 ? _c : []);
79
+ ftAppInfoStore.actions.searchInAllLanguagesAllowed((_e = (_d = this.localesConfiguration) === null || _d === void 0 ? void 0 : _d.allLanguagesAllowed) !== null && _e !== void 0 ? _e : false);
80
+ }
78
81
  setTimeout(() => this.updateIfNeeded());
79
82
  }
80
83
  async updateIfNeeded() {
81
- if (!this.withManualResources && this.apiProvider()) {
82
- if (this.session == null) {
83
- this.updateSession();
84
- }
85
- if (this.availableUiLocales == null) {
86
- this.updateUiLocales();
84
+ if (this.apiProvider()) {
85
+ if (!this.withManualResources) {
86
+ if (this.session == null) {
87
+ this.updateSession();
88
+ }
89
+ if (this.metadataConfiguration == null) {
90
+ this.updateMetadataConfiguration();
91
+ }
87
92
  }
88
- if (this.metadataConfiguration == null) {
89
- this.updateMetadataConfiguration();
93
+ if (this.localesConfiguration == null) {
94
+ this.updateLocalesConfiguration();
90
95
  }
91
96
  }
92
97
  }
@@ -102,12 +107,12 @@ class FtAppContext extends FtLitElement {
102
107
  return currentSession;
103
108
  });
104
109
  }
105
- async updateUiLocales() {
106
- this.availableUiLocales = await this.cache.get("availableUiLocales", () => this.apiProvider().getAvailableUiLocales());
107
- }
108
110
  async updateMetadataConfiguration() {
109
111
  this.metadataConfiguration = await this.cache.get("metadataConfiguration", () => this.apiProvider().getMetadataConfiguration());
110
112
  }
113
+ async updateLocalesConfiguration() {
114
+ this.localesConfiguration = await this.cache.get("localesConfiguration", () => this.apiProvider().getLocalesConfiguration());
115
+ }
111
116
  }
112
117
  FtAppContext.elementDefinitions = {};
113
118
  FtAppContext.styles = styles;
@@ -162,4 +167,7 @@ __decorate([
162
167
  __decorate([
163
168
  jsonProperty(undefined)
164
169
  ], FtAppContext.prototype, "session", void 0);
170
+ __decorate([
171
+ state()
172
+ ], FtAppContext.prototype, "localesConfiguration", void 0);
165
173
  export { FtAppContext };
@@ -1,7 +1,7 @@
1
- "use strict";(()=>{var br=Object.create;var yt=Object.defineProperty;var gr=Object.getOwnPropertyDescriptor;var wr=Object.getOwnPropertyNames;var Sr=Object.getPrototypeOf,xr=Object.prototype.hasOwnProperty;var Re=(t,e)=>()=>(e||t((e={exports:{}}).exports,e),e.exports);var Or=(t,e,r,n)=>{if(e&&typeof e=="object"||typeof e=="function")for(let o of wr(e))!xr.call(t,o)&&o!==r&&yt(t,o,{get:()=>e[o],enumerable:!(n=gr(e,o))||n.enumerable});return t};var E=(t,e,r)=>(r=t!=null?br(Sr(t)):{},Or(e||!t||!t.__esModule?yt(r,"default",{value:t,enumerable:!0}):r,t));var R=Re((hn,bt)=>{bt.exports=ftGlobals.wcUtils});var de=Re((vn,gt)=>{gt.exports=ftGlobals.lit});var H=Re((mn,wt)=>{wt.exports=ftGlobals.litDecorators});var yr=E(R());var At=E(de()),j=E(H()),N=E(R());var St=E(de()),yn={},xt=St.css`
2
- `;var pe=E(R()),Er="ft-app-info",Ie=class extends CustomEvent{constructor(e){super("authentication-change",{detail:e})}},Ar={session:(t,e)=>{(0,pe.deepEqual)(t.session,e.payload)||(t.session=e.payload,setTimeout(()=>m.eventBus.dispatchEvent(new Ie(e.payload)),0))}},m=pe.FtReduxStore.get({name:Er,reducers:Ar,initialState:{baseUrl:void 0,apiIntegrationIdentifier:void 0,uiLocale:document.documentElement.lang||"en-US",availableUiLocales:[],metadataConfiguration:void 0,editorMode:!1,noCustom:!1,noCustomComponent:!1,session:void 0,openExternalDocumentInNewTab:!1,navigatorOnline:!0,forcedOffline:!1}});var U=E(R());var Le=E(R());var G=class t{static get(e){let{baseUrl:r,apiIntegrationIdentifier:n}=m.getState(),o=e??n;if(r&&o&&window.fluidtopics)return new window.fluidtopics.FluidTopicsApi(r,o,!0)}static await(e){return new Promise(r=>{let n=t.get(e);if(n)r(n);else{let o=m.subscribe(()=>{n=t.get(e),n&&(o(),r(n))})}})}};var F=class{constructor(e=!0,r){var n;this.overrideApi=r;let o=this.constructor;o.commonCache=(n=o.commonCache)!==null&&n!==void 0?n:new Le.CacheRegistry,this.cache=e?o.commonCache:new Le.CacheRegistry}get api(){var e;return(e=this.overrideApi)!==null&&e!==void 0?e:G.get()}get awaitApi(){return this.overrideApi?Promise.resolve(this.overrideApi):G.await()}clearCache(){this.cache.clearAll()}};var Ot,Pr=Symbol("clearAfterUnitTest"),he=class extends F{constructor(e){super(),this.messageContextProvider=e,this.defaultMessages={},this.listeners={},this.currentUiLocale="",this[Ot]=()=>{this.defaultMessages={},this.cache=new U.CacheRegistry,this.listeners={}},this.currentUiLocale=m.getState().uiLocale,m.subscribe(()=>this.clearWhenUiLocaleChanges())}clearWhenUiLocaleChanges(){let{uiLocale:e}=m.getState();this.currentUiLocale!==e&&(this.currentUiLocale=e,this.cache.clearAll(),this.notifyAll())}addContext(e){let r=e.name.toLowerCase();this.cache.setFinal(r,e),this.notify(r)}getAllContexts(){return this.cache.resolvedValues()}async prepareContext(e,r){var n;if(e=e.toLowerCase(),Object.keys(r).length>0){let o={...(n=this.defaultMessages[e])!==null&&n!==void 0?n:{},...r};(0,U.deepEqual)(this.defaultMessages[e],o)||(this.defaultMessages[e]=o,await this.notify(e))}await this.fetchContext(e)}resolveContext(e){var r,n;return this.fetchContext(e),(n=(r=this.cache.getNow(e))===null||r===void 0?void 0:r.messages)!==null&&n!==void 0?n:{}}resolveRawMessage(e,r){let n=e.toLowerCase();return this.resolveContext(n)[r]}resolveMessage(e,r,...n){var o;let i=e.toLowerCase(),a=this.resolveContext(i);return new U.ParametrizedLabelResolver((o=this.defaultMessages[i])!==null&&o!==void 0?o:{},a).resolve(r,...n)}async fetchContext(e){if(!this.cache.has(e))try{await this.cache.get(e,()=>this.messageContextProvider(this.currentUiLocale,e)),await this.notify(e)}catch(r){console.error(r)}}subscribe(e,r){var n;return e=e.toLowerCase(),this.listeners[e]=(n=this.listeners[e])!==null&&n!==void 0?n:new Set,this.listeners[e].add(r),()=>{var o;return(o=this.listeners[e])===null||o===void 0?void 0:o.delete(r)}}async notifyAll(){await Promise.all(Object.keys(this.listeners).map(e=>this.notify(e)))}async notify(e){this.listeners[e]!=null&&await Promise.all([...this.listeners[e].values()].map(r=>(0,U.delay)(0).then(()=>r()).catch(()=>null)))}};Ot=Pr;window.FluidTopicsI18nService==null&&(window.FluidTopicsI18nService=new class extends he{constructor(){super(async(t,e)=>(await this.awaitApi).getFluidTopicsMessageContext(t,e))}});window.FluidTopicsCustomI18nService==null&&(window.FluidTopicsCustomI18nService=new class extends he{constructor(){super(async(t,e)=>(await this.awaitApi).getCustomMessageContext(t,e))}});var Et=window.FluidTopicsI18nService,Pn=window.FluidTopicsCustomI18nService;var P=function(t,e,r,n){var o=arguments.length,i=o<3?e:n===null?n=Object.getOwnPropertyDescriptor(e,r):n,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")i=Reflect.decorate(t,e,r,n);else for(var s=t.length-1;s>=0;s--)(a=t[s])&&(i=(o<3?a(i):o>3?a(e,r,i):a(e,r))||i);return o>3&&i&&Object.defineProperty(e,r,i),i},O=class extends N.FtLitElement{constructor(){super(...arguments),this.apiIntegrationIdentifier="ft-integration",this.uiLocale="en-US",this.editorMode=!1,this.noCustom=!1,this.openExternalDocumentInNewTab=!1,this.noCustomComponent=!1,this.withManualResources=!1,this.navigatorOnline=!1,this.forcedOffline=!1,this.apiProvider=()=>G.get(),this.messageContexts=[],this.cache=new N.CacheRegistry,this.cleanSessionDebouncer=new N.Debouncer}render(){return At.html`
1
+ "use strict";(()=>{var Sr=Object.create;var bt=Object.defineProperty;var xr=Object.getOwnPropertyDescriptor;var Or=Object.getOwnPropertyNames;var Er=Object.getPrototypeOf,Ar=Object.prototype.hasOwnProperty;var Ie=(t,e)=>()=>(e||t((e={exports:{}}).exports,e),e.exports);var Cr=(t,e,r,n)=>{if(e&&typeof e=="object"||typeof e=="function")for(let o of Or(e))!Ar.call(t,o)&&o!==r&&bt(t,o,{get:()=>e[o],enumerable:!(n=xr(e,o))||n.enumerable});return t};var E=(t,e,r)=>(r=t!=null?Sr(Er(t)):{},Cr(e||!t||!t.__esModule?bt(r,"default",{value:t,enumerable:!0}):r,t));var D=Ie((bn,gt)=>{gt.exports=ftGlobals.wcUtils});var de=Ie((gn,wt)=>{wt.exports=ftGlobals.lit});var H=Ie((wn,St)=>{St.exports=ftGlobals.litDecorators});var wr=E(D());var Ct=E(de()),P=E(H()),_=E(D());var xt=E(de()),Sn={},Ot=xt.css`
2
+ `;var pe=E(D()),Pr="ft-app-info",Le=class extends CustomEvent{constructor(e){super("authentication-change",{detail:e})}},jr={session:(t,e)=>{(0,pe.deepEqual)(t.session,e.payload)||(t.session=e.payload,setTimeout(()=>m.dispatchEvent(new Le(e.payload)),0))}},m=pe.FtReduxStore.get({name:Pr,reducers:jr,initialState:{baseUrl:void 0,apiIntegrationIdentifier:void 0,uiLocale:document.documentElement.lang||"en-US",availableUiLocales:[],defaultLocales:void 0,searchInAllLanguagesAllowed:!1,metadataConfiguration:void 0,editorMode:!1,noCustom:!1,noCustomComponent:!1,session:void 0,openExternalDocumentInNewTab:!1,navigatorOnline:!0,forcedOffline:!1}});var U=E(D());var Fe=E(D());var G=class t{static get(e){let{baseUrl:r,apiIntegrationIdentifier:n}=m.getState(),o=e??n;if(r&&o&&window.fluidtopics)return new window.fluidtopics.FluidTopicsApi(r,o,!0)}static await(e){return new Promise(r=>{let n=t.get(e);if(n)r(n);else{let o=m.subscribe(()=>{n=t.get(e),n&&(o(),r(n))})}})}};var F=class{constructor(e=!0,r){var n;this.overrideApi=r;let o=this.constructor;o.commonCache=(n=o.commonCache)!==null&&n!==void 0?n:new Fe.CacheRegistry,this.cache=e?o.commonCache:new Fe.CacheRegistry}get api(){var e;return(e=this.overrideApi)!==null&&e!==void 0?e:G.get()}get awaitApi(){return this.overrideApi?Promise.resolve(this.overrideApi):G.await()}clearCache(){this.cache.clearAll()}};var Et,Mr=Symbol("clearAfterUnitTest"),he=class extends F{constructor(e){super(),this.messageContextProvider=e,this.defaultMessages={},this.listeners={},this.currentUiLocale="",this[Et]=()=>{this.defaultMessages={},this.cache=new U.CacheRegistry,this.listeners={}},this.currentUiLocale=m.getState().uiLocale,m.subscribe(()=>this.clearWhenUiLocaleChanges())}clearWhenUiLocaleChanges(){let{uiLocale:e}=m.getState();this.currentUiLocale!==e&&(this.currentUiLocale=e,this.cache.clearAll(),this.notifyAll())}addContext(e){let r=e.name.toLowerCase();this.cache.setFinal(r,e),this.notify(r)}getAllContexts(){return this.cache.resolvedValues()}async prepareContext(e,r){var n;if(e=e.toLowerCase(),Object.keys(r).length>0){let o={...(n=this.defaultMessages[e])!==null&&n!==void 0?n:{},...r};(0,U.deepEqual)(this.defaultMessages[e],o)||(this.defaultMessages[e]=o,await this.notify(e))}await this.fetchContext(e)}resolveContext(e){var r,n;return this.fetchContext(e),(n=(r=this.cache.getNow(e))===null||r===void 0?void 0:r.messages)!==null&&n!==void 0?n:{}}resolveRawMessage(e,r){let n=e.toLowerCase();return this.resolveContext(n)[r]}resolveMessage(e,r,...n){var o;let i=e.toLowerCase(),a=this.resolveContext(i);return new U.ParametrizedLabelResolver((o=this.defaultMessages[i])!==null&&o!==void 0?o:{},a).resolve(r,...n)}async fetchContext(e){if(!this.cache.has(e))try{await this.cache.get(e,()=>this.messageContextProvider(this.currentUiLocale,e)),await this.notify(e)}catch(r){console.error(r)}}subscribe(e,r){var n;return e=e.toLowerCase(),this.listeners[e]=(n=this.listeners[e])!==null&&n!==void 0?n:new Set,this.listeners[e].add(r),()=>{var o;return(o=this.listeners[e])===null||o===void 0?void 0:o.delete(r)}}async notifyAll(){await Promise.all(Object.keys(this.listeners).map(e=>this.notify(e)))}async notify(e){this.listeners[e]!=null&&await Promise.all([...this.listeners[e].values()].map(r=>(0,U.delay)(0).then(()=>r()).catch(()=>null)))}};Et=Mr;window.FluidTopicsI18nService==null&&(window.FluidTopicsI18nService=new class extends he{constructor(){super(async(t,e)=>(await this.awaitApi).getFluidTopicsMessageContext(t,e))}});window.FluidTopicsCustomI18nService==null&&(window.FluidTopicsCustomI18nService=new class extends he{constructor(){super(async(t,e)=>(await this.awaitApi).getCustomMessageContext(t,e))}});var At=window.FluidTopicsI18nService,kn=window.FluidTopicsCustomI18nService;var A=function(t,e,r,n){var o=arguments.length,i=o<3?e:n===null?n=Object.getOwnPropertyDescriptor(e,r):n,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")i=Reflect.decorate(t,e,r,n);else for(var s=t.length-1;s>=0;s--)(a=t[s])&&(i=(o<3?a(i):o>3?a(e,r,i):a(e,r))||i);return o>3&&i&&Object.defineProperty(e,r,i),i},O=class extends _.FtLitElement{constructor(){super(...arguments),this.apiIntegrationIdentifier="ft-integration",this.uiLocale="en-US",this.editorMode=!1,this.noCustom=!1,this.openExternalDocumentInNewTab=!1,this.noCustomComponent=!1,this.withManualResources=!1,this.navigatorOnline=!1,this.forcedOffline=!1,this.apiProvider=()=>G.get(),this.messageContexts=[],this.cache=new _.CacheRegistry,this.cleanSessionDebouncer=new _.Debouncer}render(){return Ct.html`
3
3
  <slot></slot>
4
- `}update(e){super.update(e),e.has("baseUrl")&&(m.actions.baseUrl(this.baseUrl),window.fluidTopicsBaseUrl=this.baseUrl),e.has("apiIntegrationIdentifier")&&m.actions.apiIntegrationIdentifier(this.apiIntegrationIdentifier),e.has("uiLocale")&&m.actions.uiLocale(this.uiLocale),e.has("metadataConfiguration")&&m.actions.metadataConfiguration(this.metadataConfiguration),e.has("noCustom")&&m.actions.noCustom(this.noCustom),e.has("editorMode")&&m.actions.editorMode(this.editorMode),e.has("noCustomComponent")&&m.actions.noCustomComponent(this.noCustomComponent),e.has("session")&&m.actions.session(this.session),e.has("availableUiLocales")&&m.actions.availableUiLocales(Array.isArray(this.availableUiLocales)?this.availableUiLocales:[]),e.has("messageContexts")&&this.messageContexts!=null&&this.messageContexts.forEach(r=>Et.addContext(r)),e.has("openExternalDocumentInNewTab")&&m.actions.openExternalDocumentInNewTab(this.openExternalDocumentInNewTab),e.has("navigatorOnline")&&m.actions.navigatorOnline(this.navigatorOnline),e.has("forcedOffline")&&m.actions.forcedOffline(this.forcedOffline),setTimeout(()=>this.updateIfNeeded())}async updateIfNeeded(){!this.withManualResources&&this.apiProvider()&&(this.session==null&&this.updateSession(),this.availableUiLocales==null&&this.updateUiLocales(),this.metadataConfiguration==null&&this.updateMetadataConfiguration())}async updateSession(){this.session=await this.cache.get("session",async()=>{let e=await this.apiProvider().getCurrentSession();return e.idleTimeoutInMillis>0&&this.cleanSessionDebouncer.run(()=>{this.cache.clear("session"),this.session=void 0},e.idleTimeoutInMillis),e})}async updateUiLocales(){this.availableUiLocales=await this.cache.get("availableUiLocales",()=>this.apiProvider().getAvailableUiLocales())}async updateMetadataConfiguration(){this.metadataConfiguration=await this.cache.get("metadataConfiguration",()=>this.apiProvider().getMetadataConfiguration())}};O.elementDefinitions={};O.styles=xt;P([(0,j.property)()],O.prototype,"baseUrl",void 0);P([(0,j.property)()],O.prototype,"apiIntegrationIdentifier",void 0);P([(0,j.property)()],O.prototype,"uiLocale",void 0);P([(0,N.jsonProperty)(null)],O.prototype,"availableUiLocales",void 0);P([(0,N.jsonProperty)(null)],O.prototype,"metadataConfiguration",void 0);P([(0,j.property)({type:Boolean})],O.prototype,"editorMode",void 0);P([(0,j.property)({type:Boolean})],O.prototype,"noCustom",void 0);P([(0,j.property)({type:Boolean})],O.prototype,"openExternalDocumentInNewTab",void 0);P([(0,j.property)({converter:{fromAttribute(t){return t==="false"?!1:t==="true"||(t??!1)}}})],O.prototype,"noCustomComponent",void 0);P([(0,j.property)({type:Boolean})],O.prototype,"withManualResources",void 0);P([(0,j.property)({type:Boolean})],O.prototype,"navigatorOnline",void 0);P([(0,j.property)({type:Boolean})],O.prototype,"forcedOffline",void 0);P([(0,j.property)({type:Object})],O.prototype,"apiProvider",void 0);P([(0,N.jsonProperty)([])],O.prototype,"messageContexts",void 0);P([(0,N.jsonProperty)(void 0)],O.prototype,"session",void 0);var ft=E(H());function Cr(t,e){if(t===e)return!0;if(t&&e&&typeof t=="object"&&typeof e=="object"){if(t.constructor!==e.constructor)return!1;var r,n,o;if(Array.isArray(t)){if(r=t.length,r!=e.length)return!1;for(n=r;n--!==0;)if(!ve(t[n],e[n]))return!1;return!0}if(t instanceof Map&&e instanceof Map){if(t.size!==e.size)return!1;for(n of t.entries())if(!e.has(n[0]))return!1;for(n of t.entries())if(!ve(n[1],e.get(n[0])))return!1;return!0}if(t instanceof Set&&e instanceof Set){if(t.size!==e.size)return!1;for(n of t.entries())if(!e.has(n[0]))return!1;return!0}if(t.constructor===RegExp)return t.source===e.source&&t.flags===e.flags;if(t.valueOf!==Object.prototype.valueOf)return t.valueOf()===e.valueOf();if(o=Object.keys(t),r=o.length,r!==Object.keys(e).length)return!1;for(n=r;n--!==0;)if(!Object.prototype.hasOwnProperty.call(e,o[n]))return!1;for(n=r;n--!==0;){var i=o[n];if(!ve(t[i],e[i]))return!1}return!0}return t!==t&&e!==e}function ve(t,e){try{return Cr(t,e)}catch{return!1}}function me(t,e){return!ve(t,e)}var Pt=E(H(),1);var Fe=t=>{let e=t??{};return(r,n)=>{var o;let i={hasChanged:me,attribute:!1,...e};(0,Pt.property)(i)(r,n);let a=r.constructor;a.reduxProperties=new Map(a.reduxProperties),a.reduxProperties.set(n,{selector:(o=e.selector)!==null&&o!==void 0?o:s=>s[n],store:e.store})}};var ye=class{constructor(){this.queue=[]}add(e,r=!1){r&&(this.queue=this.queue.filter(n=>n.type!==e.type)),this.queue.push(e)}consume(e){let r=this.queue.find(n=>n.type===e);return r&&(this.queue=this.queue.filter(n=>n!==r)),r}};var ae=E(H(),1);var Ct=E(H(),1);function jt(t,e){let r=()=>JSON.parse(JSON.stringify(t));return(0,Ct.property)({type:Object,converter:{fromAttribute:n=>{if(n==null)return r();try{return JSON.parse(n)}catch{return r()}},toAttribute:n=>JSON.stringify(n)},hasChanged:me,...e??{}})}var be=class{constructor(e=0){this.timeout=e,this.callbacks=[]}run(e,r){return this.callbacks=[e],this.debounce(r)}queue(e,r){return this.callbacks.push(e),this.debounce(r)}cancel(){this.clearTimeout(),this.resolvePromise&&this.resolvePromise(!1),this.clearPromise()}debounce(e){return this.promise==null&&(this.promise=new Promise((r,n)=>{this.resolvePromise=r,this.rejectPromise=n})),this.clearTimeout(),this._debounce=window.setTimeout(()=>this.runCallbacks(),e??this.timeout),this.promise}async runCallbacks(){var e,r;let n=[...this.callbacks];this.callbacks=[];let o=(e=this.rejectPromise)!==null&&e!==void 0?e:()=>null,i=(r=this.resolvePromise)!==null&&r!==void 0?r:()=>null;this.clearPromise();for(let a of n)try{await a()}catch(s){o(s);return}i(!0)}clearTimeout(){this._debounce!=null&&window.clearTimeout(this._debounce)}clearPromise(){this.promise=void 0,this.resolvePromise=void 0,this.rejectPromise=void 0}};var kt=E(de(),1);var ge=window,jr=ge.ShadowRoot&&(ge.ShadyCSS===void 0||ge.ShadyCSS.nativeShadow)&&"adoptedStyleSheets"in Document.prototype&&"replace"in CSSStyleSheet.prototype,Wn=Symbol();var Mt=(t,e)=>{jr?t.adoptedStyleSheets=e.map(r=>r instanceof CSSStyleSheet?r:r.styleSheet):e.forEach(r=>{let n=document.createElement("style"),o=ge.litNonce;o!==void 0&&n.setAttribute("nonce",o),n.textContent=r.cssText,t.appendChild(n)})};var we=class extends kt.LitElement{createRenderRoot(){let e=this.constructor;e.elementDefinitions&&!e.registry&&(e.registry=new CustomElementRegistry,Object.entries(e.elementDefinitions).forEach(([o,i])=>e.registry.define(o,i)));let r={...e.shadowRootOptions,customElements:e.registry},n=this.renderOptions.creationScope=this.attachShadow(r);return Mt(n,e.elementStyles),n}};var Se=function(t,e,r,n){var o=arguments.length,i=o<3?e:n===null?n=Object.getOwnPropertyDescriptor(e,r):n,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")i=Reflect.decorate(t,e,r,n);else for(var s=t.length-1;s>=0;s--)(a=t[s])&&(i=(o<3?a(i):o>3?a(e,r,i):a(e,r))||i);return o>3&&i&&Object.defineProperty(e,r,i),i},Tt,Nt=Symbol("constructorPrototype"),Dt=Symbol("constructorName"),Rt=Symbol("exportpartsDebouncer"),_t=Symbol("dynamicDependenciesLoaded"),V=class extends we{constructor(){super(),this.useAdoptedStyleSheets=!0,this.adoptedCustomStyleSheet=new CSSStyleSheet,this[Tt]=new be(5),this[Dt]=this.constructor.name,this[Nt]=this.constructor.prototype}adoptedCallback(){this.constructor.name!==this[Dt]&&Object.setPrototypeOf(this,this[Nt])}connectedCallback(){super.connectedCallback();try{this.shadowRoot&&!this.shadowRoot.adoptedStyleSheets.includes(this.adoptedCustomStyleSheet)&&(this.shadowRoot.adoptedStyleSheets=[...this.shadowRoot.adoptedStyleSheets,this.adoptedCustomStyleSheet]),this.useAdoptedStyleSheets=!0}catch(r){this.useAdoptedStyleSheets=!1,console.error("Cannot use adopted stylesheets",r)}let e=this.constructor;e[_t]||(e[_t]=!0,this.importDynamicDependencies())}importDynamicDependencies(){}updated(e){super.updated(e),this.updateComplete.then(()=>{this.contentAvailableCallback(e),this.applyCustomStylesheet(e),this.scheduleExportpartsUpdate()})}contentAvailableCallback(e){}applyCustomStylesheet(e){var r,n,o;if(((n=(r=this.shadowRoot)===null||r===void 0?void 0:r.querySelectorAll(".ft-lit-element--custom-stylesheet"))!==null&&n!==void 0?n:[]).forEach(i=>i.remove()),this.useAdoptedStyleSheets){if(e.has("customStylesheet"))try{this.adoptedCustomStyleSheet.replaceSync((o=this.customStylesheet)!==null&&o!==void 0?o:"")}catch(i){console.error(i,this.customStylesheet),this.useAdoptedStyleSheets=!1}}else if(this.customStylesheet){let i=document.createElement("style");i.classList.add("ft-lit-element--custom-stylesheet"),i.innerHTML=this.customStylesheet,this.shadowRoot.append(i)}}scheduleExportpartsUpdate(){var e,r,n;(!((e=this.exportpartsPrefix)===null||e===void 0)&&e.trim()||(n=(r=this.exportpartsPrefixes)===null||r===void 0?void 0:r.length)!==null&&n!==void 0&&n)&&this[Rt].run(()=>{var o,i;!((o=this.exportpartsPrefix)===null||o===void 0)&&o.trim()?this.setExportpartsAttribute([this.exportpartsPrefix]):this.exportpartsPrefixes!=null&&((i=this.exportpartsPrefixes)===null||i===void 0?void 0:i.length)>0&&this.setExportpartsAttribute(this.exportpartsPrefixes)})}setExportpartsAttribute(e){var r,n,o,i,a,s;let c=l=>l!=null&&l.trim().length>0,u=e.filter(c).map(l=>l.trim());if(u.length===0){this.removeAttribute("exportparts");return}let f=new Set;for(let l of(n=(r=this.shadowRoot)===null||r===void 0?void 0:r.querySelectorAll("[part],[exportparts]"))!==null&&n!==void 0?n:[]){let v=(i=(o=l.getAttribute("part"))===null||o===void 0?void 0:o.split(" "))!==null&&i!==void 0?i:[],d=(s=(a=l.getAttribute("exportparts"))===null||a===void 0?void 0:a.split(",").map(p=>p.split(":")[1]))!==null&&s!==void 0?s:[];new Array(...v,...d).filter(c).map(p=>p.trim()).forEach(p=>f.add(p))}if(f.size===0){this.removeAttribute("exportparts");return}let h=[...f.values()].flatMap(l=>u.map(v=>`${l}:${v}--${l}`));this.setAttribute("exportparts",[...this.part,...h].join(", "))}};Tt=Rt;Se([(0,ae.property)()],V.prototype,"exportpartsPrefix",void 0);Se([jt([])],V.prototype,"exportpartsPrefixes",void 0);Se([(0,ae.property)()],V.prototype,"customStylesheet",void 0);Se([(0,ae.state)()],V.prototype,"useAdoptedStyleSheets",void 0);function se(t){var e;return(e=t?.isFtReduxStore)!==null&&e!==void 0?e:!1}var It,Lt,Ft,xe=Symbol("internalReduxEventsUnsubscribers"),z=Symbol("internalStoresUnsubscribers"),X=Symbol("internalStores"),ue=class extends V{constructor(){super(...arguments),this[It]=new Map,this[Lt]=new Map,this[Ft]=[]}get reduxConstructor(){return this.constructor}update(e){super.update(e),[...this.reduxConstructor.reduxReactiveProperties].some(r=>e.has(r))&&this.updateFromStores()}getUnnamedStore(){if(this[X].size>1)throw new Error("Cannot resolve unnamed store when multiple stores are configured.");return[...this[X].values()][0]}getStore(e){return e==null?this.getUnnamedStore():this[X].get(e)}addStore(e,r){var n;r=(n=r??(se(e)?e.name:void 0))!==null&&n!==void 0?n:"default-store",this.unsubscribeFromStore(r),this.setupStore(r,e)}removeStore(e){let r=typeof e=="string"?e:e.name;this.unsubscribeFromStore(r),this[X].delete(r)}setupStore(e,r){this[X].set(e,r),this.subscribeToStore(e,r),this.updateFromStores()}setupStores(){this.unsubscribeFromStores(),this[X].forEach((e,r)=>this.subscribeToStore(r,e)),this.updateFromStores()}updateFromStores(){this.reduxConstructor.reduxProperties.forEach((e,r)=>{let n=this.constructor.getPropertyOptions(r);if(!n?.attribute||!this.hasAttribute(typeof n?.attribute=="string"?n.attribute:r)){let o=this.getStore(e.store);o&&(e.store?this[z].has(e.store):this[z].size>0)&&(this[r]=e.selector(o.getState(),this))}})}subscribeToStore(e,r){var n;this[z].set(e,r.subscribe(()=>this.updateFromStores())),se(r)&&r.eventBus&&((n=this.reduxConstructor.reduxEventListeners)===null||n===void 0||n.forEach((o,i)=>{if(typeof this[i]=="function"&&(!o.store||r.name===o.store)){let a=s=>this[i](s);r.eventBus.addEventListener(o.eventName,a),this[xe].push(()=>r.eventBus.removeEventListener(o.eventName,a))}})),this.onStoreAvailable(e)}unsubscribeFromStores(){this[z].forEach((e,r)=>this.unsubscribeFromStore(r)),this[xe].forEach(e=>e()),this[xe]=[]}unsubscribeFromStore(e){this[z].has(e)&&this[z].get(e)(),this[z].delete(e)}onStoreAvailable(e){}connectedCallback(){super.connectedCallback(),this.setupStores()}disconnectedCallback(){super.disconnectedCallback(),this.unsubscribeFromStores()}};It=z,Lt=X,Ft=xe;ue.reduxProperties=new Map;ue.reduxReactiveProperties=new Set;ue.reduxEventListeners=new Map;function M(t){for(var e=arguments.length,r=Array(e>1?e-1:0),n=1;n<e;n++)r[n-1]=arguments[n];if(0)var o,i;throw Error("[Immer] minified error nr: "+t+(r.length?" "+r.map(function(a){return"'"+a+"'"}).join(","):"")+". Find the full error at: https://bit.ly/3cXEKWf")}function I(t){return!!t&&!!t[S]}function D(t){var e;return!!t&&(function(r){if(!r||typeof r!="object")return!1;var n=Object.getPrototypeOf(r);if(n===null)return!0;var o=Object.hasOwnProperty.call(n,"constructor")&&n.constructor;return o===Object||typeof o=="function"&&Function.toString.call(o)===Ir}(t)||Array.isArray(t)||!!t[Kt]||!!(!((e=t.constructor)===null||e===void 0)&&e[Kt])||Ge(t)||Xe(t))}function J(t,e,r){r===void 0&&(r=!1),ee(t)===0?(r?Object.keys:Z)(t).forEach(function(n){r&&typeof n=="symbol"||e(n,t[n],t)}):t.forEach(function(n,o){return e(o,n,t)})}function ee(t){var e=t[S];return e?e.i>3?e.i-4:e.i:Array.isArray(t)?1:Ge(t)?2:Xe(t)?3:0}function Q(t,e){return ee(t)===2?t.has(e):Object.prototype.hasOwnProperty.call(t,e)}function Mr(t,e){return ee(t)===2?t.get(e):t[e]}function $t(t,e,r){var n=ee(t);n===2?t.set(e,r):n===3?t.add(r):t[e]=r}function Gt(t,e){return t===e?t!==0||1/t==1/e:t!=t&&e!=e}function Ge(t){return Tr&&t instanceof Map}function Xe(t){return Rr&&t instanceof Set}function W(t){return t.o||t.t}function Je(t){if(Array.isArray(t))return Array.prototype.slice.call(t);var e=Yt(t);delete e[S];for(var r=Z(e),n=0;n<r.length;n++){var o=r[n],i=e[o];i.writable===!1&&(i.writable=!0,i.configurable=!0),(i.get||i.set)&&(e[o]={configurable:!0,writable:!0,enumerable:i.enumerable,value:t[o]})}return Object.create(Object.getPrototypeOf(t),e)}function Ye(t,e){return e===void 0&&(e=!1),He(t)||I(t)||!D(t)||(ee(t)>1&&(t.set=t.add=t.clear=t.delete=kr),Object.freeze(t),e&&J(t,function(r,n){return Ye(n,!0)},!0)),t}function kr(){M(2)}function He(t){return t==null||typeof t!="object"||Object.isFrozen(t)}function _(t){var e=$e[t];return e||M(18,t),e}function Nr(t,e){$e[t]||($e[t]=e)}function Be(){return fe}function Ue(t,e){e&&(_("Patches"),t.u=[],t.s=[],t.v=e)}function Oe(t){qe(t),t.p.forEach(Dr),t.p=null}function qe(t){t===fe&&(fe=t.l)}function Ut(t){return fe={p:[],l:fe,h:t,m:!0,_:0}}function Dr(t){var e=t[S];e.i===0||e.i===1?e.j():e.g=!0}function Ve(t,e){e._=e.p.length;var r=e.p[0],n=t!==void 0&&t!==r;return e.h.O||_("ES5").S(e,t,n),n?(r[S].P&&(Oe(e),M(4)),D(t)&&(t=Ee(e,t),e.l||Ae(e,t)),e.u&&_("Patches").M(r[S].t,t,e.u,e.s)):t=Ee(e,r,[]),Oe(e),e.u&&e.v(e.u,e.s),t!==Jt?t:void 0}function Ee(t,e,r){if(He(e))return e;var n=e[S];if(!n)return J(e,function(s,c){return Vt(t,n,e,s,c,r)},!0),e;if(n.A!==t)return e;if(!n.P)return Ae(t,n.t,!0),n.t;if(!n.I){n.I=!0,n.A._--;var o=n.i===4||n.i===5?n.o=Je(n.k):n.o,i=o,a=!1;n.i===3&&(i=new Set(o),o.clear(),a=!0),J(i,function(s,c){return Vt(t,n,o,s,c,r,a)}),Ae(t,o,!1),r&&t.u&&_("Patches").N(n,r,t.u,t.s)}return n.o}function Vt(t,e,r,n,o,i,a){if(I(o)){var s=Ee(t,o,i&&e&&e.i!==3&&!Q(e.R,n)?i.concat(n):void 0);if($t(r,n,s),!I(s))return;t.m=!1}else a&&r.add(o);if(D(o)&&!He(o)){if(!t.h.D&&t._<1)return;Ee(t,o),e&&e.A.l||Ae(t,o)}}function Ae(t,e,r){r===void 0&&(r=!1),!t.l&&t.h.D&&t.m&&Ye(e,r)}function ze(t,e){var r=t[S];return(r?W(r):t)[e]}function zt(t,e){if(e in t)for(var r=Object.getPrototypeOf(t);r;){var n=Object.getOwnPropertyDescriptor(r,e);if(n)return n;r=Object.getPrototypeOf(r)}}function B(t){t.P||(t.P=!0,t.l&&B(t.l))}function We(t){t.o||(t.o=Je(t.t))}function Ke(t,e,r){var n=Ge(e)?_("MapSet").F(e,r):Xe(e)?_("MapSet").T(e,r):t.O?function(o,i){var a=Array.isArray(o),s={i:a?1:0,A:i?i.A:Be(),P:!1,I:!1,R:{},l:i,t:o,k:null,o:null,j:null,C:!1},c=s,u=le;a&&(c=[s],u=ce);var f=Proxy.revocable(c,u),h=f.revoke,l=f.proxy;return s.k=l,s.j=h,l}(e,r):_("ES5").J(e,r);return(r?r.A:Be()).p.push(n),n}function _r(t){return I(t)||M(22,t),function e(r){if(!D(r))return r;var n,o=r[S],i=ee(r);if(o){if(!o.P&&(o.i<4||!_("ES5").K(o)))return o.t;o.I=!0,n=Wt(r,i),o.I=!1}else n=Wt(r,i);return J(n,function(a,s){o&&Mr(o.t,a)===s||$t(n,a,e(s))}),i===3?new Set(n):n}(t)}function Wt(t,e){switch(e){case 2:return new Map(t);case 3:return Array.from(t)}return Je(t)}function Xt(){function t(a,s){var c=i[a];return c?c.enumerable=s:i[a]=c={configurable:!0,enumerable:s,get:function(){var u=this[S];return le.get(u,a)},set:function(u){var f=this[S];le.set(f,a,u)}},c}function e(a){for(var s=a.length-1;s>=0;s--){var c=a[s][S];if(!c.P)switch(c.i){case 5:n(c)&&B(c);break;case 4:r(c)&&B(c)}}}function r(a){for(var s=a.t,c=a.k,u=Z(c),f=u.length-1;f>=0;f--){var h=u[f];if(h!==S){var l=s[h];if(l===void 0&&!Q(s,h))return!0;var v=c[h],d=v&&v[S];if(d?d.t!==l:!Gt(v,l))return!0}}var p=!!s[S];return u.length!==Z(s).length+(p?0:1)}function n(a){var s=a.k;if(s.length!==a.t.length)return!0;var c=Object.getOwnPropertyDescriptor(s,s.length-1);if(c&&!c.get)return!0;for(var u=0;u<s.length;u++)if(!s.hasOwnProperty(u))return!0;return!1}function o(a){a.g&&M(3,JSON.stringify(W(a)))}var i={};Nr("ES5",{J:function(a,s){var c=Array.isArray(a),u=function(h,l){if(h){for(var v=Array(l.length),d=0;d<l.length;d++)Object.defineProperty(v,""+d,t(d,!0));return v}var p=Yt(l);delete p[S];for(var g=Z(p),y=0;y<g.length;y++){var b=g[y];p[b]=t(b,h||!!p[b].enumerable)}return Object.create(Object.getPrototypeOf(l),p)}(c,a),f={i:c?5:4,A:s?s.A:Be(),P:!1,I:!1,R:{},l:s,t:a,k:u,o:null,g:!1,C:!1};return Object.defineProperty(u,S,{value:f,writable:!0}),u},S:function(a,s,c){c?I(s)&&s[S].A===a&&e(a.p):(a.u&&function u(f){if(f&&typeof f=="object"){var h=f[S];if(h){var l=h.t,v=h.k,d=h.R,p=h.i;if(p===4)J(v,function(w){w!==S&&(l[w]!==void 0||Q(l,w)?d[w]||u(v[w]):(d[w]=!0,B(h)))}),J(l,function(w){v[w]!==void 0||Q(v,w)||(d[w]=!1,B(h))});else if(p===5){if(n(h)&&(B(h),d.length=!0),v.length<l.length)for(var g=v.length;g<l.length;g++)d[g]=!1;else for(var y=l.length;y<v.length;y++)d[y]=!0;for(var b=Math.min(v.length,l.length),x=0;x<b;x++)v.hasOwnProperty(x)||(d[x]=!0),d[x]===void 0&&u(v[x])}}}}(a.p[0]),e(a.p))},K:function(a){return a.i===4?r(a):n(a)}})}var Bt,fe,Qe=typeof Symbol<"u"&&typeof Symbol("x")=="symbol",Tr=typeof Map<"u",Rr=typeof Set<"u",qt=typeof Proxy<"u"&&Proxy.revocable!==void 0&&typeof Reflect<"u",Jt=Qe?Symbol.for("immer-nothing"):((Bt={})["immer-nothing"]=!0,Bt),Kt=Qe?Symbol.for("immer-draftable"):"__$immer_draftable",S=Qe?Symbol.for("immer-state"):"__$immer_state";var Ir=""+Object.prototype.constructor,Z=typeof Reflect<"u"&&Reflect.ownKeys?Reflect.ownKeys:Object.getOwnPropertySymbols!==void 0?function(t){return Object.getOwnPropertyNames(t).concat(Object.getOwnPropertySymbols(t))}:Object.getOwnPropertyNames,Yt=Object.getOwnPropertyDescriptors||function(t){var e={};return Z(t).forEach(function(r){e[r]=Object.getOwnPropertyDescriptor(t,r)}),e},$e={},le={get:function(t,e){if(e===S)return t;var r=W(t);if(!Q(r,e))return function(o,i,a){var s,c=zt(i,a);return c?"value"in c?c.value:(s=c.get)===null||s===void 0?void 0:s.call(o.k):void 0}(t,r,e);var n=r[e];return t.I||!D(n)?n:n===ze(t.t,e)?(We(t),t.o[e]=Ke(t.A.h,n,t)):n},has:function(t,e){return e in W(t)},ownKeys:function(t){return Reflect.ownKeys(W(t))},set:function(t,e,r){var n=zt(W(t),e);if(n?.set)return n.set.call(t.k,r),!0;if(!t.P){var o=ze(W(t),e),i=o?.[S];if(i&&i.t===r)return t.o[e]=r,t.R[e]=!1,!0;if(Gt(r,o)&&(r!==void 0||Q(t.t,e)))return!0;We(t),B(t)}return t.o[e]===r&&(r!==void 0||e in t.o)||Number.isNaN(r)&&Number.isNaN(t.o[e])||(t.o[e]=r,t.R[e]=!0),!0},deleteProperty:function(t,e){return ze(t.t,e)!==void 0||e in t.t?(t.R[e]=!1,We(t),B(t)):delete t.R[e],t.o&&delete t.o[e],!0},getOwnPropertyDescriptor:function(t,e){var r=W(t),n=Reflect.getOwnPropertyDescriptor(r,e);return n&&{writable:!0,configurable:t.i!==1||e!=="length",enumerable:n.enumerable,value:r[e]}},defineProperty:function(){M(11)},getPrototypeOf:function(t){return Object.getPrototypeOf(t.t)},setPrototypeOf:function(){M(12)}},ce={};J(le,function(t,e){ce[t]=function(){return arguments[0]=arguments[0][0],e.apply(this,arguments)}}),ce.deleteProperty=function(t,e){return ce.set.call(this,t,e,void 0)},ce.set=function(t,e,r){return le.set.call(this,t[0],e,r,t[0])};var Lr=function(){function t(r){var n=this;this.O=qt,this.D=!0,this.produce=function(o,i,a){if(typeof o=="function"&&typeof i!="function"){var s=i;i=o;var c=n;return function(p){var g=this;p===void 0&&(p=s);for(var y=arguments.length,b=Array(y>1?y-1:0),x=1;x<y;x++)b[x-1]=arguments[x];return c.produce(p,function(w){var L;return(L=i).call.apply(L,[g,w].concat(b))})}}var u;if(typeof i!="function"&&M(6),a!==void 0&&typeof a!="function"&&M(7),D(o)){var f=Ut(n),h=Ke(n,o,void 0),l=!0;try{u=i(h),l=!1}finally{l?Oe(f):qe(f)}return typeof Promise<"u"&&u instanceof Promise?u.then(function(p){return Ue(f,a),Ve(p,f)},function(p){throw Oe(f),p}):(Ue(f,a),Ve(u,f))}if(!o||typeof o!="object"){if((u=i(o))===void 0&&(u=o),u===Jt&&(u=void 0),n.D&&Ye(u,!0),a){var v=[],d=[];_("Patches").M(o,u,v,d),a(v,d)}return u}M(21,o)},this.produceWithPatches=function(o,i){if(typeof o=="function")return function(u){for(var f=arguments.length,h=Array(f>1?f-1:0),l=1;l<f;l++)h[l-1]=arguments[l];return n.produceWithPatches(u,function(v){return o.apply(void 0,[v].concat(h))})};var a,s,c=n.produce(o,i,function(u,f){a=u,s=f});return typeof Promise<"u"&&c instanceof Promise?c.then(function(u){return[u,a,s]}):[c,a,s]},typeof r?.useProxies=="boolean"&&this.setUseProxies(r.useProxies),typeof r?.autoFreeze=="boolean"&&this.setAutoFreeze(r.autoFreeze)}var e=t.prototype;return e.createDraft=function(r){D(r)||M(8),I(r)&&(r=_r(r));var n=Ut(this),o=Ke(this,r,void 0);return o[S].C=!0,qe(n),o},e.finishDraft=function(r,n){var o=r&&r[S],i=o.A;return Ue(i,n),Ve(void 0,i)},e.setAutoFreeze=function(r){this.D=r},e.setUseProxies=function(r){r&&!qt&&M(20),this.O=r},e.applyPatches=function(r,n){var o;for(o=n.length-1;o>=0;o--){var i=n[o];if(i.path.length===0&&i.op==="replace"){r=i.value;break}}o>-1&&(n=n.slice(o+1));var a=_("Patches").$;return I(r)?a(r,n):this.produce(r,function(s){return a(s,n)})},t}(),C=new Lr,Fr=C.produce,eo=C.produceWithPatches.bind(C),to=C.setAutoFreeze.bind(C),ro=C.setUseProxies.bind(C),no=C.applyPatches.bind(C),oo=C.createDraft.bind(C),io=C.finishDraft.bind(C),Pe=Fr;function q(t){"@babel/helpers - typeof";return q=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(e){return typeof e}:function(e){return e&&typeof Symbol=="function"&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},q(t)}function Ze(t,e){if(q(t)!=="object"||t===null)return t;var r=t[Symbol.toPrimitive];if(r!==void 0){var n=r.call(t,e||"default");if(q(n)!=="object")return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return(e==="string"?String:Number)(t)}function et(t){var e=Ze(t,"string");return q(e)==="symbol"?e:String(e)}function tt(t,e,r){return e=et(e),e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function Ht(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter(function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable})),r.push.apply(r,n)}return r}function Ce(t){for(var e=1;e<arguments.length;e++){var r=arguments[e]!=null?arguments[e]:{};e%2?Ht(Object(r),!0).forEach(function(n){tt(t,n,r[n])}):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):Ht(Object(r)).forEach(function(n){Object.defineProperty(t,n,Object.getOwnPropertyDescriptor(r,n))})}return t}function A(t){return"Minified Redux error #"+t+"; visit https://redux.js.org/Errors?code="+t+" for the full message or use the non-minified dev environment for full errors. "}var Qt=function(){return typeof Symbol=="function"&&Symbol.observable||"@@observable"}(),rt=function(){return Math.random().toString(36).substring(7).split("").join(".")},je={INIT:"@@redux/INIT"+rt(),REPLACE:"@@redux/REPLACE"+rt(),PROBE_UNKNOWN_ACTION:function(){return"@@redux/PROBE_UNKNOWN_ACTION"+rt()}};function Ur(t){if(typeof t!="object"||t===null)return!1;for(var e=t;Object.getPrototypeOf(e)!==null;)e=Object.getPrototypeOf(e);return Object.getPrototypeOf(t)===e}function nt(t,e,r){var n;if(typeof e=="function"&&typeof r=="function"||typeof r=="function"&&typeof arguments[3]=="function")throw new Error(A(0));if(typeof e=="function"&&typeof r>"u"&&(r=e,e=void 0),typeof r<"u"){if(typeof r!="function")throw new Error(A(1));return r(nt)(t,e)}if(typeof t!="function")throw new Error(A(2));var o=t,i=e,a=[],s=a,c=!1;function u(){s===a&&(s=a.slice())}function f(){if(c)throw new Error(A(3));return i}function h(p){if(typeof p!="function")throw new Error(A(4));if(c)throw new Error(A(5));var g=!0;return u(),s.push(p),function(){if(g){if(c)throw new Error(A(6));g=!1,u();var b=s.indexOf(p);s.splice(b,1),a=null}}}function l(p){if(!Ur(p))throw new Error(A(7));if(typeof p.type>"u")throw new Error(A(8));if(c)throw new Error(A(9));try{c=!0,i=o(i,p)}finally{c=!1}for(var g=a=s,y=0;y<g.length;y++){var b=g[y];b()}return p}function v(p){if(typeof p!="function")throw new Error(A(10));o=p,l({type:je.REPLACE})}function d(){var p,g=h;return p={subscribe:function(b){if(typeof b!="object"||b===null)throw new Error(A(11));function x(){b.next&&b.next(f())}x();var w=g(x);return{unsubscribe:w}}},p[Qt]=function(){return this},p}return l({type:je.INIT}),n={dispatch:l,subscribe:h,getState:f,replaceReducer:v},n[Qt]=d,n}function Vr(t){Object.keys(t).forEach(function(e){var r=t[e],n=r(void 0,{type:je.INIT});if(typeof n>"u")throw new Error(A(12));if(typeof r(void 0,{type:je.PROBE_UNKNOWN_ACTION()})>"u")throw new Error(A(13))})}function Zt(t){for(var e=Object.keys(t),r={},n=0;n<e.length;n++){var o=e[n];typeof t[o]=="function"&&(r[o]=t[o])}var i=Object.keys(r),a,s;try{Vr(r)}catch(c){s=c}return function(u,f){if(u===void 0&&(u={}),s)throw s;if(0)var h;for(var l=!1,v={},d=0;d<i.length;d++){var p=i[d],g=r[p],y=u[p],b=g(y,f);if(typeof b>"u"){var x=f&&f.type;throw new Error(A(14))}v[p]=b,l=l||b!==y}return l=l||i.length!==Object.keys(u).length,l?v:u}}function te(){for(var t=arguments.length,e=new Array(t),r=0;r<t;r++)e[r]=arguments[r];return e.length===0?function(n){return n}:e.length===1?e[0]:e.reduce(function(n,o){return function(){return n(o.apply(void 0,arguments))}})}function er(){for(var t=arguments.length,e=new Array(t),r=0;r<t;r++)e[r]=arguments[r];return function(n){return function(){var o=n.apply(void 0,arguments),i=function(){throw new Error(A(15))},a={getState:o.getState,dispatch:function(){return i.apply(void 0,arguments)}},s=e.map(function(c){return c(a)});return i=te.apply(void 0,s)(o.dispatch),Ce(Ce({},o),{},{dispatch:i})}}}function tr(t){var e=function(n){var o=n.dispatch,i=n.getState;return function(a){return function(s){return typeof s=="function"?s(o,i,t):a(s)}}};return e}var rr=tr();rr.withExtraArgument=tr;var ot=rr;var sr=function(){var t=function(e,r){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(n,o){n.__proto__=o}||function(n,o){for(var i in o)Object.prototype.hasOwnProperty.call(o,i)&&(n[i]=o[i])},t(e,r)};return function(e,r){if(typeof r!="function"&&r!==null)throw new TypeError("Class extends value "+String(r)+" is not a constructor or null");t(e,r);function n(){this.constructor=e}e.prototype=r===null?Object.create(r):(n.prototype=r.prototype,new n)}}(),zr=function(t,e){var r={label:0,sent:function(){if(i[0]&1)throw i[1];return i[1]},trys:[],ops:[]},n,o,i,a;return a={next:s(0),throw:s(1),return:s(2)},typeof Symbol=="function"&&(a[Symbol.iterator]=function(){return this}),a;function s(u){return function(f){return c([u,f])}}function c(u){if(n)throw new TypeError("Generator is already executing.");for(;r;)try{if(n=1,o&&(i=u[0]&2?o.return:u[0]?o.throw||((i=o.return)&&i.call(o),0):o.next)&&!(i=i.call(o,u[1])).done)return i;switch(o=0,i&&(u=[u[0]&2,i.value]),u[0]){case 0:case 1:i=u;break;case 4:return r.label++,{value:u[1],done:!1};case 5:r.label++,o=u[1],u=[0];continue;case 7:u=r.ops.pop(),r.trys.pop();continue;default:if(i=r.trys,!(i=i.length>0&&i[i.length-1])&&(u[0]===6||u[0]===2)){r=0;continue}if(u[0]===3&&(!i||u[1]>i[0]&&u[1]<i[3])){r.label=u[1];break}if(u[0]===6&&r.label<i[1]){r.label=i[1],i=u;break}if(i&&r.label<i[2]){r.label=i[2],r.ops.push(u);break}i[2]&&r.ops.pop(),r.trys.pop();continue}u=e.call(t,r)}catch(f){u=[6,f],o=0}finally{n=i=0}if(u[0]&5)throw u[1];return{value:u[0]?u[1]:void 0,done:!0}}},re=function(t,e){for(var r=0,n=e.length,o=t.length;r<n;r++,o++)t[o]=e[r];return t},Wr=Object.defineProperty,Br=Object.defineProperties,qr=Object.getOwnPropertyDescriptors,nr=Object.getOwnPropertySymbols,Kr=Object.prototype.hasOwnProperty,$r=Object.prototype.propertyIsEnumerable,or=function(t,e,r){return e in t?Wr(t,e,{enumerable:!0,configurable:!0,writable:!0,value:r}):t[e]=r},K=function(t,e){for(var r in e||(e={}))Kr.call(e,r)&&or(t,r,e[r]);if(nr)for(var n=0,o=nr(e);n<o.length;n++){var r=o[n];$r.call(e,r)&&or(t,r,e[r])}return t},it=function(t,e){return Br(t,qr(e))},Gr=function(t,e,r){return new Promise(function(n,o){var i=function(c){try{s(r.next(c))}catch(u){o(u)}},a=function(c){try{s(r.throw(c))}catch(u){o(u)}},s=function(c){return c.done?n(c.value):Promise.resolve(c.value).then(i,a)};s((r=r.apply(t,e)).next())})};var Xr=typeof window<"u"&&window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__?window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__:function(){if(arguments.length!==0)return typeof arguments[0]=="object"?te:te.apply(null,arguments)},Eo=typeof window<"u"&&window.__REDUX_DEVTOOLS_EXTENSION__?window.__REDUX_DEVTOOLS_EXTENSION__:function(){return function(t){return t}};function Jr(t){if(typeof t!="object"||t===null)return!1;var e=Object.getPrototypeOf(t);if(e===null)return!0;for(var r=e;Object.getPrototypeOf(r)!==null;)r=Object.getPrototypeOf(r);return e===r}var Yr=function(t){sr(e,t);function e(){for(var r=[],n=0;n<arguments.length;n++)r[n]=arguments[n];var o=t.apply(this,r)||this;return Object.setPrototypeOf(o,e.prototype),o}return Object.defineProperty(e,Symbol.species,{get:function(){return e},enumerable:!1,configurable:!0}),e.prototype.concat=function(){for(var r=[],n=0;n<arguments.length;n++)r[n]=arguments[n];return t.prototype.concat.apply(this,r)},e.prototype.prepend=function(){for(var r=[],n=0;n<arguments.length;n++)r[n]=arguments[n];return r.length===1&&Array.isArray(r[0])?new(e.bind.apply(e,re([void 0],r[0].concat(this)))):new(e.bind.apply(e,re([void 0],r.concat(this))))},e}(Array),Hr=function(t){sr(e,t);function e(){for(var r=[],n=0;n<arguments.length;n++)r[n]=arguments[n];var o=t.apply(this,r)||this;return Object.setPrototypeOf(o,e.prototype),o}return Object.defineProperty(e,Symbol.species,{get:function(){return e},enumerable:!1,configurable:!0}),e.prototype.concat=function(){for(var r=[],n=0;n<arguments.length;n++)r[n]=arguments[n];return t.prototype.concat.apply(this,r)},e.prototype.prepend=function(){for(var r=[],n=0;n<arguments.length;n++)r[n]=arguments[n];return r.length===1&&Array.isArray(r[0])?new(e.bind.apply(e,re([void 0],r[0].concat(this)))):new(e.bind.apply(e,re([void 0],r.concat(this))))},e}(Array);function ut(t){return D(t)?Pe(t,function(){}):t}function Qr(t){return typeof t=="boolean"}function Zr(){return function(e){return en(e)}}function en(t){t===void 0&&(t={});var e=t.thunk,r=e===void 0?!0:e,n=t.immutableCheck,o=n===void 0?!0:n,i=t.serializableCheck,a=i===void 0?!0:i,s=new Yr;if(r&&(Qr(r)?s.push(ot):s.push(ot.withExtraArgument(r.extraArgument))),0){if(o)var c;if(a)var u}return s}var at=!0;function ur(t){var e=Zr(),r=t||{},n=r.reducer,o=n===void 0?void 0:n,i=r.middleware,a=i===void 0?e():i,s=r.devTools,c=s===void 0?!0:s,u=r.preloadedState,f=u===void 0?void 0:u,h=r.enhancers,l=h===void 0?void 0:h,v;if(typeof o=="function")v=o;else if(Jr(o))v=Zt(o);else throw new Error('"reducer" is a required argument, and must be a function or an object of functions that can be passed to combineReducers');var d=a;if(typeof d=="function"&&(d=d(e),!at&&!Array.isArray(d)))throw new Error("when using a middleware builder function, an array of middleware must be returned");if(!at&&d.some(function(w){return typeof w!="function"}))throw new Error("each middleware provided to configureStore must be a function");var p=er.apply(void 0,d),g=te;c&&(g=Xr(K({trace:!at},typeof c=="object"&&c)));var y=new Hr(p),b=y;Array.isArray(l)?b=re([p],l):typeof l=="function"&&(b=l(y));var x=g.apply(void 0,b);return nt(v,f,x)}function $(t,e){function r(){for(var n=[],o=0;o<arguments.length;o++)n[o]=arguments[o];if(e){var i=e.apply(void 0,n);if(!i)throw new Error("prepareAction did not return an object");return K(K({type:t,payload:i.payload},"meta"in i&&{meta:i.meta}),"error"in i&&{error:i.error})}return{type:t,payload:n[0]}}return r.toString=function(){return""+t},r.type=t,r.match=function(n){return n.type===t},r}function cr(t){var e={},r=[],n,o={addCase:function(i,a){var s=typeof i=="string"?i:i.type;if(s in e)throw new Error("addCase cannot be called with two reducers for the same action type");return e[s]=a,o},addMatcher:function(i,a){return r.push({matcher:i,reducer:a}),o},addDefaultCase:function(i){return n=i,o}};return t(o),[e,r,n]}function tn(t){return typeof t=="function"}function rn(t,e,r,n){r===void 0&&(r=[]);var o=typeof e=="function"?cr(e):[e,r,n],i=o[0],a=o[1],s=o[2],c;if(tn(t))c=function(){return ut(t())};else{var u=ut(t);c=function(){return u}}function f(h,l){h===void 0&&(h=c());var v=re([i[l.type]],a.filter(function(d){var p=d.matcher;return p(l)}).map(function(d){var p=d.reducer;return p}));return v.filter(function(d){return!!d}).length===0&&(v=[s]),v.reduce(function(d,p){if(p)if(I(d)){var g=d,y=p(g,l);return y===void 0?d:y}else{if(D(d))return Pe(d,function(b){return p(b,l)});var y=p(d,l);if(y===void 0){if(d===null)return d;throw Error("A case reducer on a non-draftable value must not return undefined")}return y}return d},h)}return f.getInitialState=c,f}function nn(t,e){return t+"/"+e}function fr(t){var e=t.name;if(!e)throw new Error("`name` is a required option for createSlice");typeof process<"u";var r=typeof t.initialState=="function"?t.initialState:ut(t.initialState),n=t.reducers||{},o=Object.keys(n),i={},a={},s={};o.forEach(function(f){var h=n[f],l=nn(e,f),v,d;"reducer"in h?(v=h.reducer,d=h.prepare):v=h,i[f]=v,a[l]=v,s[f]=d?$(l,d):$(l)});function c(){var f=typeof t.extraReducers=="function"?cr(t.extraReducers):[t.extraReducers],h=f[0],l=h===void 0?{}:h,v=f[1],d=v===void 0?[]:v,p=f[2],g=p===void 0?void 0:p,y=K(K({},l),a);return rn(r,function(b){for(var x in y)b.addCase(x,y[x]);for(var w=0,L=d;w<L.length;w++){var T=L[w];b.addMatcher(T.matcher,T.reducer)}g&&b.addDefaultCase(g)})}var u;return{name:e,reducer:function(f,h){return u||(u=c()),u(f,h)},actions:s,caseReducers:i,getInitialState:function(){return u||(u=c()),u.getInitialState()}}}var on="ModuleSymbhasOwnPr-0123456789ABCDEFGHNRVfgctiUvz_KqYTJkLxpZXIjQW",an=function(t){t===void 0&&(t=21);for(var e="",r=t;r--;)e+=on[Math.random()*64|0];return e},sn=["name","message","stack","code"],st=function(){function t(e,r){this.payload=e,this.meta=r}return t}(),ir=function(){function t(e,r){this.payload=e,this.meta=r}return t}(),un=function(t){if(typeof t=="object"&&t!==null){for(var e={},r=0,n=sn;r<n.length;r++){var o=n[r];typeof t[o]=="string"&&(e[o]=t[o])}return e}return{message:String(t)}},jo=function(){function t(e,r,n){var o=$(e+"/fulfilled",function(f,h,l,v){return{payload:f,meta:it(K({},v||{}),{arg:l,requestId:h,requestStatus:"fulfilled"})}}),i=$(e+"/pending",function(f,h,l){return{payload:void 0,meta:it(K({},l||{}),{arg:h,requestId:f,requestStatus:"pending"})}}),a=$(e+"/rejected",function(f,h,l,v,d){return{payload:v,error:(n&&n.serializeError||un)(f||"Rejected"),meta:it(K({},d||{}),{arg:l,requestId:h,rejectedWithValue:!!v,requestStatus:"rejected",aborted:f?.name==="AbortError",condition:f?.name==="ConditionError"})}}),s=!1,c=typeof AbortController<"u"?AbortController:function(){function f(){this.signal={aborted:!1,addEventListener:function(){},dispatchEvent:function(){return!1},onabort:function(){},removeEventListener:function(){},reason:void 0,throwIfAborted:function(){}}}return f.prototype.abort=function(){},f}();function u(f){return function(h,l,v){var d=n?.idGenerator?n.idGenerator(f):an(),p=new c,g,y=!1;function b(w){g=w,p.abort()}var x=function(){return Gr(this,null,function(){var w,L,T,ne,vt,oe,mt;return zr(this,function(Y){switch(Y.label){case 0:return Y.trys.push([0,4,,5]),ne=(w=n?.condition)==null?void 0:w.call(n,f,{getState:l,extra:v}),fn(ne)?[4,ne]:[3,2];case 1:ne=Y.sent(),Y.label=2;case 2:if(ne===!1||p.signal.aborted)throw{name:"ConditionError",message:"Aborted due to condition callback returning false."};return y=!0,vt=new Promise(function(k,ie){return p.signal.addEventListener("abort",function(){return ie({name:"AbortError",message:g||"Aborted"})})}),h(i(d,f,(L=n?.getPendingMeta)==null?void 0:L.call(n,{requestId:d,arg:f},{getState:l,extra:v}))),[4,Promise.race([vt,Promise.resolve(r(f,{dispatch:h,getState:l,extra:v,requestId:d,signal:p.signal,abort:b,rejectWithValue:function(k,ie){return new st(k,ie)},fulfillWithValue:function(k,ie){return new ir(k,ie)}})).then(function(k){if(k instanceof st)throw k;return k instanceof ir?o(k.payload,d,f,k.meta):o(k,d,f)})])];case 3:return T=Y.sent(),[3,5];case 4:return oe=Y.sent(),T=oe instanceof st?a(null,d,f,oe.payload,oe.meta):a(oe,d,f),[3,5];case 5:return mt=n&&!n.dispatchConditionRejection&&a.match(T)&&T.meta.condition,mt||h(T),[2,T]}})})}();return Object.assign(x,{abort:b,requestId:d,arg:f,unwrap:function(){return x.then(cn)}})}}return Object.assign(u,{pending:i,rejected:a,fulfilled:o,typePrefix:e})}return t.withTypes=function(){return t},t}();function cn(t){if(t.meta&&t.meta.rejectedWithValue)throw t.payload;if(t.error)throw t.error;return t.payload}function fn(t){return t!==null&&typeof t=="object"&&typeof t.then=="function"}var lr="listener",dr="completed",pr="cancelled",Mo="task-"+pr,ko="task-"+dr,No=lr+"-"+pr,Do=lr+"-"+dr;var ct="listenerMiddleware";var _o=$(ct+"/add"),To=$(ct+"/removeAll"),Ro=$(ct+"/remove");var ar,Io=typeof queueMicrotask=="function"?queueMicrotask.bind(typeof window<"u"?window:typeof global<"u"?global:globalThis):function(t){return(ar||(ar=Promise.resolve())).then(t).catch(function(e){return setTimeout(function(){throw e},0)})},ln=function(t){return function(e){setTimeout(e,t)}},Lo=typeof window<"u"&&window.requestAnimationFrame?window.requestAnimationFrame:ln(10);Xt();window.ftReduxStores||(window.ftReduxStores={});var hr=class t{static get(e){var r;let n=typeof e=="string"?e:e.name,o=typeof e=="string"?void 0:e,i=window.ftReduxStores[n];if(se(i))return i;if(o==null)return;let a=fr({...o,reducers:(r=o.reducers)!==null&&r!==void 0?r:{}}),s=ur({reducer:(c,u)=>u.type==="CLEAR_FT_REDUX_STORE"?a.getInitialState():typeof u.type=="string"&&u.type.startsWith("DEFAULT_VALUE_SETTER__")?{...c,...u.overwrites}:a.reducer(c,u)});return window.ftReduxStores[o.name]=new t(a,s)}constructor(e,r){this.reduxSlice=e,this.reduxStore=r,this.isFtReduxStore=!0,this.eventBus=document.createElement("event-bus"),this.commands=new ye,this.actions=new Proxy(this.reduxSlice.actions,{get:(n,o,i)=>{let a=o,s=n[a];return s?(...c)=>{let u=s(...c);return this.reduxStore.dispatch(u),u}:c=>{this.setState({[a]:c})}}})}clear(){this.reduxStore.dispatch({type:"CLEAR_FT_REDUX_STORE"})}setState(e){this.reduxStore.dispatch({type:"DEFAULT_VALUE_SETTER__"+Object.keys(e).join("_"),overwrites:e})}get dispatch(){throw new Error("Don't use this method, actions are automatically dispatched when called.")}[Symbol.observable](){return this.reduxStore[Symbol.observable]()}getState(){return this.reduxStore.getState()}replaceReducer(e){throw new Error("Not implemented yet.")}subscribe(e){return this.reduxStore.subscribe(e)}get name(){return this.reduxSlice.name}get reducer(){return this.reduxSlice.reducer}get caseReducers(){return this.reduxSlice.caseReducers}getInitialState(){return this.reduxSlice.getInitialState()}};var Me=class{static format(e,r,n,o){return window.moment?window.moment(e).locale(r).format(this.getDateFormat(n,o)):e}static getDateFormat(e,r){return e?r?"lll":"ll":r?"L LT":"L"}};var ke=function(t,e,r,n){var o=arguments.length,i=o<3?e:n===null?n=Object.getOwnPropertyDescriptor(e,r):n,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")i=Reflect.decorate(t,e,r,n);else for(var s=t.length-1;s>=0;s--)(a=t[s])&&(i=(o<3?a(i):o>3?a(e,r,i):a(e,r))||i);return o>3&&i&&Object.defineProperty(e,r,i),i};function ei(t){class e extends t{constructor(...n){super(n),this.useLongDateFormat=!1,this.useDateTimeFormat=!1,this.metadataDescriptors=[],this.uiLocale="en-US",this.addStore(m)}dateFormatOptionsChanged(n){return n.has("metadataDescriptors")||n.has("useLongDateFormat")||n.has("useDateTimeFormat")||n.has("uiLocale")}formatDateValues(n){var o,i;return((i=(o=this.metadataDescriptors.find(s=>s.key===n?.key))===null||o===void 0?void 0:o.date)!==null&&i!==void 0?i:!1)?this.formatMetadataDates(n):n}formatMetadataDates(n){return{key:n.key,label:n.label,values:n.values.map(o=>Me.format(o,this.uiLocale,this.useLongDateFormat,this.useDateTimeFormat)),hierarchicalValues:n.hierarchicalValues}}}return ke([(0,ft.property)({type:Boolean})],e.prototype,"useLongDateFormat",void 0),ke([(0,ft.property)({type:Boolean})],e.prototype,"useDateTimeFormat",void 0),ke([Fe({store:m.name,selector:r=>{var n,o;return(o=(n=r.metadataConfiguration)===null||n===void 0?void 0:n.descriptors)!==null&&o!==void 0?o:[]}})],e.prototype,"metadataDescriptors",void 0),ke([Fe({store:m.name})],e.prototype,"uiLocale",void 0),e}var Te=E(R());var Ne=class extends F{async listMySearches(){let e=m.getState().session;return e?.sessionAuthenticated?this.cache.get("my-searches",async()=>(await this.awaitApi).listMySearches(e.profile.userId),5*60*1e3):[]}};var De=class extends F{async listMyBookmarks(){let e=m.getState().session;return e?.sessionAuthenticated?this.cache.get("my-bookmarks",async()=>(await this.awaitApi).listMyBookmarks(e.profile.userId),5*60*1e3):[]}};var dn="ft-user-assets",_e=Te.FtReduxStore.get({name:dn,initialState:{savedSearches:void 0,bookmarks:void 0}}),lt=class{constructor(){this.currentSession=m.getState().session,this.bookmarksAreUsed=!1,this.bookmarksService=new De,this.savedSearchesService=new Ne,m.subscribe(()=>this.reloadWhenUserSessionChanges())}reloadWhenUserSessionChanges(){var e;let{session:r}=m.getState();(0,Te.deepEqual)((e=this.currentSession)===null||e===void 0?void 0:e.profile,r?.profile)||(this.currentSession=r,this.clearMySearches(),this.reloadBookmarks())}clear(){this.clearMySearches(),this.clearMyBookmarks()}clearMySearches(){this.savedSearchesService.clearCache(),_e.actions.savedSearches(void 0)}clearMyBookmarks(){this.bookmarksService.clearCache(),_e.actions.bookmarks(void 0)}async reloadMySearches(){this.savedSearchesService.clearCache();let e=await this.savedSearchesService.listMySearches();_e.actions.savedSearches(e)}async reloadBookmarks(){this.bookmarksService.clearCache(),await this.updateBookmarksIfUsed()}async registerBookmarkComponent(){this.bookmarksAreUsed=!0,await this.updateBookmarksIfUsed()}async updateBookmarksIfUsed(){var e;if(this.bookmarksAreUsed){let r=!((e=this.currentSession)===null||e===void 0)&&e.sessionAuthenticated?await this.bookmarksService.listMyBookmarks():void 0;_e.actions.bookmarks(r)}}},li=new lt;var dt=class{addCommand(e,r=!1){m.commands.add(e,r)}consumeCommand(e){return m.commands.consume(e)}};window.FluidTopicsAppInfoStoreService=new dt;var vr=E(R()),pt=class{highlightHtml(e,r,n){(0,vr.highlightHtml)(e,r,n)}};window.FluidTopicsHighlightHtmlService=new pt;var mr=E(R());var ht=class{isDate(e){var r,n,o,i;return(i=(o=((n=(r=m.getState().metadataConfiguration)===null||r===void 0?void 0:r.descriptors)!==null&&n!==void 0?n:[]).find(s=>s.key===e))===null||o===void 0?void 0:o.date)!==null&&i!==void 0?i:!1}format(e,r){var n,o,i;return mr.DateFormatter.format(e,(n=r?.locale)!==null&&n!==void 0?n:m.getState().uiLocale,(o=r?.longFormat)!==null&&o!==void 0?o:!1,(i=r?.withTime)!==null&&i!==void 0?i:!1)}};window.FluidTopicsDateService=new ht;(0,yr.customElement)("ft-app-context")(O);})();
4
+ `}update(e){var r,n,o,i,a;super.update(e),e.has("baseUrl")&&(m.actions.baseUrl(this.baseUrl),window.fluidTopicsBaseUrl=this.baseUrl),e.has("apiIntegrationIdentifier")&&m.actions.apiIntegrationIdentifier(this.apiIntegrationIdentifier),e.has("uiLocale")&&m.actions.uiLocale(this.uiLocale),e.has("metadataConfiguration")&&m.actions.metadataConfiguration(this.metadataConfiguration),e.has("noCustom")&&m.actions.noCustom(this.noCustom),e.has("editorMode")&&m.actions.editorMode(this.editorMode),e.has("noCustomComponent")&&m.actions.noCustomComponent(this.noCustomComponent),e.has("session")&&m.actions.session(this.session),e.has("messageContexts")&&this.messageContexts!=null&&this.messageContexts.forEach(s=>At.addContext(s)),e.has("openExternalDocumentInNewTab")&&m.actions.openExternalDocumentInNewTab(this.openExternalDocumentInNewTab),e.has("navigatorOnline")&&m.actions.navigatorOnline(this.navigatorOnline),e.has("forcedOffline")&&m.actions.forcedOffline(this.forcedOffline),e.has("localesConfiguration")&&(m.actions.defaultLocales((r=this.localesConfiguration)===null||r===void 0?void 0:r.defaultLocales),m.actions.availableUiLocales((o=(n=this.localesConfiguration)===null||n===void 0?void 0:n.availableUiLocales)!==null&&o!==void 0?o:[]),m.actions.searchInAllLanguagesAllowed((a=(i=this.localesConfiguration)===null||i===void 0?void 0:i.allLanguagesAllowed)!==null&&a!==void 0?a:!1)),setTimeout(()=>this.updateIfNeeded())}async updateIfNeeded(){this.apiProvider()&&(this.withManualResources||(this.session==null&&this.updateSession(),this.metadataConfiguration==null&&this.updateMetadataConfiguration()),this.localesConfiguration==null&&this.updateLocalesConfiguration())}async updateSession(){this.session=await this.cache.get("session",async()=>{let e=await this.apiProvider().getCurrentSession();return e.idleTimeoutInMillis>0&&this.cleanSessionDebouncer.run(()=>{this.cache.clear("session"),this.session=void 0},e.idleTimeoutInMillis),e})}async updateMetadataConfiguration(){this.metadataConfiguration=await this.cache.get("metadataConfiguration",()=>this.apiProvider().getMetadataConfiguration())}async updateLocalesConfiguration(){this.localesConfiguration=await this.cache.get("localesConfiguration",()=>this.apiProvider().getLocalesConfiguration())}};O.elementDefinitions={};O.styles=Ot;A([(0,P.property)()],O.prototype,"baseUrl",void 0);A([(0,P.property)()],O.prototype,"apiIntegrationIdentifier",void 0);A([(0,P.property)()],O.prototype,"uiLocale",void 0);A([(0,_.jsonProperty)(null)],O.prototype,"availableUiLocales",void 0);A([(0,_.jsonProperty)(null)],O.prototype,"metadataConfiguration",void 0);A([(0,P.property)({type:Boolean})],O.prototype,"editorMode",void 0);A([(0,P.property)({type:Boolean})],O.prototype,"noCustom",void 0);A([(0,P.property)({type:Boolean})],O.prototype,"openExternalDocumentInNewTab",void 0);A([(0,P.property)({converter:{fromAttribute(t){return t==="false"?!1:t==="true"||(t??!1)}}})],O.prototype,"noCustomComponent",void 0);A([(0,P.property)({type:Boolean})],O.prototype,"withManualResources",void 0);A([(0,P.property)({type:Boolean})],O.prototype,"navigatorOnline",void 0);A([(0,P.property)({type:Boolean})],O.prototype,"forcedOffline",void 0);A([(0,P.property)({type:Object})],O.prototype,"apiProvider",void 0);A([(0,_.jsonProperty)([])],O.prototype,"messageContexts",void 0);A([(0,_.jsonProperty)(void 0)],O.prototype,"session",void 0);A([(0,P.state)()],O.prototype,"localesConfiguration",void 0);var ft=E(H());function kr(t,e){if(t===e)return!0;if(t&&e&&typeof t=="object"&&typeof e=="object"){if(t.constructor!==e.constructor)return!1;var r,n,o;if(Array.isArray(t)){if(r=t.length,r!=e.length)return!1;for(n=r;n--!==0;)if(!ve(t[n],e[n]))return!1;return!0}if(t instanceof Map&&e instanceof Map){if(t.size!==e.size)return!1;for(n of t.entries())if(!e.has(n[0]))return!1;for(n of t.entries())if(!ve(n[1],e.get(n[0])))return!1;return!0}if(t instanceof Set&&e instanceof Set){if(t.size!==e.size)return!1;for(n of t.entries())if(!e.has(n[0]))return!1;return!0}if(t.constructor===RegExp)return t.source===e.source&&t.flags===e.flags;if(t.valueOf!==Object.prototype.valueOf)return t.valueOf()===e.valueOf();if(o=Object.keys(t),r=o.length,r!==Object.keys(e).length)return!1;for(n=r;n--!==0;)if(!Object.prototype.hasOwnProperty.call(e,o[n]))return!1;for(n=r;n--!==0;){var i=o[n];if(!ve(t[i],e[i]))return!1}return!0}return t!==t&&e!==e}function ve(t,e){try{return kr(t,e)}catch{return!1}}function me(t,e){return!ve(t,e)}var Pt=E(H(),1);var Ue=t=>{let e=t??{};return(r,n)=>{var o;let i={hasChanged:me,attribute:!1,...e};(0,Pt.property)(i)(r,n);let a=r.constructor;a.reduxProperties=new Map(a.reduxProperties),a.reduxProperties.set(n,{selector:(o=e.selector)!==null&&o!==void 0?o:s=>s[n],store:e.store})}};var ye=class{constructor(){this.queue=[]}add(e,r=!1){r&&(this.queue=this.queue.filter(n=>n.type!==e.type)),this.queue.push(e)}consume(e){let r=this.queue.find(n=>n.type===e);return r&&(this.queue=this.queue.filter(n=>n!==r)),r}};var ae=E(H(),1);var jt=E(H(),1);function Mt(t,e){let r=()=>JSON.parse(JSON.stringify(t));return(0,jt.property)({type:Object,converter:{fromAttribute:n=>{if(n==null)return r();try{return JSON.parse(n)}catch{return r()}},toAttribute:n=>JSON.stringify(n)},hasChanged:me,...e??{}})}var be=class{constructor(e=0){this.timeout=e,this.callbacks=[]}run(e,r){return this.callbacks=[e],this.debounce(r)}queue(e,r){return this.callbacks.push(e),this.debounce(r)}cancel(){this.clearTimeout(),this.resolvePromise&&this.resolvePromise(!1),this.clearPromise()}debounce(e){return this.promise==null&&(this.promise=new Promise((r,n)=>{this.resolvePromise=r,this.rejectPromise=n})),this.clearTimeout(),this._debounce=window.setTimeout(()=>this.runCallbacks(),e??this.timeout),this.promise}async runCallbacks(){var e,r;let n=[...this.callbacks];this.callbacks=[];let o=(e=this.rejectPromise)!==null&&e!==void 0?e:()=>null,i=(r=this.resolvePromise)!==null&&r!==void 0?r:()=>null;this.clearPromise();for(let a of n)try{await a()}catch(s){o(s);return}i(!0)}clearTimeout(){this._debounce!=null&&window.clearTimeout(this._debounce)}clearPromise(){this.promise=void 0,this.resolvePromise=void 0,this.rejectPromise=void 0}};var _t=E(de(),1);var ge=window,_r=ge.ShadowRoot&&(ge.ShadyCSS===void 0||ge.ShadyCSS.nativeShadow)&&"adoptedStyleSheets"in Document.prototype&&"replace"in CSSStyleSheet.prototype,$n=Symbol();var kt=(t,e)=>{_r?t.adoptedStyleSheets=e.map(r=>r instanceof CSSStyleSheet?r:r.styleSheet):e.forEach(r=>{let n=document.createElement("style"),o=ge.litNonce;o!==void 0&&n.setAttribute("nonce",o),n.textContent=r.cssText,t.appendChild(n)})};var we=class extends _t.LitElement{createRenderRoot(){let e=this.constructor;e.elementDefinitions&&!e.registry&&(e.registry=new CustomElementRegistry,Object.entries(e.elementDefinitions).forEach(([o,i])=>e.registry.define(o,i)));let r={...e.shadowRootOptions,customElements:e.registry},n=this.renderOptions.creationScope=this.attachShadow(r);return kt(n,e.elementStyles),n}};var Se=function(t,e,r,n){var o=arguments.length,i=o<3?e:n===null?n=Object.getOwnPropertyDescriptor(e,r):n,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")i=Reflect.decorate(t,e,r,n);else for(var s=t.length-1;s>=0;s--)(a=t[s])&&(i=(o<3?a(i):o>3?a(e,r,i):a(e,r))||i);return o>3&&i&&Object.defineProperty(e,r,i),i},Rt,Nt=Symbol("constructorPrototype"),Dt=Symbol("constructorName"),It=Symbol("exportpartsDebouncer"),Tt=Symbol("dynamicDependenciesLoaded"),V=class extends we{constructor(){super(),this.useAdoptedStyleSheets=!0,this.adoptedCustomStyleSheet=new CSSStyleSheet,this[Rt]=new be(5),this[Dt]=this.constructor.name,this[Nt]=this.constructor.prototype}adoptedCallback(){this.constructor.name!==this[Dt]&&Object.setPrototypeOf(this,this[Nt])}connectedCallback(){super.connectedCallback();try{this.shadowRoot&&!this.shadowRoot.adoptedStyleSheets.includes(this.adoptedCustomStyleSheet)&&(this.shadowRoot.adoptedStyleSheets=[...this.shadowRoot.adoptedStyleSheets,this.adoptedCustomStyleSheet]),this.useAdoptedStyleSheets=!0}catch(r){this.useAdoptedStyleSheets=!1,console.error("Cannot use adopted stylesheets",r)}let e=this.constructor;e[Tt]||(e[Tt]=!0,this.importDynamicDependencies())}importDynamicDependencies(){}updated(e){super.updated(e),this.updateComplete.then(()=>{this.contentAvailableCallback(e),this.applyCustomStylesheet(e),this.scheduleExportpartsUpdate()})}contentAvailableCallback(e){}applyCustomStylesheet(e){var r,n,o;if(((n=(r=this.shadowRoot)===null||r===void 0?void 0:r.querySelectorAll(".ft-lit-element--custom-stylesheet"))!==null&&n!==void 0?n:[]).forEach(i=>i.remove()),this.useAdoptedStyleSheets){if(e.has("customStylesheet"))try{this.adoptedCustomStyleSheet.replaceSync((o=this.customStylesheet)!==null&&o!==void 0?o:"")}catch(i){console.error(i,this.customStylesheet),this.useAdoptedStyleSheets=!1}}else if(this.customStylesheet){let i=document.createElement("style");i.classList.add("ft-lit-element--custom-stylesheet"),i.innerHTML=this.customStylesheet,this.shadowRoot.append(i)}}scheduleExportpartsUpdate(){var e,r,n;(!((e=this.exportpartsPrefix)===null||e===void 0)&&e.trim()||(n=(r=this.exportpartsPrefixes)===null||r===void 0?void 0:r.length)!==null&&n!==void 0&&n)&&this[It].run(()=>{var o,i;!((o=this.exportpartsPrefix)===null||o===void 0)&&o.trim()?this.setExportpartsAttribute([this.exportpartsPrefix]):this.exportpartsPrefixes!=null&&((i=this.exportpartsPrefixes)===null||i===void 0?void 0:i.length)>0&&this.setExportpartsAttribute(this.exportpartsPrefixes)})}setExportpartsAttribute(e){var r,n,o,i,a,s;let c=f=>f!=null&&f.trim().length>0,u=e.filter(c).map(f=>f.trim());if(u.length===0){this.removeAttribute("exportparts");return}let l=new Set;for(let f of(n=(r=this.shadowRoot)===null||r===void 0?void 0:r.querySelectorAll("[part],[exportparts]"))!==null&&n!==void 0?n:[]){let v=(i=(o=f.getAttribute("part"))===null||o===void 0?void 0:o.split(" "))!==null&&i!==void 0?i:[],d=(s=(a=f.getAttribute("exportparts"))===null||a===void 0?void 0:a.split(",").map(p=>p.split(":")[1]))!==null&&s!==void 0?s:[];new Array(...v,...d).filter(c).map(p=>p.trim()).forEach(p=>l.add(p))}if(l.size===0){this.removeAttribute("exportparts");return}let h=[...l.values()].flatMap(f=>u.map(v=>`${f}:${v}--${f}`));this.setAttribute("exportparts",[...this.part,...h].join(", "))}};Rt=It;Se([(0,ae.property)()],V.prototype,"exportpartsPrefix",void 0);Se([Mt([])],V.prototype,"exportpartsPrefixes",void 0);Se([(0,ae.property)()],V.prototype,"customStylesheet",void 0);Se([(0,ae.state)()],V.prototype,"useAdoptedStyleSheets",void 0);function se(t){var e;return(e=t?.isFtReduxStore)!==null&&e!==void 0?e:!1}var Lt,Ft,Ut,xe=Symbol("internalReduxEventsUnsubscribers"),z=Symbol("internalStoresUnsubscribers"),X=Symbol("internalStores"),ue=class extends V{constructor(){super(...arguments),this[Lt]=new Map,this[Ft]=new Map,this[Ut]=[]}get reduxConstructor(){return this.constructor}update(e){super.update(e),[...this.reduxConstructor.reduxReactiveProperties].some(r=>e.has(r))&&this.updateFromStores()}getUnnamedStore(){if(this[X].size>1)throw new Error("Cannot resolve unnamed store when multiple stores are configured.");return[...this[X].values()][0]}getStore(e){return e==null?this.getUnnamedStore():this[X].get(e)}addStore(e,r){var n;r=(n=r??(se(e)?e.name:void 0))!==null&&n!==void 0?n:"default-store",this.unsubscribeFromStore(r),this.setupStore(r,e)}removeStore(e){let r=typeof e=="string"?e:e.name;this.unsubscribeFromStore(r),this[X].delete(r)}setupStore(e,r){this[X].set(e,r),this.subscribeToStore(e,r),this.updateFromStores()}setupStores(){this.unsubscribeFromStores(),this[X].forEach((e,r)=>this.subscribeToStore(r,e)),this.updateFromStores()}updateFromStores(){this.reduxConstructor.reduxProperties.forEach((e,r)=>{let n=this.constructor.getPropertyOptions(r);if(!n?.attribute||!this.hasAttribute(typeof n?.attribute=="string"?n.attribute:r)){let o=this.getStore(e.store);o&&(e.store?this[z].has(e.store):this[z].size>0)&&(this[r]=e.selector(o.getState(),this))}})}subscribeToStore(e,r){var n;this[z].set(e,r.subscribe(()=>this.updateFromStores())),se(r)&&r.eventBus&&((n=this.reduxConstructor.reduxEventListeners)===null||n===void 0||n.forEach((o,i)=>{if(typeof this[i]=="function"&&(!o.store||r.name===o.store)){let a=s=>this[i](s);r.addEventListener(o.eventName,a),this[xe].push(()=>r.removeEventListener(o.eventName,a))}})),this.onStoreAvailable(e)}unsubscribeFromStores(){this[z].forEach((e,r)=>this.unsubscribeFromStore(r)),this[xe].forEach(e=>e()),this[xe]=[]}unsubscribeFromStore(e){this[z].has(e)&&this[z].get(e)(),this[z].delete(e)}onStoreAvailable(e){}connectedCallback(){super.connectedCallback(),this.setupStores()}disconnectedCallback(){super.disconnectedCallback(),this.unsubscribeFromStores()}};Lt=z,Ft=X,Ut=xe;ue.reduxProperties=new Map;ue.reduxReactiveProperties=new Set;ue.reduxEventListeners=new Map;function M(t){for(var e=arguments.length,r=Array(e>1?e-1:0),n=1;n<e;n++)r[n-1]=arguments[n];if(0)var o,i;throw Error("[Immer] minified error nr: "+t+(r.length?" "+r.map(function(a){return"'"+a+"'"}).join(","):"")+". Find the full error at: https://bit.ly/3cXEKWf")}function I(t){return!!t&&!!t[S]}function N(t){var e;return!!t&&(function(r){if(!r||typeof r!="object")return!1;var n=Object.getPrototypeOf(r);if(n===null)return!0;var o=Object.hasOwnProperty.call(n,"constructor")&&n.constructor;return o===Object||typeof o=="function"&&Function.toString.call(o)===Ur}(t)||Array.isArray(t)||!!t[$t]||!!(!((e=t.constructor)===null||e===void 0)&&e[$t])||Xe(t)||Je(t))}function J(t,e,r){r===void 0&&(r=!1),ee(t)===0?(r?Object.keys:Z)(t).forEach(function(n){r&&typeof n=="symbol"||e(n,t[n],t)}):t.forEach(function(n,o){return e(o,n,t)})}function ee(t){var e=t[S];return e?e.i>3?e.i-4:e.i:Array.isArray(t)?1:Xe(t)?2:Je(t)?3:0}function Q(t,e){return ee(t)===2?t.has(e):Object.prototype.hasOwnProperty.call(t,e)}function Nr(t,e){return ee(t)===2?t.get(e):t[e]}function Gt(t,e,r){var n=ee(t);n===2?t.set(e,r):n===3?t.add(r):t[e]=r}function Xt(t,e){return t===e?t!==0||1/t==1/e:t!=t&&e!=e}function Xe(t){return Lr&&t instanceof Map}function Je(t){return Fr&&t instanceof Set}function W(t){return t.o||t.t}function Ye(t){if(Array.isArray(t))return Array.prototype.slice.call(t);var e=Ht(t);delete e[S];for(var r=Z(e),n=0;n<r.length;n++){var o=r[n],i=e[o];i.writable===!1&&(i.writable=!0,i.configurable=!0),(i.get||i.set)&&(e[o]={configurable:!0,writable:!0,enumerable:i.enumerable,value:t[o]})}return Object.create(Object.getPrototypeOf(t),e)}function He(t,e){return e===void 0&&(e=!1),Qe(t)||I(t)||!N(t)||(ee(t)>1&&(t.set=t.add=t.clear=t.delete=Dr),Object.freeze(t),e&&J(t,function(r,n){return He(n,!0)},!0)),t}function Dr(){M(2)}function Qe(t){return t==null||typeof t!="object"||Object.isFrozen(t)}function T(t){var e=Ge[t];return e||M(18,t),e}function Tr(t,e){Ge[t]||(Ge[t]=e)}function qe(){return le}function Ve(t,e){e&&(T("Patches"),t.u=[],t.s=[],t.v=e)}function Oe(t){Ke(t),t.p.forEach(Rr),t.p=null}function Ke(t){t===le&&(le=t.l)}function Vt(t){return le={p:[],l:le,h:t,m:!0,_:0}}function Rr(t){var e=t[S];e.i===0||e.i===1?e.j():e.g=!0}function ze(t,e){e._=e.p.length;var r=e.p[0],n=t!==void 0&&t!==r;return e.h.O||T("ES5").S(e,t,n),n?(r[S].P&&(Oe(e),M(4)),N(t)&&(t=Ee(e,t),e.l||Ae(e,t)),e.u&&T("Patches").M(r[S].t,t,e.u,e.s)):t=Ee(e,r,[]),Oe(e),e.u&&e.v(e.u,e.s),t!==Yt?t:void 0}function Ee(t,e,r){if(Qe(e))return e;var n=e[S];if(!n)return J(e,function(s,c){return zt(t,n,e,s,c,r)},!0),e;if(n.A!==t)return e;if(!n.P)return Ae(t,n.t,!0),n.t;if(!n.I){n.I=!0,n.A._--;var o=n.i===4||n.i===5?n.o=Ye(n.k):n.o,i=o,a=!1;n.i===3&&(i=new Set(o),o.clear(),a=!0),J(i,function(s,c){return zt(t,n,o,s,c,r,a)}),Ae(t,o,!1),r&&t.u&&T("Patches").N(n,r,t.u,t.s)}return n.o}function zt(t,e,r,n,o,i,a){if(I(o)){var s=Ee(t,o,i&&e&&e.i!==3&&!Q(e.R,n)?i.concat(n):void 0);if(Gt(r,n,s),!I(s))return;t.m=!1}else a&&r.add(o);if(N(o)&&!Qe(o)){if(!t.h.D&&t._<1)return;Ee(t,o),e&&e.A.l||Ae(t,o)}}function Ae(t,e,r){r===void 0&&(r=!1),!t.l&&t.h.D&&t.m&&He(e,r)}function We(t,e){var r=t[S];return(r?W(r):t)[e]}function Wt(t,e){if(e in t)for(var r=Object.getPrototypeOf(t);r;){var n=Object.getOwnPropertyDescriptor(r,e);if(n)return n;r=Object.getPrototypeOf(r)}}function B(t){t.P||(t.P=!0,t.l&&B(t.l))}function Be(t){t.o||(t.o=Ye(t.t))}function $e(t,e,r){var n=Xe(e)?T("MapSet").F(e,r):Je(e)?T("MapSet").T(e,r):t.O?function(o,i){var a=Array.isArray(o),s={i:a?1:0,A:i?i.A:qe(),P:!1,I:!1,R:{},l:i,t:o,k:null,o:null,j:null,C:!1},c=s,u=fe;a&&(c=[s],u=ce);var l=Proxy.revocable(c,u),h=l.revoke,f=l.proxy;return s.k=f,s.j=h,f}(e,r):T("ES5").J(e,r);return(r?r.A:qe()).p.push(n),n}function Ir(t){return I(t)||M(22,t),function e(r){if(!N(r))return r;var n,o=r[S],i=ee(r);if(o){if(!o.P&&(o.i<4||!T("ES5").K(o)))return o.t;o.I=!0,n=Bt(r,i),o.I=!1}else n=Bt(r,i);return J(n,function(a,s){o&&Nr(o.t,a)===s||Gt(n,a,e(s))}),i===3?new Set(n):n}(t)}function Bt(t,e){switch(e){case 2:return new Map(t);case 3:return Array.from(t)}return Ye(t)}function Jt(){function t(a,s){var c=i[a];return c?c.enumerable=s:i[a]=c={configurable:!0,enumerable:s,get:function(){var u=this[S];return fe.get(u,a)},set:function(u){var l=this[S];fe.set(l,a,u)}},c}function e(a){for(var s=a.length-1;s>=0;s--){var c=a[s][S];if(!c.P)switch(c.i){case 5:n(c)&&B(c);break;case 4:r(c)&&B(c)}}}function r(a){for(var s=a.t,c=a.k,u=Z(c),l=u.length-1;l>=0;l--){var h=u[l];if(h!==S){var f=s[h];if(f===void 0&&!Q(s,h))return!0;var v=c[h],d=v&&v[S];if(d?d.t!==f:!Xt(v,f))return!0}}var p=!!s[S];return u.length!==Z(s).length+(p?0:1)}function n(a){var s=a.k;if(s.length!==a.t.length)return!0;var c=Object.getOwnPropertyDescriptor(s,s.length-1);if(c&&!c.get)return!0;for(var u=0;u<s.length;u++)if(!s.hasOwnProperty(u))return!0;return!1}function o(a){a.g&&M(3,JSON.stringify(W(a)))}var i={};Tr("ES5",{J:function(a,s){var c=Array.isArray(a),u=function(h,f){if(h){for(var v=Array(f.length),d=0;d<f.length;d++)Object.defineProperty(v,""+d,t(d,!0));return v}var p=Ht(f);delete p[S];for(var g=Z(p),y=0;y<g.length;y++){var b=g[y];p[b]=t(b,h||!!p[b].enumerable)}return Object.create(Object.getPrototypeOf(f),p)}(c,a),l={i:c?5:4,A:s?s.A:qe(),P:!1,I:!1,R:{},l:s,t:a,k:u,o:null,g:!1,C:!1};return Object.defineProperty(u,S,{value:l,writable:!0}),u},S:function(a,s,c){c?I(s)&&s[S].A===a&&e(a.p):(a.u&&function u(l){if(l&&typeof l=="object"){var h=l[S];if(h){var f=h.t,v=h.k,d=h.R,p=h.i;if(p===4)J(v,function(w){w!==S&&(f[w]!==void 0||Q(f,w)?d[w]||u(v[w]):(d[w]=!0,B(h)))}),J(f,function(w){v[w]!==void 0||Q(v,w)||(d[w]=!1,B(h))});else if(p===5){if(n(h)&&(B(h),d.length=!0),v.length<f.length)for(var g=v.length;g<f.length;g++)d[g]=!1;else for(var y=f.length;y<v.length;y++)d[y]=!0;for(var b=Math.min(v.length,f.length),x=0;x<b;x++)v.hasOwnProperty(x)||(d[x]=!0),d[x]===void 0&&u(v[x])}}}}(a.p[0]),e(a.p))},K:function(a){return a.i===4?r(a):n(a)}})}var qt,le,Ze=typeof Symbol<"u"&&typeof Symbol("x")=="symbol",Lr=typeof Map<"u",Fr=typeof Set<"u",Kt=typeof Proxy<"u"&&Proxy.revocable!==void 0&&typeof Reflect<"u",Yt=Ze?Symbol.for("immer-nothing"):((qt={})["immer-nothing"]=!0,qt),$t=Ze?Symbol.for("immer-draftable"):"__$immer_draftable",S=Ze?Symbol.for("immer-state"):"__$immer_state";var Ur=""+Object.prototype.constructor,Z=typeof Reflect<"u"&&Reflect.ownKeys?Reflect.ownKeys:Object.getOwnPropertySymbols!==void 0?function(t){return Object.getOwnPropertyNames(t).concat(Object.getOwnPropertySymbols(t))}:Object.getOwnPropertyNames,Ht=Object.getOwnPropertyDescriptors||function(t){var e={};return Z(t).forEach(function(r){e[r]=Object.getOwnPropertyDescriptor(t,r)}),e},Ge={},fe={get:function(t,e){if(e===S)return t;var r=W(t);if(!Q(r,e))return function(o,i,a){var s,c=Wt(i,a);return c?"value"in c?c.value:(s=c.get)===null||s===void 0?void 0:s.call(o.k):void 0}(t,r,e);var n=r[e];return t.I||!N(n)?n:n===We(t.t,e)?(Be(t),t.o[e]=$e(t.A.h,n,t)):n},has:function(t,e){return e in W(t)},ownKeys:function(t){return Reflect.ownKeys(W(t))},set:function(t,e,r){var n=Wt(W(t),e);if(n?.set)return n.set.call(t.k,r),!0;if(!t.P){var o=We(W(t),e),i=o?.[S];if(i&&i.t===r)return t.o[e]=r,t.R[e]=!1,!0;if(Xt(r,o)&&(r!==void 0||Q(t.t,e)))return!0;Be(t),B(t)}return t.o[e]===r&&(r!==void 0||e in t.o)||Number.isNaN(r)&&Number.isNaN(t.o[e])||(t.o[e]=r,t.R[e]=!0),!0},deleteProperty:function(t,e){return We(t.t,e)!==void 0||e in t.t?(t.R[e]=!1,Be(t),B(t)):delete t.R[e],t.o&&delete t.o[e],!0},getOwnPropertyDescriptor:function(t,e){var r=W(t),n=Reflect.getOwnPropertyDescriptor(r,e);return n&&{writable:!0,configurable:t.i!==1||e!=="length",enumerable:n.enumerable,value:r[e]}},defineProperty:function(){M(11)},getPrototypeOf:function(t){return Object.getPrototypeOf(t.t)},setPrototypeOf:function(){M(12)}},ce={};J(fe,function(t,e){ce[t]=function(){return arguments[0]=arguments[0][0],e.apply(this,arguments)}}),ce.deleteProperty=function(t,e){return ce.set.call(this,t,e,void 0)},ce.set=function(t,e,r){return fe.set.call(this,t[0],e,r,t[0])};var Vr=function(){function t(r){var n=this;this.O=Kt,this.D=!0,this.produce=function(o,i,a){if(typeof o=="function"&&typeof i!="function"){var s=i;i=o;var c=n;return function(p){var g=this;p===void 0&&(p=s);for(var y=arguments.length,b=Array(y>1?y-1:0),x=1;x<y;x++)b[x-1]=arguments[x];return c.produce(p,function(w){var L;return(L=i).call.apply(L,[g,w].concat(b))})}}var u;if(typeof i!="function"&&M(6),a!==void 0&&typeof a!="function"&&M(7),N(o)){var l=Vt(n),h=$e(n,o,void 0),f=!0;try{u=i(h),f=!1}finally{f?Oe(l):Ke(l)}return typeof Promise<"u"&&u instanceof Promise?u.then(function(p){return Ve(l,a),ze(p,l)},function(p){throw Oe(l),p}):(Ve(l,a),ze(u,l))}if(!o||typeof o!="object"){if((u=i(o))===void 0&&(u=o),u===Yt&&(u=void 0),n.D&&He(u,!0),a){var v=[],d=[];T("Patches").M(o,u,v,d),a(v,d)}return u}M(21,o)},this.produceWithPatches=function(o,i){if(typeof o=="function")return function(u){for(var l=arguments.length,h=Array(l>1?l-1:0),f=1;f<l;f++)h[f-1]=arguments[f];return n.produceWithPatches(u,function(v){return o.apply(void 0,[v].concat(h))})};var a,s,c=n.produce(o,i,function(u,l){a=u,s=l});return typeof Promise<"u"&&c instanceof Promise?c.then(function(u){return[u,a,s]}):[c,a,s]},typeof r?.useProxies=="boolean"&&this.setUseProxies(r.useProxies),typeof r?.autoFreeze=="boolean"&&this.setAutoFreeze(r.autoFreeze)}var e=t.prototype;return e.createDraft=function(r){N(r)||M(8),I(r)&&(r=Ir(r));var n=Vt(this),o=$e(this,r,void 0);return o[S].C=!0,Ke(n),o},e.finishDraft=function(r,n){var o=r&&r[S],i=o.A;return Ve(i,n),ze(void 0,i)},e.setAutoFreeze=function(r){this.D=r},e.setUseProxies=function(r){r&&!Kt&&M(20),this.O=r},e.applyPatches=function(r,n){var o;for(o=n.length-1;o>=0;o--){var i=n[o];if(i.path.length===0&&i.op==="replace"){r=i.value;break}}o>-1&&(n=n.slice(o+1));var a=T("Patches").$;return I(r)?a(r,n):this.produce(r,function(s){return a(s,n)})},t}(),j=new Vr,zr=j.produce,oo=j.produceWithPatches.bind(j),io=j.setAutoFreeze.bind(j),ao=j.setUseProxies.bind(j),so=j.applyPatches.bind(j),uo=j.createDraft.bind(j),co=j.finishDraft.bind(j),Ce=zr;function q(t){"@babel/helpers - typeof";return q=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(e){return typeof e}:function(e){return e&&typeof Symbol=="function"&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},q(t)}function et(t,e){if(q(t)!=="object"||t===null)return t;var r=t[Symbol.toPrimitive];if(r!==void 0){var n=r.call(t,e||"default");if(q(n)!=="object")return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return(e==="string"?String:Number)(t)}function tt(t){var e=et(t,"string");return q(e)==="symbol"?e:String(e)}function rt(t,e,r){return e=tt(e),e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function Qt(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter(function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable})),r.push.apply(r,n)}return r}function Pe(t){for(var e=1;e<arguments.length;e++){var r=arguments[e]!=null?arguments[e]:{};e%2?Qt(Object(r),!0).forEach(function(n){rt(t,n,r[n])}):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):Qt(Object(r)).forEach(function(n){Object.defineProperty(t,n,Object.getOwnPropertyDescriptor(r,n))})}return t}function C(t){return"Minified Redux error #"+t+"; visit https://redux.js.org/Errors?code="+t+" for the full message or use the non-minified dev environment for full errors. "}var Zt=function(){return typeof Symbol=="function"&&Symbol.observable||"@@observable"}(),nt=function(){return Math.random().toString(36).substring(7).split("").join(".")},je={INIT:"@@redux/INIT"+nt(),REPLACE:"@@redux/REPLACE"+nt(),PROBE_UNKNOWN_ACTION:function(){return"@@redux/PROBE_UNKNOWN_ACTION"+nt()}};function Wr(t){if(typeof t!="object"||t===null)return!1;for(var e=t;Object.getPrototypeOf(e)!==null;)e=Object.getPrototypeOf(e);return Object.getPrototypeOf(t)===e}function ot(t,e,r){var n;if(typeof e=="function"&&typeof r=="function"||typeof r=="function"&&typeof arguments[3]=="function")throw new Error(C(0));if(typeof e=="function"&&typeof r>"u"&&(r=e,e=void 0),typeof r<"u"){if(typeof r!="function")throw new Error(C(1));return r(ot)(t,e)}if(typeof t!="function")throw new Error(C(2));var o=t,i=e,a=[],s=a,c=!1;function u(){s===a&&(s=a.slice())}function l(){if(c)throw new Error(C(3));return i}function h(p){if(typeof p!="function")throw new Error(C(4));if(c)throw new Error(C(5));var g=!0;return u(),s.push(p),function(){if(g){if(c)throw new Error(C(6));g=!1,u();var b=s.indexOf(p);s.splice(b,1),a=null}}}function f(p){if(!Wr(p))throw new Error(C(7));if(typeof p.type>"u")throw new Error(C(8));if(c)throw new Error(C(9));try{c=!0,i=o(i,p)}finally{c=!1}for(var g=a=s,y=0;y<g.length;y++){var b=g[y];b()}return p}function v(p){if(typeof p!="function")throw new Error(C(10));o=p,f({type:je.REPLACE})}function d(){var p,g=h;return p={subscribe:function(b){if(typeof b!="object"||b===null)throw new Error(C(11));function x(){b.next&&b.next(l())}x();var w=g(x);return{unsubscribe:w}}},p[Zt]=function(){return this},p}return f({type:je.INIT}),n={dispatch:f,subscribe:h,getState:l,replaceReducer:v},n[Zt]=d,n}function Br(t){Object.keys(t).forEach(function(e){var r=t[e],n=r(void 0,{type:je.INIT});if(typeof n>"u")throw new Error(C(12));if(typeof r(void 0,{type:je.PROBE_UNKNOWN_ACTION()})>"u")throw new Error(C(13))})}function er(t){for(var e=Object.keys(t),r={},n=0;n<e.length;n++){var o=e[n];typeof t[o]=="function"&&(r[o]=t[o])}var i=Object.keys(r),a,s;try{Br(r)}catch(c){s=c}return function(u,l){if(u===void 0&&(u={}),s)throw s;if(0)var h;for(var f=!1,v={},d=0;d<i.length;d++){var p=i[d],g=r[p],y=u[p],b=g(y,l);if(typeof b>"u"){var x=l&&l.type;throw new Error(C(14))}v[p]=b,f=f||b!==y}return f=f||i.length!==Object.keys(u).length,f?v:u}}function te(){for(var t=arguments.length,e=new Array(t),r=0;r<t;r++)e[r]=arguments[r];return e.length===0?function(n){return n}:e.length===1?e[0]:e.reduce(function(n,o){return function(){return n(o.apply(void 0,arguments))}})}function tr(){for(var t=arguments.length,e=new Array(t),r=0;r<t;r++)e[r]=arguments[r];return function(n){return function(){var o=n.apply(void 0,arguments),i=function(){throw new Error(C(15))},a={getState:o.getState,dispatch:function(){return i.apply(void 0,arguments)}},s=e.map(function(c){return c(a)});return i=te.apply(void 0,s)(o.dispatch),Pe(Pe({},o),{},{dispatch:i})}}}function rr(t){var e=function(n){var o=n.dispatch,i=n.getState;return function(a){return function(s){return typeof s=="function"?s(o,i,t):a(s)}}};return e}var nr=rr();nr.withExtraArgument=rr;var it=nr;var ur=function(){var t=function(e,r){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(n,o){n.__proto__=o}||function(n,o){for(var i in o)Object.prototype.hasOwnProperty.call(o,i)&&(n[i]=o[i])},t(e,r)};return function(e,r){if(typeof r!="function"&&r!==null)throw new TypeError("Class extends value "+String(r)+" is not a constructor or null");t(e,r);function n(){this.constructor=e}e.prototype=r===null?Object.create(r):(n.prototype=r.prototype,new n)}}(),qr=function(t,e){var r={label:0,sent:function(){if(i[0]&1)throw i[1];return i[1]},trys:[],ops:[]},n,o,i,a;return a={next:s(0),throw:s(1),return:s(2)},typeof Symbol=="function"&&(a[Symbol.iterator]=function(){return this}),a;function s(u){return function(l){return c([u,l])}}function c(u){if(n)throw new TypeError("Generator is already executing.");for(;r;)try{if(n=1,o&&(i=u[0]&2?o.return:u[0]?o.throw||((i=o.return)&&i.call(o),0):o.next)&&!(i=i.call(o,u[1])).done)return i;switch(o=0,i&&(u=[u[0]&2,i.value]),u[0]){case 0:case 1:i=u;break;case 4:return r.label++,{value:u[1],done:!1};case 5:r.label++,o=u[1],u=[0];continue;case 7:u=r.ops.pop(),r.trys.pop();continue;default:if(i=r.trys,!(i=i.length>0&&i[i.length-1])&&(u[0]===6||u[0]===2)){r=0;continue}if(u[0]===3&&(!i||u[1]>i[0]&&u[1]<i[3])){r.label=u[1];break}if(u[0]===6&&r.label<i[1]){r.label=i[1],i=u;break}if(i&&r.label<i[2]){r.label=i[2],r.ops.push(u);break}i[2]&&r.ops.pop(),r.trys.pop();continue}u=e.call(t,r)}catch(l){u=[6,l],o=0}finally{n=i=0}if(u[0]&5)throw u[1];return{value:u[0]?u[1]:void 0,done:!0}}},re=function(t,e){for(var r=0,n=e.length,o=t.length;r<n;r++,o++)t[o]=e[r];return t},Kr=Object.defineProperty,$r=Object.defineProperties,Gr=Object.getOwnPropertyDescriptors,or=Object.getOwnPropertySymbols,Xr=Object.prototype.hasOwnProperty,Jr=Object.prototype.propertyIsEnumerable,ir=function(t,e,r){return e in t?Kr(t,e,{enumerable:!0,configurable:!0,writable:!0,value:r}):t[e]=r},K=function(t,e){for(var r in e||(e={}))Xr.call(e,r)&&ir(t,r,e[r]);if(or)for(var n=0,o=or(e);n<o.length;n++){var r=o[n];Jr.call(e,r)&&ir(t,r,e[r])}return t},at=function(t,e){return $r(t,Gr(e))},Yr=function(t,e,r){return new Promise(function(n,o){var i=function(c){try{s(r.next(c))}catch(u){o(u)}},a=function(c){try{s(r.throw(c))}catch(u){o(u)}},s=function(c){return c.done?n(c.value):Promise.resolve(c.value).then(i,a)};s((r=r.apply(t,e)).next())})};var Hr=typeof window<"u"&&window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__?window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__:function(){if(arguments.length!==0)return typeof arguments[0]=="object"?te:te.apply(null,arguments)},jo=typeof window<"u"&&window.__REDUX_DEVTOOLS_EXTENSION__?window.__REDUX_DEVTOOLS_EXTENSION__:function(){return function(t){return t}};function Qr(t){if(typeof t!="object"||t===null)return!1;var e=Object.getPrototypeOf(t);if(e===null)return!0;for(var r=e;Object.getPrototypeOf(r)!==null;)r=Object.getPrototypeOf(r);return e===r}var Zr=function(t){ur(e,t);function e(){for(var r=[],n=0;n<arguments.length;n++)r[n]=arguments[n];var o=t.apply(this,r)||this;return Object.setPrototypeOf(o,e.prototype),o}return Object.defineProperty(e,Symbol.species,{get:function(){return e},enumerable:!1,configurable:!0}),e.prototype.concat=function(){for(var r=[],n=0;n<arguments.length;n++)r[n]=arguments[n];return t.prototype.concat.apply(this,r)},e.prototype.prepend=function(){for(var r=[],n=0;n<arguments.length;n++)r[n]=arguments[n];return r.length===1&&Array.isArray(r[0])?new(e.bind.apply(e,re([void 0],r[0].concat(this)))):new(e.bind.apply(e,re([void 0],r.concat(this))))},e}(Array),en=function(t){ur(e,t);function e(){for(var r=[],n=0;n<arguments.length;n++)r[n]=arguments[n];var o=t.apply(this,r)||this;return Object.setPrototypeOf(o,e.prototype),o}return Object.defineProperty(e,Symbol.species,{get:function(){return e},enumerable:!1,configurable:!0}),e.prototype.concat=function(){for(var r=[],n=0;n<arguments.length;n++)r[n]=arguments[n];return t.prototype.concat.apply(this,r)},e.prototype.prepend=function(){for(var r=[],n=0;n<arguments.length;n++)r[n]=arguments[n];return r.length===1&&Array.isArray(r[0])?new(e.bind.apply(e,re([void 0],r[0].concat(this)))):new(e.bind.apply(e,re([void 0],r.concat(this))))},e}(Array);function ct(t){return N(t)?Ce(t,function(){}):t}function tn(t){return typeof t=="boolean"}function rn(){return function(e){return nn(e)}}function nn(t){t===void 0&&(t={});var e=t.thunk,r=e===void 0?!0:e,n=t.immutableCheck,o=n===void 0?!0:n,i=t.serializableCheck,a=i===void 0?!0:i,s=new Zr;if(r&&(tn(r)?s.push(it):s.push(it.withExtraArgument(r.extraArgument))),0){if(o)var c;if(a)var u}return s}var st=!0;function cr(t){var e=rn(),r=t||{},n=r.reducer,o=n===void 0?void 0:n,i=r.middleware,a=i===void 0?e():i,s=r.devTools,c=s===void 0?!0:s,u=r.preloadedState,l=u===void 0?void 0:u,h=r.enhancers,f=h===void 0?void 0:h,v;if(typeof o=="function")v=o;else if(Qr(o))v=er(o);else throw new Error('"reducer" is a required argument, and must be a function or an object of functions that can be passed to combineReducers');var d=a;if(typeof d=="function"&&(d=d(e),!st&&!Array.isArray(d)))throw new Error("when using a middleware builder function, an array of middleware must be returned");if(!st&&d.some(function(w){return typeof w!="function"}))throw new Error("each middleware provided to configureStore must be a function");var p=tr.apply(void 0,d),g=te;c&&(g=Hr(K({trace:!st},typeof c=="object"&&c)));var y=new en(p),b=y;Array.isArray(f)?b=re([p],f):typeof f=="function"&&(b=f(y));var x=g.apply(void 0,b);return ot(v,l,x)}function $(t,e){function r(){for(var n=[],o=0;o<arguments.length;o++)n[o]=arguments[o];if(e){var i=e.apply(void 0,n);if(!i)throw new Error("prepareAction did not return an object");return K(K({type:t,payload:i.payload},"meta"in i&&{meta:i.meta}),"error"in i&&{error:i.error})}return{type:t,payload:n[0]}}return r.toString=function(){return""+t},r.type=t,r.match=function(n){return n.type===t},r}function lr(t){var e={},r=[],n,o={addCase:function(i,a){var s=typeof i=="string"?i:i.type;if(s in e)throw new Error("addCase cannot be called with two reducers for the same action type");return e[s]=a,o},addMatcher:function(i,a){return r.push({matcher:i,reducer:a}),o},addDefaultCase:function(i){return n=i,o}};return t(o),[e,r,n]}function on(t){return typeof t=="function"}function an(t,e,r,n){r===void 0&&(r=[]);var o=typeof e=="function"?lr(e):[e,r,n],i=o[0],a=o[1],s=o[2],c;if(on(t))c=function(){return ct(t())};else{var u=ct(t);c=function(){return u}}function l(h,f){h===void 0&&(h=c());var v=re([i[f.type]],a.filter(function(d){var p=d.matcher;return p(f)}).map(function(d){var p=d.reducer;return p}));return v.filter(function(d){return!!d}).length===0&&(v=[s]),v.reduce(function(d,p){if(p)if(I(d)){var g=d,y=p(g,f);return y===void 0?d:y}else{if(N(d))return Ce(d,function(b){return p(b,f)});var y=p(d,f);if(y===void 0){if(d===null)return d;throw Error("A case reducer on a non-draftable value must not return undefined")}return y}return d},h)}return l.getInitialState=c,l}function sn(t,e){return t+"/"+e}function fr(t){var e=t.name;if(!e)throw new Error("`name` is a required option for createSlice");typeof process<"u";var r=typeof t.initialState=="function"?t.initialState:ct(t.initialState),n=t.reducers||{},o=Object.keys(n),i={},a={},s={};o.forEach(function(l){var h=n[l],f=sn(e,l),v,d;"reducer"in h?(v=h.reducer,d=h.prepare):v=h,i[l]=v,a[f]=v,s[l]=d?$(f,d):$(f)});function c(){var l=typeof t.extraReducers=="function"?lr(t.extraReducers):[t.extraReducers],h=l[0],f=h===void 0?{}:h,v=l[1],d=v===void 0?[]:v,p=l[2],g=p===void 0?void 0:p,y=K(K({},f),a);return an(r,function(b){for(var x in y)b.addCase(x,y[x]);for(var w=0,L=d;w<L.length;w++){var R=L[w];b.addMatcher(R.matcher,R.reducer)}g&&b.addDefaultCase(g)})}var u;return{name:e,reducer:function(l,h){return u||(u=c()),u(l,h)},actions:s,caseReducers:i,getInitialState:function(){return u||(u=c()),u.getInitialState()}}}var un="ModuleSymbhasOwnPr-0123456789ABCDEFGHNRVfgctiUvz_KqYTJkLxpZXIjQW",cn=function(t){t===void 0&&(t=21);for(var e="",r=t;r--;)e+=un[Math.random()*64|0];return e},ln=["name","message","stack","code"],ut=function(){function t(e,r){this.payload=e,this.meta=r}return t}(),ar=function(){function t(e,r){this.payload=e,this.meta=r}return t}(),fn=function(t){if(typeof t=="object"&&t!==null){for(var e={},r=0,n=ln;r<n.length;r++){var o=n[r];typeof t[o]=="string"&&(e[o]=t[o])}return e}return{message:String(t)}},No=function(){function t(e,r,n){var o=$(e+"/fulfilled",function(l,h,f,v){return{payload:l,meta:at(K({},v||{}),{arg:f,requestId:h,requestStatus:"fulfilled"})}}),i=$(e+"/pending",function(l,h,f){return{payload:void 0,meta:at(K({},f||{}),{arg:h,requestId:l,requestStatus:"pending"})}}),a=$(e+"/rejected",function(l,h,f,v,d){return{payload:v,error:(n&&n.serializeError||fn)(l||"Rejected"),meta:at(K({},d||{}),{arg:f,requestId:h,rejectedWithValue:!!v,requestStatus:"rejected",aborted:l?.name==="AbortError",condition:l?.name==="ConditionError"})}}),s=!1,c=typeof AbortController<"u"?AbortController:function(){function l(){this.signal={aborted:!1,addEventListener:function(){},dispatchEvent:function(){return!1},onabort:function(){},removeEventListener:function(){},reason:void 0,throwIfAborted:function(){}}}return l.prototype.abort=function(){},l}();function u(l){return function(h,f,v){var d=n?.idGenerator?n.idGenerator(l):cn(),p=new c,g,y=!1;function b(w){g=w,p.abort()}var x=function(){return Yr(this,null,function(){var w,L,R,ne,mt,oe,yt;return qr(this,function(Y){switch(Y.label){case 0:return Y.trys.push([0,4,,5]),ne=(w=n?.condition)==null?void 0:w.call(n,l,{getState:f,extra:v}),pn(ne)?[4,ne]:[3,2];case 1:ne=Y.sent(),Y.label=2;case 2:if(ne===!1||p.signal.aborted)throw{name:"ConditionError",message:"Aborted due to condition callback returning false."};return y=!0,mt=new Promise(function(k,ie){return p.signal.addEventListener("abort",function(){return ie({name:"AbortError",message:g||"Aborted"})})}),h(i(d,l,(L=n?.getPendingMeta)==null?void 0:L.call(n,{requestId:d,arg:l},{getState:f,extra:v}))),[4,Promise.race([mt,Promise.resolve(r(l,{dispatch:h,getState:f,extra:v,requestId:d,signal:p.signal,abort:b,rejectWithValue:function(k,ie){return new ut(k,ie)},fulfillWithValue:function(k,ie){return new ar(k,ie)}})).then(function(k){if(k instanceof ut)throw k;return k instanceof ar?o(k.payload,d,l,k.meta):o(k,d,l)})])];case 3:return R=Y.sent(),[3,5];case 4:return oe=Y.sent(),R=oe instanceof ut?a(null,d,l,oe.payload,oe.meta):a(oe,d,l),[3,5];case 5:return yt=n&&!n.dispatchConditionRejection&&a.match(R)&&R.meta.condition,yt||h(R),[2,R]}})})}();return Object.assign(x,{abort:b,requestId:d,arg:l,unwrap:function(){return x.then(dn)}})}}return Object.assign(u,{pending:i,rejected:a,fulfilled:o,typePrefix:e})}return t.withTypes=function(){return t},t}();function dn(t){if(t.meta&&t.meta.rejectedWithValue)throw t.payload;if(t.error)throw t.error;return t.payload}function pn(t){return t!==null&&typeof t=="object"&&typeof t.then=="function"}var dr="listener",pr="completed",hr="cancelled",Do="task-"+hr,To="task-"+pr,Ro=dr+"-"+hr,Io=dr+"-"+pr;var lt="listenerMiddleware";var Lo=$(lt+"/add"),Fo=$(lt+"/removeAll"),Uo=$(lt+"/remove");var sr,Vo=typeof queueMicrotask=="function"?queueMicrotask.bind(typeof window<"u"?window:typeof global<"u"?global:globalThis):function(t){return(sr||(sr=Promise.resolve())).then(t).catch(function(e){return setTimeout(function(){throw e},0)})},hn=function(t){return function(e){setTimeout(e,t)}},zo=typeof window<"u"&&window.requestAnimationFrame?window.requestAnimationFrame:hn(10);Jt();function vn(t,e){return class extends t{constructor(){super(...arguments),this.eventBus=e??document.createElement("span")}addEventListener(r,n,o){this.eventBus.addEventListener(r,n,o)}dispatchEvent(r){return this.eventBus.dispatchEvent(r)}removeEventListener(r,n,o){this.eventBus.removeEventListener(r,n,o)}}}var Me=class extends vn(Object){};window.ftReduxStores||(window.ftReduxStores={});var vr=class t extends Me{static get(e){var r;let n=typeof e=="string"?e:e.name,o=typeof e=="string"?void 0:e,i=window.ftReduxStores[n];if(se(i))return i;if(o==null)return;let a=fr({...o,reducers:(r=o.reducers)!==null&&r!==void 0?r:{}}),s=cr({reducer:(c,u)=>u.type==="CLEAR_FT_REDUX_STORE"?a.getInitialState():typeof u.type=="string"&&u.type.startsWith("DEFAULT_VALUE_SETTER__")?{...c,...u.overwrites}:a.reducer(c,u)});return window.ftReduxStores[o.name]=new t(a,s)}constructor(e,r){super(),this.reduxSlice=e,this.reduxStore=r,this.isFtReduxStore=!0,this.commands=new ye,this.actions=new Proxy(this.reduxSlice.actions,{get:(n,o,i)=>{let a=o,s=n[a];return s?(...c)=>{let u=s(...c);return this.reduxStore.dispatch(u),u}:c=>{this.setState({[a]:c})}}})}clear(){this.reduxStore.dispatch({type:"CLEAR_FT_REDUX_STORE"})}setState(e){this.reduxStore.dispatch({type:"DEFAULT_VALUE_SETTER__"+Object.keys(e).join("_"),overwrites:e})}get dispatch(){throw new Error("Don't use this method, actions are automatically dispatched when called.")}[Symbol.observable](){return this.reduxStore[Symbol.observable]()}getState(){return this.reduxStore.getState()}replaceReducer(e){throw new Error("Not implemented yet.")}subscribe(e){return this.reduxStore.subscribe(e)}get name(){return this.reduxSlice.name}get reducer(){return this.reduxSlice.reducer}get caseReducers(){return this.reduxSlice.caseReducers}getInitialState(){return this.reduxSlice.getInitialState()}};var ke=class{static format(e,r,n,o){return window.moment?window.moment(e).locale(r).format(this.getDateFormat(n,o)):e}static getDateFormat(e,r){return e?r?"lll":"ll":r?"L LT":"L"}};var _e=function(t,e,r,n){var o=arguments.length,i=o<3?e:n===null?n=Object.getOwnPropertyDescriptor(e,r):n,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")i=Reflect.decorate(t,e,r,n);else for(var s=t.length-1;s>=0;s--)(a=t[s])&&(i=(o<3?a(i):o>3?a(e,r,i):a(e,r))||i);return o>3&&i&&Object.defineProperty(e,r,i),i};function si(t){class e extends t{constructor(...n){super(n),this.useLongDateFormat=!1,this.useDateTimeFormat=!1,this.metadataDescriptors=[],this.uiLocale="en-US",this.addStore(m)}dateFormatOptionsChanged(n){return n.has("metadataDescriptors")||n.has("useLongDateFormat")||n.has("useDateTimeFormat")||n.has("uiLocale")}formatDateValues(n){var o,i;return((i=(o=this.metadataDescriptors.find(s=>s.key===n?.key))===null||o===void 0?void 0:o.date)!==null&&i!==void 0?i:!1)?this.formatMetadataDates(n):n}formatMetadataDates(n){return{key:n.key,label:n.label,values:n.values.map(o=>ke.format(o,this.uiLocale,this.useLongDateFormat,this.useDateTimeFormat)),hierarchicalValues:n.hierarchicalValues}}}return _e([(0,ft.property)({type:Boolean})],e.prototype,"useLongDateFormat",void 0),_e([(0,ft.property)({type:Boolean})],e.prototype,"useDateTimeFormat",void 0),_e([Ue({store:m.name,selector:r=>{var n,o;return(o=(n=r.metadataConfiguration)===null||n===void 0?void 0:n.descriptors)!==null&&o!==void 0?o:[]}})],e.prototype,"metadataDescriptors",void 0),_e([Ue({store:m.name})],e.prototype,"uiLocale",void 0),e}var Re=E(D());var Ne=class extends F{async listMySearches(){let e=m.getState().session;return e?.sessionAuthenticated?this.cache.get("my-searches",async()=>(await this.awaitApi).listMySearches(e.profile.userId),5*60*1e3):[]}};var De=class extends F{async listMyBookmarks(){let e=m.getState().session;return e?.sessionAuthenticated?this.cache.get("my-bookmarks",async()=>(await this.awaitApi).listMyBookmarks(e.profile.userId),5*60*1e3):[]}};var mn="ft-user-assets",Te=Re.FtReduxStore.get({name:mn,initialState:{savedSearches:void 0,bookmarks:void 0}}),dt=class{constructor(){this.currentSession=m.getState().session,this.bookmarksAreUsed=!1,this.bookmarksService=new De,this.savedSearchesService=new Ne,m.subscribe(()=>this.reloadWhenUserSessionChanges())}reloadWhenUserSessionChanges(){var e;let{session:r}=m.getState();(0,Re.deepEqual)((e=this.currentSession)===null||e===void 0?void 0:e.profile,r?.profile)||(this.currentSession=r,this.clearMySearches(),this.reloadBookmarks())}clear(){this.clearMySearches(),this.clearMyBookmarks()}clearMySearches(){this.savedSearchesService.clearCache(),Te.actions.savedSearches(void 0)}clearMyBookmarks(){this.bookmarksService.clearCache(),Te.actions.bookmarks(void 0)}async reloadMySearches(){this.savedSearchesService.clearCache();let e=await this.savedSearchesService.listMySearches();Te.actions.savedSearches(e)}async reloadBookmarks(){this.bookmarksService.clearCache(),await this.updateBookmarksIfUsed()}async registerBookmarkComponent(){this.bookmarksAreUsed=!0,await this.updateBookmarksIfUsed()}async updateBookmarksIfUsed(){var e;if(this.bookmarksAreUsed){let r=!((e=this.currentSession)===null||e===void 0)&&e.sessionAuthenticated?await this.bookmarksService.listMyBookmarks():void 0;Te.actions.bookmarks(r)}}},bi=new dt;var pt=class{addCommand(e,r=!1){m.commands.add(e,r)}consumeCommand(e){return m.commands.consume(e)}};window.FluidTopicsAppInfoStoreService=new pt;var mr=E(D()),ht=class{highlightHtml(e,r,n){(0,mr.highlightHtml)(e,r,n)}};window.FluidTopicsHighlightHtmlService=new ht;var yr=E(D());var vt=class{isDate(e){var r,n,o,i;return(i=(o=((n=(r=m.getState().metadataConfiguration)===null||r===void 0?void 0:r.descriptors)!==null&&n!==void 0?n:[]).find(s=>s.key===e))===null||o===void 0?void 0:o.date)!==null&&i!==void 0?i:!1}format(e,r){var n,o,i;return yr.DateFormatter.format(e,(n=r?.locale)!==null&&n!==void 0?n:m.getState().uiLocale,(o=r?.longFormat)!==null&&o!==void 0?o:!1,(i=r?.withTime)!==null&&i!==void 0?i:!1)}};window.FluidTopicsDateService=new vt;var gr=E(D());var br=class{static get(e,r){var n,o,i,a;let s=m.getState(),{lang:c,region:u}=(o=(n=s.defaultLocales)===null||n===void 0?void 0:n.defaultContentLocale)!==null&&o!==void 0?o:{lang:"en",region:"US"};return new gr.SearchPlaceConverter(s.baseUrl,(a=(i=window.FluidTopicsClientConfiguration)===null||i===void 0?void 0:i.predefinedSorts)!==null&&a!==void 0?a:{},e??20,s.searchInAllLanguagesAllowed,r??`${c}-${u}`)}};(0,wr.customElement)("ft-app-context")(O);})();
5
5
  /*! Bundled license information:
6
6
 
7
7
  @lit/reactive-element/css-tag.js: