@fluid-topics/ft-i18n 1.1.116 → 1.1.117
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.
|
@@ -8,3 +8,4 @@ export type I18nAttributeValue = {
|
|
|
8
8
|
message?: string;
|
|
9
9
|
};
|
|
10
10
|
export declare const i18nAttribute: <E extends FtLitElement = FtLitElement>(init?: I18nAttributeInit<E> | undefined, options?: PropertyDeclaration) => (proto: FtLitElementWithI18nInterface & FtLitElement, name: string) => void;
|
|
11
|
+
export declare const i18nListAttribute: <E extends FtLitElement = FtLitElement>(init?: I18nAttributeInit<E> | undefined, options?: PropertyDeclaration) => (proto: FtLitElementWithI18nInterface & FtLitElement, name: string) => void;
|
|
@@ -1,5 +1,14 @@
|
|
|
1
|
-
import { i18nAttributes } from "../lit/i18n";
|
|
1
|
+
import { i18nAttributes, i18nListAttributes } from "../lit/i18n";
|
|
2
2
|
import { hasChanged } from "@fluid-topics/ft-wc-utils";
|
|
3
|
+
const processMessage = (value) => {
|
|
4
|
+
if (value === null || value === void 0 ? void 0 : value.match(/^[\w-]+\.[\w-]+$/)) {
|
|
5
|
+
const [context, key] = value.split(".");
|
|
6
|
+
return { context, key };
|
|
7
|
+
}
|
|
8
|
+
else {
|
|
9
|
+
return { message: value !== null && value !== void 0 ? value : "" };
|
|
10
|
+
}
|
|
11
|
+
};
|
|
3
12
|
export const i18nAttribute = (init, options) => {
|
|
4
13
|
return (proto, name) => {
|
|
5
14
|
var _a;
|
|
@@ -7,13 +16,7 @@ export const i18nAttribute = (init, options) => {
|
|
|
7
16
|
type: Object,
|
|
8
17
|
hasChanged,
|
|
9
18
|
converter: (value) => {
|
|
10
|
-
|
|
11
|
-
const [context, key] = value.split(".");
|
|
12
|
-
return { context, key };
|
|
13
|
-
}
|
|
14
|
-
else {
|
|
15
|
-
return { message: value !== null && value !== void 0 ? value : "" };
|
|
16
|
-
}
|
|
19
|
+
return processMessage(value !== null && value !== void 0 ? value : "");
|
|
17
20
|
},
|
|
18
21
|
...options
|
|
19
22
|
});
|
|
@@ -21,3 +24,26 @@ export const i18nAttribute = (init, options) => {
|
|
|
21
24
|
proto[i18nAttributes].set(name, (init !== null && init !== void 0 ? init : {}));
|
|
22
25
|
};
|
|
23
26
|
};
|
|
27
|
+
export const i18nListAttribute = (init, options) => {
|
|
28
|
+
return (proto, name) => {
|
|
29
|
+
var _a;
|
|
30
|
+
proto.constructor.createProperty(name, {
|
|
31
|
+
type: Object,
|
|
32
|
+
hasChanged,
|
|
33
|
+
converter: (value) => {
|
|
34
|
+
if (!value)
|
|
35
|
+
return [];
|
|
36
|
+
try {
|
|
37
|
+
const parsed = JSON.parse(value);
|
|
38
|
+
return Array.isArray(parsed) ? parsed.map(processMessage) : [];
|
|
39
|
+
}
|
|
40
|
+
catch {
|
|
41
|
+
return [];
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
...options
|
|
45
|
+
});
|
|
46
|
+
proto[i18nListAttributes] = (_a = proto[i18nListAttributes]) !== null && _a !== void 0 ? _a : new Map();
|
|
47
|
+
proto[i18nListAttributes].set(name, ({ ...(init !== null && init !== void 0 ? init : {}) }));
|
|
48
|
+
};
|
|
49
|
+
};
|
package/build/ft-i18n.light.js
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
"use strict";(()=>{var
|
|
2
|
-
`;var Ue=E(M());var
|
|
3
|
-
`;var be=E(M()),
|
|
1
|
+
"use strict";(()=>{var Ir=Object.create;var At=Object.defineProperty;var Nr=Object.getOwnPropertyDescriptor;var Dr=Object.getOwnPropertyNames;var Rr=Object.getPrototypeOf,Tr=Object.prototype.hasOwnProperty;var We=(t,e)=>()=>(e||t((e={exports:{}}).exports,e),e.exports);var Lr=(t,e,r,n)=>{if(e&&typeof e=="object"||typeof e=="function")for(let o of Dr(e))!Tr.call(t,o)&&o!==r&&At(t,o,{get:()=>e[o],enumerable:!(n=Nr(e,o))||n.enumerable});return t};var E=(t,e,r)=>(r=t!=null?Ir(Rr(t)):{},Lr(e||!t||!t.__esModule?At(r,"default",{value:t,enumerable:!0}):r,t));var M=We((_n,Ct)=>{Ct.exports=ftGlobals.wcUtils});var te=We((In,Pt)=>{Pt.exports=ftGlobals.lit});var F=We((Nn,Mt)=>{Mt.exports=ftGlobals.litDecorators});var _r=E(M());var Fe=E(te()),Ve=E(F()),ze=E(M());var kt=E(te()),Dn={},jt=kt.css`
|
|
2
|
+
`;var Ue=E(M());var Cr=E(M());var Rt=E(te()),k=E(F()),I=E(M());var _t=E(te());var It=_t.css`
|
|
3
|
+
`;var be=E(M()),Ur="ft-app-info",Be=class extends CustomEvent{constructor(e){super("authentication-change",{detail:e})}},Fr={session:(t,e)=>{(0,be.deepEqual)(t.session,e.payload)||(t.session=e.payload,setTimeout(()=>m.eventBus.dispatchEvent(new Be(e.payload)),0))}},m=be.FtReduxStore.get({name:Ur,reducers:Fr,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 z=E(M());var qe=E(M());var J=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 V=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 qe.CacheRegistry,this.cache=e?o.commonCache:new qe.CacheRegistry}get api(){var e;return(e=this.overrideApi)!==null&&e!==void 0?e:J.get()}get awaitApi(){return this.overrideApi?Promise.resolve(this.overrideApi):J.await()}clearCache(){this.cache.clearAll()}};var Nt,Vr=Symbol("clearAfterUnitTest"),ge=class extends V{constructor(e){super(),this.messageContextProvider=e,this.defaultMessages={},this.listeners={},this.currentUiLocale="",this[Nt]=()=>{this.defaultMessages={},this.cache=new z.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,z.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 z.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,z.delay)(0).then(()=>r()).catch(()=>null)))}};Nt=Vr;window.FluidTopicsI18nService==null&&(window.FluidTopicsI18nService=new class extends ge{constructor(){super(async(t,e)=>(await this.awaitApi).getFluidTopicsMessageContext(t,e))}});window.FluidTopicsCustomI18nService==null&&(window.FluidTopicsCustomI18nService=new class extends ge{constructor(){super(async(t,e)=>(await this.awaitApi).getCustomMessageContext(t,e))}});var Y=window.FluidTopicsI18nService,Dt=window.FluidTopicsCustomI18nService;var C=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 I.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=()=>J.get(),this.messageContexts=[],this.cache=new I.CacheRegistry,this.cleanSessionDebouncer=new I.Debouncer}render(){return Rt.html`
|
|
4
4
|
<slot></slot>
|
|
5
|
-
`}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=>Y.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=_t;C([(0,k.property)()],O.prototype,"baseUrl",void 0);C([(0,k.property)()],O.prototype,"apiIntegrationIdentifier",void 0);C([(0,k.property)()],O.prototype,"uiLocale",void 0);C([(0,D.jsonProperty)(null)],O.prototype,"availableUiLocales",void 0);C([(0,D.jsonProperty)(null)],O.prototype,"metadataConfiguration",void 0);C([(0,k.property)({type:Boolean})],O.prototype,"editorMode",void 0);C([(0,k.property)({type:Boolean})],O.prototype,"noCustom",void 0);C([(0,k.property)({type:Boolean})],O.prototype,"openExternalDocumentInNewTab",void 0);C([(0,k.property)({converter:{fromAttribute(t){return t==="false"?!1:t==="true"||(t??!1)}}})],O.prototype,"noCustomComponent",void 0);C([(0,k.property)({type:Boolean})],O.prototype,"withManualResources",void 0);C([(0,k.property)({type:Boolean})],O.prototype,"navigatorOnline",void 0);C([(0,k.property)({type:Boolean})],O.prototype,"forcedOffline",void 0);C([(0,k.property)({type:Object})],O.prototype,"apiProvider",void 0);C([(0,D.jsonProperty)([])],O.prototype,"messageContexts",void 0);C([(0,D.jsonProperty)(void 0)],O.prototype,"session",void 0);var Cn=E(F());function Vr(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(!we(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(!we(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(!we(t[i],e[i]))return!1}return!0}return t!==t&&e!==e}function we(t,e){try{return Vr(t,e)}catch{return!1}}function Ke(t,e){return!we(t,e)}var zr=E(F(),1);var Se=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 le=E(F(),1);var Rt=E(F(),1);function Tt(t,e){let r=()=>JSON.parse(JSON.stringify(t));return(0,Rt.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:Ke,...e??{}})}var xe=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 Ut=E(te(),1);var Ee=window,Wr=Ee.ShadowRoot&&(Ee.ShadyCSS===void 0||Ee.ShadyCSS.nativeShadow)&&"adoptedStyleSheets"in Document.prototype&&"replace"in CSSStyleSheet.prototype,oo=Symbol();var Lt=(t,e)=>{Wr?t.adoptedStyleSheets=e.map(r=>r instanceof CSSStyleSheet?r:r.styleSheet):e.forEach(r=>{let n=document.createElement("style"),o=Ee.litNonce;o!==void 0&&n.setAttribute("nonce",o),n.textContent=r.cssText,t.appendChild(n)})};var Oe=class extends Ut.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 Lt(n,e.elementStyles),n}};var Ae=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},Wt,Ft=Symbol("constructorPrototype"),Vt=Symbol("constructorName"),Bt=Symbol("exportpartsDebouncer"),zt=Symbol("dynamicDependenciesLoaded"),W=class extends Oe{constructor(){super(),this.useAdoptedStyleSheets=!0,this.adoptedCustomStyleSheet=new CSSStyleSheet,this[Wt]=new xe(5),this[Vt]=this.constructor.name,this[Ft]=this.constructor.prototype}adoptedCallback(){this.constructor.name!==this[Vt]&&Object.setPrototypeOf(this,this[Ft])}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[zt]||(e[zt]=!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[Bt].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(", "))}};Wt=Bt;Ae([(0,le.property)()],W.prototype,"exportpartsPrefix",void 0);Ae([Tt([])],W.prototype,"exportpartsPrefixes",void 0);Ae([(0,le.property)()],W.prototype,"customStylesheet",void 0);Ae([(0,le.state)()],W.prototype,"useAdoptedStyleSheets",void 0);function fe(t){var e;return(e=t?.isFtReduxStore)!==null&&e!==void 0?e:!1}var qt,Kt,$t,Ce=Symbol("internalReduxEventsUnsubscribers"),B=Symbol("internalStoresUnsubscribers"),H=Symbol("internalStores"),de=class extends W{constructor(){super(...arguments),this[qt]=new Map,this[Kt]=new Map,this[$t]=[]}get reduxConstructor(){return this.constructor}update(e){super.update(e),[...this.reduxConstructor.reduxReactiveProperties].some(r=>e.has(r))&&this.updateFromStores()}getUnnamedStore(){if(this[H].size>1)throw new Error("Cannot resolve unnamed store when multiple stores are configured.");return[...this[H].values()][0]}getStore(e){return e==null?this.getUnnamedStore():this[H].get(e)}addStore(e,r){var n;r=(n=r??(fe(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[H].delete(r)}setupStore(e,r){this[H].set(e,r),this.subscribeToStore(e,r),this.updateFromStores()}setupStores(){this.unsubscribeFromStores(),this[H].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[B].has(e.store):this[B].size>0)&&(this[r]=e.selector(o.getState(),this))}})}subscribeToStore(e,r){var n;this[B].set(e,r.subscribe(()=>this.updateFromStores())),fe(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[Ce].push(()=>r.eventBus.removeEventListener(o.eventName,a))}})),this.onStoreAvailable(e)}unsubscribeFromStores(){this[B].forEach((e,r)=>this.unsubscribeFromStore(r)),this[Ce].forEach(e=>e()),this[Ce]=[]}unsubscribeFromStore(e){this[B].has(e)&&this[B].get(e)(),this[B].delete(e)}onStoreAvailable(e){}connectedCallback(){super.connectedCallback(),this.setupStores()}disconnectedCallback(){super.disconnectedCallback(),this.unsubscribeFromStores()}};qt=B,Kt=H,$t=Ce;de.reduxProperties=new Map;de.reduxReactiveProperties=new Set;de.reduxEventListeners=new Map;function j(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 L(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)===Yr}(t)||Array.isArray(t)||!!t[Zt]||!!(!((e=t.constructor)===null||e===void 0)&&e[Zt])||et(t)||tt(t))}function Q(t,e,r){r===void 0&&(r=!1),oe(t)===0?(r?Object.keys:ne)(t).forEach(function(n){r&&typeof n=="symbol"||e(n,t[n],t)}):t.forEach(function(n,o){return e(o,n,t)})}function oe(t){var e=t[S];return e?e.i>3?e.i-4:e.i:Array.isArray(t)?1:et(t)?2:tt(t)?3:0}function re(t,e){return oe(t)===2?t.has(e):Object.prototype.hasOwnProperty.call(t,e)}function Br(t,e){return oe(t)===2?t.get(e):t[e]}function er(t,e,r){var n=oe(t);n===2?t.set(e,r):n===3?t.add(r):t[e]=r}function tr(t,e){return t===e?t!==0||1/t==1/e:t!=t&&e!=e}function et(t){return Xr&&t instanceof Map}function tt(t){return Jr&&t instanceof Set}function q(t){return t.o||t.t}function rt(t){if(Array.isArray(t))return Array.prototype.slice.call(t);var e=or(t);delete e[S];for(var r=ne(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 nt(t,e){return e===void 0&&(e=!1),ot(t)||L(t)||!N(t)||(oe(t)>1&&(t.set=t.add=t.clear=t.delete=qr),Object.freeze(t),e&&Q(t,function(r,n){return nt(n,!0)},!0)),t}function qr(){j(2)}function ot(t){return t==null||typeof t!="object"||Object.isFrozen(t)}function R(t){var e=Ze[t];return e||j(18,t),e}function Kr(t,e){Ze[t]||(Ze[t]=e)}function Ye(){return he}function $e(t,e){e&&(R("Patches"),t.u=[],t.s=[],t.v=e)}function Pe(t){He(t),t.p.forEach($r),t.p=null}function He(t){t===he&&(he=t.l)}function Gt(t){return he={p:[],l:he,h:t,m:!0,_:0}}function $r(t){var e=t[S];e.i===0||e.i===1?e.j():e.g=!0}function Ge(t,e){e._=e.p.length;var r=e.p[0],n=t!==void 0&&t!==r;return e.h.O||R("ES5").S(e,t,n),n?(r[S].P&&(Pe(e),j(4)),N(t)&&(t=Me(e,t),e.l||ke(e,t)),e.u&&R("Patches").M(r[S].t,t,e.u,e.s)):t=Me(e,r,[]),Pe(e),e.u&&e.v(e.u,e.s),t!==nr?t:void 0}function Me(t,e,r){if(ot(e))return e;var n=e[S];if(!n)return Q(e,function(s,c){return Xt(t,n,e,s,c,r)},!0),e;if(n.A!==t)return e;if(!n.P)return ke(t,n.t,!0),n.t;if(!n.I){n.I=!0,n.A._--;var o=n.i===4||n.i===5?n.o=rt(n.k):n.o,i=o,a=!1;n.i===3&&(i=new Set(o),o.clear(),a=!0),Q(i,function(s,c){return Xt(t,n,o,s,c,r,a)}),ke(t,o,!1),r&&t.u&&R("Patches").N(n,r,t.u,t.s)}return n.o}function Xt(t,e,r,n,o,i,a){if(L(o)){var s=Me(t,o,i&&e&&e.i!==3&&!re(e.R,n)?i.concat(n):void 0);if(er(r,n,s),!L(s))return;t.m=!1}else a&&r.add(o);if(N(o)&&!ot(o)){if(!t.h.D&&t._<1)return;Me(t,o),e&&e.A.l||ke(t,o)}}function ke(t,e,r){r===void 0&&(r=!1),!t.l&&t.h.D&&t.m&&nt(e,r)}function Xe(t,e){var r=t[S];return(r?q(r):t)[e]}function Jt(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 K(t){t.P||(t.P=!0,t.l&&K(t.l))}function Je(t){t.o||(t.o=rt(t.t))}function Qe(t,e,r){var n=et(e)?R("MapSet").F(e,r):tt(e)?R("MapSet").T(e,r):t.O?function(o,i){var a=Array.isArray(o),s={i:a?1:0,A:i?i.A:Ye(),P:!1,I:!1,R:{},l:i,t:o,k:null,o:null,j:null,C:!1},c=s,u=ve;a&&(c=[s],u=pe);var l=Proxy.revocable(c,u),h=l.revoke,f=l.proxy;return s.k=f,s.j=h,f}(e,r):R("ES5").J(e,r);return(r?r.A:Ye()).p.push(n),n}function Gr(t){return L(t)||j(22,t),function e(r){if(!N(r))return r;var n,o=r[S],i=oe(r);if(o){if(!o.P&&(o.i<4||!R("ES5").K(o)))return o.t;o.I=!0,n=Yt(r,i),o.I=!1}else n=Yt(r,i);return Q(n,function(a,s){o&&Br(o.t,a)===s||er(n,a,e(s))}),i===3?new Set(n):n}(t)}function Yt(t,e){switch(e){case 2:return new Map(t);case 3:return Array.from(t)}return rt(t)}function rr(){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 ve.get(u,a)},set:function(u){var l=this[S];ve.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)&&K(c);break;case 4:r(c)&&K(c)}}}function r(a){for(var s=a.t,c=a.k,u=ne(c),l=u.length-1;l>=0;l--){var h=u[l];if(h!==S){var f=s[h];if(f===void 0&&!re(s,h))return!0;var v=c[h],d=v&&v[S];if(d?d.t!==f:!tr(v,f))return!0}}var p=!!s[S];return u.length!==ne(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&&j(3,JSON.stringify(q(a)))}var i={};Kr("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=or(f);delete p[S];for(var g=ne(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:Ye(),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?L(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)Q(v,function(w){w!==S&&(f[w]!==void 0||re(f,w)?d[w]||u(v[w]):(d[w]=!0,K(h)))}),Q(f,function(w){v[w]!==void 0||re(v,w)||(d[w]=!1,K(h))});else if(p===5){if(n(h)&&(K(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 Ht,he,it=typeof Symbol<"u"&&typeof Symbol("x")=="symbol",Xr=typeof Map<"u",Jr=typeof Set<"u",Qt=typeof Proxy<"u"&&Proxy.revocable!==void 0&&typeof Reflect<"u",nr=it?Symbol.for("immer-nothing"):((Ht={})["immer-nothing"]=!0,Ht),Zt=it?Symbol.for("immer-draftable"):"__$immer_draftable",S=it?Symbol.for("immer-state"):"__$immer_state";var Yr=""+Object.prototype.constructor,ne=typeof Reflect<"u"&&Reflect.ownKeys?Reflect.ownKeys:Object.getOwnPropertySymbols!==void 0?function(t){return Object.getOwnPropertyNames(t).concat(Object.getOwnPropertySymbols(t))}:Object.getOwnPropertyNames,or=Object.getOwnPropertyDescriptors||function(t){var e={};return ne(t).forEach(function(r){e[r]=Object.getOwnPropertyDescriptor(t,r)}),e},Ze={},ve={get:function(t,e){if(e===S)return t;var r=q(t);if(!re(r,e))return function(o,i,a){var s,c=Jt(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===Xe(t.t,e)?(Je(t),t.o[e]=Qe(t.A.h,n,t)):n},has:function(t,e){return e in q(t)},ownKeys:function(t){return Reflect.ownKeys(q(t))},set:function(t,e,r){var n=Jt(q(t),e);if(n?.set)return n.set.call(t.k,r),!0;if(!t.P){var o=Xe(q(t),e),i=o?.[S];if(i&&i.t===r)return t.o[e]=r,t.R[e]=!1,!0;if(tr(r,o)&&(r!==void 0||re(t.t,e)))return!0;Je(t),K(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 Xe(t.t,e)!==void 0||e in t.t?(t.R[e]=!1,Je(t),K(t)):delete t.R[e],t.o&&delete t.o[e],!0},getOwnPropertyDescriptor:function(t,e){var r=q(t),n=Reflect.getOwnPropertyDescriptor(r,e);return n&&{writable:!0,configurable:t.i!==1||e!=="length",enumerable:n.enumerable,value:r[e]}},defineProperty:function(){j(11)},getPrototypeOf:function(t){return Object.getPrototypeOf(t.t)},setPrototypeOf:function(){j(12)}},pe={};Q(ve,function(t,e){pe[t]=function(){return arguments[0]=arguments[0][0],e.apply(this,arguments)}}),pe.deleteProperty=function(t,e){return pe.set.call(this,t,e,void 0)},pe.set=function(t,e,r){return ve.set.call(this,t[0],e,r,t[0])};var Hr=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 U;return(U=i).call.apply(U,[g,w].concat(b))})}}var u;if(typeof i!="function"&&j(6),a!==void 0&&typeof a!="function"&&j(7),N(o)){var l=Gt(n),h=Qe(n,o,void 0),f=!0;try{u=i(h),f=!1}finally{f?Pe(l):He(l)}return typeof Promise<"u"&&u instanceof Promise?u.then(function(p){return $e(l,a),Ge(p,l)},function(p){throw Pe(l),p}):($e(l,a),Ge(u,l))}if(!o||typeof o!="object"){if((u=i(o))===void 0&&(u=o),u===nr&&(u=void 0),n.D&&nt(u,!0),a){var v=[],d=[];R("Patches").M(o,u,v,d),a(v,d)}return u}j(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)||j(8),L(r)&&(r=Gr(r));var n=Gt(this),o=Qe(this,r,void 0);return o[S].C=!0,He(n),o},e.finishDraft=function(r,n){var o=r&&r[S],i=o.A;return $e(i,n),Ge(void 0,i)},e.setAutoFreeze=function(r){this.D=r},e.setUseProxies=function(r){r&&!Qt&&j(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=R("Patches").$;return L(r)?a(r,n):this.produce(r,function(s){return a(s,n)})},t}(),P=new Hr,Qr=P.produce,yo=P.produceWithPatches.bind(P),bo=P.setAutoFreeze.bind(P),go=P.setUseProxies.bind(P),wo=P.applyPatches.bind(P),So=P.createDraft.bind(P),xo=P.finishDraft.bind(P),je=Qr;function $(t){"@babel/helpers - typeof";return $=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},$(t)}function at(t,e){if($(t)!=="object"||t===null)return t;var r=t[Symbol.toPrimitive];if(r!==void 0){var n=r.call(t,e||"default");if($(n)!=="object")return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return(e==="string"?String:Number)(t)}function st(t){var e=at(t,"string");return $(e)==="symbol"?e:String(e)}function ut(t,e,r){return e=st(e),e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function ir(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 _e(t){for(var e=1;e<arguments.length;e++){var r=arguments[e]!=null?arguments[e]:{};e%2?ir(Object(r),!0).forEach(function(n){ut(t,n,r[n])}):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):ir(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 ar=function(){return typeof Symbol=="function"&&Symbol.observable||"@@observable"}(),ct=function(){return Math.random().toString(36).substring(7).split("").join(".")},De={INIT:"@@redux/INIT"+ct(),REPLACE:"@@redux/REPLACE"+ct(),PROBE_UNKNOWN_ACTION:function(){return"@@redux/PROBE_UNKNOWN_ACTION"+ct()}};function Zr(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 lt(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(lt)(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 l(){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 f(p){if(!Zr(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,f({type:De.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(l())}x();var w=g(x);return{unsubscribe:w}}},p[ar]=function(){return this},p}return f({type:De.INIT}),n={dispatch:f,subscribe:h,getState:l,replaceReducer:v},n[ar]=d,n}function en(t){Object.keys(t).forEach(function(e){var r=t[e],n=r(void 0,{type:De.INIT});if(typeof n>"u")throw new Error(A(12));if(typeof r(void 0,{type:De.PROBE_UNKNOWN_ACTION()})>"u")throw new Error(A(13))})}function sr(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{en(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(A(14))}v[p]=b,f=f||b!==y}return f=f||i.length!==Object.keys(u).length,f?v:u}}function ie(){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 ur(){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=ie.apply(void 0,s)(o.dispatch),_e(_e({},o),{},{dispatch:i})}}}function cr(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 lr=cr();lr.withExtraArgument=cr;var ft=lr;var vr=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)}}(),tn=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}}},ae=function(t,e){for(var r=0,n=e.length,o=t.length;r<n;r++,o++)t[o]=e[r];return t},rn=Object.defineProperty,nn=Object.defineProperties,on=Object.getOwnPropertyDescriptors,fr=Object.getOwnPropertySymbols,an=Object.prototype.hasOwnProperty,sn=Object.prototype.propertyIsEnumerable,dr=function(t,e,r){return e in t?rn(t,e,{enumerable:!0,configurable:!0,writable:!0,value:r}):t[e]=r},G=function(t,e){for(var r in e||(e={}))an.call(e,r)&&dr(t,r,e[r]);if(fr)for(var n=0,o=fr(e);n<o.length;n++){var r=o[n];sn.call(e,r)&&dr(t,r,e[r])}return t},dt=function(t,e){return nn(t,on(e))},un=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 cn=typeof window<"u"&&window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__?window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__:function(){if(arguments.length!==0)return typeof arguments[0]=="object"?ie:ie.apply(null,arguments)},Vo=typeof window<"u"&&window.__REDUX_DEVTOOLS_EXTENSION__?window.__REDUX_DEVTOOLS_EXTENSION__:function(){return function(t){return t}};function ln(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 fn=function(t){vr(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,ae([void 0],r[0].concat(this)))):new(e.bind.apply(e,ae([void 0],r.concat(this))))},e}(Array),dn=function(t){vr(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,ae([void 0],r[0].concat(this)))):new(e.bind.apply(e,ae([void 0],r.concat(this))))},e}(Array);function vt(t){return N(t)?je(t,function(){}):t}function pn(t){return typeof t=="boolean"}function hn(){return function(e){return vn(e)}}function vn(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 fn;if(r&&(pn(r)?s.push(ft):s.push(ft.withExtraArgument(r.extraArgument))),0){if(o)var c;if(a)var u}return s}var pt=!0;function mr(t){var e=hn(),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(ln(o))v=sr(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),!pt&&!Array.isArray(d)))throw new Error("when using a middleware builder function, an array of middleware must be returned");if(!pt&&d.some(function(w){return typeof w!="function"}))throw new Error("each middleware provided to configureStore must be a function");var p=ur.apply(void 0,d),g=ie;c&&(g=cn(G({trace:!pt},typeof c=="object"&&c)));var y=new dn(p),b=y;Array.isArray(f)?b=ae([p],f):typeof f=="function"&&(b=f(y));var x=g.apply(void 0,b);return lt(v,l,x)}function X(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 G(G({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 yr(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 mn(t){return typeof t=="function"}function yn(t,e,r,n){r===void 0&&(r=[]);var o=typeof e=="function"?yr(e):[e,r,n],i=o[0],a=o[1],s=o[2],c;if(mn(t))c=function(){return vt(t())};else{var u=vt(t);c=function(){return u}}function l(h,f){h===void 0&&(h=c());var v=ae([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(L(d)){var g=d,y=p(g,f);return y===void 0?d:y}else{if(N(d))return je(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 bn(t,e){return t+"/"+e}function br(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:vt(t.initialState),n=t.reducers||{},o=Object.keys(n),i={},a={},s={};o.forEach(function(l){var h=n[l],f=bn(e,l),v,d;"reducer"in h?(v=h.reducer,d=h.prepare):v=h,i[l]=v,a[f]=v,s[l]=d?X(f,d):X(f)});function c(){var l=typeof t.extraReducers=="function"?yr(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=G(G({},f),a);return yn(r,function(b){for(var x in y)b.addCase(x,y[x]);for(var w=0,U=d;w<U.length;w++){var T=U[w];b.addMatcher(T.matcher,T.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 gn="ModuleSymbhasOwnPr-0123456789ABCDEFGHNRVfgctiUvz_KqYTJkLxpZXIjQW",wn=function(t){t===void 0&&(t=21);for(var e="",r=t;r--;)e+=gn[Math.random()*64|0];return e},Sn=["name","message","stack","code"],ht=function(){function t(e,r){this.payload=e,this.meta=r}return t}(),pr=function(){function t(e,r){this.payload=e,this.meta=r}return t}(),xn=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)}},qo=function(){function t(e,r,n){var o=X(e+"/fulfilled",function(l,h,f,v){return{payload:l,meta:dt(G({},v||{}),{arg:f,requestId:h,requestStatus:"fulfilled"})}}),i=X(e+"/pending",function(l,h,f){return{payload:void 0,meta:dt(G({},f||{}),{arg:h,requestId:l,requestStatus:"pending"})}}),a=X(e+"/rejected",function(l,h,f,v,d){return{payload:v,error:(n&&n.serializeError||xn)(l||"Rejected"),meta:dt(G({},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):wn(),p=new c,g,y=!1;function b(w){g=w,p.abort()}var x=function(){return un(this,null,function(){var w,U,T,se,xt,ue,Et;return tn(this,function(ee){switch(ee.label){case 0:return ee.trys.push([0,4,,5]),se=(w=n?.condition)==null?void 0:w.call(n,l,{getState:f,extra:v}),On(se)?[4,se]:[3,2];case 1:se=ee.sent(),ee.label=2;case 2:if(se===!1||p.signal.aborted)throw{name:"ConditionError",message:"Aborted due to condition callback returning false."};return y=!0,xt=new Promise(function(_,ce){return p.signal.addEventListener("abort",function(){return ce({name:"AbortError",message:g||"Aborted"})})}),h(i(d,l,(U=n?.getPendingMeta)==null?void 0:U.call(n,{requestId:d,arg:l},{getState:f,extra:v}))),[4,Promise.race([xt,Promise.resolve(r(l,{dispatch:h,getState:f,extra:v,requestId:d,signal:p.signal,abort:b,rejectWithValue:function(_,ce){return new ht(_,ce)},fulfillWithValue:function(_,ce){return new pr(_,ce)}})).then(function(_){if(_ instanceof ht)throw _;return _ instanceof pr?o(_.payload,d,l,_.meta):o(_,d,l)})])];case 3:return T=ee.sent(),[3,5];case 4:return ue=ee.sent(),T=ue instanceof ht?a(null,d,l,ue.payload,ue.meta):a(ue,d,l),[3,5];case 5:return Et=n&&!n.dispatchConditionRejection&&a.match(T)&&T.meta.condition,Et||h(T),[2,T]}})})}();return Object.assign(x,{abort:b,requestId:d,arg:l,unwrap:function(){return x.then(En)}})}}return Object.assign(u,{pending:i,rejected:a,fulfilled:o,typePrefix:e})}return t.withTypes=function(){return t},t}();function En(t){if(t.meta&&t.meta.rejectedWithValue)throw t.payload;if(t.error)throw t.error;return t.payload}function On(t){return t!==null&&typeof t=="object"&&typeof t.then=="function"}var gr="listener",wr="completed",Sr="cancelled",Ko="task-"+Sr,$o="task-"+wr,Go=gr+"-"+Sr,Xo=gr+"-"+wr;var mt="listenerMiddleware";var Jo=X(mt+"/add"),Yo=X(mt+"/removeAll"),Ho=X(mt+"/remove");var hr,Qo=typeof queueMicrotask=="function"?queueMicrotask.bind(typeof window<"u"?window:typeof global<"u"?global:globalThis):function(t){return(hr||(hr=Promise.resolve())).then(t).catch(function(e){return setTimeout(function(){throw e},0)})},An=function(t){return function(e){setTimeout(e,t)}},Zo=typeof window<"u"&&window.requestAnimationFrame?window.requestAnimationFrame:An(10);rr();window.ftReduxStores||(window.ftReduxStores={});var xr=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(fe(i))return i;if(o==null)return;let a=br({...o,reducers:(r=o.reducers)!==null&&r!==void 0?r:{}}),s=mr({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 Se,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 Te=E(M());var Ne=class extends V{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 Ie=class extends V{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 Pn="ft-user-assets",Re=Te.FtReduxStore.get({name:Pn,initialState:{savedSearches:void 0,bookmarks:void 0}}),yt=class{constructor(){this.currentSession=m.getState().session,this.bookmarksAreUsed=!1,this.bookmarksService=new Ie,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(),Re.actions.savedSearches(void 0)}clearMyBookmarks(){this.bookmarksService.clearCache(),Re.actions.bookmarks(void 0)}async reloadMySearches(){this.savedSearchesService.clearCache();let e=await this.savedSearchesService.listMySearches();Re.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;Re.actions.bookmarks(r)}}},Mi=new yt;var bt=class{addCommand(e,r=!1){m.commands.add(e,r)}consumeCommand(e){return m.commands.consume(e)}};window.FluidTopicsAppInfoStoreService=new bt;var Er=E(M()),gt=class{highlightHtml(e,r,n){(0,Er.highlightHtml)(e,r,n)}};window.FluidTopicsHighlightHtmlService=new gt;var Or=E(M());var wt=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 Or.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 wt;(0,Ar.customElement)("ft-app-context")(O);var Pr=E(F()),Mn=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},St=Symbol("i18nAttributes"),Z=Symbol("i18nProperties"),me=Symbol("i18nUnsubs");function Mr(t){var e;class r extends t{constructor(){super(...arguments),this.useCustomMessageContexts=!1,this[e]=new Map}get i18nService(){return this.useCustomMessageContexts?Nt:Y}i18n(o,i,...a){var s;if(typeof o=="string")return this.i18nService.resolveMessage(o,i,...a);let c=(s=o.args)!==null&&s!==void 0?s:o.argsProvider?o.argsProvider(this):[];return this.i18nService.resolveMessage(o.context,o.key,...c)}onI18nUpdate(o){var i,a;(i=this[St])===null||i===void 0||i.forEach((s,c)=>{var u;let l=this.getI18nAttributeValue(c);((u=l?.context)===null||u===void 0?void 0:u.toLowerCase())===o.toLowerCase()&&this.updateI18nAttributeMessage(c,l,s)}),(a=this[Z])===null||a===void 0||a.forEach((s,c)=>{s.context.toLowerCase()===o.toLowerCase()&&(this[c]=this.i18n(s))}),setTimeout(()=>this.requestUpdate(),0)}updateI18nAttributeMessage(o,i,a){this[o]={...i,message:this.i18n({context:i.context,key:i.key,...a})}}update(o){var i,a;super.update(o),(i=this[St])===null||i===void 0||i.forEach((s,c)=>{let u=this.getI18nAttributeValue(c);u?.context&&u.key&&(o.has(c)||s.argsProvider!=null)&&(o.has(c)&&this.addI18nContext(u.context),this.updateI18nAttributeMessage(c,u,s))}),(a=this[Z])===null||a===void 0||a.forEach((s,c)=>{s.argsProvider!=null&&(this[c]=this.i18n(s))})}getI18nAttributeValue(o){return this[o]}connectedCallback(){var o,i,a,s;super.connectedCallback(),new Set([...(i=(o=this[Z])===null||o===void 0?void 0:o.values())!==null&&i!==void 0?i:[],...[...(s=(a=this[St])===null||a===void 0?void 0:a.keys())!==null&&s!==void 0?s:[]].map(c=>this.getI18nAttributeValue(c))].map(c=>c?.context)).forEach(c=>c&&this.addI18nMessages(c))}addI18nMessages(o,i){o=o.toLowerCase(),this[me].has(o)||this[me].set(o,this.i18nService.subscribe(o,()=>this.onI18nUpdate(o))),this.i18nService.prepareContext(o,i??{}),this.onI18nUpdate(o)}addI18nContext(o,i){this.addI18nMessages(typeof o=="string"?o:o.name,i)}disconnectedCallback(){super.disconnectedCallback(),this[me].forEach(o=>o()),this[me].clear()}}return e=me,Mn([(0,Pr.property)({type:Boolean})],r.prototype,"useCustomMessageContexts",void 0),r}var Cr=class extends Mr(Ue.FtLitElement){},Le=class extends Mr(Ue.FtLitElementRedux){};var ye=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},I=class extends Le{constructor(){super(),this.editorMode=!1,this.addStore(m)}render(){return!this.key||!this.context?this.editorMode?"Select a context and a label key.":Fe.nothing:Fe.html`
|
|
5
|
+
`}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=>Y.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=It;C([(0,k.property)()],O.prototype,"baseUrl",void 0);C([(0,k.property)()],O.prototype,"apiIntegrationIdentifier",void 0);C([(0,k.property)()],O.prototype,"uiLocale",void 0);C([(0,I.jsonProperty)(null)],O.prototype,"availableUiLocales",void 0);C([(0,I.jsonProperty)(null)],O.prototype,"metadataConfiguration",void 0);C([(0,k.property)({type:Boolean})],O.prototype,"editorMode",void 0);C([(0,k.property)({type:Boolean})],O.prototype,"noCustom",void 0);C([(0,k.property)({type:Boolean})],O.prototype,"openExternalDocumentInNewTab",void 0);C([(0,k.property)({converter:{fromAttribute(t){return t==="false"?!1:t==="true"||(t??!1)}}})],O.prototype,"noCustomComponent",void 0);C([(0,k.property)({type:Boolean})],O.prototype,"withManualResources",void 0);C([(0,k.property)({type:Boolean})],O.prototype,"navigatorOnline",void 0);C([(0,k.property)({type:Boolean})],O.prototype,"forcedOffline",void 0);C([(0,k.property)({type:Object})],O.prototype,"apiProvider",void 0);C([(0,I.jsonProperty)([])],O.prototype,"messageContexts",void 0);C([(0,I.jsonProperty)(void 0)],O.prototype,"session",void 0);var Pn=E(F());function zr(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(!we(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(!we(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(!we(t[i],e[i]))return!1}return!0}return t!==t&&e!==e}function we(t,e){try{return zr(t,e)}catch{return!1}}function Ke(t,e){return!we(t,e)}var Wr=E(F(),1);var Se=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 le=E(F(),1);var Tt=E(F(),1);function Lt(t,e){let r=()=>JSON.parse(JSON.stringify(t));return(0,Tt.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:Ke,...e??{}})}var xe=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 Ft=E(te(),1);var Ee=window,Br=Ee.ShadowRoot&&(Ee.ShadyCSS===void 0||Ee.ShadyCSS.nativeShadow)&&"adoptedStyleSheets"in Document.prototype&&"replace"in CSSStyleSheet.prototype,io=Symbol();var Ut=(t,e)=>{Br?t.adoptedStyleSheets=e.map(r=>r instanceof CSSStyleSheet?r:r.styleSheet):e.forEach(r=>{let n=document.createElement("style"),o=Ee.litNonce;o!==void 0&&n.setAttribute("nonce",o),n.textContent=r.cssText,t.appendChild(n)})};var Oe=class extends Ft.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 Ut(n,e.elementStyles),n}};var Ae=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},Bt,Vt=Symbol("constructorPrototype"),zt=Symbol("constructorName"),qt=Symbol("exportpartsDebouncer"),Wt=Symbol("dynamicDependenciesLoaded"),W=class extends Oe{constructor(){super(),this.useAdoptedStyleSheets=!0,this.adoptedCustomStyleSheet=new CSSStyleSheet,this[Bt]=new xe(5),this[zt]=this.constructor.name,this[Vt]=this.constructor.prototype}adoptedCallback(){this.constructor.name!==this[zt]&&Object.setPrototypeOf(this,this[Vt])}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[Wt]||(e[Wt]=!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[qt].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(h=>h.split(":")[1]))!==null&&s!==void 0?s:[];new Array(...v,...d).filter(c).map(h=>h.trim()).forEach(h=>l.add(h))}if(l.size===0){this.removeAttribute("exportparts");return}let p=[...l.values()].flatMap(f=>u.map(v=>`${f}:${v}--${f}`));this.setAttribute("exportparts",[...this.part,...p].join(", "))}};Bt=qt;Ae([(0,le.property)()],W.prototype,"exportpartsPrefix",void 0);Ae([Lt([])],W.prototype,"exportpartsPrefixes",void 0);Ae([(0,le.property)()],W.prototype,"customStylesheet",void 0);Ae([(0,le.state)()],W.prototype,"useAdoptedStyleSheets",void 0);function fe(t){var e;return(e=t?.isFtReduxStore)!==null&&e!==void 0?e:!1}var Kt,$t,Gt,Ce=Symbol("internalReduxEventsUnsubscribers"),B=Symbol("internalStoresUnsubscribers"),H=Symbol("internalStores"),de=class extends W{constructor(){super(...arguments),this[Kt]=new Map,this[$t]=new Map,this[Gt]=[]}get reduxConstructor(){return this.constructor}update(e){super.update(e),[...this.reduxConstructor.reduxReactiveProperties].some(r=>e.has(r))&&this.updateFromStores()}getUnnamedStore(){if(this[H].size>1)throw new Error("Cannot resolve unnamed store when multiple stores are configured.");return[...this[H].values()][0]}getStore(e){return e==null?this.getUnnamedStore():this[H].get(e)}addStore(e,r){var n;r=(n=r??(fe(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[H].delete(r)}setupStore(e,r){this[H].set(e,r),this.subscribeToStore(e,r),this.updateFromStores()}setupStores(){this.unsubscribeFromStores(),this[H].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[B].has(e.store):this[B].size>0)&&(this[r]=e.selector(o.getState(),this))}})}subscribeToStore(e,r){var n;this[B].set(e,r.subscribe(()=>this.updateFromStores())),fe(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[Ce].push(()=>r.eventBus.removeEventListener(o.eventName,a))}})),this.onStoreAvailable(e)}unsubscribeFromStores(){this[B].forEach((e,r)=>this.unsubscribeFromStore(r)),this[Ce].forEach(e=>e()),this[Ce]=[]}unsubscribeFromStore(e){this[B].has(e)&&this[B].get(e)(),this[B].delete(e)}onStoreAvailable(e){}connectedCallback(){super.connectedCallback(),this.setupStores()}disconnectedCallback(){super.disconnectedCallback(),this.unsubscribeFromStores()}};Kt=B,$t=H,Gt=Ce;de.reduxProperties=new Map;de.reduxReactiveProperties=new Set;de.reduxEventListeners=new Map;function j(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 L(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)===Hr}(t)||Array.isArray(t)||!!t[er]||!!(!((e=t.constructor)===null||e===void 0)&&e[er])||et(t)||tt(t))}function Q(t,e,r){r===void 0&&(r=!1),oe(t)===0?(r?Object.keys:ne)(t).forEach(function(n){r&&typeof n=="symbol"||e(n,t[n],t)}):t.forEach(function(n,o){return e(o,n,t)})}function oe(t){var e=t[S];return e?e.i>3?e.i-4:e.i:Array.isArray(t)?1:et(t)?2:tt(t)?3:0}function re(t,e){return oe(t)===2?t.has(e):Object.prototype.hasOwnProperty.call(t,e)}function qr(t,e){return oe(t)===2?t.get(e):t[e]}function tr(t,e,r){var n=oe(t);n===2?t.set(e,r):n===3?t.add(r):t[e]=r}function rr(t,e){return t===e?t!==0||1/t==1/e:t!=t&&e!=e}function et(t){return Jr&&t instanceof Map}function tt(t){return Yr&&t instanceof Set}function q(t){return t.o||t.t}function rt(t){if(Array.isArray(t))return Array.prototype.slice.call(t);var e=ir(t);delete e[S];for(var r=ne(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 nt(t,e){return e===void 0&&(e=!1),ot(t)||L(t)||!N(t)||(oe(t)>1&&(t.set=t.add=t.clear=t.delete=Kr),Object.freeze(t),e&&Q(t,function(r,n){return nt(n,!0)},!0)),t}function Kr(){j(2)}function ot(t){return t==null||typeof t!="object"||Object.isFrozen(t)}function R(t){var e=Ze[t];return e||j(18,t),e}function $r(t,e){Ze[t]||(Ze[t]=e)}function Ye(){return pe}function $e(t,e){e&&(R("Patches"),t.u=[],t.s=[],t.v=e)}function Pe(t){He(t),t.p.forEach(Gr),t.p=null}function He(t){t===pe&&(pe=t.l)}function Xt(t){return pe={p:[],l:pe,h:t,m:!0,_:0}}function Gr(t){var e=t[S];e.i===0||e.i===1?e.j():e.g=!0}function Ge(t,e){e._=e.p.length;var r=e.p[0],n=t!==void 0&&t!==r;return e.h.O||R("ES5").S(e,t,n),n?(r[S].P&&(Pe(e),j(4)),N(t)&&(t=Me(e,t),e.l||ke(e,t)),e.u&&R("Patches").M(r[S].t,t,e.u,e.s)):t=Me(e,r,[]),Pe(e),e.u&&e.v(e.u,e.s),t!==or?t:void 0}function Me(t,e,r){if(ot(e))return e;var n=e[S];if(!n)return Q(e,function(s,c){return Jt(t,n,e,s,c,r)},!0),e;if(n.A!==t)return e;if(!n.P)return ke(t,n.t,!0),n.t;if(!n.I){n.I=!0,n.A._--;var o=n.i===4||n.i===5?n.o=rt(n.k):n.o,i=o,a=!1;n.i===3&&(i=new Set(o),o.clear(),a=!0),Q(i,function(s,c){return Jt(t,n,o,s,c,r,a)}),ke(t,o,!1),r&&t.u&&R("Patches").N(n,r,t.u,t.s)}return n.o}function Jt(t,e,r,n,o,i,a){if(L(o)){var s=Me(t,o,i&&e&&e.i!==3&&!re(e.R,n)?i.concat(n):void 0);if(tr(r,n,s),!L(s))return;t.m=!1}else a&&r.add(o);if(N(o)&&!ot(o)){if(!t.h.D&&t._<1)return;Me(t,o),e&&e.A.l||ke(t,o)}}function ke(t,e,r){r===void 0&&(r=!1),!t.l&&t.h.D&&t.m&&nt(e,r)}function Xe(t,e){var r=t[S];return(r?q(r):t)[e]}function Yt(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 K(t){t.P||(t.P=!0,t.l&&K(t.l))}function Je(t){t.o||(t.o=rt(t.t))}function Qe(t,e,r){var n=et(e)?R("MapSet").F(e,r):tt(e)?R("MapSet").T(e,r):t.O?function(o,i){var a=Array.isArray(o),s={i:a?1:0,A:i?i.A:Ye(),P:!1,I:!1,R:{},l:i,t:o,k:null,o:null,j:null,C:!1},c=s,u=ve;a&&(c=[s],u=he);var l=Proxy.revocable(c,u),p=l.revoke,f=l.proxy;return s.k=f,s.j=p,f}(e,r):R("ES5").J(e,r);return(r?r.A:Ye()).p.push(n),n}function Xr(t){return L(t)||j(22,t),function e(r){if(!N(r))return r;var n,o=r[S],i=oe(r);if(o){if(!o.P&&(o.i<4||!R("ES5").K(o)))return o.t;o.I=!0,n=Ht(r,i),o.I=!1}else n=Ht(r,i);return Q(n,function(a,s){o&&qr(o.t,a)===s||tr(n,a,e(s))}),i===3?new Set(n):n}(t)}function Ht(t,e){switch(e){case 2:return new Map(t);case 3:return Array.from(t)}return rt(t)}function nr(){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 ve.get(u,a)},set:function(u){var l=this[S];ve.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)&&K(c);break;case 4:r(c)&&K(c)}}}function r(a){for(var s=a.t,c=a.k,u=ne(c),l=u.length-1;l>=0;l--){var p=u[l];if(p!==S){var f=s[p];if(f===void 0&&!re(s,p))return!0;var v=c[p],d=v&&v[S];if(d?d.t!==f:!rr(v,f))return!0}}var h=!!s[S];return u.length!==ne(s).length+(h?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&&j(3,JSON.stringify(q(a)))}var i={};$r("ES5",{J:function(a,s){var c=Array.isArray(a),u=function(p,f){if(p){for(var v=Array(f.length),d=0;d<f.length;d++)Object.defineProperty(v,""+d,t(d,!0));return v}var h=ir(f);delete h[S];for(var g=ne(h),y=0;y<g.length;y++){var b=g[y];h[b]=t(b,p||!!h[b].enumerable)}return Object.create(Object.getPrototypeOf(f),h)}(c,a),l={i:c?5:4,A:s?s.A:Ye(),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?L(s)&&s[S].A===a&&e(a.p):(a.u&&function u(l){if(l&&typeof l=="object"){var p=l[S];if(p){var f=p.t,v=p.k,d=p.R,h=p.i;if(h===4)Q(v,function(w){w!==S&&(f[w]!==void 0||re(f,w)?d[w]||u(v[w]):(d[w]=!0,K(p)))}),Q(f,function(w){v[w]!==void 0||re(v,w)||(d[w]=!1,K(p))});else if(h===5){if(n(p)&&(K(p),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,pe,it=typeof Symbol<"u"&&typeof Symbol("x")=="symbol",Jr=typeof Map<"u",Yr=typeof Set<"u",Zt=typeof Proxy<"u"&&Proxy.revocable!==void 0&&typeof Reflect<"u",or=it?Symbol.for("immer-nothing"):((Qt={})["immer-nothing"]=!0,Qt),er=it?Symbol.for("immer-draftable"):"__$immer_draftable",S=it?Symbol.for("immer-state"):"__$immer_state";var Hr=""+Object.prototype.constructor,ne=typeof Reflect<"u"&&Reflect.ownKeys?Reflect.ownKeys:Object.getOwnPropertySymbols!==void 0?function(t){return Object.getOwnPropertyNames(t).concat(Object.getOwnPropertySymbols(t))}:Object.getOwnPropertyNames,ir=Object.getOwnPropertyDescriptors||function(t){var e={};return ne(t).forEach(function(r){e[r]=Object.getOwnPropertyDescriptor(t,r)}),e},Ze={},ve={get:function(t,e){if(e===S)return t;var r=q(t);if(!re(r,e))return function(o,i,a){var s,c=Yt(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===Xe(t.t,e)?(Je(t),t.o[e]=Qe(t.A.h,n,t)):n},has:function(t,e){return e in q(t)},ownKeys:function(t){return Reflect.ownKeys(q(t))},set:function(t,e,r){var n=Yt(q(t),e);if(n?.set)return n.set.call(t.k,r),!0;if(!t.P){var o=Xe(q(t),e),i=o?.[S];if(i&&i.t===r)return t.o[e]=r,t.R[e]=!1,!0;if(rr(r,o)&&(r!==void 0||re(t.t,e)))return!0;Je(t),K(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 Xe(t.t,e)!==void 0||e in t.t?(t.R[e]=!1,Je(t),K(t)):delete t.R[e],t.o&&delete t.o[e],!0},getOwnPropertyDescriptor:function(t,e){var r=q(t),n=Reflect.getOwnPropertyDescriptor(r,e);return n&&{writable:!0,configurable:t.i!==1||e!=="length",enumerable:n.enumerable,value:r[e]}},defineProperty:function(){j(11)},getPrototypeOf:function(t){return Object.getPrototypeOf(t.t)},setPrototypeOf:function(){j(12)}},he={};Q(ve,function(t,e){he[t]=function(){return arguments[0]=arguments[0][0],e.apply(this,arguments)}}),he.deleteProperty=function(t,e){return he.set.call(this,t,e,void 0)},he.set=function(t,e,r){return ve.set.call(this,t[0],e,r,t[0])};var Qr=function(){function t(r){var n=this;this.O=Zt,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(h){var g=this;h===void 0&&(h=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(h,function(w){var U;return(U=i).call.apply(U,[g,w].concat(b))})}}var u;if(typeof i!="function"&&j(6),a!==void 0&&typeof a!="function"&&j(7),N(o)){var l=Xt(n),p=Qe(n,o,void 0),f=!0;try{u=i(p),f=!1}finally{f?Pe(l):He(l)}return typeof Promise<"u"&&u instanceof Promise?u.then(function(h){return $e(l,a),Ge(h,l)},function(h){throw Pe(l),h}):($e(l,a),Ge(u,l))}if(!o||typeof o!="object"){if((u=i(o))===void 0&&(u=o),u===or&&(u=void 0),n.D&&nt(u,!0),a){var v=[],d=[];R("Patches").M(o,u,v,d),a(v,d)}return u}j(21,o)},this.produceWithPatches=function(o,i){if(typeof o=="function")return function(u){for(var l=arguments.length,p=Array(l>1?l-1:0),f=1;f<l;f++)p[f-1]=arguments[f];return n.produceWithPatches(u,function(v){return o.apply(void 0,[v].concat(p))})};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)||j(8),L(r)&&(r=Xr(r));var n=Xt(this),o=Qe(this,r,void 0);return o[S].C=!0,He(n),o},e.finishDraft=function(r,n){var o=r&&r[S],i=o.A;return $e(i,n),Ge(void 0,i)},e.setAutoFreeze=function(r){this.D=r},e.setUseProxies=function(r){r&&!Zt&&j(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=R("Patches").$;return L(r)?a(r,n):this.produce(r,function(s){return a(s,n)})},t}(),P=new Qr,Zr=P.produce,bo=P.produceWithPatches.bind(P),go=P.setAutoFreeze.bind(P),wo=P.setUseProxies.bind(P),So=P.applyPatches.bind(P),xo=P.createDraft.bind(P),Eo=P.finishDraft.bind(P),je=Zr;function $(t){"@babel/helpers - typeof";return $=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},$(t)}function at(t,e){if($(t)!=="object"||t===null)return t;var r=t[Symbol.toPrimitive];if(r!==void 0){var n=r.call(t,e||"default");if($(n)!=="object")return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return(e==="string"?String:Number)(t)}function st(t){var e=at(t,"string");return $(e)==="symbol"?e:String(e)}function ut(t,e,r){return e=st(e),e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function ar(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 _e(t){for(var e=1;e<arguments.length;e++){var r=arguments[e]!=null?arguments[e]:{};e%2?ar(Object(r),!0).forEach(function(n){ut(t,n,r[n])}):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):ar(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 sr=function(){return typeof Symbol=="function"&&Symbol.observable||"@@observable"}(),ct=function(){return Math.random().toString(36).substring(7).split("").join(".")},Ie={INIT:"@@redux/INIT"+ct(),REPLACE:"@@redux/REPLACE"+ct(),PROBE_UNKNOWN_ACTION:function(){return"@@redux/PROBE_UNKNOWN_ACTION"+ct()}};function en(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 lt(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(lt)(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 l(){if(c)throw new Error(A(3));return i}function p(h){if(typeof h!="function")throw new Error(A(4));if(c)throw new Error(A(5));var g=!0;return u(),s.push(h),function(){if(g){if(c)throw new Error(A(6));g=!1,u();var b=s.indexOf(h);s.splice(b,1),a=null}}}function f(h){if(!en(h))throw new Error(A(7));if(typeof h.type>"u")throw new Error(A(8));if(c)throw new Error(A(9));try{c=!0,i=o(i,h)}finally{c=!1}for(var g=a=s,y=0;y<g.length;y++){var b=g[y];b()}return h}function v(h){if(typeof h!="function")throw new Error(A(10));o=h,f({type:Ie.REPLACE})}function d(){var h,g=p;return h={subscribe:function(b){if(typeof b!="object"||b===null)throw new Error(A(11));function x(){b.next&&b.next(l())}x();var w=g(x);return{unsubscribe:w}}},h[sr]=function(){return this},h}return f({type:Ie.INIT}),n={dispatch:f,subscribe:p,getState:l,replaceReducer:v},n[sr]=d,n}function tn(t){Object.keys(t).forEach(function(e){var r=t[e],n=r(void 0,{type:Ie.INIT});if(typeof n>"u")throw new Error(A(12));if(typeof r(void 0,{type:Ie.PROBE_UNKNOWN_ACTION()})>"u")throw new Error(A(13))})}function ur(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{tn(r)}catch(c){s=c}return function(u,l){if(u===void 0&&(u={}),s)throw s;if(0)var p;for(var f=!1,v={},d=0;d<i.length;d++){var h=i[d],g=r[h],y=u[h],b=g(y,l);if(typeof b>"u"){var x=l&&l.type;throw new Error(A(14))}v[h]=b,f=f||b!==y}return f=f||i.length!==Object.keys(u).length,f?v:u}}function ie(){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 cr(){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=ie.apply(void 0,s)(o.dispatch),_e(_e({},o),{},{dispatch:i})}}}function lr(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 fr=lr();fr.withExtraArgument=lr;var ft=fr;var mr=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)}}(),rn=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}}},ae=function(t,e){for(var r=0,n=e.length,o=t.length;r<n;r++,o++)t[o]=e[r];return t},nn=Object.defineProperty,on=Object.defineProperties,an=Object.getOwnPropertyDescriptors,dr=Object.getOwnPropertySymbols,sn=Object.prototype.hasOwnProperty,un=Object.prototype.propertyIsEnumerable,hr=function(t,e,r){return e in t?nn(t,e,{enumerable:!0,configurable:!0,writable:!0,value:r}):t[e]=r},G=function(t,e){for(var r in e||(e={}))sn.call(e,r)&&hr(t,r,e[r]);if(dr)for(var n=0,o=dr(e);n<o.length;n++){var r=o[n];un.call(e,r)&&hr(t,r,e[r])}return t},dt=function(t,e){return on(t,an(e))},cn=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 ln=typeof window<"u"&&window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__?window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__:function(){if(arguments.length!==0)return typeof arguments[0]=="object"?ie:ie.apply(null,arguments)},zo=typeof window<"u"&&window.__REDUX_DEVTOOLS_EXTENSION__?window.__REDUX_DEVTOOLS_EXTENSION__:function(){return function(t){return t}};function fn(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 dn=function(t){mr(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,ae([void 0],r[0].concat(this)))):new(e.bind.apply(e,ae([void 0],r.concat(this))))},e}(Array),hn=function(t){mr(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,ae([void 0],r[0].concat(this)))):new(e.bind.apply(e,ae([void 0],r.concat(this))))},e}(Array);function vt(t){return N(t)?je(t,function(){}):t}function pn(t){return typeof t=="boolean"}function vn(){return function(e){return mn(e)}}function mn(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 dn;if(r&&(pn(r)?s.push(ft):s.push(ft.withExtraArgument(r.extraArgument))),0){if(o)var c;if(a)var u}return s}var ht=!0;function yr(t){var e=vn(),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,p=r.enhancers,f=p===void 0?void 0:p,v;if(typeof o=="function")v=o;else if(fn(o))v=ur(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),!ht&&!Array.isArray(d)))throw new Error("when using a middleware builder function, an array of middleware must be returned");if(!ht&&d.some(function(w){return typeof w!="function"}))throw new Error("each middleware provided to configureStore must be a function");var h=cr.apply(void 0,d),g=ie;c&&(g=ln(G({trace:!ht},typeof c=="object"&&c)));var y=new hn(h),b=y;Array.isArray(f)?b=ae([h],f):typeof f=="function"&&(b=f(y));var x=g.apply(void 0,b);return lt(v,l,x)}function X(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 G(G({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 br(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 yn(t){return typeof t=="function"}function bn(t,e,r,n){r===void 0&&(r=[]);var o=typeof e=="function"?br(e):[e,r,n],i=o[0],a=o[1],s=o[2],c;if(yn(t))c=function(){return vt(t())};else{var u=vt(t);c=function(){return u}}function l(p,f){p===void 0&&(p=c());var v=ae([i[f.type]],a.filter(function(d){var h=d.matcher;return h(f)}).map(function(d){var h=d.reducer;return h}));return v.filter(function(d){return!!d}).length===0&&(v=[s]),v.reduce(function(d,h){if(h)if(L(d)){var g=d,y=h(g,f);return y===void 0?d:y}else{if(N(d))return je(d,function(b){return h(b,f)});var y=h(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},p)}return l.getInitialState=c,l}function gn(t,e){return t+"/"+e}function gr(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:vt(t.initialState),n=t.reducers||{},o=Object.keys(n),i={},a={},s={};o.forEach(function(l){var p=n[l],f=gn(e,l),v,d;"reducer"in p?(v=p.reducer,d=p.prepare):v=p,i[l]=v,a[f]=v,s[l]=d?X(f,d):X(f)});function c(){var l=typeof t.extraReducers=="function"?br(t.extraReducers):[t.extraReducers],p=l[0],f=p===void 0?{}:p,v=l[1],d=v===void 0?[]:v,h=l[2],g=h===void 0?void 0:h,y=G(G({},f),a);return bn(r,function(b){for(var x in y)b.addCase(x,y[x]);for(var w=0,U=d;w<U.length;w++){var T=U[w];b.addMatcher(T.matcher,T.reducer)}g&&b.addDefaultCase(g)})}var u;return{name:e,reducer:function(l,p){return u||(u=c()),u(l,p)},actions:s,caseReducers:i,getInitialState:function(){return u||(u=c()),u.getInitialState()}}}var wn="ModuleSymbhasOwnPr-0123456789ABCDEFGHNRVfgctiUvz_KqYTJkLxpZXIjQW",Sn=function(t){t===void 0&&(t=21);for(var e="",r=t;r--;)e+=wn[Math.random()*64|0];return e},xn=["name","message","stack","code"],pt=function(){function t(e,r){this.payload=e,this.meta=r}return t}(),pr=function(){function t(e,r){this.payload=e,this.meta=r}return t}(),En=function(t){if(typeof t=="object"&&t!==null){for(var e={},r=0,n=xn;r<n.length;r++){var o=n[r];typeof t[o]=="string"&&(e[o]=t[o])}return e}return{message:String(t)}},Ko=function(){function t(e,r,n){var o=X(e+"/fulfilled",function(l,p,f,v){return{payload:l,meta:dt(G({},v||{}),{arg:f,requestId:p,requestStatus:"fulfilled"})}}),i=X(e+"/pending",function(l,p,f){return{payload:void 0,meta:dt(G({},f||{}),{arg:p,requestId:l,requestStatus:"pending"})}}),a=X(e+"/rejected",function(l,p,f,v,d){return{payload:v,error:(n&&n.serializeError||En)(l||"Rejected"),meta:dt(G({},d||{}),{arg:f,requestId:p,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(p,f,v){var d=n?.idGenerator?n.idGenerator(l):Sn(),h=new c,g,y=!1;function b(w){g=w,h.abort()}var x=function(){return cn(this,null,function(){var w,U,T,se,Et,ue,Ot;return rn(this,function(ee){switch(ee.label){case 0:return ee.trys.push([0,4,,5]),se=(w=n?.condition)==null?void 0:w.call(n,l,{getState:f,extra:v}),An(se)?[4,se]:[3,2];case 1:se=ee.sent(),ee.label=2;case 2:if(se===!1||h.signal.aborted)throw{name:"ConditionError",message:"Aborted due to condition callback returning false."};return y=!0,Et=new Promise(function(_,ce){return h.signal.addEventListener("abort",function(){return ce({name:"AbortError",message:g||"Aborted"})})}),p(i(d,l,(U=n?.getPendingMeta)==null?void 0:U.call(n,{requestId:d,arg:l},{getState:f,extra:v}))),[4,Promise.race([Et,Promise.resolve(r(l,{dispatch:p,getState:f,extra:v,requestId:d,signal:h.signal,abort:b,rejectWithValue:function(_,ce){return new pt(_,ce)},fulfillWithValue:function(_,ce){return new pr(_,ce)}})).then(function(_){if(_ instanceof pt)throw _;return _ instanceof pr?o(_.payload,d,l,_.meta):o(_,d,l)})])];case 3:return T=ee.sent(),[3,5];case 4:return ue=ee.sent(),T=ue instanceof pt?a(null,d,l,ue.payload,ue.meta):a(ue,d,l),[3,5];case 5:return Ot=n&&!n.dispatchConditionRejection&&a.match(T)&&T.meta.condition,Ot||p(T),[2,T]}})})}();return Object.assign(x,{abort:b,requestId:d,arg:l,unwrap:function(){return x.then(On)}})}}return Object.assign(u,{pending:i,rejected:a,fulfilled:o,typePrefix:e})}return t.withTypes=function(){return t},t}();function On(t){if(t.meta&&t.meta.rejectedWithValue)throw t.payload;if(t.error)throw t.error;return t.payload}function An(t){return t!==null&&typeof t=="object"&&typeof t.then=="function"}var wr="listener",Sr="completed",xr="cancelled",$o="task-"+xr,Go="task-"+Sr,Xo=wr+"-"+xr,Jo=wr+"-"+Sr;var mt="listenerMiddleware";var Yo=X(mt+"/add"),Ho=X(mt+"/removeAll"),Qo=X(mt+"/remove");var vr,Zo=typeof queueMicrotask=="function"?queueMicrotask.bind(typeof window<"u"?window:typeof global<"u"?global:globalThis):function(t){return(vr||(vr=Promise.resolve())).then(t).catch(function(e){return setTimeout(function(){throw e},0)})},Cn=function(t){return function(e){setTimeout(e,t)}},ei=typeof window<"u"&&window.requestAnimationFrame?window.requestAnimationFrame:Cn(10);nr();window.ftReduxStores||(window.ftReduxStores={});var Er=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(fe(i))return i;if(o==null)return;let a=gr({...o,reducers:(r=o.reducers)!==null&&r!==void 0?r:{}}),s=yr({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 Se,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 Te=E(M());var Ne=class extends V{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 V{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",Re=Te.FtReduxStore.get({name:Mn,initialState:{savedSearches:void 0,bookmarks:void 0}}),yt=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(),Re.actions.savedSearches(void 0)}clearMyBookmarks(){this.bookmarksService.clearCache(),Re.actions.bookmarks(void 0)}async reloadMySearches(){this.savedSearchesService.clearCache();let e=await this.savedSearchesService.listMySearches();Re.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;Re.actions.bookmarks(r)}}},ki=new yt;var bt=class{addCommand(e,r=!1){m.commands.add(e,r)}consumeCommand(e){return m.commands.consume(e)}};window.FluidTopicsAppInfoStoreService=new bt;var Or=E(M()),gt=class{highlightHtml(e,r,n){(0,Or.highlightHtml)(e,r,n)}};window.FluidTopicsHighlightHtmlService=new gt;var Ar=E(M());var wt=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 Ar.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 wt;(0,Cr.customElement)("ft-app-context")(O);var Mr=E(F()),kn=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},St=Symbol("i18nAttributes"),xt=Symbol("i18nListAttributes"),Z=Symbol("i18nProperties"),me=Symbol("i18nUnsubs");function kr(t){var e;class r extends t{constructor(){super(...arguments),this.useCustomMessageContexts=!1,this[e]=new Map}get i18nService(){return this.useCustomMessageContexts?Dt:Y}i18n(o,i,...a){var s;if(typeof o=="string")return this.i18nService.resolveMessage(o,i,...a);let c=(s=o.args)!==null&&s!==void 0?s:o.argsProvider?o.argsProvider(this):[];return this.i18nService.resolveMessage(o.context,o.key,...c)}onI18nUpdate(o){var i,a,s;(i=this[St])===null||i===void 0||i.forEach((c,u)=>{let l=this.getI18nAttributeValue(u);l&&(this[u]=this.getI18nAttributeMessage(l,c,o))}),(a=this[xt])===null||a===void 0||a.forEach((c,u)=>{let l=this.getI18nListAttributeValues(u);this[u]=l?.map(p=>this.getI18nAttributeMessage(p,c,o))}),(s=this[Z])===null||s===void 0||s.forEach((c,u)=>{c.context.toLowerCase()===o.toLowerCase()&&(this[u]=this.i18n(c))}),setTimeout(()=>this.requestUpdate(),0)}buildI18nAttributeMessage(o,i){return{...o,message:this.i18n({context:o.context,key:o.key,...i})}}getI18nAttributeMessage(o,i,a){var s;let c=!a||((s=o.context)===null||s===void 0?void 0:s.toLowerCase())===a.toLowerCase();return o.context&&o.key&&c?this.buildI18nAttributeMessage(o,i):o}update(o){var i,a,s;super.update(o),(i=this[St])===null||i===void 0||i.forEach((c,u)=>{let l=this.getI18nAttributeValue(u);l?.context&&l.key&&(o.has(u)||c.argsProvider!=null)&&(this.addI18nContextIfNeeded(l,o,u),this[u]=this.getI18nAttributeMessage(l,c))}),(a=this[xt])===null||a===void 0||a.forEach((c,u)=>{let l=this.getI18nListAttributeValues(u);(o.has(u)||c.argsProvider!=null)&&(this[u]=l?.map(p=>(this.addI18nContextIfNeeded(p,o,u),this.getI18nAttributeMessage(p,c))))}),(s=this[Z])===null||s===void 0||s.forEach((c,u)=>{c.argsProvider!=null&&(this[u]=this.i18n(c))})}getI18nAttributeValue(o){return this[o]}getI18nListAttributeValues(o){return this[o]}addI18nContextIfNeeded(o,i,a){o.context&&o.key&&i.has(a)&&this.addI18nContext(o.context)}connectedCallback(){var o,i,a,s,c,u;super.connectedCallback(),new Set([...(i=(o=this[Z])===null||o===void 0?void 0:o.values())!==null&&i!==void 0?i:[],...[...(s=(a=this[St])===null||a===void 0?void 0:a.keys())!==null&&s!==void 0?s:[]].map(l=>this.getI18nAttributeValue(l)),...[...(u=(c=this[xt])===null||c===void 0?void 0:c.keys())!==null&&u!==void 0?u:[]].flatMap(l=>this.getI18nListAttributeValues(l))].map(l=>l?.context)).forEach(l=>l&&this.addI18nMessages(l))}addI18nMessages(o,i){o=o.toLowerCase(),this[me].has(o)||this[me].set(o,this.i18nService.subscribe(o,()=>this.onI18nUpdate(o))),this.i18nService.prepareContext(o,i??{}),this.onI18nUpdate(o)}addI18nContext(o,i){this.addI18nMessages(typeof o=="string"?o:o.name,i)}disconnectedCallback(){super.disconnectedCallback(),this[me].forEach(o=>o()),this[me].clear()}}return e=me,kn([(0,Mr.property)({type:Boolean})],r.prototype,"useCustomMessageContexts",void 0),r}var Pr=class extends kr(Ue.FtLitElement){},Le=class extends kr(Ue.FtLitElementRedux){};var ye=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},D=class extends Le{constructor(){super(),this.editorMode=!1,this.addStore(m)}render(){return!this.key||!this.context?this.editorMode?"Select a context and a label key.":Fe.nothing:Fe.html`
|
|
6
6
|
<span class="ft-i18n">
|
|
7
7
|
${this.i18n(this.context,this.key,...Array.isArray(this.args)?this.args:[])}
|
|
8
8
|
</span>
|
|
9
|
-
`}update(e){var r;super.update(e),["context","key","defaultMessage"].some(n=>e.has(n))&&this.context&&this.key&&this.addI18nMessages(this.context,{[this.key]:(r=this.defaultMessage)!==null&&r!==void 0?r:""})}};
|
|
9
|
+
`}update(e){var r;super.update(e),["context","key","defaultMessage"].some(n=>e.has(n))&&this.context&&this.key&&this.addI18nMessages(this.context,{[this.key]:(r=this.defaultMessage)!==null&&r!==void 0?r:""})}};D.elementDefinitions={};D.styles=jt;ye([(0,ze.redux)()],D.prototype,"editorMode",void 0);ye([(0,Ve.property)()],D.prototype,"context",void 0);ye([(0,Ve.property)()],D.prototype,"key",void 0);ye([(0,ze.jsonProperty)([])],D.prototype,"args",void 0);ye([(0,Ve.property)()],D.prototype,"defaultMessage",void 0);var jr=class t{static build(e){return new t(e)}static fromGwt(e){return new t(e)}constructor(e){this.name=e,this.properties=new Proxy({},{get:(r,n)=>{let o=n;return i=>({context:this.name,key:o,args:typeof i=="function"?void 0:i,argsProvider:typeof i=="function"?i:void 0})}}),this.messages=new Proxy({},{get:(r,n)=>(...o)=>Y.resolveMessage(this.name,n,...o)}),this.rawMessages=new Proxy({},{get:(r,n)=>Y.resolveRawMessage(this.name,n)})}};var ca=(t,e)=>(r,n)=>{var o,i;r.constructor.createProperty(n,e??{attribute:!1,type:String});let a={...t,key:(o=t.key)!==null&&o!==void 0?o:n};r[Z]=(i=r[Z])!==null&&i!==void 0?i:new Map,r[Z].set(n,a)};(0,_r.customElement)("ft-i18n")(D);})();
|
|
10
10
|
/*! Bundled license information:
|
|
11
11
|
|
|
12
12
|
@lit/reactive-element/css-tag.js:
|