@fluid-topics/ft-reader-topic-content 1.2.35 → 1.2.37
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.
|
@@ -7,6 +7,10 @@ import "@fluid-topics/ft-icon";
|
|
|
7
7
|
export declare class FtReaderTopicContent extends FtReaderTopicComponent implements FtReaderTopicContentProperties {
|
|
8
8
|
static styles: import("lit").CSSResult[];
|
|
9
9
|
map?: FtMap;
|
|
10
|
+
private translationProfileId?;
|
|
11
|
+
private translationDestinationLanguage?;
|
|
12
|
+
private translationLoading?;
|
|
13
|
+
private translationError?;
|
|
10
14
|
scrollTarget?: FtReaderScrollTarget;
|
|
11
15
|
content?: string;
|
|
12
16
|
error?: Error;
|
|
@@ -24,4 +28,5 @@ export declare class FtReaderTopicContent extends FtReaderTopicComponent impleme
|
|
|
24
28
|
protected onStoreAvailable(): void;
|
|
25
29
|
renderTopicContent(): import("lit-html").TemplateResult<1>;
|
|
26
30
|
private is404Error;
|
|
31
|
+
private getTopicLanguage;
|
|
27
32
|
}
|
|
@@ -19,7 +19,7 @@ class FtReaderTopicContent extends FtReaderTopicComponent {
|
|
|
19
19
|
this.onContentAvailable = () => null;
|
|
20
20
|
}
|
|
21
21
|
render() {
|
|
22
|
-
var _a
|
|
22
|
+
var _a;
|
|
23
23
|
if (!this.map || (!this.error && !this.content)) {
|
|
24
24
|
return html `
|
|
25
25
|
<section class="topic-loading"></section>
|
|
@@ -29,14 +29,14 @@ class FtReaderTopicContent extends FtReaderTopicComponent {
|
|
|
29
29
|
<style>
|
|
30
30
|
@import "${(_a = this.map) === null || _a === void 0 ? void 0 : _a.contentStyles.topicStylesheetUrl}";
|
|
31
31
|
</style>
|
|
32
|
-
<section class="topic" lang="${
|
|
32
|
+
<section class="topic" lang="${this.getTopicLanguage()}">
|
|
33
33
|
${this.renderTopicContent()}
|
|
34
34
|
</section>
|
|
35
35
|
`;
|
|
36
36
|
}
|
|
37
37
|
update(props) {
|
|
38
38
|
super.update(props);
|
|
39
|
-
if (
|
|
39
|
+
if (["map", "tocNode", "translationDestinationLanguage", "translationProfileId"].some(p => props.has(p))) {
|
|
40
40
|
this.updateContent();
|
|
41
41
|
}
|
|
42
42
|
}
|
|
@@ -45,7 +45,7 @@ class FtReaderTopicContent extends FtReaderTopicComponent {
|
|
|
45
45
|
this.error = undefined;
|
|
46
46
|
this.content = undefined;
|
|
47
47
|
if (this.map && this.tocNode) {
|
|
48
|
-
(_a = this.
|
|
48
|
+
(_a = this.stateManager) === null || _a === void 0 ? void 0 : _a.fetchTopicContent(this.tocNode).then(content => this.contentPreprocessor(content || "<div class=\"empty-topic\"></div>")).then(content => this.content = content).catch(e => this.error = e);
|
|
49
49
|
}
|
|
50
50
|
}
|
|
51
51
|
contentAvailableCallback(props) {
|
|
@@ -117,7 +117,7 @@ class FtReaderTopicContent extends FtReaderTopicComponent {
|
|
|
117
117
|
this.updateContent();
|
|
118
118
|
}
|
|
119
119
|
renderTopicContent() {
|
|
120
|
-
var _a, _b, _c
|
|
120
|
+
var _a, _b, _c;
|
|
121
121
|
if (this.error) {
|
|
122
122
|
return html `
|
|
123
123
|
<div class="topic-on-error">
|
|
@@ -129,15 +129,22 @@ class FtReaderTopicContent extends FtReaderTopicComponent {
|
|
|
129
129
|
`;
|
|
130
130
|
}
|
|
131
131
|
const customClasses = (_b = (_a = this.map) === null || _a === void 0 ? void 0 : _a.contentStyles.customCssClasses.join(" ")) !== null && _b !== void 0 ? _b : "";
|
|
132
|
-
return
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
132
|
+
return this.translationLoading
|
|
133
|
+
? html `
|
|
134
|
+
<ft-skeleton></ft-skeleton>`
|
|
135
|
+
: html `
|
|
136
|
+
<div class="depth-${(_c = this.tocNode) === null || _c === void 0 ? void 0 : _c.depth} content-locale-${this.getTopicLanguage()} ${customClasses}">
|
|
137
|
+
${this.content != null ? unsafeHTML(`${this.content}`) : nothing}
|
|
138
|
+
</div>
|
|
139
|
+
`;
|
|
137
140
|
}
|
|
138
141
|
is404Error() {
|
|
139
142
|
return this.error.status === 404;
|
|
140
143
|
}
|
|
144
|
+
getTopicLanguage() {
|
|
145
|
+
var _a;
|
|
146
|
+
return (this.translationDestinationLanguage && !this.translationError) ? this.translationDestinationLanguage.code : (_a = this.map) === null || _a === void 0 ? void 0 : _a.lang;
|
|
147
|
+
}
|
|
141
148
|
}
|
|
142
149
|
FtReaderTopicContent.styles = [
|
|
143
150
|
styles,
|
|
@@ -146,6 +153,18 @@ FtReaderTopicContent.styles = [
|
|
|
146
153
|
__decorate([
|
|
147
154
|
redux()
|
|
148
155
|
], FtReaderTopicContent.prototype, "map", void 0);
|
|
156
|
+
__decorate([
|
|
157
|
+
redux({ selector: (s) => s.translation.profileId })
|
|
158
|
+
], FtReaderTopicContent.prototype, "translationProfileId", void 0);
|
|
159
|
+
__decorate([
|
|
160
|
+
redux({ selector: (s) => s.translation.destinationLanguage })
|
|
161
|
+
], FtReaderTopicContent.prototype, "translationDestinationLanguage", void 0);
|
|
162
|
+
__decorate([
|
|
163
|
+
redux({ selector: (s) => s.translation.isLoading })
|
|
164
|
+
], FtReaderTopicContent.prototype, "translationLoading", void 0);
|
|
165
|
+
__decorate([
|
|
166
|
+
redux({ selector: (s) => s.translation.isError })
|
|
167
|
+
], FtReaderTopicContent.prototype, "translationError", void 0);
|
|
149
168
|
__decorate([
|
|
150
169
|
redux()
|
|
151
170
|
], FtReaderTopicContent.prototype, "scrollTarget", void 0);
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
"use strict";(()=>{var Sn=Object.create;var Jt=Object.defineProperty;var wn=Object.getOwnPropertyDescriptor;var En=Object.getOwnPropertyNames;var An=Object.getPrototypeOf,On=Object.prototype.hasOwnProperty;var Me=(e,t)=>()=>(t||e((t={exports:{}}).exports,t),t.exports);var _n=(e,t,r,n)=>{if(t&&typeof t=="object"||typeof t=="function")for(let i of En(t))!On.call(e,i)&&i!==r&&Jt(e,i,{get:()=>t[i],enumerable:!(n=wn(t,i))||n.enumerable});return e};var y=(e,t,r)=>(r=e!=null?Sn(An(e)):{},_n(t||!e||!e.__esModule?Jt(r,"default",{value:e,enumerable:!0}):r,e));var _=Me((Oo,Zt)=>{Zt.exports=ftGlobals.wcUtils});var
|
|
1
|
+
"use strict";(()=>{var Sn=Object.create;var Jt=Object.defineProperty;var wn=Object.getOwnPropertyDescriptor;var En=Object.getOwnPropertyNames;var An=Object.getPrototypeOf,On=Object.prototype.hasOwnProperty;var Me=(e,t)=>()=>(t||e((t={exports:{}}).exports,t),t.exports);var _n=(e,t,r,n)=>{if(t&&typeof t=="object"||typeof t=="function")for(let i of En(t))!On.call(e,i)&&i!==r&&Jt(e,i,{get:()=>t[i],enumerable:!(n=wn(t,i))||n.enumerable});return e};var y=(e,t,r)=>(r=e!=null?Sn(An(e)):{},_n(t||!e||!e.__esModule?Jt(r,"default",{value:e,enumerable:!0}):r,e));var _=Me((Oo,Zt)=>{Zt.exports=ftGlobals.wcUtils});var W=Me((_o,Qt)=>{Qt.exports=ftGlobals.lit});var L=Me((To,rr)=>{rr.exports=ftGlobals.litDecorators});var ht=Me((Do,sr)=>{sr.exports=ftGlobals.litUnsafeHTML});var xn=y(_());var ne=y(W());var er=y(W()),de=y(_()),Ft={colorError:de.FtCssVariableFactory.external(de.designSystemVariables.colorError,"Design system"),fontFamily:de.FtCssVariableFactory.external(de.designSystemVariables.contentFont,"Design system")},tr=er.css`
|
|
2
2
|
.topic {
|
|
3
3
|
font-family: ${Ft.fontFamily};
|
|
4
4
|
overflow-x: auto;
|
|
@@ -21,7 +21,11 @@
|
|
|
21
21
|
white-space: pre-wrap;
|
|
22
22
|
word-break: break-word;
|
|
23
23
|
}
|
|
24
|
-
`;var dt=y(M());var or=y(_()),ir=y(M());var nr;(function(e){e.FEEDBACK="FEEDBACK",e.RATING="RATING",e.PRINT="PRINT",e.BOOKMARK="BOOKMARK",e.COLLECTIONS="COLLECTIONS",e.PERSONAL_BOOKS="PERSONAL_BOOKS"})(nr||(nr={}));var Cn=function(e,t,r,n){var i=arguments.length,o=i<3?t:n===null?n=Object.getOwnPropertyDescriptor(t,r):n,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(a=e[s])&&(o=(i<3?a(o):i>3?a(t,r,o):a(t,r))||o);return i>3&&o&&Object.defineProperty(t,r,o),o},lt=class extends Event{constructor(){super("register-ft-reader-component",{bubbles:!0,composed:!0})}},ct=Symbol("registerInterval");function Nn(e){var t;class r extends e{constructor(){super(...arguments),this[t]=0}setReaderStateManager(i){this.clearStateManager(),this.stateManager=i,this.addStore(i.store,"reader")}clearStateManager(){this.stateManager&&(this.removeStore("reader"),this.stateManager=void 0)}get service(){var i;return(i=this.stateManager)===null||i===void 0?void 0:i.service}connectedCallback(){super.connectedCallback(),this[ct]=window.setInterval(()=>this.tryToRegisterToContext(),50)}tryToRegisterToContext(){this.stateManager!=null?window.clearInterval(this[ct]):this.dispatchEvent(new lt)}disconnectedCallback(){super.disconnectedCallback(),this.clearStateManager()}}return t=ct,Cn([(0,ir.state)()],r.prototype,"stateManager",void 0),r}var Le=class extends Nn(or.FtLitElementRedux){};var ar=function(e,t,r,n){var i=arguments.length,o=i<3?t:n===null?n=Object.getOwnPropertyDescriptor(t,r):n,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(a=e[s])&&(o=(i<3?a(o):i>3?a(t,r,o):a(t,r))||o);return i>3&&o&&Object.defineProperty(t,r,o),o},pt=class extends Event{constructor(){super("register-ft-reader-topic-component",{bubbles:!0,composed:!0})}},ft=Symbol("registerInterval");function Tn(e){var t;class r extends e{constructor(){super(...arguments),this.disableContextInteractions=!1,this[t]=0}connectedCallback(){super.connectedCallback(),this[ft]=window.setInterval(()=>this.tryToRegisterToTopicContext(),50)}tryToRegisterToTopicContext(){this.tocNode!=null?window.clearInterval(this[ft]):this.dispatchEvent(new pt)}disconnectedCallback(){super.disconnectedCallback(),this.tocNode=void 0}}return t=ft,ar([(0,dt.state)()],r.prototype,"tocNode",void 0),ar([(0,dt.state)()],r.prototype,"disableContextInteractions",void 0),r}var De=class extends Tn(Le){};var gn=y(ht()),U=y(_()),ne=y(M());var dr=y(_());var Se=y(B()),oe=y(M()),lr=y(_()),fr=y(ht());var je;(function(e){e.ADD_TO_PBK="",e.ALERT="",e.ADD_ALERT="",e.BACK_TO_SEARCH="",e.ADD_BOOKMARK="",e.BOOKMARK="",e.BOOKS="",e.MENU="",e.DOWNLOAD="",e.EDIT="",e.FEEDBACK="",e.HOME="",e.MODIFY_PBK="",e.SCHEDULED="",e.SEARCH="",e.EXPORT="",e.TOC="",e.WRITE_UGC="",e.TRASH="",e.USER="",e.EXTLINK="",e.CALENDAR="",e.OFFLINE="",e.BOOK="",e.DOWNLOAD_PLAIN="",e.CHECK="",e.STAR_PLAIN="",e.TOPICS="",e.DISC="",e.CIRCLE="",e.SHARED="",e.SORT_UNSORTED="",e.SORT_UP="",e.SORT_DOWN="",e.WORKING="",e.CLOSE="",e.ZOOM_OUT="",e.ZOOM_IN="",e.ZOOM_REALSIZE="",e.ZOOM_FULLSCREEN="",e.ADMIN_RESTRICTED="",e.ADMIN="",e.ADMIN_KHUB="",e.ADMIN_THEME="",e.ADMIN_USERS="",e.WARNING="",e.CONTEXT="",e.SEARCH_HOME="",e.STEPS="",e.ICON_EXPAND="",e.ICON_COLLAPSE="",e.INFO="",e.MINUS_PLAIN="",e.PLUS_PLAIN="",e.FACET_HAS_DESCENDANT="",e.TRIANGLE_BOTTOM="",e.TRIANGLE_LEFT="",e.TRIANGLE_RIGHT="",e.TRIANGLE_TOP="",e.THIN_ARROW="",e.SIGN_IN="",e.LOGOUT="",e.TRANSLATE="",e.CLOSE_PLAIN="",e.CHECK_PLAIN="",e.ARTICLE="",e.COLUMNS="",e.ANALYTICS="",e.COLLECTIONS="",e.ARROW_DOWN="",e.ARROW_LEFT="",e.ARROW_RIGHT="",e.ARROW_UP="",e.SEARCH_IN_PUBLICATION="",e.COPY_TO_CLIPBOARD="",e.SHARED_PBK="",e.ATTACHMENTS="",e.STRIPE_ARROW_LEFT="",e.STRIPE_ARROW_RIGHT="",e.FILTERS="",e.DOT="",e.MINUS="",e.PLUS="",e.MAILS_AND_NOTIFICATIONS="",e.SAVE="",e.LOCKER="",e.ADMIN_INTEGRATION="",e.SYNC="",e.TAG="",e.BOOK_PLAIN="",e.UPLOAD="",e.ONLINE="",e.TAG_PLAIN="",e.ACCOUNT_SETTINGS="",e.PRINT="",e.DEFAULT_ROLES="",e.SHORTCUT_MENU="",e.RELATIVES_PLAIN="",e.RELATIVES="",e.PAUSE="",e.PLAY="",e.ADMIN_PORTAL="",e.STAR="",e.THUMBS_DOWN="",e.THUMBS_DOWN_PLAIN="",e.THUMBS_UP="",e.THUMBS_UP_PLAIN="",e.FEEDBACK_PLAIN="",e.RATE_PLAIN="",e.RATE="",e.OFFLINE_SETTINGS="",e.MY_COLLECTIONS="",e.THIN_ARROW_LEFT="",e.THIN_ARROW_RIGHT="",e.RESET="",e.MY_LIBRARY="",e.UNSTRUCTURED_DOC="",e.CONTEXTUAL="",e.THIN_ARROW_UP="",e.ARROW_RIGHT_TO_LINE="",e.DESKTOP="",e.TABLET_LANDSCAPE="",e.TABLET_PORTRAIT="",e.MOBILE_LANDSCAPE="",e.MOBILE_PORTRAIT="",e.DIAGRAM_SUNBURST="",e.DIAGRAM_SANKEY="",e.COMMENT_QUESTION="",e.COMMENT_QUESTION_PLAIN="",e.MESSAGE_BOT="",e.CHART_SIMPLE="",e.BARS_PROGRESS="",e.BOOK_OPEN_GEAR="",e.BOOK_OPEN_GEAR_SLASH="",e.LINE_CHART="",e.STACKED_CHART="",e.CHART_BAR_STACKED="",e.CHART_BAR_GROUPED="",e.EYE_SLASH="",e.X_MARK="",e.EXPAND_WIDE="",e.PIP="",e.PIP_WIDE="",e.LIFE_RING="",e.GLOBE="",e.PIGGY_BANK="",e.EXTLINK_LIGHT="",e.CLONE="",e.CLONE_LINK_SIMPLE="",e.CHART_BAR_NORMALIZED="",e.CONSUMER="",e.OCTAGON_XMARK="",e.HOURGLASS_HALF="",e.CLOCK="",e.CLOCK_THREE="",e.CALENDAR_DAY="",e.COMPUTER_MOUSE_MAGNIFYING_GLASS="",e.WAND_MAGIC_SPARKLES="",e.PAPER_PLANE="",e.CIRCLE_STOP="",e.ARROW_ROTATE_RIGHT="",e.ARROWS_ROTATE="",e.ALIGN_RIGHT="",e.FORMAT_CLEAR="",e.ALIGN_CENTER="",e.ALIGN_LEFT="",e.PALETTE="",e.BOLD="",e.ITALIC="",e.UNDERLINE="",e.STRIKETHROUGH="",e.LINK_SIMPLE_SLASH="",e.LINK_SIMPLE="",e.ROUTE="",e.CIRCLE_USER_SLASH="",e.CIRCLE_USER_CHECK="",e.LIST_MAGNIFYING_GLASS="",e.MEDAL="",e.THUMBS_UP_THUMBS_DOWN_SOLID="",e.ARROW_TURN_DOWN_RIGHT="",e.FLASK="",e.LOCK_KEYHOLE_OPEN_SOLID="",e.HOURGLASS_END="",e.CIRCLE_QUESTION="",e.GRIP_LINES_SOLID="",e.TRANSLATE_SPARKLE_SOLID="",e.CODE="",e.ARROW_UP_RIGHT_AND_ARROW_DOWN_LEFT_FROM_CENTER="",e.PAPER_PLANE_SLASH="",e.COMPRESS="",e.EXPAND="",e.ARROW_ROTATE_LEFT="",e.EYE="",e.SHARE="󨃱"})(je||(je={}));var p;(function(e){e.UNKNOWN="",e.ABW="",e.AUDIO="",e.AVI="",e.CHM="",e.CODE="",e.CSV="",e.DITA="",e.EPUB="",e.EXCEL="",e.FLAC="",e.GIF="",e.GZIP="",e.HTML="",e.IMAGE="",e.JPEG="",e.JSON="",e.M4A="",e.MOV="",e.MP3="",e.MP4="",e.OGG="",e.PDF="",e.PNG="",e.POWERPOINT="",e.RAR="",e.STP="",e.TEXT="",e.VIDEO="",e.WAV="",e.WMA="",e.WORD="",e.XML="",e.YAML="",e.ZIP=""})(p||(p={}));var jo=new Map([...["abw"].map(e=>[e,p.ABW]),...["3gp","act","aiff","aac","amr","au","awb","dct","dss","dvf","gsm","iklax","ivs","mmf","mpc","msv","opus","ra","rm","raw","sln","tta","vox","wv"].map(e=>[e,p.AUDIO]),...["avi"].map(e=>[e,p.AVI]),...["chm","xhs"].map(e=>[e,p.CHM]),...["java","py","php","php3","php4","php5","js","javascript","rb","rbw","c","cpp","cxx","h","hh","hpp","hxx","sh","bash","zsh","tcsh","ksh","csh","vb","scala","pl","prl","perl","groovy","ceylon","aspx","jsp","scpt","applescript","bas","bat","lua","jsp","mk","cmake","css","sass","less","m","mm","xcodeproj"].map(e=>[e,p.CODE]),...["csv"].map(e=>[e,p.CSV]),...["dita","ditamap","ditaval"].map(e=>[e,p.DITA]),...["epub"].map(e=>[e,p.EPUB]),...["xls","xlt","xlm","xlsx","xlsm","xltx","xltm","xlsb","xla","xlam","xll","xlw"].map(e=>[e,p.EXCEL]),...["flac"].map(e=>[e,p.FLAC]),...["gif"].map(e=>[e,p.GIF]),...["gzip","x-gzip","giz","gz","tgz"].map(e=>[e,p.GZIP]),...["html","htm","xhtml"].map(e=>[e,p.HTML]),...["ai","vml","xps","img","cpt","psd","psp","xcf","svg","svg+xml","bmp","bpg","ppm","pgm","pbm","pnm","rif","tif","tiff","webp","wmf","ico"].map(e=>[e,p.IMAGE]),...["jpeg","jpg","jpe"].map(e=>[e,p.JPEG]),...["json"].map(e=>[e,p.JSON]),...["m4a","m4p"].map(e=>[e,p.M4A]),...["mov","qt"].map(e=>[e,p.MOV]),...["mp3"].map(e=>[e,p.MP3]),...["mp4","m4v"].map(e=>[e,p.MP4]),...["ogg","oga"].map(e=>[e,p.OGG]),...["pdf","ps"].map(e=>[e,p.PDF]),...["png"].map(e=>[e,p.PNG]),...["ppt","pot","pps","pptx","pptm","potx","potm","ppam","ppsx","ppsm","sldx","sldm"].map(e=>[e,p.POWERPOINT]),...["rar"].map(e=>[e,p.RAR]),...["stp"].map(e=>[e,p.STP]),...["txt","rtf","md","mdown"].map(e=>[e,p.TEXT]),...["webm","mkv","flv","vob","ogv","ogg","drc","mng","wmv","yuv","rm","rmvb","asf","mpg","mp2","mpeg","mpe","mpv","m2v","svi","3gp","3g2","mxf","roq","nsv"].map(e=>[e,p.VIDEO]),...["wav"].map(e=>[e,p.WAV]),...["wma"].map(e=>[e,p.WMA]),...["doc","dot","docx","docm","dotx","dotm","docb"].map(e=>[e,p.WORD]),...["xml","xsl","rdf"].map(e=>[e,p.XML]),...["yaml","yml","x-yaml"].map(e=>[e,p.YAML]),...["zip"].map(e=>[e,p.ZIP])]);var ko={[p.ABW]:"#91ABC6",[p.AUDIO]:"#1795E3",[p.AVI]:"#E63324",[p.CHM]:"#71C3EB",[p.CODE]:"#71C3EB",[p.CSV]:"#1F7345",[p.DITA]:"#71C3EB",[p.EPUB]:"#85B926",[p.EXCEL]:"#1F7345",[p.FLAC]:"#1795E3",[p.GIF]:"#59B031",[p.GZIP]:"#F8AB36",[p.HTML]:"#71C3EB",[p.IMAGE]:"#59B031",[p.JPEG]:"#59B031",[p.JSON]:"#71C3EB",[p.M4A]:"#1795E3",[p.MOV]:"#E63324",[p.MP3]:"#1795E3",[p.MP4]:"#E63324",[p.OGG]:"#1795E3",[p.PDF]:"#E44948",[p.PNG]:"#59B031",[p.POWERPOINT]:"#B54A2B",[p.RAR]:"#F8AB36",[p.STP]:"#3764B1",[p.TEXT]:"#3162AB",[p.UNKNOWN]:"#999999",[p.VIDEO]:"#E63324",[p.WAV]:"#1795E3",[p.WMA]:"#1795E3",[p.WORD]:"#3162AB",[p.XML]:"#71C3EB",[p.YAML]:"#71C3EB",[p.ZIP]:"#F8AB36"};var ur=y(B()),H=y(_()),K={size:H.FtCssVariableFactory.create("--ft-icon-font-size","","SIZE","24px"),fluidTopicsFontFamily:H.FtCssVariableFactory.extend("--ft-icon-fluid-topics-font-family","",H.FtCssVariableFactory.create("--ft-icon-font-family","","UNKNOWN","ft-icons")),fileFormatFontFamily:H.FtCssVariableFactory.extend("--ft-icon-file-format-font-family","",H.FtCssVariableFactory.create("--ft-icon-font-family","","UNKNOWN","ft-mime")),materialFontFamily:H.FtCssVariableFactory.extend("--ft-icon-material-font-family","",H.FtCssVariableFactory.create("--ft-icon-font-family","","UNKNOWN","Material Icons")),verticalAlign:H.FtCssVariableFactory.create("--ft-icon-vertical-align","","UNKNOWN","unset")},cr=ur.css`
|
|
24
|
+
|
|
25
|
+
ft-skeleton {
|
|
26
|
+
height: 100px;
|
|
27
|
+
}
|
|
28
|
+
`;var dt=y(L());var or=y(_()),ir=y(L());var nr;(function(e){e.FEEDBACK="FEEDBACK",e.RATING="RATING",e.PRINT="PRINT",e.BOOKMARK="BOOKMARK",e.COLLECTIONS="COLLECTIONS",e.PERSONAL_BOOKS="PERSONAL_BOOKS"})(nr||(nr={}));var Cn=function(e,t,r,n){var i=arguments.length,o=i<3?t:n===null?n=Object.getOwnPropertyDescriptor(t,r):n,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(a=e[s])&&(o=(i<3?a(o):i>3?a(t,r,o):a(t,r))||o);return i>3&&o&&Object.defineProperty(t,r,o),o},lt=class extends Event{constructor(){super("register-ft-reader-component",{bubbles:!0,composed:!0})}},ct=Symbol("registerInterval");function Tn(e){var t;class r extends e{constructor(){super(...arguments),this[t]=0}setReaderStateManager(i){this.clearStateManager(),this.stateManager=i,this.addStore(i.store,"reader")}clearStateManager(){this.stateManager&&(this.removeStore("reader"),this.stateManager=void 0)}get service(){var i;return(i=this.stateManager)===null||i===void 0?void 0:i.service}connectedCallback(){super.connectedCallback(),this[ct]=window.setInterval(()=>this.tryToRegisterToContext(),50)}tryToRegisterToContext(){this.stateManager!=null?window.clearInterval(this[ct]):this.dispatchEvent(new lt)}disconnectedCallback(){super.disconnectedCallback(),this.clearStateManager()}}return t=ct,Cn([(0,ir.state)()],r.prototype,"stateManager",void 0),r}var Le=class extends Tn(or.FtLitElementRedux){};var ar=function(e,t,r,n){var i=arguments.length,o=i<3?t:n===null?n=Object.getOwnPropertyDescriptor(t,r):n,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(a=e[s])&&(o=(i<3?a(o):i>3?a(t,r,o):a(t,r))||o);return i>3&&o&&Object.defineProperty(t,r,o),o},pt=class extends Event{constructor(){super("register-ft-reader-topic-component",{bubbles:!0,composed:!0})}},ft=Symbol("registerInterval");function Nn(e){var t;class r extends e{constructor(){super(...arguments),this.disableContextInteractions=!1,this[t]=0}connectedCallback(){super.connectedCallback(),this[ft]=window.setInterval(()=>this.tryToRegisterToTopicContext(),50)}tryToRegisterToTopicContext(){this.tocNode!=null?window.clearInterval(this[ft]):this.dispatchEvent(new pt)}disconnectedCallback(){super.disconnectedCallback(),this.tocNode=void 0}}return t=ft,ar([(0,dt.state)()],r.prototype,"tocNode",void 0),ar([(0,dt.state)()],r.prototype,"disableContextInteractions",void 0),r}var De=class extends Nn(Le){};var bn=y(ht()),R=y(_()),oe=y(L());var dr=y(_());var Se=y(W()),ie=y(L()),lr=y(_()),fr=y(ht());var ke;(function(e){e.ADD_TO_PBK="",e.ALERT="",e.ADD_ALERT="",e.BACK_TO_SEARCH="",e.ADD_BOOKMARK="",e.BOOKMARK="",e.BOOKS="",e.MENU="",e.DOWNLOAD="",e.EDIT="",e.FEEDBACK="",e.HOME="",e.MODIFY_PBK="",e.SCHEDULED="",e.SEARCH="",e.EXPORT="",e.TOC="",e.WRITE_UGC="",e.TRASH="",e.USER="",e.EXTLINK="",e.CALENDAR="",e.OFFLINE="",e.BOOK="",e.DOWNLOAD_PLAIN="",e.CHECK="",e.STAR_PLAIN="",e.TOPICS="",e.DISC="",e.CIRCLE="",e.SHARED="",e.SORT_UNSORTED="",e.SORT_UP="",e.SORT_DOWN="",e.WORKING="",e.CLOSE="",e.ZOOM_OUT="",e.ZOOM_IN="",e.ZOOM_REALSIZE="",e.ZOOM_FULLSCREEN="",e.ADMIN_RESTRICTED="",e.ADMIN="",e.ADMIN_KHUB="",e.ADMIN_THEME="",e.ADMIN_USERS="",e.WARNING="",e.CONTEXT="",e.SEARCH_HOME="",e.STEPS="",e.ICON_EXPAND="",e.ICON_COLLAPSE="",e.INFO="",e.MINUS_PLAIN="",e.PLUS_PLAIN="",e.FACET_HAS_DESCENDANT="",e.TRIANGLE_BOTTOM="",e.TRIANGLE_LEFT="",e.TRIANGLE_RIGHT="",e.TRIANGLE_TOP="",e.THIN_ARROW="",e.SIGN_IN="",e.LOGOUT="",e.TRANSLATE="",e.CLOSE_PLAIN="",e.CHECK_PLAIN="",e.ARTICLE="",e.COLUMNS="",e.ANALYTICS="",e.COLLECTIONS="",e.ARROW_DOWN="",e.ARROW_LEFT="",e.ARROW_RIGHT="",e.ARROW_UP="",e.SEARCH_IN_PUBLICATION="",e.COPY_TO_CLIPBOARD="",e.SHARED_PBK="",e.ATTACHMENTS="",e.STRIPE_ARROW_LEFT="",e.STRIPE_ARROW_RIGHT="",e.FILTERS="",e.DOT="",e.MINUS="",e.PLUS="",e.MAILS_AND_NOTIFICATIONS="",e.SAVE="",e.LOCKER="",e.ADMIN_INTEGRATION="",e.SYNC="",e.TAG="",e.BOOK_PLAIN="",e.UPLOAD="",e.ONLINE="",e.TAG_PLAIN="",e.ACCOUNT_SETTINGS="",e.PRINT="",e.DEFAULT_ROLES="",e.SHORTCUT_MENU="",e.RELATIVES_PLAIN="",e.RELATIVES="",e.PAUSE="",e.PLAY="",e.ADMIN_PORTAL="",e.STAR="",e.THUMBS_DOWN="",e.THUMBS_DOWN_PLAIN="",e.THUMBS_UP="",e.THUMBS_UP_PLAIN="",e.FEEDBACK_PLAIN="",e.RATE_PLAIN="",e.RATE="",e.OFFLINE_SETTINGS="",e.MY_COLLECTIONS="",e.THIN_ARROW_LEFT="",e.THIN_ARROW_RIGHT="",e.RESET="",e.MY_LIBRARY="",e.UNSTRUCTURED_DOC="",e.CONTEXTUAL="",e.THIN_ARROW_UP="",e.ARROW_RIGHT_TO_LINE="",e.DESKTOP="",e.TABLET_LANDSCAPE="",e.TABLET_PORTRAIT="",e.MOBILE_LANDSCAPE="",e.MOBILE_PORTRAIT="",e.DIAGRAM_SUNBURST="",e.DIAGRAM_SANKEY="",e.COMMENT_QUESTION="",e.COMMENT_QUESTION_PLAIN="",e.MESSAGE_BOT="",e.CHART_SIMPLE="",e.BARS_PROGRESS="",e.BOOK_OPEN_GEAR="",e.BOOK_OPEN_GEAR_SLASH="",e.LINE_CHART="",e.STACKED_CHART="",e.CHART_BAR_STACKED="",e.CHART_BAR_GROUPED="",e.EYE_SLASH="",e.X_MARK="",e.EXPAND_WIDE="",e.PIP="",e.PIP_WIDE="",e.LIFE_RING="",e.GLOBE="",e.PIGGY_BANK="",e.EXTLINK_LIGHT="",e.CLONE="",e.CLONE_LINK_SIMPLE="",e.CHART_BAR_NORMALIZED="",e.CONSUMER="",e.OCTAGON_XMARK="",e.HOURGLASS_HALF="",e.CLOCK="",e.CLOCK_THREE="",e.CALENDAR_DAY="",e.COMPUTER_MOUSE_MAGNIFYING_GLASS="",e.WAND_MAGIC_SPARKLES="",e.PAPER_PLANE="",e.CIRCLE_STOP="",e.ARROW_ROTATE_RIGHT="",e.ARROWS_ROTATE="",e.ALIGN_RIGHT="",e.FORMAT_CLEAR="",e.ALIGN_CENTER="",e.ALIGN_LEFT="",e.PALETTE="",e.BOLD="",e.ITALIC="",e.UNDERLINE="",e.STRIKETHROUGH="",e.LINK_SIMPLE_SLASH="",e.LINK_SIMPLE="",e.ROUTE="",e.CIRCLE_USER_SLASH="",e.CIRCLE_USER_CHECK="",e.LIST_MAGNIFYING_GLASS="",e.MEDAL="",e.THUMBS_UP_THUMBS_DOWN_SOLID="",e.ARROW_TURN_DOWN_RIGHT="",e.FLASK="",e.LOCK_KEYHOLE_OPEN_SOLID="",e.HOURGLASS_END="",e.CIRCLE_QUESTION="",e.GRIP_LINES_SOLID="",e.TRANSLATE_SPARKLE_SOLID="",e.CODE="",e.ARROW_UP_RIGHT_AND_ARROW_DOWN_LEFT_FROM_CENTER="",e.PAPER_PLANE_SLASH="",e.COMPRESS="",e.EXPAND="",e.ARROW_ROTATE_LEFT="",e.EYE="",e.SHARE="󨃱"})(ke||(ke={}));var p;(function(e){e.UNKNOWN="",e.ABW="",e.AUDIO="",e.AVI="",e.CHM="",e.CODE="",e.CSV="",e.DITA="",e.EPUB="",e.EXCEL="",e.FLAC="",e.GIF="",e.GZIP="",e.HTML="",e.IMAGE="",e.JPEG="",e.JSON="",e.M4A="",e.MOV="",e.MP3="",e.MP4="",e.OGG="",e.PDF="",e.PNG="",e.POWERPOINT="",e.RAR="",e.STP="",e.TEXT="",e.VIDEO="",e.WAV="",e.WMA="",e.WORD="",e.XML="",e.YAML="",e.ZIP=""})(p||(p={}));var ko=new Map([...["abw"].map(e=>[e,p.ABW]),...["3gp","act","aiff","aac","amr","au","awb","dct","dss","dvf","gsm","iklax","ivs","mmf","mpc","msv","opus","ra","rm","raw","sln","tta","vox","wv"].map(e=>[e,p.AUDIO]),...["avi"].map(e=>[e,p.AVI]),...["chm","xhs"].map(e=>[e,p.CHM]),...["java","py","php","php3","php4","php5","js","javascript","rb","rbw","c","cpp","cxx","h","hh","hpp","hxx","sh","bash","zsh","tcsh","ksh","csh","vb","scala","pl","prl","perl","groovy","ceylon","aspx","jsp","scpt","applescript","bas","bat","lua","jsp","mk","cmake","css","sass","less","m","mm","xcodeproj"].map(e=>[e,p.CODE]),...["csv"].map(e=>[e,p.CSV]),...["dita","ditamap","ditaval"].map(e=>[e,p.DITA]),...["epub"].map(e=>[e,p.EPUB]),...["xls","xlt","xlm","xlsx","xlsm","xltx","xltm","xlsb","xla","xlam","xll","xlw"].map(e=>[e,p.EXCEL]),...["flac"].map(e=>[e,p.FLAC]),...["gif"].map(e=>[e,p.GIF]),...["gzip","x-gzip","giz","gz","tgz"].map(e=>[e,p.GZIP]),...["html","htm","xhtml"].map(e=>[e,p.HTML]),...["ai","vml","xps","img","cpt","psd","psp","xcf","svg","svg+xml","bmp","bpg","ppm","pgm","pbm","pnm","rif","tif","tiff","webp","wmf","ico"].map(e=>[e,p.IMAGE]),...["jpeg","jpg","jpe"].map(e=>[e,p.JPEG]),...["json"].map(e=>[e,p.JSON]),...["m4a","m4p"].map(e=>[e,p.M4A]),...["mov","qt"].map(e=>[e,p.MOV]),...["mp3"].map(e=>[e,p.MP3]),...["mp4","m4v"].map(e=>[e,p.MP4]),...["ogg","oga"].map(e=>[e,p.OGG]),...["pdf","ps"].map(e=>[e,p.PDF]),...["png"].map(e=>[e,p.PNG]),...["ppt","pot","pps","pptx","pptm","potx","potm","ppam","ppsx","ppsm","sldx","sldm"].map(e=>[e,p.POWERPOINT]),...["rar"].map(e=>[e,p.RAR]),...["stp"].map(e=>[e,p.STP]),...["txt","rtf","md","mdown"].map(e=>[e,p.TEXT]),...["webm","mkv","flv","vob","ogv","ogg","drc","mng","wmv","yuv","rm","rmvb","asf","mpg","mp2","mpeg","mpe","mpv","m2v","svi","3gp","3g2","mxf","roq","nsv"].map(e=>[e,p.VIDEO]),...["wav"].map(e=>[e,p.WAV]),...["wma"].map(e=>[e,p.WMA]),...["doc","dot","docx","docm","dotx","dotm","docb"].map(e=>[e,p.WORD]),...["xml","xsl","rdf"].map(e=>[e,p.XML]),...["yaml","yml","x-yaml"].map(e=>[e,p.YAML]),...["zip"].map(e=>[e,p.ZIP])]);var jo={[p.ABW]:"#91ABC6",[p.AUDIO]:"#1795E3",[p.AVI]:"#E63324",[p.CHM]:"#71C3EB",[p.CODE]:"#71C3EB",[p.CSV]:"#1F7345",[p.DITA]:"#71C3EB",[p.EPUB]:"#85B926",[p.EXCEL]:"#1F7345",[p.FLAC]:"#1795E3",[p.GIF]:"#59B031",[p.GZIP]:"#F8AB36",[p.HTML]:"#71C3EB",[p.IMAGE]:"#59B031",[p.JPEG]:"#59B031",[p.JSON]:"#71C3EB",[p.M4A]:"#1795E3",[p.MOV]:"#E63324",[p.MP3]:"#1795E3",[p.MP4]:"#E63324",[p.OGG]:"#1795E3",[p.PDF]:"#E44948",[p.PNG]:"#59B031",[p.POWERPOINT]:"#B54A2B",[p.RAR]:"#F8AB36",[p.STP]:"#3764B1",[p.TEXT]:"#3162AB",[p.UNKNOWN]:"#999999",[p.VIDEO]:"#E63324",[p.WAV]:"#1795E3",[p.WMA]:"#1795E3",[p.WORD]:"#3162AB",[p.XML]:"#71C3EB",[p.YAML]:"#71C3EB",[p.ZIP]:"#F8AB36"};var ur=y(W()),z=y(_()),H={size:z.FtCssVariableFactory.create("--ft-icon-font-size","","SIZE","24px"),fluidTopicsFontFamily:z.FtCssVariableFactory.extend("--ft-icon-fluid-topics-font-family","",z.FtCssVariableFactory.create("--ft-icon-font-family","","UNKNOWN","ft-icons")),fileFormatFontFamily:z.FtCssVariableFactory.extend("--ft-icon-file-format-font-family","",z.FtCssVariableFactory.create("--ft-icon-font-family","","UNKNOWN","ft-mime")),materialFontFamily:z.FtCssVariableFactory.extend("--ft-icon-material-font-family","",z.FtCssVariableFactory.create("--ft-icon-font-family","","UNKNOWN","Material Icons")),verticalAlign:z.FtCssVariableFactory.create("--ft-icon-vertical-align","","UNKNOWN","unset")},cr=ur.css`
|
|
25
29
|
:host, i.ft-icon {
|
|
26
30
|
display: inline-flex;
|
|
27
31
|
align-items: center;
|
|
@@ -30,14 +34,14 @@
|
|
|
30
34
|
}
|
|
31
35
|
|
|
32
36
|
:host {
|
|
33
|
-
width: ${
|
|
34
|
-
height: ${
|
|
37
|
+
width: ${H.size};
|
|
38
|
+
height: ${H.size};
|
|
35
39
|
}
|
|
36
40
|
|
|
37
41
|
i.ft-icon {
|
|
38
42
|
width: 100%;
|
|
39
43
|
height: 100%;
|
|
40
|
-
font-size: ${
|
|
44
|
+
font-size: ${H.size};
|
|
41
45
|
line-height: 1;
|
|
42
46
|
font-weight: normal;
|
|
43
47
|
text-transform: none;
|
|
@@ -48,61 +52,62 @@
|
|
|
48
52
|
text-rendering: auto;
|
|
49
53
|
-webkit-font-smoothing: antialiased;
|
|
50
54
|
-moz-osx-font-smoothing: grayscale;
|
|
51
|
-
vertical-align: ${
|
|
55
|
+
vertical-align: ${H.verticalAlign};
|
|
52
56
|
}
|
|
53
57
|
|
|
54
58
|
i.ft-icon.ft-icon--fluid-topics {
|
|
55
|
-
font-family: ${
|
|
59
|
+
font-family: ${H.fluidTopicsFontFamily}, ft-icons, fticons, sans-serif;
|
|
56
60
|
|
|
57
61
|
/* Ugly fix because font is broken */
|
|
58
|
-
font-size: calc(0.75 * ${
|
|
59
|
-
line-height: ${
|
|
62
|
+
font-size: calc(0.75 * ${H.size});
|
|
63
|
+
line-height: ${H.size};
|
|
60
64
|
position: relative;
|
|
61
65
|
top: -4%;
|
|
62
66
|
justify-content: center;
|
|
63
67
|
}
|
|
64
68
|
|
|
65
69
|
.ft-icon--file-format {
|
|
66
|
-
font-family: ${
|
|
70
|
+
font-family: ${H.fileFormatFontFamily}, ft-mime, sans-serif;
|
|
67
71
|
}
|
|
68
72
|
|
|
69
73
|
.ft-icon--material {
|
|
70
|
-
font-family: ${
|
|
74
|
+
font-family: ${H.materialFontFamily}, "Material Icons", sans-serif;
|
|
71
75
|
}
|
|
72
|
-
`;var
|
|
76
|
+
`;var X;(function(e){e.fluid_topics="fluid-topics",e.file_format="file-format",e.material="material"})(X||(X={}));var je=function(e,t,r,n){var i=arguments.length,o=i<3?t:n===null?n=Object.getOwnPropertyDescriptor(t,r):n,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(a=e[s])&&(o=(i<3?a(o):i>3?a(t,r,o):a(t,r))||o);return i>3&&o&&Object.defineProperty(t,r,o),o},V=class extends lr.FtLitElement{constructor(){super(...arguments),this.resolvedIcon=Se.nothing}render(){let t=this.variant&&Object.values(X).includes(this.variant)?this.variant:X.fluid_topics,r=t!==X.material||!!this.value;return Se.html`
|
|
73
77
|
<i class="ft-icon ft-icon--${t}" part="icon icon-${t}">
|
|
74
78
|
${(0,fr.unsafeHTML)(this.resolvedIcon)}
|
|
75
79
|
<slot ?hidden=${r}></slot>
|
|
76
80
|
</i>
|
|
77
|
-
`}get textContent(){var t,r;return(r=(t=this.slottedContent)===null||t===void 0?void 0:t.assignedNodes().map(n=>n.textContent).join("").trim())!==null&&r!==void 0?r:""}update(t){super.update(t),["value","variant"].some(r=>t.has(r))&&this.resolveIcon()}resolveIcon(){var t,r;let n=this.value||this.textContent;switch(this.variant){case
|
|
78
|
-
`;var ot=y(_());var hn=y(_());var
|
|
79
|
-
`;var Ie=y(_()),Rn="ft-app-info",vt=class extends CustomEvent{constructor(t){super("authentication-change",{detail:t})}},Pn={session:(e,t)=>{(0,Ie.deepEqual)(e.session,t.payload)||(e.session=t.payload,setTimeout(()=>
|
|
81
|
+
`}get textContent(){var t,r;return(r=(t=this.slottedContent)===null||t===void 0?void 0:t.assignedNodes().map(n=>n.textContent).join("").trim())!==null&&r!==void 0?r:""}update(t){super.update(t),["value","variant"].some(r=>t.has(r))&&this.resolveIcon()}resolveIcon(){var t,r;let n=this.value||this.textContent;switch(this.variant){case X.file_format:this.resolvedIcon=(t=p[n.replace("-","_").toUpperCase()])!==null&&t!==void 0?t:n;break;case X.material:this.resolvedIcon=this.value||Se.nothing;break;default:this.resolvedIcon=(r=ke[n.replace("-","_").toUpperCase()])!==null&&r!==void 0?r:n;break}}firstUpdated(t){super.firstUpdated(t),setTimeout(()=>this.resolveIcon())}};V.elementDefinitions={};V.styles=cr;je([(0,ie.property)()],V.prototype,"variant",void 0);je([(0,ie.property)()],V.prototype,"value",void 0);je([(0,ie.state)()],V.prototype,"resolvedIcon",void 0);je([(0,ie.query)("slot")],V.prototype,"slottedContent",void 0);(0,dr.customElement)("ft-icon")(V);var gn=y(_());var it=y(W()),at=y(L()),st=y(_());var pr=y(W());var hr=pr.css`
|
|
82
|
+
`;var ot=y(_());var hn=y(_());var br=y(W()),P=y(L()),I=y(_());var vr=y(W());var mr=vr.css`
|
|
83
|
+
`;var Ie=y(_()),Rn="ft-app-info",vt=class extends CustomEvent{constructor(t){super("authentication-change",{detail:t})}},Pn={session:(e,t)=>{(0,Ie.deepEqual)(e.session,t.payload)||(e.session=t.payload,setTimeout(()=>g.dispatchEvent(new vt(t.payload)),0))}},g=Ie.FtReduxStore.get({name:Rn,reducers:Pn,initialState:{baseUrl:void 0,apiIntegrationIdentifier:void 0,uiLocale:document.documentElement.lang||"en-US",availableUiLocales:[],defaultLocales:void 0,searchInAllLanguagesAllowed:!1,metadataConfiguration:void 0,privacyPolicyConfiguration:void 0,editorMode:!1,noCustom:!1,noCustomComponent:!1,session:void 0,openExternalDocumentInNewTab:!1,navigatorOnline:!0,forcedOffline:!1}});var J=y(_());var mt=y(_());var ae=class e{static get(t){let{baseUrl:r,apiIntegrationIdentifier:n}=g.getState(),i=t??n;if(r&&i&&window.fluidtopics)return new window.fluidtopics.FluidTopicsApi(r,i,!0)}static await(t){return new Promise(r=>{let n=e.get(t);if(n)r(n);else{let i=g.subscribe(()=>{n=e.get(t),n&&(i(),r(n))})}})}};var we=class{constructor(t){this.overrideApi=t}get api(){var t;return(t=this.overrideApi)!==null&&t!==void 0?t:ae.get()}get awaitApi(){return this.overrideApi?Promise.resolve(this.overrideApi):ae.await()}};var Y=class extends we{constructor(t=!0,r){var n;super(r);let i=this.constructor;i.commonCache=(n=i.commonCache)!==null&&n!==void 0?n:new mt.CacheRegistry,this.cache=t?i.commonCache:new mt.CacheRegistry}clearCache(){this.cache.clearAll()}};var yr,Mn=Symbol("clearAfterUnitTest"),Ue=class extends Y{constructor(t){super(),this.messageContextProvider=t,this.defaultMessages={},this.listeners={},this.currentUiLocale="",this[yr]=()=>{this.defaultMessages={},this.cache=new J.CacheRegistry,this.listeners={}},this.currentUiLocale=g.getState().uiLocale,g.subscribe(()=>this.clearWhenUiLocaleChanges())}clearWhenUiLocaleChanges(){let{uiLocale:t}=g.getState();this.currentUiLocale!==t&&(this.currentUiLocale=t,this.cache.clearAll(),this.notifyAll())}addContext(t){let r=t.name.toLowerCase();this.cache.setFinal(r,t),this.notify(r)}getAllContexts(){return this.cache.resolvedValues()}async prepareContext(t,r){var n;if(t=t.toLowerCase(),Object.keys(r).length>0){let i={...(n=this.defaultMessages[t])!==null&&n!==void 0?n:{},...r};(0,J.deepEqual)(this.defaultMessages[t],i)||(this.defaultMessages[t]=i,await this.notify(t))}await this.fetchContext(t)}resolveContext(t){var r,n;return this.fetchContext(t),(n=(r=this.cache.getNow(t))===null||r===void 0?void 0:r.messages)!==null&&n!==void 0?n:{}}resolveRawMessage(t,r){let n=t.toLowerCase();return this.resolveContext(n)[r]}resolveMessage(t,r,...n){var i;let o=t.toLowerCase(),a=this.resolveContext(o);return new J.ParametrizedLabelResolver((i=this.defaultMessages[o])!==null&&i!==void 0?i:{},a).resolve(r,...n)}async fetchContext(t){var r,n,i;if(!this.cache.has(t))if(((n=(r=window.process)===null||r===void 0?void 0:r.env)===null||n===void 0?void 0:n.NODE_ENV)==="test")this.cache.set(t,(i=this.defaultMessages[t])!==null&&i!==void 0?i:{});else try{await this.cache.get(t,()=>this.messageContextProvider(this.currentUiLocale,t)),await this.notify(t)}catch(o){console.error(o)}}subscribe(t,r){var n;return t=t.toLowerCase(),this.listeners[t]=(n=this.listeners[t])!==null&&n!==void 0?n:new Set,this.listeners[t].add(r),()=>{var i;return(i=this.listeners[t])===null||i===void 0?void 0:i.delete(r)}}async notifyAll(){await Promise.all(Object.keys(this.listeners).map(t=>this.notify(t)))}async notify(t){this.listeners[t]!=null&&await Promise.all([...this.listeners[t].values()].map(r=>(0,J.delay)(0).then(()=>r()).catch(()=>null)))}};yr=Mn;window.FluidTopicsI18nService==null&&(window.FluidTopicsI18nService=new class extends Ue{constructor(){super(async(e,t)=>(await this.awaitApi).getFluidTopicsMessageContext(e,t))}});window.FluidTopicsCustomI18nService==null&&(window.FluidTopicsCustomI18nService=new class extends Ue{constructor(){super(async(e,t)=>(await this.awaitApi).getCustomMessageContext(e,t))}});var se=window.FluidTopicsI18nService,gr=window.FluidTopicsCustomI18nService;var T=function(e,t,r,n){var i=arguments.length,o=i<3?t:n===null?n=Object.getOwnPropertyDescriptor(t,r):n,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(a=e[s])&&(o=(i<3?a(o):i>3?a(t,r,o):a(t,r))||o);return i>3&&o&&Object.defineProperty(t,r,o),o},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=()=>ae.get(),this.messageContexts=[],this.cache=new I.CacheRegistry,this.cleanSessionDebouncer=new I.Debouncer}render(){return br.html`
|
|
80
84
|
<slot></slot>
|
|
81
|
-
`}update(t){var r,n,i,o,a;super.update(t),t.has("baseUrl")&&(b.actions.baseUrl(this.baseUrl),window.fluidTopicsBaseUrl=this.baseUrl),t.has("apiIntegrationIdentifier")&&b.actions.apiIntegrationIdentifier(this.apiIntegrationIdentifier),t.has("uiLocale")&&b.actions.uiLocale(this.uiLocale),t.has("metadataConfiguration")&&b.actions.metadataConfiguration(this.metadataConfiguration),t.has("noCustom")&&b.actions.noCustom(this.noCustom),t.has("editorMode")&&b.actions.editorMode(this.editorMode),t.has("noCustomComponent")&&b.actions.noCustomComponent(this.noCustomComponent),t.has("session")&&b.actions.session(this.session),t.has("messageContexts")&&this.messageContexts!=null&&this.messageContexts.forEach(s=>ae.addContext(s)),t.has("openExternalDocumentInNewTab")&&b.actions.openExternalDocumentInNewTab(this.openExternalDocumentInNewTab),t.has("navigatorOnline")&&b.actions.navigatorOnline(this.navigatorOnline),t.has("forcedOffline")&&b.actions.forcedOffline(this.forcedOffline),t.has("localesConfiguration")&&(b.actions.defaultLocales((r=this.localesConfiguration)===null||r===void 0?void 0:r.defaultLocales),b.actions.availableUiLocales((i=(n=this.localesConfiguration)===null||n===void 0?void 0:n.availableUiLocales)!==null&&i!==void 0?i:[]),b.actions.searchInAllLanguagesAllowed((a=(o=this.localesConfiguration)===null||o===void 0?void 0:o.allLanguagesAllowed)!==null&&a!==void 0?a:!1)),setTimeout(()=>this.updateIfNeeded())}async updateIfNeeded(){this.apiProvider()&&(this.withManualResources||(this.session==null&&this.updateSession(),this.metadataConfiguration==null&&this.updateMetadataConfiguration()),this.localesConfiguration==null&&this.updateLocalesConfiguration())}async updateSession(){this.session=await this.cache.get("session",async()=>{let t=await this.apiProvider().getCurrentSession();return t.idleTimeoutInMillis>0&&this.cleanSessionDebouncer.run(()=>{this.cache.clear("session"),this.session=void 0},t.idleTimeoutInMillis),t})}async updateMetadataConfiguration(){this.metadataConfiguration=await this.cache.get("metadataConfiguration",()=>this.apiProvider().getMetadataConfiguration())}async updateLocalesConfiguration(){this.localesConfiguration=await this.cache.get("localesConfiguration",()=>this.apiProvider().getLocalesConfiguration())}};O.elementDefinitions={};O.styles=mr;C([(0,T.property)()],O.prototype,"baseUrl",void 0);C([(0,T.property)()],O.prototype,"apiIntegrationIdentifier",void 0);C([(0,T.property)()],O.prototype,"uiLocale",void 0);C([(0,j.jsonProperty)(null)],O.prototype,"availableUiLocales",void 0);C([(0,j.jsonProperty)(null)],O.prototype,"metadataConfiguration",void 0);C([(0,T.property)({type:Boolean})],O.prototype,"editorMode",void 0);C([(0,T.property)({type:Boolean})],O.prototype,"noCustom",void 0);C([(0,T.property)({type:Boolean})],O.prototype,"openExternalDocumentInNewTab",void 0);C([(0,T.property)({converter:{fromAttribute(e){return e==="false"?!1:e==="true"||(e??!1)}}})],O.prototype,"noCustomComponent",void 0);C([(0,T.property)({type:Boolean})],O.prototype,"withManualResources",void 0);C([(0,T.property)({type:Boolean})],O.prototype,"navigatorOnline",void 0);C([(0,T.property)({type:Boolean})],O.prototype,"forcedOffline",void 0);C([(0,T.property)({type:Object})],O.prototype,"apiProvider",void 0);C([(0,j.jsonProperty)([])],O.prototype,"messageContexts",void 0);C([(0,j.jsonProperty)(void 0)],O.prototype,"session",void 0);C([(0,T.state)()],O.prototype,"localesConfiguration",void 0);var xo=y(M());function Ln(e,t){if(e===t)return!0;if(e&&t&&typeof e=="object"&&typeof t=="object"){if(e.constructor!==t.constructor)return!1;var r,n,i;if(Array.isArray(e)){if(r=e.length,r!=t.length)return!1;for(n=r;n--!==0;)if(!Be(e[n],t[n]))return!1;return!0}if(e instanceof Map&&t instanceof Map){if(e.size!==t.size)return!1;for(n of e.entries())if(!t.has(n[0]))return!1;for(n of e.entries())if(!Be(n[1],t.get(n[0])))return!1;return!0}if(e instanceof Set&&t instanceof Set){if(e.size!==t.size)return!1;for(n of e.entries())if(!t.has(n[0]))return!1;return!0}if(e.constructor===RegExp)return e.source===t.source&&e.flags===t.flags;if(e.valueOf!==Object.prototype.valueOf)return e.valueOf()===t.valueOf();let o=a=>Object.keys(a).filter(s=>a[s]!=null);if(i=o(e),r=i.length,r!==o(t).length)return!1;for(n=r;n--!==0;)if(!Object.prototype.hasOwnProperty.call(t,i[n]))return!1;for(n=r;n--!==0;){let a=i[n];if(!Be(e[a],t[a]))return!1}return!0}return e!==e&&t!==t||e==null&&t==null}function Be(e,t){try{return Ln(e,t)}catch{return!1}}function We(e,t){return!Be(e,t)}var Dn=y(M(),1);var Ve=class{constructor(){this.queue=[]}add(t,r=!1){r&&(this.queue=this.queue.filter(n=>n.type!==t.type)),this.queue.push(t)}consume(t){let r=this.queue.find(n=>n.type===t);return r&&(this.queue=this.queue.filter(n=>n!==r)),r}};var Ee=y(M(),1);var xr=y(M(),1);function Sr(e,t){let r=()=>JSON.parse(JSON.stringify(e));return(0,xr.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:We,...t??{}})}var Ge=class{constructor(t=0){this.timeout=t,this.callbacks=[]}run(t,r){return this.callbacks=[t],this.debounce(r)}queue(t,r){return this.callbacks.push(t),this.debounce(r)}cancel(){this.clearTimeout(),this.resolvePromise&&this.resolvePromise(!1),this.clearPromise()}debounce(t){return this.promise==null&&(this.promise=new Promise((r,n)=>{this.resolvePromise=r,this.rejectPromise=n})),this.clearTimeout(),this._debounce=window.setTimeout(()=>this.runCallbacks(),t??this.timeout),this.promise}async runCallbacks(){var t,r;let n=[...this.callbacks];this.callbacks=[];let i=(t=this.rejectPromise)!==null&&t!==void 0?t:()=>null,o=(r=this.resolvePromise)!==null&&r!==void 0?r:()=>null;this.clearPromise();for(let a of n)try{await a()}catch(s){i(s);return}o(!0)}clearTimeout(){this._debounce!=null&&window.clearTimeout(this._debounce)}clearPromise(){this.promise=void 0,this.resolvePromise=void 0,this.rejectPromise=void 0}};var Er=y(B(),1);var Ke=globalThis,jn=Ke.ShadowRoot&&(Ke.ShadyCSS===void 0||Ke.ShadyCSS.nativeShadow)&&"adoptedStyleSheets"in Document.prototype&&"replace"in CSSStyleSheet.prototype,wi=Symbol();var wr=(e,t)=>{if(jn)e.adoptedStyleSheets=t.map(r=>r instanceof CSSStyleSheet?r:r.styleSheet);else for(let r of t){let n=document.createElement("style"),i=Ke.litNonce;i!==void 0&&n.setAttribute("nonce",i),n.textContent=r.cssText,e.appendChild(n)}};var He=class extends Er.LitElement{createRenderRoot(){let t=this.constructor;t.elementDefinitions&&!t.registry&&(t.registry=new CustomElementRegistry,Object.entries(t.elementDefinitions).forEach(([i,o])=>t.registry.define(i,o)));let r={...t.shadowRootOptions,customElements:t.registry},n=this.renderOptions.creationScope=this.attachShadow(r);return wr(n,t.elementStyles),n}};var ze=function(e,t,r,n){var i=arguments.length,o=i<3?t:n===null?n=Object.getOwnPropertyDescriptor(t,r):n,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(a=e[s])&&(o=(i<3?a(o):i>3?a(t,r,o):a(t,r))||o);return i>3&&o&&Object.defineProperty(t,r,o),o},Cr,Ar=Symbol("constructorPrototype"),Or=Symbol("constructorName"),Nr=Symbol("exportpartsDebouncer"),_r=Symbol("dynamicDependenciesLoaded"),J=class extends He{constructor(){super(),this.useAdoptedStyleSheets=!0,this.adoptedCustomStyleSheet=new CSSStyleSheet,this[Cr]=new Ge(5),this[Or]=this.constructor.name,this[Ar]=this.constructor.prototype}adoptedCallback(){this.constructor.name!==this[Or]&&Object.setPrototypeOf(this,this[Ar])}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 t=this.constructor;t[_r]||(t[_r]=!0,this.importDynamicDependencies())}importDynamicDependencies(){}updated(t){super.updated(t),this.updateComplete.then(()=>{this.contentAvailableCallback(t),this.applyCustomStylesheet(t),this.scheduleExportpartsUpdate()})}contentAvailableCallback(t){}applyCustomStylesheet(t){var r,n,i;if(((n=(r=this.shadowRoot)===null||r===void 0?void 0:r.querySelectorAll(".ft-lit-element--custom-stylesheet"))!==null&&n!==void 0?n:[]).forEach(o=>o.remove()),this.useAdoptedStyleSheets){if(t.has("customStylesheet"))try{this.adoptedCustomStyleSheet.replaceSync((i=this.customStylesheet)!==null&&i!==void 0?i:"")}catch(o){console.error(o,this.customStylesheet),this.useAdoptedStyleSheets=!1}}else if(this.customStylesheet){let o=document.createElement("style");o.classList.add("ft-lit-element--custom-stylesheet"),o.innerHTML=this.customStylesheet,this.shadowRoot.append(o)}}scheduleExportpartsUpdate(){var t,r,n;(!((t=this.exportpartsPrefix)===null||t===void 0)&&t.trim()||(n=(r=this.exportpartsPrefixes)===null||r===void 0?void 0:r.length)!==null&&n!==void 0&&n)&&this[Nr].run(()=>{var i,o;!((i=this.exportpartsPrefix)===null||i===void 0)&&i.trim()?this.setExportpartsAttribute([this.exportpartsPrefix]):this.exportpartsPrefixes!=null&&((o=this.exportpartsPrefixes)===null||o===void 0?void 0:o.length)>0&&this.setExportpartsAttribute(this.exportpartsPrefixes)})}setExportpartsAttribute(t){var r,n,i,o,a,s;let c=d=>d!=null&&d.trim().length>0,u=t.filter(c).map(d=>d.trim());if(u.length===0){this.removeAttribute("exportparts");return}let l=new Set;for(let d of(n=(r=this.shadowRoot)===null||r===void 0?void 0:r.querySelectorAll("[part],[exportparts]"))!==null&&n!==void 0?n:[]){let m=(o=(i=d.getAttribute("part"))===null||i===void 0?void 0:i.split(" "))!==null&&o!==void 0?o:[],h=(s=(a=d.getAttribute("exportparts"))===null||a===void 0?void 0:a.split(",").map(v=>v.split(":")[1]))!==null&&s!==void 0?s:[];new Array(...m,...h).filter(c).map(v=>v.trim()).forEach(v=>l.add(v))}if(l.size===0){this.removeAttribute("exportparts");return}let f=[...l.values()].flatMap(d=>u.map(m=>`${d}:${m}--${d}`));this.setAttribute("exportparts",[...this.part,...f].join(", "))}};Cr=Nr;ze([(0,Ee.property)()],J.prototype,"exportpartsPrefix",void 0);ze([Sr([])],J.prototype,"exportpartsPrefixes",void 0);ze([(0,Ee.property)()],J.prototype,"customStylesheet",void 0);ze([(0,Ee.state)()],J.prototype,"useAdoptedStyleSheets",void 0);function Ae(e){var t;return(t=e?.isFtReduxStore)!==null&&t!==void 0?t:!1}var Tr,Rr,Pr,Oe=Symbol("internalReduxEventsUnsubscribers"),Z=Symbol("internalStoresUnsubscribers"),se=Symbol("internalStores"),_e=class extends J{constructor(){super(...arguments),this[Tr]=new Map,this[Rr]=new Map,this[Pr]=new Map}get reduxConstructor(){return this.constructor}update(t){super.update(t),[...this.reduxConstructor.reduxReactiveProperties].some(r=>t.has(r))&&this.updateFromStores()}getUnnamedStore(){if(this[se].size>1)throw new Error("Cannot resolve unnamed store when multiple stores are configured.");return[...this[se].values()][0]}getStore(t){return t==null?this.getUnnamedStore():this[se].get(t)}addStore(t,r){var n;r=(n=r??(Ae(t)?t.name:void 0))!==null&&n!==void 0?n:"default-store",this.unsubscribeFromStore(r),this[se].set(r,t),this.subscribeToStore(r,t),this.updateFromStores()}removeStore(t){let r=typeof t=="string"?t:t.name;this.unsubscribeFromStore(r),this[se].delete(r)}setupStores(){this.unsubscribeFromStores(),this[se].forEach((t,r)=>this.subscribeToStore(r,t)),this.updateFromStores()}updateFromStores(){this.reduxConstructor.reduxProperties.forEach((t,r)=>{let n=this.constructor.getPropertyOptions(r);if(!n?.attribute||!this.hasAttribute(typeof n?.attribute=="string"?n.attribute:r)){let i=this.getStore(t.store);i&&(t.store?this[Z].has(t.store):this[Z].size>0)&&(this[r]=t.selector(i.getState(),this))}})}subscribeToStore(t,r){var n;this[Z].set(t,r.subscribe(()=>this.updateFromStores())),this[Oe].set(t,[]),Ae(r)&&r.eventBus&&((n=this.reduxConstructor.reduxEventListeners)===null||n===void 0||n.forEach((i,o)=>{if(typeof this[o]=="function"&&(!i.store||r.name===i.store)){let a=s=>this[o](s);r.addEventListener(i.eventName,a),this[Oe].get(t).push(()=>r.removeEventListener(i.eventName,a))}})),this.onStoreAvailable(t)}unsubscribeFromStores(){this[Z].forEach((t,r)=>this.unsubscribeFromStore(r))}unsubscribeFromStore(t){var r;this[Z].has(t)&&this[Z].get(t)(),this[Z].delete(t),(r=this[Oe].get(t))===null||r===void 0||r.forEach(n=>n()),this[Oe].delete(t)}onStoreAvailable(t){}connectedCallback(){super.connectedCallback(),this.setupStores()}disconnectedCallback(){super.disconnectedCallback(),this.unsubscribeFromStores()}};Tr=Z,Rr=se,Pr=Oe;_e.reduxProperties=new Map;_e.reduxReactiveProperties=new Set;_e.reduxEventListeners=new Map;function L(e){for(var t=arguments.length,r=Array(t>1?t-1:0),n=1;n<t;n++)r[n-1]=arguments[n];if(0)var i,o;throw Error("[Immer] minified error nr: "+e+(r.length?" "+r.map(function(a){return"'"+a+"'"}).join(","):"")+". Find the full error at: https://bit.ly/3cXEKWf")}function z(e){return!!e&&!!e[E]}function k(e){var t;return!!e&&(function(r){if(!r||typeof r!="object")return!1;var n=Object.getPrototypeOf(r);if(n===null)return!0;var i=Object.hasOwnProperty.call(n,"constructor")&&n.constructor;return i===Object||typeof i=="function"&&Function.toString.call(i)===Kn}(e)||Array.isArray(e)||!!e[Ur]||!!(!((t=e.constructor)===null||t===void 0)&&t[Ur])||Ot(e)||_t(e))}function ue(e,t,r){r===void 0&&(r=!1),ve(e)===0?(r?Object.keys:he)(e).forEach(function(n){r&&typeof n=="symbol"||t(n,e[n],e)}):e.forEach(function(n,i){return t(i,n,e)})}function ve(e){var t=e[E];return t?t.i>3?t.i-4:t.i:Array.isArray(e)?1:Ot(e)?2:_t(e)?3:0}function pe(e,t){return ve(e)===2?e.has(t):Object.prototype.hasOwnProperty.call(e,t)}function kn(e,t){return ve(e)===2?e.get(t):e[t]}function Br(e,t,r){var n=ve(e);n===2?e.set(t,r):n===3?e.add(r):e[t]=r}function Wr(e,t){return e===t?e!==0||1/e==1/t:e!=e&&t!=t}function Ot(e){return Vn&&e instanceof Map}function _t(e){return Gn&&e instanceof Set}function Q(e){return e.o||e.t}function Ct(e){if(Array.isArray(e))return Array.prototype.slice.call(e);var t=Kr(e);delete t[E];for(var r=he(t),n=0;n<r.length;n++){var i=r[n],o=t[i];o.writable===!1&&(o.writable=!0,o.configurable=!0),(o.get||o.set)&&(t[i]={configurable:!0,writable:!0,enumerable:o.enumerable,value:e[i]})}return Object.create(Object.getPrototypeOf(e),t)}function Nt(e,t){return t===void 0&&(t=!1),Tt(e)||z(e)||!k(e)||(ve(e)>1&&(e.set=e.add=e.clear=e.delete=In),Object.freeze(e),t&&ue(e,function(r,n){return Nt(n,!0)},!0)),e}function In(){L(2)}function Tt(e){return e==null||typeof e!="object"||Object.isFrozen(e)}function V(e){var t=At[e];return t||L(18,e),t}function Un(e,t){At[e]||(At[e]=t)}function St(){return Ne}function yt(e,t){t&&(V("Patches"),e.u=[],e.s=[],e.v=t)}function qe(e){wt(e),e.p.forEach(Bn),e.p=null}function wt(e){e===Ne&&(Ne=e.l)}function Mr(e){return Ne={p:[],l:Ne,h:e,m:!0,_:0}}function Bn(e){var t=e[E];t.i===0||t.i===1?t.j():t.g=!0}function bt(e,t){t._=t.p.length;var r=t.p[0],n=e!==void 0&&e!==r;return t.h.O||V("ES5").S(t,e,n),n?(r[E].P&&(qe(t),L(4)),k(e)&&(e=$e(t,e),t.l||Xe(t,e)),t.u&&V("Patches").M(r[E].t,e,t.u,t.s)):e=$e(t,r,[]),qe(t),t.u&&t.v(t.u,t.s),e!==Gr?e:void 0}function $e(e,t,r){if(Tt(t))return t;var n=t[E];if(!n)return ue(t,function(s,c){return Lr(e,n,t,s,c,r)},!0),t;if(n.A!==e)return t;if(!n.P)return Xe(e,n.t,!0),n.t;if(!n.I){n.I=!0,n.A._--;var i=n.i===4||n.i===5?n.o=Ct(n.k):n.o,o=i,a=!1;n.i===3&&(o=new Set(i),i.clear(),a=!0),ue(o,function(s,c){return Lr(e,n,i,s,c,r,a)}),Xe(e,i,!1),r&&e.u&&V("Patches").N(n,r,e.u,e.s)}return n.o}function Lr(e,t,r,n,i,o,a){if(z(i)){var s=$e(e,i,o&&t&&t.i!==3&&!pe(t.R,n)?o.concat(n):void 0);if(Br(r,n,s),!z(s))return;e.m=!1}else a&&r.add(i);if(k(i)&&!Tt(i)){if(!e.h.D&&e._<1)return;$e(e,i),t&&t.A.l||Xe(e,i)}}function Xe(e,t,r){r===void 0&&(r=!1),!e.l&&e.h.D&&e.m&&Nt(t,r)}function gt(e,t){var r=e[E];return(r?Q(r):e)[t]}function Dr(e,t){if(t in e)for(var r=Object.getPrototypeOf(e);r;){var n=Object.getOwnPropertyDescriptor(r,t);if(n)return n;r=Object.getPrototypeOf(r)}}function F(e){e.P||(e.P=!0,e.l&&F(e.l))}function xt(e){e.o||(e.o=Ct(e.t))}function Et(e,t,r){var n=Ot(t)?V("MapSet").F(t,r):_t(t)?V("MapSet").T(t,r):e.O?function(i,o){var a=Array.isArray(i),s={i:a?1:0,A:o?o.A:St(),P:!1,I:!1,R:{},l:o,t:i,k:null,o:null,j:null,C:!1},c=s,u=Te;a&&(c=[s],u=Ce);var l=Proxy.revocable(c,u),f=l.revoke,d=l.proxy;return s.k=d,s.j=f,d}(t,r):V("ES5").J(t,r);return(r?r.A:St()).p.push(n),n}function Wn(e){return z(e)||L(22,e),function t(r){if(!k(r))return r;var n,i=r[E],o=ve(r);if(i){if(!i.P&&(i.i<4||!V("ES5").K(i)))return i.t;i.I=!0,n=jr(r,o),i.I=!1}else n=jr(r,o);return ue(n,function(a,s){i&&kn(i.t,a)===s||Br(n,a,t(s))}),o===3?new Set(n):n}(e)}function jr(e,t){switch(t){case 2:return new Map(e);case 3:return Array.from(e)}return Ct(e)}function Vr(){function e(a,s){var c=o[a];return c?c.enumerable=s:o[a]=c={configurable:!0,enumerable:s,get:function(){var u=this[E];return Te.get(u,a)},set:function(u){var l=this[E];Te.set(l,a,u)}},c}function t(a){for(var s=a.length-1;s>=0;s--){var c=a[s][E];if(!c.P)switch(c.i){case 5:n(c)&&F(c);break;case 4:r(c)&&F(c)}}}function r(a){for(var s=a.t,c=a.k,u=he(c),l=u.length-1;l>=0;l--){var f=u[l];if(f!==E){var d=s[f];if(d===void 0&&!pe(s,f))return!0;var m=c[f],h=m&&m[E];if(h?h.t!==d:!Wr(m,d))return!0}}var v=!!s[E];return u.length!==he(s).length+(v?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 i(a){a.g&&L(3,JSON.stringify(Q(a)))}var o={};Un("ES5",{J:function(a,s){var c=Array.isArray(a),u=function(f,d){if(f){for(var m=Array(d.length),h=0;h<d.length;h++)Object.defineProperty(m,""+h,e(h,!0));return m}var v=Kr(d);delete v[E];for(var S=he(v),g=0;g<S.length;g++){var x=S[g];v[x]=e(x,f||!!v[x].enumerable)}return Object.create(Object.getPrototypeOf(d),v)}(c,a),l={i:c?5:4,A:s?s.A:St(),P:!1,I:!1,R:{},l:s,t:a,k:u,o:null,g:!1,C:!1};return Object.defineProperty(u,E,{value:l,writable:!0}),u},S:function(a,s,c){c?z(s)&&s[E].A===a&&t(a.p):(a.u&&function u(l){if(l&&typeof l=="object"){var f=l[E];if(f){var d=f.t,m=f.k,h=f.R,v=f.i;if(v===4)ue(m,function(w){w!==E&&(d[w]!==void 0||pe(d,w)?h[w]||u(m[w]):(h[w]=!0,F(f)))}),ue(d,function(w){m[w]!==void 0||pe(m,w)||(h[w]=!1,F(f))});else if(v===5){if(n(f)&&(F(f),h.length=!0),m.length<d.length)for(var S=m.length;S<d.length;S++)h[S]=!1;else for(var g=d.length;g<m.length;g++)h[g]=!0;for(var x=Math.min(m.length,d.length),A=0;A<x;A++)m.hasOwnProperty(A)||(h[A]=!0),h[A]===void 0&&u(m[A])}}}}(a.p[0]),t(a.p))},K:function(a){return a.i===4?r(a):n(a)}})}var kr,Ne,Rt=typeof Symbol<"u"&&typeof Symbol("x")=="symbol",Vn=typeof Map<"u",Gn=typeof Set<"u",Ir=typeof Proxy<"u"&&Proxy.revocable!==void 0&&typeof Reflect<"u",Gr=Rt?Symbol.for("immer-nothing"):((kr={})["immer-nothing"]=!0,kr),Ur=Rt?Symbol.for("immer-draftable"):"__$immer_draftable",E=Rt?Symbol.for("immer-state"):"__$immer_state";var Kn=""+Object.prototype.constructor,he=typeof Reflect<"u"&&Reflect.ownKeys?Reflect.ownKeys:Object.getOwnPropertySymbols!==void 0?function(e){return Object.getOwnPropertyNames(e).concat(Object.getOwnPropertySymbols(e))}:Object.getOwnPropertyNames,Kr=Object.getOwnPropertyDescriptors||function(e){var t={};return he(e).forEach(function(r){t[r]=Object.getOwnPropertyDescriptor(e,r)}),t},At={},Te={get:function(e,t){if(t===E)return e;var r=Q(e);if(!pe(r,t))return function(i,o,a){var s,c=Dr(o,a);return c?"value"in c?c.value:(s=c.get)===null||s===void 0?void 0:s.call(i.k):void 0}(e,r,t);var n=r[t];return e.I||!k(n)?n:n===gt(e.t,t)?(xt(e),e.o[t]=Et(e.A.h,n,e)):n},has:function(e,t){return t in Q(e)},ownKeys:function(e){return Reflect.ownKeys(Q(e))},set:function(e,t,r){var n=Dr(Q(e),t);if(n?.set)return n.set.call(e.k,r),!0;if(!e.P){var i=gt(Q(e),t),o=i?.[E];if(o&&o.t===r)return e.o[t]=r,e.R[t]=!1,!0;if(Wr(r,i)&&(r!==void 0||pe(e.t,t)))return!0;xt(e),F(e)}return e.o[t]===r&&(r!==void 0||t in e.o)||Number.isNaN(r)&&Number.isNaN(e.o[t])||(e.o[t]=r,e.R[t]=!0),!0},deleteProperty:function(e,t){return gt(e.t,t)!==void 0||t in e.t?(e.R[t]=!1,xt(e),F(e)):delete e.R[t],e.o&&delete e.o[t],!0},getOwnPropertyDescriptor:function(e,t){var r=Q(e),n=Reflect.getOwnPropertyDescriptor(r,t);return n&&{writable:!0,configurable:e.i!==1||t!=="length",enumerable:n.enumerable,value:r[t]}},defineProperty:function(){L(11)},getPrototypeOf:function(e){return Object.getPrototypeOf(e.t)},setPrototypeOf:function(){L(12)}},Ce={};ue(Te,function(e,t){Ce[e]=function(){return arguments[0]=arguments[0][0],t.apply(this,arguments)}}),Ce.deleteProperty=function(e,t){return Ce.set.call(this,e,t,void 0)},Ce.set=function(e,t,r){return Te.set.call(this,e[0],t,r,e[0])};var Hn=function(){function e(r){var n=this;this.O=Ir,this.D=!0,this.produce=function(i,o,a){if(typeof i=="function"&&typeof o!="function"){var s=o;o=i;var c=n;return function(v){var S=this;v===void 0&&(v=s);for(var g=arguments.length,x=Array(g>1?g-1:0),A=1;A<g;A++)x[A-1]=arguments[A];return c.produce(v,function(w){var q;return(q=o).call.apply(q,[S,w].concat(x))})}}var u;if(typeof o!="function"&&L(6),a!==void 0&&typeof a!="function"&&L(7),k(i)){var l=Mr(n),f=Et(n,i,void 0),d=!0;try{u=o(f),d=!1}finally{d?qe(l):wt(l)}return typeof Promise<"u"&&u instanceof Promise?u.then(function(v){return yt(l,a),bt(v,l)},function(v){throw qe(l),v}):(yt(l,a),bt(u,l))}if(!i||typeof i!="object"){if((u=o(i))===void 0&&(u=i),u===Gr&&(u=void 0),n.D&&Nt(u,!0),a){var m=[],h=[];V("Patches").M(i,u,m,h),a(m,h)}return u}L(21,i)},this.produceWithPatches=function(i,o){if(typeof i=="function")return function(u){for(var l=arguments.length,f=Array(l>1?l-1:0),d=1;d<l;d++)f[d-1]=arguments[d];return n.produceWithPatches(u,function(m){return i.apply(void 0,[m].concat(f))})};var a,s,c=n.produce(i,o,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 t=e.prototype;return t.createDraft=function(r){k(r)||L(8),z(r)&&(r=Wn(r));var n=Mr(this),i=Et(this,r,void 0);return i[E].C=!0,wt(n),i},t.finishDraft=function(r,n){var i=r&&r[E],o=i.A;return yt(o,n),bt(void 0,o)},t.setAutoFreeze=function(r){this.D=r},t.setUseProxies=function(r){r&&!Ir&&L(20),this.O=r},t.applyPatches=function(r,n){var i;for(i=n.length-1;i>=0;i--){var o=n[i];if(o.path.length===0&&o.op==="replace"){r=o.value;break}}i>-1&&(n=n.slice(i+1));var a=V("Patches").$;return z(r)?a(r,n):this.produce(r,function(s){return a(s,n)})},e}(),R=new Hn,zn=R.produce,Di=R.produceWithPatches.bind(R),ji=R.setAutoFreeze.bind(R),ki=R.setUseProxies.bind(R),Ii=R.applyPatches.bind(R),Ui=R.createDraft.bind(R),Bi=R.finishDraft.bind(R),Ye=zn;function ce(e){"@babel/helpers - typeof";return ce=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(t){return typeof t}:function(t){return t&&typeof Symbol=="function"&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},ce(e)}function Hr(e,t){if(ce(e)!="object"||!e)return e;var r=e[Symbol.toPrimitive];if(r!==void 0){var n=r.call(e,t||"default");if(ce(n)!="object")return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return(t==="string"?String:Number)(e)}function zr(e){var t=Hr(e,"string");return ce(t)=="symbol"?t:t+""}function qr(e,t,r){return(t=zr(t))in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function $r(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter(function(i){return Object.getOwnPropertyDescriptor(e,i).enumerable})),r.push.apply(r,n)}return r}function Pt(e){for(var t=1;t<arguments.length;t++){var r=arguments[t]!=null?arguments[t]:{};t%2?$r(Object(r),!0).forEach(function(n){qr(e,n,r[n])}):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):$r(Object(r)).forEach(function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(r,n))})}return e}function N(e){return"Minified Redux error #"+e+"; visit https://redux.js.org/Errors?code="+e+" for the full message or use the non-minified dev environment for full errors. "}var Xr=function(){return typeof Symbol=="function"&&Symbol.observable||"@@observable"}(),Mt=function(){return Math.random().toString(36).substring(7).split("").join(".")},Je={INIT:"@@redux/INIT"+Mt(),REPLACE:"@@redux/REPLACE"+Mt(),PROBE_UNKNOWN_ACTION:function(){return"@@redux/PROBE_UNKNOWN_ACTION"+Mt()}};function qn(e){if(typeof e!="object"||e===null)return!1;for(var t=e;Object.getPrototypeOf(t)!==null;)t=Object.getPrototypeOf(t);return Object.getPrototypeOf(e)===t}function Lt(e,t,r){var n;if(typeof t=="function"&&typeof r=="function"||typeof r=="function"&&typeof arguments[3]=="function")throw new Error(N(0));if(typeof t=="function"&&typeof r>"u"&&(r=t,t=void 0),typeof r<"u"){if(typeof r!="function")throw new Error(N(1));return r(Lt)(e,t)}if(typeof e!="function")throw new Error(N(2));var i=e,o=t,a=[],s=a,c=!1;function u(){s===a&&(s=a.slice())}function l(){if(c)throw new Error(N(3));return o}function f(v){if(typeof v!="function")throw new Error(N(4));if(c)throw new Error(N(5));var S=!0;return u(),s.push(v),function(){if(S){if(c)throw new Error(N(6));S=!1,u();var x=s.indexOf(v);s.splice(x,1),a=null}}}function d(v){if(!qn(v))throw new Error(N(7));if(typeof v.type>"u")throw new Error(N(8));if(c)throw new Error(N(9));try{c=!0,o=i(o,v)}finally{c=!1}for(var S=a=s,g=0;g<S.length;g++){var x=S[g];x()}return v}function m(v){if(typeof v!="function")throw new Error(N(10));i=v,d({type:Je.REPLACE})}function h(){var v,S=f;return v={subscribe:function(x){if(typeof x!="object"||x===null)throw new Error(N(11));function A(){x.next&&x.next(l())}A();var w=S(A);return{unsubscribe:w}}},v[Xr]=function(){return this},v}return d({type:Je.INIT}),n={dispatch:d,subscribe:f,getState:l,replaceReducer:m},n[Xr]=h,n}function $n(e){Object.keys(e).forEach(function(t){var r=e[t],n=r(void 0,{type:Je.INIT});if(typeof n>"u")throw new Error(N(12));if(typeof r(void 0,{type:Je.PROBE_UNKNOWN_ACTION()})>"u")throw new Error(N(13))})}function Yr(e){for(var t=Object.keys(e),r={},n=0;n<t.length;n++){var i=t[n];typeof e[i]=="function"&&(r[i]=e[i])}var o=Object.keys(r),a,s;try{$n(r)}catch(c){s=c}return function(u,l){if(u===void 0&&(u={}),s)throw s;if(0)var f;for(var d=!1,m={},h=0;h<o.length;h++){var v=o[h],S=r[v],g=u[v],x=S(g,l);if(typeof x>"u"){var A=l&&l.type;throw new Error(N(14))}m[v]=x,d=d||x!==g}return d=d||o.length!==Object.keys(u).length,d?m:u}}function me(){for(var e=arguments.length,t=new Array(e),r=0;r<e;r++)t[r]=arguments[r];return t.length===0?function(n){return n}:t.length===1?t[0]:t.reduce(function(n,i){return function(){return n(i.apply(void 0,arguments))}})}function Jr(){for(var e=arguments.length,t=new Array(e),r=0;r<e;r++)t[r]=arguments[r];return function(n){return function(){var i=n.apply(void 0,arguments),o=function(){throw new Error(N(15))},a={getState:i.getState,dispatch:function(){return o.apply(void 0,arguments)}},s=t.map(function(c){return c(a)});return o=me.apply(void 0,s)(i.dispatch),Pt(Pt({},i),{},{dispatch:o})}}}function Zr(e){var t=function(n){var i=n.dispatch,o=n.getState;return function(a){return function(s){return typeof s=="function"?s(i,o,e):a(s)}}};return t}var Qr=Zr();Qr.withExtraArgument=Zr;var Dt=Qr;var nn=function(){var e=function(t,r){return e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(n,i){n.__proto__=i}||function(n,i){for(var o in i)Object.prototype.hasOwnProperty.call(i,o)&&(n[o]=i[o])},e(t,r)};return function(t,r){if(typeof r!="function"&&r!==null)throw new TypeError("Class extends value "+String(r)+" is not a constructor or null");e(t,r);function n(){this.constructor=t}t.prototype=r===null?Object.create(r):(n.prototype=r.prototype,new n)}}(),Xn=function(e,t){var r={label:0,sent:function(){if(o[0]&1)throw o[1];return o[1]},trys:[],ops:[]},n,i,o,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,i&&(o=u[0]&2?i.return:u[0]?i.throw||((o=i.return)&&o.call(i),0):i.next)&&!(o=o.call(i,u[1])).done)return o;switch(i=0,o&&(u=[u[0]&2,o.value]),u[0]){case 0:case 1:o=u;break;case 4:return r.label++,{value:u[1],done:!1};case 5:r.label++,i=u[1],u=[0];continue;case 7:u=r.ops.pop(),r.trys.pop();continue;default:if(o=r.trys,!(o=o.length>0&&o[o.length-1])&&(u[0]===6||u[0]===2)){r=0;continue}if(u[0]===3&&(!o||u[1]>o[0]&&u[1]<o[3])){r.label=u[1];break}if(u[0]===6&&r.label<o[1]){r.label=o[1],o=u;break}if(o&&r.label<o[2]){r.label=o[2],r.ops.push(u);break}o[2]&&r.ops.pop(),r.trys.pop();continue}u=t.call(e,r)}catch(l){u=[6,l],i=0}finally{n=o=0}if(u[0]&5)throw u[1];return{value:u[0]?u[1]:void 0,done:!0}}},ye=function(e,t){for(var r=0,n=t.length,i=e.length;r<n;r++,i++)e[i]=t[r];return e},Yn=Object.defineProperty,Jn=Object.defineProperties,Zn=Object.getOwnPropertyDescriptors,Fr=Object.getOwnPropertySymbols,Qn=Object.prototype.hasOwnProperty,Fn=Object.prototype.propertyIsEnumerable,en=function(e,t,r){return t in e?Yn(e,t,{enumerable:!0,configurable:!0,writable:!0,value:r}):e[t]=r},ee=function(e,t){for(var r in t||(t={}))Qn.call(t,r)&&en(e,r,t[r]);if(Fr)for(var n=0,i=Fr(t);n<i.length;n++){var r=i[n];Fn.call(t,r)&&en(e,r,t[r])}return e},jt=function(e,t){return Jn(e,Zn(t))},eo=function(e,t,r){return new Promise(function(n,i){var o=function(c){try{s(r.next(c))}catch(u){i(u)}},a=function(c){try{s(r.throw(c))}catch(u){i(u)}},s=function(c){return c.done?n(c.value):Promise.resolve(c.value).then(o,a)};s((r=r.apply(e,t)).next())})};var to=typeof window<"u"&&window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__?window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__:function(){if(arguments.length!==0)return typeof arguments[0]=="object"?me:me.apply(null,arguments)},na=typeof window<"u"&&window.__REDUX_DEVTOOLS_EXTENSION__?window.__REDUX_DEVTOOLS_EXTENSION__:function(){return function(e){return e}};function ro(e){if(typeof e!="object"||e===null)return!1;var t=Object.getPrototypeOf(e);if(t===null)return!0;for(var r=t;Object.getPrototypeOf(r)!==null;)r=Object.getPrototypeOf(r);return t===r}var no=function(e){nn(t,e);function t(){for(var r=[],n=0;n<arguments.length;n++)r[n]=arguments[n];var i=e.apply(this,r)||this;return Object.setPrototypeOf(i,t.prototype),i}return Object.defineProperty(t,Symbol.species,{get:function(){return t},enumerable:!1,configurable:!0}),t.prototype.concat=function(){for(var r=[],n=0;n<arguments.length;n++)r[n]=arguments[n];return e.prototype.concat.apply(this,r)},t.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(t.bind.apply(t,ye([void 0],r[0].concat(this)))):new(t.bind.apply(t,ye([void 0],r.concat(this))))},t}(Array),oo=function(e){nn(t,e);function t(){for(var r=[],n=0;n<arguments.length;n++)r[n]=arguments[n];var i=e.apply(this,r)||this;return Object.setPrototypeOf(i,t.prototype),i}return Object.defineProperty(t,Symbol.species,{get:function(){return t},enumerable:!1,configurable:!0}),t.prototype.concat=function(){for(var r=[],n=0;n<arguments.length;n++)r[n]=arguments[n];return e.prototype.concat.apply(this,r)},t.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(t.bind.apply(t,ye([void 0],r[0].concat(this)))):new(t.bind.apply(t,ye([void 0],r.concat(this))))},t}(Array);function Ut(e){return k(e)?Ye(e,function(){}):e}function io(e){return typeof e=="boolean"}function ao(){return function(t){return so(t)}}function so(e){e===void 0&&(e={});var t=e.thunk,r=t===void 0?!0:t,n=e.immutableCheck,i=n===void 0?!0:n,o=e.serializableCheck,a=o===void 0?!0:o,s=new no;if(r&&(io(r)?s.push(Dt):s.push(Dt.withExtraArgument(r.extraArgument))),0){if(i)var c;if(a)var u}return s}var kt=!0;function on(e){var t=ao(),r=e||{},n=r.reducer,i=n===void 0?void 0:n,o=r.middleware,a=o===void 0?t():o,s=r.devTools,c=s===void 0?!0:s,u=r.preloadedState,l=u===void 0?void 0:u,f=r.enhancers,d=f===void 0?void 0:f,m;if(typeof i=="function")m=i;else if(ro(i))m=Yr(i);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 h=a;if(typeof h=="function"&&(h=h(t),!kt&&!Array.isArray(h)))throw new Error("when using a middleware builder function, an array of middleware must be returned");if(!kt&&h.some(function(w){return typeof w!="function"}))throw new Error("each middleware provided to configureStore must be a function");var v=Jr.apply(void 0,h),S=me;c&&(S=to(ee({trace:!kt},typeof c=="object"&&c)));var g=new oo(v),x=g;Array.isArray(d)?x=ye([v],d):typeof d=="function"&&(x=d(g));var A=S.apply(void 0,x);return Lt(m,l,A)}function te(e,t){function r(){for(var n=[],i=0;i<arguments.length;i++)n[i]=arguments[i];if(t){var o=t.apply(void 0,n);if(!o)throw new Error("prepareAction did not return an object");return ee(ee({type:e,payload:o.payload},"meta"in o&&{meta:o.meta}),"error"in o&&{error:o.error})}return{type:e,payload:n[0]}}return r.toString=function(){return""+e},r.type=e,r.match=function(n){return n.type===e},r}function an(e){var t={},r=[],n,i={addCase:function(o,a){var s=typeof o=="string"?o:o.type;if(s in t)throw new Error("addCase cannot be called with two reducers for the same action type");return t[s]=a,i},addMatcher:function(o,a){return r.push({matcher:o,reducer:a}),i},addDefaultCase:function(o){return n=o,i}};return e(i),[t,r,n]}function uo(e){return typeof e=="function"}function co(e,t,r,n){r===void 0&&(r=[]);var i=typeof t=="function"?an(t):[t,r,n],o=i[0],a=i[1],s=i[2],c;if(uo(e))c=function(){return Ut(e())};else{var u=Ut(e);c=function(){return u}}function l(f,d){f===void 0&&(f=c());var m=ye([o[d.type]],a.filter(function(h){var v=h.matcher;return v(d)}).map(function(h){var v=h.reducer;return v}));return m.filter(function(h){return!!h}).length===0&&(m=[s]),m.reduce(function(h,v){if(v)if(z(h)){var S=h,g=v(S,d);return g===void 0?h:g}else{if(k(h))return Ye(h,function(x){return v(x,d)});var g=v(h,d);if(g===void 0){if(h===null)return h;throw Error("A case reducer on a non-draftable value must not return undefined")}return g}return h},f)}return l.getInitialState=c,l}function lo(e,t){return e+"/"+t}function sn(e){var t=e.name;if(!t)throw new Error("`name` is a required option for createSlice");typeof process<"u";var r=typeof e.initialState=="function"?e.initialState:Ut(e.initialState),n=e.reducers||{},i=Object.keys(n),o={},a={},s={};i.forEach(function(l){var f=n[l],d=lo(t,l),m,h;"reducer"in f?(m=f.reducer,h=f.prepare):m=f,o[l]=m,a[d]=m,s[l]=h?te(d,h):te(d)});function c(){var l=typeof e.extraReducers=="function"?an(e.extraReducers):[e.extraReducers],f=l[0],d=f===void 0?{}:f,m=l[1],h=m===void 0?[]:m,v=l[2],S=v===void 0?void 0:v,g=ee(ee({},d),a);return co(r,function(x){for(var A in g)x.addCase(A,g[A]);for(var w=0,q=h;w<q.length;w++){var G=q[w];x.addMatcher(G.matcher,G.reducer)}S&&x.addDefaultCase(S)})}var u;return{name:t,reducer:function(l,f){return u||(u=c()),u(l,f)},actions:s,caseReducers:o,getInitialState:function(){return u||(u=c()),u.getInitialState()}}}var fo="ModuleSymbhasOwnPr-0123456789ABCDEFGHNRVfgctiUvz_KqYTJkLxpZXIjQW",po=function(e){e===void 0&&(e=21);for(var t="",r=e;r--;)t+=fo[Math.random()*64|0];return t},ho=["name","message","stack","code"],It=function(){function e(t,r){this.payload=t,this.meta=r}return e}(),tn=function(){function e(t,r){this.payload=t,this.meta=r}return e}(),vo=function(e){if(typeof e=="object"&&e!==null){for(var t={},r=0,n=ho;r<n.length;r++){var i=n[r];typeof e[i]=="string"&&(t[i]=e[i])}return t}return{message:String(e)}},sa=function(){function e(t,r,n){var i=te(t+"/fulfilled",function(l,f,d,m){return{payload:l,meta:jt(ee({},m||{}),{arg:d,requestId:f,requestStatus:"fulfilled"})}}),o=te(t+"/pending",function(l,f,d){return{payload:void 0,meta:jt(ee({},d||{}),{arg:f,requestId:l,requestStatus:"pending"})}}),a=te(t+"/rejected",function(l,f,d,m,h){return{payload:m,error:(n&&n.serializeError||vo)(l||"Rejected"),meta:jt(ee({},h||{}),{arg:d,requestId:f,rejectedWithValue:!!m,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(f,d,m){var h=n?.idGenerator?n.idGenerator(l):po(),v=new c,S,g=!1;function x(w){S=w,v.abort()}var A=function(){return eo(this,null,function(){var w,q,G,be,Xt,ge,Yt;return Xn(this,function(fe){switch(fe.label){case 0:return fe.trys.push([0,4,,5]),be=(w=n?.condition)==null?void 0:w.call(n,l,{getState:d,extra:m}),yo(be)?[4,be]:[3,2];case 1:be=fe.sent(),fe.label=2;case 2:if(be===!1||v.signal.aborted)throw{name:"ConditionError",message:"Aborted due to condition callback returning false."};return g=!0,Xt=new Promise(function(D,xe){return v.signal.addEventListener("abort",function(){return xe({name:"AbortError",message:S||"Aborted"})})}),f(o(h,l,(q=n?.getPendingMeta)==null?void 0:q.call(n,{requestId:h,arg:l},{getState:d,extra:m}))),[4,Promise.race([Xt,Promise.resolve(r(l,{dispatch:f,getState:d,extra:m,requestId:h,signal:v.signal,abort:x,rejectWithValue:function(D,xe){return new It(D,xe)},fulfillWithValue:function(D,xe){return new tn(D,xe)}})).then(function(D){if(D instanceof It)throw D;return D instanceof tn?i(D.payload,h,l,D.meta):i(D,h,l)})])];case 3:return G=fe.sent(),[3,5];case 4:return ge=fe.sent(),G=ge instanceof It?a(null,h,l,ge.payload,ge.meta):a(ge,h,l),[3,5];case 5:return Yt=n&&!n.dispatchConditionRejection&&a.match(G)&&G.meta.condition,Yt||f(G),[2,G]}})})}();return Object.assign(A,{abort:x,requestId:h,arg:l,unwrap:function(){return A.then(mo)}})}}return Object.assign(u,{pending:o,rejected:a,fulfilled:i,typePrefix:t})}return e.withTypes=function(){return e},e}();function mo(e){if(e.meta&&e.meta.rejectedWithValue)throw e.payload;if(e.error)throw e.error;return e.payload}function yo(e){return e!==null&&typeof e=="object"&&typeof e.then=="function"}var un="listener",cn="completed",ln="cancelled",ua="task-"+ln,ca="task-"+cn,la=un+"-"+ln,fa=un+"-"+cn;var Bt="listenerMiddleware";var da=te(Bt+"/add"),pa=te(Bt+"/removeAll"),ha=te(Bt+"/remove");var rn,va=typeof queueMicrotask=="function"?queueMicrotask.bind(typeof window<"u"?window:typeof global<"u"?global:globalThis):function(e){return(rn||(rn=Promise.resolve())).then(e).catch(function(t){return setTimeout(function(){throw t},0)})},bo=function(e){return function(t){setTimeout(t,e)}},ma=typeof window<"u"&&window.requestAnimationFrame?window.requestAnimationFrame:bo(10);Vr();function go(e,t){return class extends e{constructor(){super(...arguments),this.eventBus=t??document.createElement("span")}addEventListener(r,n,i){this.eventBus.addEventListener(r,n,i)}dispatchEvent(r){return this.eventBus.dispatchEvent(r)}removeEventListener(r,n,i){this.eventBus.removeEventListener(r,n,i)}}}var Ze=class extends go(Object){};window.ftReduxStores||(window.ftReduxStores={});var fn=class e extends Ze{static get(t){var r;let n=typeof t=="string"?t:t.name,i=typeof t=="string"?void 0:t,o=window.ftReduxStores[n];if(Ae(o))return o;if(i==null)return;let a=sn({...i,reducers:(r=i.reducers)!==null&&r!==void 0?r:{}}),s=on({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[i.name]=new e(a,s,i.eventBus)}constructor(t,r,n){super(),this.reduxSlice=t,this.reduxStore=r,this.isFtReduxStore=!0,this.commands=new Ve;let i=o=>o!=null?JSON.parse(JSON.stringify(o)):o;this.actions=new Proxy(this.reduxSlice.actions,{get:(o,a,s)=>{let c=a,u=o[c];return u?(...l)=>{let f=u(...l.map(i));return this.reduxStore.dispatch(f),f}:l=>{this.setState({[c]:i(l)})}}}),this.eventBus=n??this.eventBus}clear(){this.reduxStore.dispatch({type:"CLEAR_FT_REDUX_STORE"})}setState(t){this.reduxStore.dispatch({type:"DEFAULT_VALUE_SETTER__"+Object.keys(t).join("_"),overwrites:t})}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(t){throw new Error("Not implemented yet.")}subscribe(t){return this.reduxStore.subscribe(t)}get name(){return this.reduxSlice.name}get reducer(){return this.reduxSlice.reducer}get caseReducers(){return this.reduxSlice.caseReducers}getInitialState(){return this.reduxSlice.getInitialState()}};var tt=y(_());var Qe=class extends X{async listMySearches(){let t=b.getState().session;return t?.sessionAuthenticated?this.cache.get("my-searches",async()=>(await this.awaitApi).listMySearches(t.profile.userId),5*60*1e3):[]}};var Fe=class extends X{async listMyBookmarks(){let t=b.getState().session;return t?.sessionAuthenticated?this.cache.get("my-bookmarks",async()=>(await this.awaitApi).listMyBookmarks(t.profile.userId),5*60*1e3):[]}};var So="ft-user-assets",et=tt.FtReduxStore.get({name:So,initialState:{savedSearches:void 0,bookmarks:void 0}}),Wt=class{constructor(){this.currentSession=b.getState().session,this.bookmarksAreUsed=!1,this.bookmarksService=new Fe,this.savedSearchesService=new Qe,b.subscribe(()=>this.reloadWhenUserSessionChanges())}reloadWhenUserSessionChanges(){var t;let{session:r}=b.getState();(0,tt.deepEqual)((t=this.currentSession)===null||t===void 0?void 0:t.profile,r?.profile)||(this.currentSession=r,this.clearMySearches(),this.reloadBookmarks())}clear(){this.clearMySearches(),this.clearMyBookmarks()}clearMySearches(){this.savedSearchesService.clearCache(),et.actions.savedSearches(void 0)}clearMyBookmarks(){this.bookmarksService.clearCache(),et.actions.bookmarks(void 0)}async reloadMySearches(){this.savedSearchesService.clearCache();let t=await this.savedSearchesService.listMySearches();et.actions.savedSearches(t)}async reloadBookmarks(){this.bookmarksService.clearCache(),await this.updateBookmarksIfUsed()}async registerBookmarkComponent(){this.bookmarksAreUsed=!0,await this.updateBookmarksIfUsed()}async updateBookmarksIfUsed(){var t;if(this.bookmarksAreUsed){let r=!((t=this.currentSession)===null||t===void 0)&&t.sessionAuthenticated?await this.bookmarksService.listMyBookmarks():void 0;et.actions.bookmarks(r)}}},Za=new Wt;var Vt=class{addCommand(t,r=!1){b.commands.add(t,r)}consumeCommand(t){return b.commands.consume(t)}};window.FluidTopicsAppInfoStoreService=new Vt;var dn=y(_()),Gt=class{highlightHtml(t,r,n){(0,dn.highlightHtml)(t,r,n)}};window.FluidTopicsHighlightHtmlService=new Gt;var pn=y(_());var Kt=class{isDate(t){var r,n,i,o;return(o=(i=((n=(r=b.getState().metadataConfiguration)===null||r===void 0?void 0:r.descriptors)!==null&&n!==void 0?n:[]).find(s=>s.key===t))===null||i===void 0?void 0:i.date)!==null&&o!==void 0?o:!1}format(t,r){var n,i,o;return pn.DateFormatter.format(t,(n=r?.locale)!==null&&n!==void 0?n:b.getState().uiLocale,(i=r?.longFormat)!==null&&i!==void 0?i:!1,(o=r?.withTime)!==null&&o!==void 0?o:!1)}};window.FluidTopicsDateService=new Kt;var wo=y(_());(0,hn.customElement)("ft-app-context")(O);var mn=y(M()),Eo=function(e,t,r,n){var i=arguments.length,o=i<3?t:n===null?n=Object.getOwnPropertyDescriptor(t,r):n,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(a=e[s])&&(o=(i<3?a(o):i>3?a(t,r,o):a(t,r))||o);return i>3&&o&&Object.defineProperty(t,r,o),o},Ht=Symbol("i18nAttributes"),zt=Symbol("i18nListAttributes"),rt=Symbol("i18nProperties"),qt=Symbol("i18nManualContexts"),Re=Symbol("i18nUnsubs");function yn(e){var t,r;class n extends e{constructor(){super(...arguments),this.useCustomMessageContexts=!1,this[t]=new Map,this[r]=new Map}get i18nService(){return this.useCustomMessageContexts?br:ae}i18n(o,a,...s){var c;if(typeof o=="string")return this.i18nService.resolveMessage(o,a,...s);let u=(c=o.args)!==null&&c!==void 0?c:o.argsProvider?o.argsProvider(this):[];return this.i18nService.resolveMessage(o.context,o.key,...u)}onI18nUpdate(o){var a,s,c;(a=this[Ht])===null||a===void 0||a.forEach((u,l)=>{let f=this.getI18nAttributeValue(l);f&&(this[l]=this.getI18nAttributeMessage(f,u,o))}),(s=this[zt])===null||s===void 0||s.forEach((u,l)=>{let f=this.getI18nListAttributeValues(l);this[l]=f?.map(d=>this.getI18nAttributeMessage(d,u,o))}),(c=this[rt])===null||c===void 0||c.forEach((u,l)=>{u.context.toLowerCase()===o.toLowerCase()&&(this[l]=this.i18n(u))}),setTimeout(()=>this.requestUpdate(),0)}buildI18nAttributeMessage(o,a){return{...o,message:this.i18n({context:o.context,key:o.key,...a})}}getI18nAttributeMessage(o,a,s){var c;let u=!s||((c=o.context)===null||c===void 0?void 0:c.toLowerCase())===s.toLowerCase();return o.context&&o.key&&u?this.buildI18nAttributeMessage(o,a):o}update(o){var a,s,c;super.update(o),(a=this[Ht])===null||a===void 0||a.forEach((u,l)=>{let f=this.getI18nAttributeValue(l);f?.context&&f.key&&(o.has(l)||u.argsProvider!=null)&&(this.addI18nContextIfNeeded(f,o,l),this[l]=this.getI18nAttributeMessage(f,u))}),(s=this[zt])===null||s===void 0||s.forEach((u,l)=>{let f=this.getI18nListAttributeValues(l);(o.has(l)||u.argsProvider!=null)&&(this[l]=f?.map(d=>(this.addI18nContextIfNeeded(d,o,l),this.getI18nAttributeMessage(d,u))))}),(c=this[rt])===null||c===void 0||c.forEach((u,l)=>{u.argsProvider!=null&&(this[l]=this.i18n(u))})}getI18nAttributeValue(o){return this[o]}getI18nListAttributeValues(o){return this[o]}addI18nContextIfNeeded(o,a,s){o.context&&o.key&&a.has(s)&&this.addI18nContext(o.context)}addI18nMessagesAndSubscribe(o,a){o=o.toLowerCase(),this[Re].has(o)||this[Re].set(o,this.i18nService.subscribe(o,()=>this.onI18nUpdate(o))),this.i18nService.prepareContext(o,a??{}),this.onI18nUpdate(o)}connectedCallback(){var o,a,s,c,u,l;super.connectedCallback(),new Set([...(a=(o=this[rt])===null||o===void 0?void 0:o.values())!==null&&a!==void 0?a:[],...[...(c=(s=this[Ht])===null||s===void 0?void 0:s.keys())!==null&&c!==void 0?c:[]].map(f=>this.getI18nAttributeValue(f)),...[...(l=(u=this[zt])===null||u===void 0?void 0:u.keys())!==null&&l!==void 0?l:[]].flatMap(f=>this.getI18nListAttributeValues(f))].map(f=>f?.context)).forEach(f=>f&&this.addI18nMessages(f)),this[qt].forEach((f,d)=>{this.addI18nMessages(d,f)})}addI18nMessages(o,a){this[qt].set(o,a??{}),this.addI18nMessagesAndSubscribe(o,a)}addI18nContext(o,a){this.addI18nMessages(typeof o=="string"?o:o.name,a)}disconnectedCallback(){super.disconnectedCallback(),this[Re].forEach(o=>o()),this[Re].clear()}}return t=qt,r=Re,Eo([(0,mn.property)({type:Boolean})],n.prototype,"useCustomMessageContexts",void 0),n}var vn=class extends yn(ot.FtLitElement){},nt=class extends yn(ot.FtLitElementRedux){};var Pe=function(e,t,r,n){var i=arguments.length,o=i<3?t:n===null?n=Object.getOwnPropertyDescriptor(t,r):n,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(a=e[s])&&(o=(i<3?a(o):i>3?a(t,r,o):a(t,r))||o);return i>3&&o&&Object.defineProperty(t,r,o),o},I=class extends nt{constructor(){super(),this.editorMode=!1,this.addStore(b)}render(){return!this.key||!this.context?this.editorMode?"Select a context and a label key.":it.nothing:it.html`
|
|
85
|
+
`}update(t){var r,n,i,o,a;super.update(t),t.has("baseUrl")&&(g.actions.baseUrl(this.baseUrl),window.fluidTopicsBaseUrl=this.baseUrl),t.has("apiIntegrationIdentifier")&&g.actions.apiIntegrationIdentifier(this.apiIntegrationIdentifier),t.has("uiLocale")&&g.actions.uiLocale(this.uiLocale),t.has("metadataConfiguration")&&g.actions.metadataConfiguration(this.metadataConfiguration),t.has("noCustom")&&g.actions.noCustom(this.noCustom),t.has("editorMode")&&g.actions.editorMode(this.editorMode),t.has("noCustomComponent")&&g.actions.noCustomComponent(this.noCustomComponent),t.has("session")&&g.actions.session(this.session),t.has("messageContexts")&&this.messageContexts!=null&&this.messageContexts.forEach(s=>se.addContext(s)),t.has("openExternalDocumentInNewTab")&&g.actions.openExternalDocumentInNewTab(this.openExternalDocumentInNewTab),t.has("navigatorOnline")&&g.actions.navigatorOnline(this.navigatorOnline),t.has("forcedOffline")&&g.actions.forcedOffline(this.forcedOffline),t.has("localesConfiguration")&&(g.actions.defaultLocales((r=this.localesConfiguration)===null||r===void 0?void 0:r.defaultLocales),g.actions.availableUiLocales((i=(n=this.localesConfiguration)===null||n===void 0?void 0:n.availableUiLocales)!==null&&i!==void 0?i:[]),g.actions.searchInAllLanguagesAllowed((a=(o=this.localesConfiguration)===null||o===void 0?void 0:o.allLanguagesAllowed)!==null&&a!==void 0?a:!1)),setTimeout(()=>this.updateIfNeeded())}async updateIfNeeded(){this.apiProvider()&&(this.withManualResources||(this.session==null&&this.updateSession(),this.metadataConfiguration==null&&this.updateMetadataConfiguration()),this.localesConfiguration==null&&this.updateLocalesConfiguration())}async updateSession(){this.session=await this.cache.get("session",async()=>{let t=await this.apiProvider().getCurrentSession();return t.idleTimeoutInMillis>0&&this.cleanSessionDebouncer.run(()=>{this.cache.clear("session"),this.session=void 0},t.idleTimeoutInMillis),t})}async updateMetadataConfiguration(){this.metadataConfiguration=await this.cache.get("metadataConfiguration",()=>this.apiProvider().getMetadataConfiguration())}async updateLocalesConfiguration(){this.localesConfiguration=await this.cache.get("localesConfiguration",()=>this.apiProvider().getLocalesConfiguration())}};O.elementDefinitions={};O.styles=mr;T([(0,P.property)()],O.prototype,"baseUrl",void 0);T([(0,P.property)()],O.prototype,"apiIntegrationIdentifier",void 0);T([(0,P.property)()],O.prototype,"uiLocale",void 0);T([(0,I.jsonProperty)(null)],O.prototype,"availableUiLocales",void 0);T([(0,I.jsonProperty)(null)],O.prototype,"metadataConfiguration",void 0);T([(0,P.property)({type:Boolean})],O.prototype,"editorMode",void 0);T([(0,P.property)({type:Boolean})],O.prototype,"noCustom",void 0);T([(0,P.property)({type:Boolean})],O.prototype,"openExternalDocumentInNewTab",void 0);T([(0,P.property)({converter:{fromAttribute(e){return e==="false"?!1:e==="true"||(e??!1)}}})],O.prototype,"noCustomComponent",void 0);T([(0,P.property)({type:Boolean})],O.prototype,"withManualResources",void 0);T([(0,P.property)({type:Boolean})],O.prototype,"navigatorOnline",void 0);T([(0,P.property)({type:Boolean})],O.prototype,"forcedOffline",void 0);T([(0,P.property)({type:Object})],O.prototype,"apiProvider",void 0);T([(0,I.jsonProperty)([])],O.prototype,"messageContexts",void 0);T([(0,I.jsonProperty)(void 0)],O.prototype,"session",void 0);T([(0,P.state)()],O.prototype,"localesConfiguration",void 0);var xo=y(L());function Ln(e,t){if(e===t)return!0;if(e&&t&&typeof e=="object"&&typeof t=="object"){if(e.constructor!==t.constructor)return!1;var r,n,i;if(Array.isArray(e)){if(r=e.length,r!=t.length)return!1;for(n=r;n--!==0;)if(!Be(e[n],t[n]))return!1;return!0}if(e instanceof Map&&t instanceof Map){if(e.size!==t.size)return!1;for(n of e.entries())if(!t.has(n[0]))return!1;for(n of e.entries())if(!Be(n[1],t.get(n[0])))return!1;return!0}if(e instanceof Set&&t instanceof Set){if(e.size!==t.size)return!1;for(n of e.entries())if(!t.has(n[0]))return!1;return!0}if(e.constructor===RegExp)return e.source===t.source&&e.flags===t.flags;if(e.valueOf!==Object.prototype.valueOf)return e.valueOf()===t.valueOf();let o=a=>Object.keys(a).filter(s=>a[s]!=null);if(i=o(e),r=i.length,r!==o(t).length)return!1;for(n=r;n--!==0;)if(!Object.prototype.hasOwnProperty.call(t,i[n]))return!1;for(n=r;n--!==0;){let a=i[n];if(!Be(e[a],t[a]))return!1}return!0}return e!==e&&t!==t||e==null&&t==null}function Be(e,t){try{return Ln(e,t)}catch{return!1}}function We(e,t){return!Be(e,t)}var Dn=y(L(),1);var Ve=class{constructor(){this.queue=[]}add(t,r=!1){r&&(this.queue=this.queue.filter(n=>n.type!==t.type)),this.queue.push(t)}consume(t){let r=this.queue.find(n=>n.type===t);return r&&(this.queue=this.queue.filter(n=>n!==r)),r}};var Ee=y(L(),1);var xr=y(L(),1);function Sr(e,t){let r=()=>JSON.parse(JSON.stringify(e));return(0,xr.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:We,...t??{}})}var Ge=class{constructor(t=0){this.timeout=t,this.callbacks=[]}run(t,r){return this.callbacks=[t],this.debounce(r)}queue(t,r){return this.callbacks.push(t),this.debounce(r)}cancel(){this.clearTimeout(),this.resolvePromise&&this.resolvePromise(!1),this.clearPromise()}debounce(t){return this.promise==null&&(this.promise=new Promise((r,n)=>{this.resolvePromise=r,this.rejectPromise=n})),this.clearTimeout(),this._debounce=window.setTimeout(()=>this.runCallbacks(),t??this.timeout),this.promise}async runCallbacks(){var t,r;let n=[...this.callbacks];this.callbacks=[];let i=(t=this.rejectPromise)!==null&&t!==void 0?t:()=>null,o=(r=this.resolvePromise)!==null&&r!==void 0?r:()=>null;this.clearPromise();for(let a of n)try{await a()}catch(s){i(s);return}o(!0)}clearTimeout(){this._debounce!=null&&window.clearTimeout(this._debounce)}clearPromise(){this.promise=void 0,this.resolvePromise=void 0,this.rejectPromise=void 0}};var Er=y(W(),1);var Ke=globalThis,kn=Ke.ShadowRoot&&(Ke.ShadyCSS===void 0||Ke.ShadyCSS.nativeShadow)&&"adoptedStyleSheets"in Document.prototype&&"replace"in CSSStyleSheet.prototype,wi=Symbol();var wr=(e,t)=>{if(kn)e.adoptedStyleSheets=t.map(r=>r instanceof CSSStyleSheet?r:r.styleSheet);else for(let r of t){let n=document.createElement("style"),i=Ke.litNonce;i!==void 0&&n.setAttribute("nonce",i),n.textContent=r.cssText,e.appendChild(n)}};var He=class extends Er.LitElement{createRenderRoot(){let t=this.constructor;t.elementDefinitions&&!t.registry&&(t.registry=new CustomElementRegistry,Object.entries(t.elementDefinitions).forEach(([i,o])=>t.registry.define(i,o)));let r={...t.shadowRootOptions,customElements:t.registry},n=this.renderOptions.creationScope=this.attachShadow(r);return wr(n,t.elementStyles),n}};var ze=function(e,t,r,n){var i=arguments.length,o=i<3?t:n===null?n=Object.getOwnPropertyDescriptor(t,r):n,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(a=e[s])&&(o=(i<3?a(o):i>3?a(t,r,o):a(t,r))||o);return i>3&&o&&Object.defineProperty(t,r,o),o},Cr,Ar=Symbol("constructorPrototype"),Or=Symbol("constructorName"),Tr=Symbol("exportpartsDebouncer"),_r=Symbol("dynamicDependenciesLoaded"),Z=class extends He{constructor(){super(),this.useAdoptedStyleSheets=!0,this.adoptedCustomStyleSheet=new CSSStyleSheet,this[Cr]=new Ge(5),this[Or]=this.constructor.name,this[Ar]=this.constructor.prototype}adoptedCallback(){this.constructor.name!==this[Or]&&Object.setPrototypeOf(this,this[Ar])}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 t=this.constructor;t[_r]||(t[_r]=!0,this.importDynamicDependencies())}importDynamicDependencies(){}updated(t){super.updated(t),this.updateComplete.then(()=>{this.contentAvailableCallback(t),this.applyCustomStylesheet(t),this.scheduleExportpartsUpdate()})}contentAvailableCallback(t){}applyCustomStylesheet(t){var r,n,i;if(((n=(r=this.shadowRoot)===null||r===void 0?void 0:r.querySelectorAll(".ft-lit-element--custom-stylesheet"))!==null&&n!==void 0?n:[]).forEach(o=>o.remove()),this.useAdoptedStyleSheets){if(t.has("customStylesheet"))try{this.adoptedCustomStyleSheet.replaceSync((i=this.customStylesheet)!==null&&i!==void 0?i:"")}catch(o){console.error(o,this.customStylesheet),this.useAdoptedStyleSheets=!1}}else if(this.customStylesheet){let o=document.createElement("style");o.classList.add("ft-lit-element--custom-stylesheet"),o.innerHTML=this.customStylesheet,this.shadowRoot.append(o)}}scheduleExportpartsUpdate(){var t,r,n;(!((t=this.exportpartsPrefix)===null||t===void 0)&&t.trim()||(n=(r=this.exportpartsPrefixes)===null||r===void 0?void 0:r.length)!==null&&n!==void 0&&n)&&this[Tr].run(()=>{var i,o;!((i=this.exportpartsPrefix)===null||i===void 0)&&i.trim()?this.setExportpartsAttribute([this.exportpartsPrefix]):this.exportpartsPrefixes!=null&&((o=this.exportpartsPrefixes)===null||o===void 0?void 0:o.length)>0&&this.setExportpartsAttribute(this.exportpartsPrefixes)})}setExportpartsAttribute(t){var r,n,i,o,a,s;let c=d=>d!=null&&d.trim().length>0,u=t.filter(c).map(d=>d.trim());if(u.length===0){this.removeAttribute("exportparts");return}let l=new Set;for(let d of(n=(r=this.shadowRoot)===null||r===void 0?void 0:r.querySelectorAll("[part],[exportparts]"))!==null&&n!==void 0?n:[]){let m=(o=(i=d.getAttribute("part"))===null||i===void 0?void 0:i.split(" "))!==null&&o!==void 0?o:[],h=(s=(a=d.getAttribute("exportparts"))===null||a===void 0?void 0:a.split(",").map(v=>v.split(":")[1]))!==null&&s!==void 0?s:[];new Array(...m,...h).filter(c).map(v=>v.trim()).forEach(v=>l.add(v))}if(l.size===0){this.removeAttribute("exportparts");return}let f=[...l.values()].flatMap(d=>u.map(m=>`${d}:${m}--${d}`));this.setAttribute("exportparts",[...this.part,...f].join(", "))}};Cr=Tr;ze([(0,Ee.property)()],Z.prototype,"exportpartsPrefix",void 0);ze([Sr([])],Z.prototype,"exportpartsPrefixes",void 0);ze([(0,Ee.property)()],Z.prototype,"customStylesheet",void 0);ze([(0,Ee.state)()],Z.prototype,"useAdoptedStyleSheets",void 0);function Ae(e){var t;return(t=e?.isFtReduxStore)!==null&&t!==void 0?t:!1}var Nr,Rr,Pr,Oe=Symbol("internalReduxEventsUnsubscribers"),Q=Symbol("internalStoresUnsubscribers"),ue=Symbol("internalStores"),_e=class extends Z{constructor(){super(...arguments),this[Nr]=new Map,this[Rr]=new Map,this[Pr]=new Map}get reduxConstructor(){return this.constructor}update(t){super.update(t),[...this.reduxConstructor.reduxReactiveProperties].some(r=>t.has(r))&&this.updateFromStores()}getUnnamedStore(){if(this[ue].size>1)throw new Error("Cannot resolve unnamed store when multiple stores are configured.");return[...this[ue].values()][0]}getStore(t){return t==null?this.getUnnamedStore():this[ue].get(t)}addStore(t,r){var n;r=(n=r??(Ae(t)?t.name:void 0))!==null&&n!==void 0?n:"default-store",this.unsubscribeFromStore(r),this[ue].set(r,t),this.subscribeToStore(r,t),this.updateFromStores()}removeStore(t){let r=typeof t=="string"?t:t.name;this.unsubscribeFromStore(r),this[ue].delete(r)}setupStores(){this.unsubscribeFromStores(),this[ue].forEach((t,r)=>this.subscribeToStore(r,t)),this.updateFromStores()}updateFromStores(){this.reduxConstructor.reduxProperties.forEach((t,r)=>{let n=this.constructor.getPropertyOptions(r);if(!n?.attribute||!this.hasAttribute(typeof n?.attribute=="string"?n.attribute:r)){let i=this.getStore(t.store);i&&(t.store?this[Q].has(t.store):this[Q].size>0)&&(this[r]=t.selector(i.getState(),this))}})}subscribeToStore(t,r){var n;this[Q].set(t,r.subscribe(()=>this.updateFromStores())),this[Oe].set(t,[]),Ae(r)&&r.eventBus&&((n=this.reduxConstructor.reduxEventListeners)===null||n===void 0||n.forEach((i,o)=>{if(typeof this[o]=="function"&&(!i.store||r.name===i.store)){let a=s=>this[o](s);r.addEventListener(i.eventName,a),this[Oe].get(t).push(()=>r.removeEventListener(i.eventName,a))}})),this.onStoreAvailable(t)}unsubscribeFromStores(){this[Q].forEach((t,r)=>this.unsubscribeFromStore(r))}unsubscribeFromStore(t){var r;this[Q].has(t)&&this[Q].get(t)(),this[Q].delete(t),(r=this[Oe].get(t))===null||r===void 0||r.forEach(n=>n()),this[Oe].delete(t)}onStoreAvailable(t){}connectedCallback(){super.connectedCallback(),this.setupStores()}disconnectedCallback(){super.disconnectedCallback(),this.unsubscribeFromStores()}};Nr=Q,Rr=ue,Pr=Oe;_e.reduxProperties=new Map;_e.reduxReactiveProperties=new Set;_e.reduxEventListeners=new Map;function D(e){for(var t=arguments.length,r=Array(t>1?t-1:0),n=1;n<t;n++)r[n-1]=arguments[n];if(0)var i,o;throw Error("[Immer] minified error nr: "+e+(r.length?" "+r.map(function(a){return"'"+a+"'"}).join(","):"")+". Find the full error at: https://bit.ly/3cXEKWf")}function q(e){return!!e&&!!e[E]}function U(e){var t;return!!e&&(function(r){if(!r||typeof r!="object")return!1;var n=Object.getPrototypeOf(r);if(n===null)return!0;var i=Object.hasOwnProperty.call(n,"constructor")&&n.constructor;return i===Object||typeof i=="function"&&Function.toString.call(i)===Kn}(e)||Array.isArray(e)||!!e[Ur]||!!(!((t=e.constructor)===null||t===void 0)&&t[Ur])||Ot(e)||_t(e))}function ce(e,t,r){r===void 0&&(r=!1),ve(e)===0?(r?Object.keys:he)(e).forEach(function(n){r&&typeof n=="symbol"||t(n,e[n],e)}):e.forEach(function(n,i){return t(i,n,e)})}function ve(e){var t=e[E];return t?t.i>3?t.i-4:t.i:Array.isArray(e)?1:Ot(e)?2:_t(e)?3:0}function pe(e,t){return ve(e)===2?e.has(t):Object.prototype.hasOwnProperty.call(e,t)}function jn(e,t){return ve(e)===2?e.get(t):e[t]}function Br(e,t,r){var n=ve(e);n===2?e.set(t,r):n===3?e.add(r):e[t]=r}function Wr(e,t){return e===t?e!==0||1/e==1/t:e!=e&&t!=t}function Ot(e){return Vn&&e instanceof Map}function _t(e){return Gn&&e instanceof Set}function F(e){return e.o||e.t}function Ct(e){if(Array.isArray(e))return Array.prototype.slice.call(e);var t=Kr(e);delete t[E];for(var r=he(t),n=0;n<r.length;n++){var i=r[n],o=t[i];o.writable===!1&&(o.writable=!0,o.configurable=!0),(o.get||o.set)&&(t[i]={configurable:!0,writable:!0,enumerable:o.enumerable,value:e[i]})}return Object.create(Object.getPrototypeOf(e),t)}function Tt(e,t){return t===void 0&&(t=!1),Nt(e)||q(e)||!U(e)||(ve(e)>1&&(e.set=e.add=e.clear=e.delete=In),Object.freeze(e),t&&ce(e,function(r,n){return Tt(n,!0)},!0)),e}function In(){D(2)}function Nt(e){return e==null||typeof e!="object"||Object.isFrozen(e)}function G(e){var t=At[e];return t||D(18,e),t}function Un(e,t){At[e]||(At[e]=t)}function St(){return Te}function yt(e,t){t&&(G("Patches"),e.u=[],e.s=[],e.v=t)}function qe(e){wt(e),e.p.forEach(Bn),e.p=null}function wt(e){e===Te&&(Te=e.l)}function Mr(e){return Te={p:[],l:Te,h:e,m:!0,_:0}}function Bn(e){var t=e[E];t.i===0||t.i===1?t.j():t.g=!0}function gt(e,t){t._=t.p.length;var r=t.p[0],n=e!==void 0&&e!==r;return t.h.O||G("ES5").S(t,e,n),n?(r[E].P&&(qe(t),D(4)),U(e)&&(e=$e(t,e),t.l||Xe(t,e)),t.u&&G("Patches").M(r[E].t,e,t.u,t.s)):e=$e(t,r,[]),qe(t),t.u&&t.v(t.u,t.s),e!==Gr?e:void 0}function $e(e,t,r){if(Nt(t))return t;var n=t[E];if(!n)return ce(t,function(s,c){return Lr(e,n,t,s,c,r)},!0),t;if(n.A!==e)return t;if(!n.P)return Xe(e,n.t,!0),n.t;if(!n.I){n.I=!0,n.A._--;var i=n.i===4||n.i===5?n.o=Ct(n.k):n.o,o=i,a=!1;n.i===3&&(o=new Set(i),i.clear(),a=!0),ce(o,function(s,c){return Lr(e,n,i,s,c,r,a)}),Xe(e,i,!1),r&&e.u&&G("Patches").N(n,r,e.u,e.s)}return n.o}function Lr(e,t,r,n,i,o,a){if(q(i)){var s=$e(e,i,o&&t&&t.i!==3&&!pe(t.R,n)?o.concat(n):void 0);if(Br(r,n,s),!q(s))return;e.m=!1}else a&&r.add(i);if(U(i)&&!Nt(i)){if(!e.h.D&&e._<1)return;$e(e,i),t&&t.A.l||Xe(e,i)}}function Xe(e,t,r){r===void 0&&(r=!1),!e.l&&e.h.D&&e.m&&Tt(t,r)}function bt(e,t){var r=e[E];return(r?F(r):e)[t]}function Dr(e,t){if(t in e)for(var r=Object.getPrototypeOf(e);r;){var n=Object.getOwnPropertyDescriptor(r,t);if(n)return n;r=Object.getPrototypeOf(r)}}function ee(e){e.P||(e.P=!0,e.l&&ee(e.l))}function xt(e){e.o||(e.o=Ct(e.t))}function Et(e,t,r){var n=Ot(t)?G("MapSet").F(t,r):_t(t)?G("MapSet").T(t,r):e.O?function(i,o){var a=Array.isArray(i),s={i:a?1:0,A:o?o.A:St(),P:!1,I:!1,R:{},l:o,t:i,k:null,o:null,j:null,C:!1},c=s,u=Ne;a&&(c=[s],u=Ce);var l=Proxy.revocable(c,u),f=l.revoke,d=l.proxy;return s.k=d,s.j=f,d}(t,r):G("ES5").J(t,r);return(r?r.A:St()).p.push(n),n}function Wn(e){return q(e)||D(22,e),function t(r){if(!U(r))return r;var n,i=r[E],o=ve(r);if(i){if(!i.P&&(i.i<4||!G("ES5").K(i)))return i.t;i.I=!0,n=kr(r,o),i.I=!1}else n=kr(r,o);return ce(n,function(a,s){i&&jn(i.t,a)===s||Br(n,a,t(s))}),o===3?new Set(n):n}(e)}function kr(e,t){switch(t){case 2:return new Map(e);case 3:return Array.from(e)}return Ct(e)}function Vr(){function e(a,s){var c=o[a];return c?c.enumerable=s:o[a]=c={configurable:!0,enumerable:s,get:function(){var u=this[E];return Ne.get(u,a)},set:function(u){var l=this[E];Ne.set(l,a,u)}},c}function t(a){for(var s=a.length-1;s>=0;s--){var c=a[s][E];if(!c.P)switch(c.i){case 5:n(c)&&ee(c);break;case 4:r(c)&&ee(c)}}}function r(a){for(var s=a.t,c=a.k,u=he(c),l=u.length-1;l>=0;l--){var f=u[l];if(f!==E){var d=s[f];if(d===void 0&&!pe(s,f))return!0;var m=c[f],h=m&&m[E];if(h?h.t!==d:!Wr(m,d))return!0}}var v=!!s[E];return u.length!==he(s).length+(v?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 i(a){a.g&&D(3,JSON.stringify(F(a)))}var o={};Un("ES5",{J:function(a,s){var c=Array.isArray(a),u=function(f,d){if(f){for(var m=Array(d.length),h=0;h<d.length;h++)Object.defineProperty(m,""+h,e(h,!0));return m}var v=Kr(d);delete v[E];for(var S=he(v),b=0;b<S.length;b++){var x=S[b];v[x]=e(x,f||!!v[x].enumerable)}return Object.create(Object.getPrototypeOf(d),v)}(c,a),l={i:c?5:4,A:s?s.A:St(),P:!1,I:!1,R:{},l:s,t:a,k:u,o:null,g:!1,C:!1};return Object.defineProperty(u,E,{value:l,writable:!0}),u},S:function(a,s,c){c?q(s)&&s[E].A===a&&t(a.p):(a.u&&function u(l){if(l&&typeof l=="object"){var f=l[E];if(f){var d=f.t,m=f.k,h=f.R,v=f.i;if(v===4)ce(m,function(w){w!==E&&(d[w]!==void 0||pe(d,w)?h[w]||u(m[w]):(h[w]=!0,ee(f)))}),ce(d,function(w){m[w]!==void 0||pe(m,w)||(h[w]=!1,ee(f))});else if(v===5){if(n(f)&&(ee(f),h.length=!0),m.length<d.length)for(var S=m.length;S<d.length;S++)h[S]=!1;else for(var b=d.length;b<m.length;b++)h[b]=!0;for(var x=Math.min(m.length,d.length),A=0;A<x;A++)m.hasOwnProperty(A)||(h[A]=!0),h[A]===void 0&&u(m[A])}}}}(a.p[0]),t(a.p))},K:function(a){return a.i===4?r(a):n(a)}})}var jr,Te,Rt=typeof Symbol<"u"&&typeof Symbol("x")=="symbol",Vn=typeof Map<"u",Gn=typeof Set<"u",Ir=typeof Proxy<"u"&&Proxy.revocable!==void 0&&typeof Reflect<"u",Gr=Rt?Symbol.for("immer-nothing"):((jr={})["immer-nothing"]=!0,jr),Ur=Rt?Symbol.for("immer-draftable"):"__$immer_draftable",E=Rt?Symbol.for("immer-state"):"__$immer_state";var Kn=""+Object.prototype.constructor,he=typeof Reflect<"u"&&Reflect.ownKeys?Reflect.ownKeys:Object.getOwnPropertySymbols!==void 0?function(e){return Object.getOwnPropertyNames(e).concat(Object.getOwnPropertySymbols(e))}:Object.getOwnPropertyNames,Kr=Object.getOwnPropertyDescriptors||function(e){var t={};return he(e).forEach(function(r){t[r]=Object.getOwnPropertyDescriptor(e,r)}),t},At={},Ne={get:function(e,t){if(t===E)return e;var r=F(e);if(!pe(r,t))return function(i,o,a){var s,c=Dr(o,a);return c?"value"in c?c.value:(s=c.get)===null||s===void 0?void 0:s.call(i.k):void 0}(e,r,t);var n=r[t];return e.I||!U(n)?n:n===bt(e.t,t)?(xt(e),e.o[t]=Et(e.A.h,n,e)):n},has:function(e,t){return t in F(e)},ownKeys:function(e){return Reflect.ownKeys(F(e))},set:function(e,t,r){var n=Dr(F(e),t);if(n?.set)return n.set.call(e.k,r),!0;if(!e.P){var i=bt(F(e),t),o=i?.[E];if(o&&o.t===r)return e.o[t]=r,e.R[t]=!1,!0;if(Wr(r,i)&&(r!==void 0||pe(e.t,t)))return!0;xt(e),ee(e)}return e.o[t]===r&&(r!==void 0||t in e.o)||Number.isNaN(r)&&Number.isNaN(e.o[t])||(e.o[t]=r,e.R[t]=!0),!0},deleteProperty:function(e,t){return bt(e.t,t)!==void 0||t in e.t?(e.R[t]=!1,xt(e),ee(e)):delete e.R[t],e.o&&delete e.o[t],!0},getOwnPropertyDescriptor:function(e,t){var r=F(e),n=Reflect.getOwnPropertyDescriptor(r,t);return n&&{writable:!0,configurable:e.i!==1||t!=="length",enumerable:n.enumerable,value:r[t]}},defineProperty:function(){D(11)},getPrototypeOf:function(e){return Object.getPrototypeOf(e.t)},setPrototypeOf:function(){D(12)}},Ce={};ce(Ne,function(e,t){Ce[e]=function(){return arguments[0]=arguments[0][0],t.apply(this,arguments)}}),Ce.deleteProperty=function(e,t){return Ce.set.call(this,e,t,void 0)},Ce.set=function(e,t,r){return Ne.set.call(this,e[0],t,r,e[0])};var Hn=function(){function e(r){var n=this;this.O=Ir,this.D=!0,this.produce=function(i,o,a){if(typeof i=="function"&&typeof o!="function"){var s=o;o=i;var c=n;return function(v){var S=this;v===void 0&&(v=s);for(var b=arguments.length,x=Array(b>1?b-1:0),A=1;A<b;A++)x[A-1]=arguments[A];return c.produce(v,function(w){var $;return($=o).call.apply($,[S,w].concat(x))})}}var u;if(typeof o!="function"&&D(6),a!==void 0&&typeof a!="function"&&D(7),U(i)){var l=Mr(n),f=Et(n,i,void 0),d=!0;try{u=o(f),d=!1}finally{d?qe(l):wt(l)}return typeof Promise<"u"&&u instanceof Promise?u.then(function(v){return yt(l,a),gt(v,l)},function(v){throw qe(l),v}):(yt(l,a),gt(u,l))}if(!i||typeof i!="object"){if((u=o(i))===void 0&&(u=i),u===Gr&&(u=void 0),n.D&&Tt(u,!0),a){var m=[],h=[];G("Patches").M(i,u,m,h),a(m,h)}return u}D(21,i)},this.produceWithPatches=function(i,o){if(typeof i=="function")return function(u){for(var l=arguments.length,f=Array(l>1?l-1:0),d=1;d<l;d++)f[d-1]=arguments[d];return n.produceWithPatches(u,function(m){return i.apply(void 0,[m].concat(f))})};var a,s,c=n.produce(i,o,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 t=e.prototype;return t.createDraft=function(r){U(r)||D(8),q(r)&&(r=Wn(r));var n=Mr(this),i=Et(this,r,void 0);return i[E].C=!0,wt(n),i},t.finishDraft=function(r,n){var i=r&&r[E],o=i.A;return yt(o,n),gt(void 0,o)},t.setAutoFreeze=function(r){this.D=r},t.setUseProxies=function(r){r&&!Ir&&D(20),this.O=r},t.applyPatches=function(r,n){var i;for(i=n.length-1;i>=0;i--){var o=n[i];if(o.path.length===0&&o.op==="replace"){r=o.value;break}}i>-1&&(n=n.slice(i+1));var a=G("Patches").$;return q(r)?a(r,n):this.produce(r,function(s){return a(s,n)})},e}(),M=new Hn,zn=M.produce,Di=M.produceWithPatches.bind(M),ki=M.setAutoFreeze.bind(M),ji=M.setUseProxies.bind(M),Ii=M.applyPatches.bind(M),Ui=M.createDraft.bind(M),Bi=M.finishDraft.bind(M),Ye=zn;function le(e){"@babel/helpers - typeof";return le=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(t){return typeof t}:function(t){return t&&typeof Symbol=="function"&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},le(e)}function Hr(e,t){if(le(e)!="object"||!e)return e;var r=e[Symbol.toPrimitive];if(r!==void 0){var n=r.call(e,t||"default");if(le(n)!="object")return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return(t==="string"?String:Number)(e)}function zr(e){var t=Hr(e,"string");return le(t)=="symbol"?t:t+""}function qr(e,t,r){return(t=zr(t))in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function $r(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter(function(i){return Object.getOwnPropertyDescriptor(e,i).enumerable})),r.push.apply(r,n)}return r}function Pt(e){for(var t=1;t<arguments.length;t++){var r=arguments[t]!=null?arguments[t]:{};t%2?$r(Object(r),!0).forEach(function(n){qr(e,n,r[n])}):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):$r(Object(r)).forEach(function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(r,n))})}return e}function N(e){return"Minified Redux error #"+e+"; visit https://redux.js.org/Errors?code="+e+" for the full message or use the non-minified dev environment for full errors. "}var Xr=function(){return typeof Symbol=="function"&&Symbol.observable||"@@observable"}(),Mt=function(){return Math.random().toString(36).substring(7).split("").join(".")},Je={INIT:"@@redux/INIT"+Mt(),REPLACE:"@@redux/REPLACE"+Mt(),PROBE_UNKNOWN_ACTION:function(){return"@@redux/PROBE_UNKNOWN_ACTION"+Mt()}};function qn(e){if(typeof e!="object"||e===null)return!1;for(var t=e;Object.getPrototypeOf(t)!==null;)t=Object.getPrototypeOf(t);return Object.getPrototypeOf(e)===t}function Lt(e,t,r){var n;if(typeof t=="function"&&typeof r=="function"||typeof r=="function"&&typeof arguments[3]=="function")throw new Error(N(0));if(typeof t=="function"&&typeof r>"u"&&(r=t,t=void 0),typeof r<"u"){if(typeof r!="function")throw new Error(N(1));return r(Lt)(e,t)}if(typeof e!="function")throw new Error(N(2));var i=e,o=t,a=[],s=a,c=!1;function u(){s===a&&(s=a.slice())}function l(){if(c)throw new Error(N(3));return o}function f(v){if(typeof v!="function")throw new Error(N(4));if(c)throw new Error(N(5));var S=!0;return u(),s.push(v),function(){if(S){if(c)throw new Error(N(6));S=!1,u();var x=s.indexOf(v);s.splice(x,1),a=null}}}function d(v){if(!qn(v))throw new Error(N(7));if(typeof v.type>"u")throw new Error(N(8));if(c)throw new Error(N(9));try{c=!0,o=i(o,v)}finally{c=!1}for(var S=a=s,b=0;b<S.length;b++){var x=S[b];x()}return v}function m(v){if(typeof v!="function")throw new Error(N(10));i=v,d({type:Je.REPLACE})}function h(){var v,S=f;return v={subscribe:function(x){if(typeof x!="object"||x===null)throw new Error(N(11));function A(){x.next&&x.next(l())}A();var w=S(A);return{unsubscribe:w}}},v[Xr]=function(){return this},v}return d({type:Je.INIT}),n={dispatch:d,subscribe:f,getState:l,replaceReducer:m},n[Xr]=h,n}function $n(e){Object.keys(e).forEach(function(t){var r=e[t],n=r(void 0,{type:Je.INIT});if(typeof n>"u")throw new Error(N(12));if(typeof r(void 0,{type:Je.PROBE_UNKNOWN_ACTION()})>"u")throw new Error(N(13))})}function Yr(e){for(var t=Object.keys(e),r={},n=0;n<t.length;n++){var i=t[n];typeof e[i]=="function"&&(r[i]=e[i])}var o=Object.keys(r),a,s;try{$n(r)}catch(c){s=c}return function(u,l){if(u===void 0&&(u={}),s)throw s;if(0)var f;for(var d=!1,m={},h=0;h<o.length;h++){var v=o[h],S=r[v],b=u[v],x=S(b,l);if(typeof x>"u"){var A=l&&l.type;throw new Error(N(14))}m[v]=x,d=d||x!==b}return d=d||o.length!==Object.keys(u).length,d?m:u}}function me(){for(var e=arguments.length,t=new Array(e),r=0;r<e;r++)t[r]=arguments[r];return t.length===0?function(n){return n}:t.length===1?t[0]:t.reduce(function(n,i){return function(){return n(i.apply(void 0,arguments))}})}function Jr(){for(var e=arguments.length,t=new Array(e),r=0;r<e;r++)t[r]=arguments[r];return function(n){return function(){var i=n.apply(void 0,arguments),o=function(){throw new Error(N(15))},a={getState:i.getState,dispatch:function(){return o.apply(void 0,arguments)}},s=t.map(function(c){return c(a)});return o=me.apply(void 0,s)(i.dispatch),Pt(Pt({},i),{},{dispatch:o})}}}function Zr(e){var t=function(n){var i=n.dispatch,o=n.getState;return function(a){return function(s){return typeof s=="function"?s(i,o,e):a(s)}}};return t}var Qr=Zr();Qr.withExtraArgument=Zr;var Dt=Qr;var nn=function(){var e=function(t,r){return e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(n,i){n.__proto__=i}||function(n,i){for(var o in i)Object.prototype.hasOwnProperty.call(i,o)&&(n[o]=i[o])},e(t,r)};return function(t,r){if(typeof r!="function"&&r!==null)throw new TypeError("Class extends value "+String(r)+" is not a constructor or null");e(t,r);function n(){this.constructor=t}t.prototype=r===null?Object.create(r):(n.prototype=r.prototype,new n)}}(),Xn=function(e,t){var r={label:0,sent:function(){if(o[0]&1)throw o[1];return o[1]},trys:[],ops:[]},n,i,o,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,i&&(o=u[0]&2?i.return:u[0]?i.throw||((o=i.return)&&o.call(i),0):i.next)&&!(o=o.call(i,u[1])).done)return o;switch(i=0,o&&(u=[u[0]&2,o.value]),u[0]){case 0:case 1:o=u;break;case 4:return r.label++,{value:u[1],done:!1};case 5:r.label++,i=u[1],u=[0];continue;case 7:u=r.ops.pop(),r.trys.pop();continue;default:if(o=r.trys,!(o=o.length>0&&o[o.length-1])&&(u[0]===6||u[0]===2)){r=0;continue}if(u[0]===3&&(!o||u[1]>o[0]&&u[1]<o[3])){r.label=u[1];break}if(u[0]===6&&r.label<o[1]){r.label=o[1],o=u;break}if(o&&r.label<o[2]){r.label=o[2],r.ops.push(u);break}o[2]&&r.ops.pop(),r.trys.pop();continue}u=t.call(e,r)}catch(l){u=[6,l],i=0}finally{n=o=0}if(u[0]&5)throw u[1];return{value:u[0]?u[1]:void 0,done:!0}}},ye=function(e,t){for(var r=0,n=t.length,i=e.length;r<n;r++,i++)e[i]=t[r];return e},Yn=Object.defineProperty,Jn=Object.defineProperties,Zn=Object.getOwnPropertyDescriptors,Fr=Object.getOwnPropertySymbols,Qn=Object.prototype.hasOwnProperty,Fn=Object.prototype.propertyIsEnumerable,en=function(e,t,r){return t in e?Yn(e,t,{enumerable:!0,configurable:!0,writable:!0,value:r}):e[t]=r},te=function(e,t){for(var r in t||(t={}))Qn.call(t,r)&&en(e,r,t[r]);if(Fr)for(var n=0,i=Fr(t);n<i.length;n++){var r=i[n];Fn.call(t,r)&&en(e,r,t[r])}return e},kt=function(e,t){return Jn(e,Zn(t))},eo=function(e,t,r){return new Promise(function(n,i){var o=function(c){try{s(r.next(c))}catch(u){i(u)}},a=function(c){try{s(r.throw(c))}catch(u){i(u)}},s=function(c){return c.done?n(c.value):Promise.resolve(c.value).then(o,a)};s((r=r.apply(e,t)).next())})};var to=typeof window<"u"&&window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__?window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__:function(){if(arguments.length!==0)return typeof arguments[0]=="object"?me:me.apply(null,arguments)},na=typeof window<"u"&&window.__REDUX_DEVTOOLS_EXTENSION__?window.__REDUX_DEVTOOLS_EXTENSION__:function(){return function(e){return e}};function ro(e){if(typeof e!="object"||e===null)return!1;var t=Object.getPrototypeOf(e);if(t===null)return!0;for(var r=t;Object.getPrototypeOf(r)!==null;)r=Object.getPrototypeOf(r);return t===r}var no=function(e){nn(t,e);function t(){for(var r=[],n=0;n<arguments.length;n++)r[n]=arguments[n];var i=e.apply(this,r)||this;return Object.setPrototypeOf(i,t.prototype),i}return Object.defineProperty(t,Symbol.species,{get:function(){return t},enumerable:!1,configurable:!0}),t.prototype.concat=function(){for(var r=[],n=0;n<arguments.length;n++)r[n]=arguments[n];return e.prototype.concat.apply(this,r)},t.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(t.bind.apply(t,ye([void 0],r[0].concat(this)))):new(t.bind.apply(t,ye([void 0],r.concat(this))))},t}(Array),oo=function(e){nn(t,e);function t(){for(var r=[],n=0;n<arguments.length;n++)r[n]=arguments[n];var i=e.apply(this,r)||this;return Object.setPrototypeOf(i,t.prototype),i}return Object.defineProperty(t,Symbol.species,{get:function(){return t},enumerable:!1,configurable:!0}),t.prototype.concat=function(){for(var r=[],n=0;n<arguments.length;n++)r[n]=arguments[n];return e.prototype.concat.apply(this,r)},t.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(t.bind.apply(t,ye([void 0],r[0].concat(this)))):new(t.bind.apply(t,ye([void 0],r.concat(this))))},t}(Array);function Ut(e){return U(e)?Ye(e,function(){}):e}function io(e){return typeof e=="boolean"}function ao(){return function(t){return so(t)}}function so(e){e===void 0&&(e={});var t=e.thunk,r=t===void 0?!0:t,n=e.immutableCheck,i=n===void 0?!0:n,o=e.serializableCheck,a=o===void 0?!0:o,s=new no;if(r&&(io(r)?s.push(Dt):s.push(Dt.withExtraArgument(r.extraArgument))),0){if(i)var c;if(a)var u}return s}var jt=!0;function on(e){var t=ao(),r=e||{},n=r.reducer,i=n===void 0?void 0:n,o=r.middleware,a=o===void 0?t():o,s=r.devTools,c=s===void 0?!0:s,u=r.preloadedState,l=u===void 0?void 0:u,f=r.enhancers,d=f===void 0?void 0:f,m;if(typeof i=="function")m=i;else if(ro(i))m=Yr(i);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 h=a;if(typeof h=="function"&&(h=h(t),!jt&&!Array.isArray(h)))throw new Error("when using a middleware builder function, an array of middleware must be returned");if(!jt&&h.some(function(w){return typeof w!="function"}))throw new Error("each middleware provided to configureStore must be a function");var v=Jr.apply(void 0,h),S=me;c&&(S=to(te({trace:!jt},typeof c=="object"&&c)));var b=new oo(v),x=b;Array.isArray(d)?x=ye([v],d):typeof d=="function"&&(x=d(b));var A=S.apply(void 0,x);return Lt(m,l,A)}function re(e,t){function r(){for(var n=[],i=0;i<arguments.length;i++)n[i]=arguments[i];if(t){var o=t.apply(void 0,n);if(!o)throw new Error("prepareAction did not return an object");return te(te({type:e,payload:o.payload},"meta"in o&&{meta:o.meta}),"error"in o&&{error:o.error})}return{type:e,payload:n[0]}}return r.toString=function(){return""+e},r.type=e,r.match=function(n){return n.type===e},r}function an(e){var t={},r=[],n,i={addCase:function(o,a){var s=typeof o=="string"?o:o.type;if(s in t)throw new Error("addCase cannot be called with two reducers for the same action type");return t[s]=a,i},addMatcher:function(o,a){return r.push({matcher:o,reducer:a}),i},addDefaultCase:function(o){return n=o,i}};return e(i),[t,r,n]}function uo(e){return typeof e=="function"}function co(e,t,r,n){r===void 0&&(r=[]);var i=typeof t=="function"?an(t):[t,r,n],o=i[0],a=i[1],s=i[2],c;if(uo(e))c=function(){return Ut(e())};else{var u=Ut(e);c=function(){return u}}function l(f,d){f===void 0&&(f=c());var m=ye([o[d.type]],a.filter(function(h){var v=h.matcher;return v(d)}).map(function(h){var v=h.reducer;return v}));return m.filter(function(h){return!!h}).length===0&&(m=[s]),m.reduce(function(h,v){if(v)if(q(h)){var S=h,b=v(S,d);return b===void 0?h:b}else{if(U(h))return Ye(h,function(x){return v(x,d)});var b=v(h,d);if(b===void 0){if(h===null)return h;throw Error("A case reducer on a non-draftable value must not return undefined")}return b}return h},f)}return l.getInitialState=c,l}function lo(e,t){return e+"/"+t}function sn(e){var t=e.name;if(!t)throw new Error("`name` is a required option for createSlice");typeof process<"u";var r=typeof e.initialState=="function"?e.initialState:Ut(e.initialState),n=e.reducers||{},i=Object.keys(n),o={},a={},s={};i.forEach(function(l){var f=n[l],d=lo(t,l),m,h;"reducer"in f?(m=f.reducer,h=f.prepare):m=f,o[l]=m,a[d]=m,s[l]=h?re(d,h):re(d)});function c(){var l=typeof e.extraReducers=="function"?an(e.extraReducers):[e.extraReducers],f=l[0],d=f===void 0?{}:f,m=l[1],h=m===void 0?[]:m,v=l[2],S=v===void 0?void 0:v,b=te(te({},d),a);return co(r,function(x){for(var A in b)x.addCase(A,b[A]);for(var w=0,$=h;w<$.length;w++){var K=$[w];x.addMatcher(K.matcher,K.reducer)}S&&x.addDefaultCase(S)})}var u;return{name:t,reducer:function(l,f){return u||(u=c()),u(l,f)},actions:s,caseReducers:o,getInitialState:function(){return u||(u=c()),u.getInitialState()}}}var fo="ModuleSymbhasOwnPr-0123456789ABCDEFGHNRVfgctiUvz_KqYTJkLxpZXIjQW",po=function(e){e===void 0&&(e=21);for(var t="",r=e;r--;)t+=fo[Math.random()*64|0];return t},ho=["name","message","stack","code"],It=function(){function e(t,r){this.payload=t,this.meta=r}return e}(),tn=function(){function e(t,r){this.payload=t,this.meta=r}return e}(),vo=function(e){if(typeof e=="object"&&e!==null){for(var t={},r=0,n=ho;r<n.length;r++){var i=n[r];typeof e[i]=="string"&&(t[i]=e[i])}return t}return{message:String(e)}},sa=function(){function e(t,r,n){var i=re(t+"/fulfilled",function(l,f,d,m){return{payload:l,meta:kt(te({},m||{}),{arg:d,requestId:f,requestStatus:"fulfilled"})}}),o=re(t+"/pending",function(l,f,d){return{payload:void 0,meta:kt(te({},d||{}),{arg:f,requestId:l,requestStatus:"pending"})}}),a=re(t+"/rejected",function(l,f,d,m,h){return{payload:m,error:(n&&n.serializeError||vo)(l||"Rejected"),meta:kt(te({},h||{}),{arg:d,requestId:f,rejectedWithValue:!!m,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(f,d,m){var h=n?.idGenerator?n.idGenerator(l):po(),v=new c,S,b=!1;function x(w){S=w,v.abort()}var A=function(){return eo(this,null,function(){var w,$,K,ge,Xt,be,Yt;return Xn(this,function(fe){switch(fe.label){case 0:return fe.trys.push([0,4,,5]),ge=(w=n?.condition)==null?void 0:w.call(n,l,{getState:d,extra:m}),yo(ge)?[4,ge]:[3,2];case 1:ge=fe.sent(),fe.label=2;case 2:if(ge===!1||v.signal.aborted)throw{name:"ConditionError",message:"Aborted due to condition callback returning false."};return b=!0,Xt=new Promise(function(j,xe){return v.signal.addEventListener("abort",function(){return xe({name:"AbortError",message:S||"Aborted"})})}),f(o(h,l,($=n?.getPendingMeta)==null?void 0:$.call(n,{requestId:h,arg:l},{getState:d,extra:m}))),[4,Promise.race([Xt,Promise.resolve(r(l,{dispatch:f,getState:d,extra:m,requestId:h,signal:v.signal,abort:x,rejectWithValue:function(j,xe){return new It(j,xe)},fulfillWithValue:function(j,xe){return new tn(j,xe)}})).then(function(j){if(j instanceof It)throw j;return j instanceof tn?i(j.payload,h,l,j.meta):i(j,h,l)})])];case 3:return K=fe.sent(),[3,5];case 4:return be=fe.sent(),K=be instanceof It?a(null,h,l,be.payload,be.meta):a(be,h,l),[3,5];case 5:return Yt=n&&!n.dispatchConditionRejection&&a.match(K)&&K.meta.condition,Yt||f(K),[2,K]}})})}();return Object.assign(A,{abort:x,requestId:h,arg:l,unwrap:function(){return A.then(mo)}})}}return Object.assign(u,{pending:o,rejected:a,fulfilled:i,typePrefix:t})}return e.withTypes=function(){return e},e}();function mo(e){if(e.meta&&e.meta.rejectedWithValue)throw e.payload;if(e.error)throw e.error;return e.payload}function yo(e){return e!==null&&typeof e=="object"&&typeof e.then=="function"}var un="listener",cn="completed",ln="cancelled",ua="task-"+ln,ca="task-"+cn,la=un+"-"+ln,fa=un+"-"+cn;var Bt="listenerMiddleware";var da=re(Bt+"/add"),pa=re(Bt+"/removeAll"),ha=re(Bt+"/remove");var rn,va=typeof queueMicrotask=="function"?queueMicrotask.bind(typeof window<"u"?window:typeof global<"u"?global:globalThis):function(e){return(rn||(rn=Promise.resolve())).then(e).catch(function(t){return setTimeout(function(){throw t},0)})},go=function(e){return function(t){setTimeout(t,e)}},ma=typeof window<"u"&&window.requestAnimationFrame?window.requestAnimationFrame:go(10);Vr();function bo(e,t){return class extends e{constructor(){super(...arguments),this.eventBus=t??document.createElement("span")}addEventListener(r,n,i){this.eventBus.addEventListener(r,n,i)}dispatchEvent(r){return this.eventBus.dispatchEvent(r)}removeEventListener(r,n,i){this.eventBus.removeEventListener(r,n,i)}}}var Ze=class extends bo(Object){};window.ftReduxStores||(window.ftReduxStores={});var fn=class e extends Ze{static get(t){var r;let n=typeof t=="string"?t:t.name,i=typeof t=="string"?void 0:t,o=window.ftReduxStores[n];if(Ae(o))return o;if(i==null)return;let a=sn({...i,reducers:(r=i.reducers)!==null&&r!==void 0?r:{}}),s=on({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[i.name]=new e(a,s,i.eventBus)}constructor(t,r,n){super(),this.reduxSlice=t,this.reduxStore=r,this.isFtReduxStore=!0,this.commands=new Ve;let i=o=>o!=null?JSON.parse(JSON.stringify(o)):o;this.actions=new Proxy(this.reduxSlice.actions,{get:(o,a,s)=>{let c=a,u=o[c];return u?(...l)=>{let f=u(...l.map(i));return this.reduxStore.dispatch(f),f}:l=>{this.setState({[c]:i(l)})}}}),this.eventBus=n??this.eventBus}clear(){this.reduxStore.dispatch({type:"CLEAR_FT_REDUX_STORE"})}setState(t){this.reduxStore.dispatch({type:"DEFAULT_VALUE_SETTER__"+Object.keys(t).join("_"),overwrites:t})}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(t){throw new Error("Not implemented yet.")}subscribe(t){return this.reduxStore.subscribe(t)}get name(){return this.reduxSlice.name}get reducer(){return this.reduxSlice.reducer}get caseReducers(){return this.reduxSlice.caseReducers}getInitialState(){return this.reduxSlice.getInitialState()}};var tt=y(_());var Qe=class extends Y{async listMySearches(){let t=g.getState().session;return t?.sessionAuthenticated?this.cache.get("my-searches",async()=>(await this.awaitApi).listMySearches(t.profile.userId),5*60*1e3):[]}};var Fe=class extends Y{async listMyBookmarks(){let t=g.getState().session;return t?.sessionAuthenticated?this.cache.get("my-bookmarks",async()=>(await this.awaitApi).listMyBookmarks(t.profile.userId),5*60*1e3):[]}};var So="ft-user-assets",et=tt.FtReduxStore.get({name:So,initialState:{savedSearches:void 0,bookmarks:void 0}}),Wt=class{constructor(){this.currentSession=g.getState().session,this.bookmarksAreUsed=!1,this.bookmarksService=new Fe,this.savedSearchesService=new Qe,g.subscribe(()=>this.reloadWhenUserSessionChanges())}reloadWhenUserSessionChanges(){var t;let{session:r}=g.getState();(0,tt.deepEqual)((t=this.currentSession)===null||t===void 0?void 0:t.profile,r?.profile)||(this.currentSession=r,this.clearMySearches(),this.reloadBookmarks())}clear(){this.clearMySearches(),this.clearMyBookmarks()}clearMySearches(){this.savedSearchesService.clearCache(),et.actions.savedSearches(void 0)}clearMyBookmarks(){this.bookmarksService.clearCache(),et.actions.bookmarks(void 0)}async reloadMySearches(){this.savedSearchesService.clearCache();let t=await this.savedSearchesService.listMySearches();et.actions.savedSearches(t)}async reloadBookmarks(){this.bookmarksService.clearCache(),await this.updateBookmarksIfUsed()}async registerBookmarkComponent(){this.bookmarksAreUsed=!0,await this.updateBookmarksIfUsed()}async updateBookmarksIfUsed(){var t;if(this.bookmarksAreUsed){let r=!((t=this.currentSession)===null||t===void 0)&&t.sessionAuthenticated?await this.bookmarksService.listMyBookmarks():void 0;et.actions.bookmarks(r)}}},Za=new Wt;var Vt=class{addCommand(t,r=!1){g.commands.add(t,r)}consumeCommand(t){return g.commands.consume(t)}};window.FluidTopicsAppInfoStoreService=new Vt;var dn=y(_()),Gt=class{highlightHtml(t,r,n){(0,dn.highlightHtml)(t,r,n)}};window.FluidTopicsHighlightHtmlService=new Gt;var pn=y(_());var Kt=class{isDate(t){var r,n,i,o;return(o=(i=((n=(r=g.getState().metadataConfiguration)===null||r===void 0?void 0:r.descriptors)!==null&&n!==void 0?n:[]).find(s=>s.key===t))===null||i===void 0?void 0:i.date)!==null&&o!==void 0?o:!1}format(t,r){var n,i,o;return pn.DateFormatter.format(t,(n=r?.locale)!==null&&n!==void 0?n:g.getState().uiLocale,(i=r?.longFormat)!==null&&i!==void 0?i:!1,(o=r?.withTime)!==null&&o!==void 0?o:!1)}};window.FluidTopicsDateService=new Kt;var wo=y(_());(0,hn.customElement)("ft-app-context")(O);var mn=y(L()),Eo=function(e,t,r,n){var i=arguments.length,o=i<3?t:n===null?n=Object.getOwnPropertyDescriptor(t,r):n,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(a=e[s])&&(o=(i<3?a(o):i>3?a(t,r,o):a(t,r))||o);return i>3&&o&&Object.defineProperty(t,r,o),o},Ht=Symbol("i18nAttributes"),zt=Symbol("i18nListAttributes"),rt=Symbol("i18nProperties"),qt=Symbol("i18nManualContexts"),Re=Symbol("i18nUnsubs");function yn(e){var t,r;class n extends e{constructor(){super(...arguments),this.useCustomMessageContexts=!1,this[t]=new Map,this[r]=new Map}get i18nService(){return this.useCustomMessageContexts?gr:se}i18n(o,a,...s){var c;if(typeof o=="string")return this.i18nService.resolveMessage(o,a,...s);let u=(c=o.args)!==null&&c!==void 0?c:o.argsProvider?o.argsProvider(this):[];return this.i18nService.resolveMessage(o.context,o.key,...u)}onI18nUpdate(o){var a,s,c;(a=this[Ht])===null||a===void 0||a.forEach((u,l)=>{let f=this.getI18nAttributeValue(l);f&&(this[l]=this.getI18nAttributeMessage(f,u,o))}),(s=this[zt])===null||s===void 0||s.forEach((u,l)=>{let f=this.getI18nListAttributeValues(l);this[l]=f?.map(d=>this.getI18nAttributeMessage(d,u,o))}),(c=this[rt])===null||c===void 0||c.forEach((u,l)=>{u.context.toLowerCase()===o.toLowerCase()&&(this[l]=this.i18n(u))}),setTimeout(()=>this.requestUpdate(),0)}buildI18nAttributeMessage(o,a){return{...o,message:this.i18n({context:o.context,key:o.key,...a})}}getI18nAttributeMessage(o,a,s){var c;let u=!s||((c=o.context)===null||c===void 0?void 0:c.toLowerCase())===s.toLowerCase();return o.context&&o.key&&u?this.buildI18nAttributeMessage(o,a):o}update(o){var a,s,c;super.update(o),(a=this[Ht])===null||a===void 0||a.forEach((u,l)=>{let f=this.getI18nAttributeValue(l);f?.context&&f.key&&(o.has(l)||u.argsProvider!=null)&&(this.addI18nContextIfNeeded(f,o,l),this[l]=this.getI18nAttributeMessage(f,u))}),(s=this[zt])===null||s===void 0||s.forEach((u,l)=>{let f=this.getI18nListAttributeValues(l);(o.has(l)||u.argsProvider!=null)&&(this[l]=f?.map(d=>(this.addI18nContextIfNeeded(d,o,l),this.getI18nAttributeMessage(d,u))))}),(c=this[rt])===null||c===void 0||c.forEach((u,l)=>{u.argsProvider!=null&&(this[l]=this.i18n(u))})}getI18nAttributeValue(o){return this[o]}getI18nListAttributeValues(o){return this[o]}addI18nContextIfNeeded(o,a,s){o.context&&o.key&&a.has(s)&&this.addI18nContext(o.context)}addI18nMessagesAndSubscribe(o,a){o=o.toLowerCase(),this[Re].has(o)||this[Re].set(o,this.i18nService.subscribe(o,()=>this.onI18nUpdate(o))),this.i18nService.prepareContext(o,a??{}),this.onI18nUpdate(o)}connectedCallback(){var o,a,s,c,u,l;super.connectedCallback(),new Set([...(a=(o=this[rt])===null||o===void 0?void 0:o.values())!==null&&a!==void 0?a:[],...[...(c=(s=this[Ht])===null||s===void 0?void 0:s.keys())!==null&&c!==void 0?c:[]].map(f=>this.getI18nAttributeValue(f)),...[...(l=(u=this[zt])===null||u===void 0?void 0:u.keys())!==null&&l!==void 0?l:[]].flatMap(f=>this.getI18nListAttributeValues(f))].map(f=>f?.context)).forEach(f=>f&&this.addI18nMessages(f)),this[qt].forEach((f,d)=>{this.addI18nMessages(d,f)})}addI18nMessages(o,a){this[qt].set(o,a??{}),this.addI18nMessagesAndSubscribe(o,a)}addI18nContext(o,a){this.addI18nMessages(typeof o=="string"?o:o.name,a)}disconnectedCallback(){super.disconnectedCallback(),this[Re].forEach(o=>o()),this[Re].clear()}}return t=qt,r=Re,Eo([(0,mn.property)({type:Boolean})],n.prototype,"useCustomMessageContexts",void 0),n}var vn=class extends yn(ot.FtLitElement){},nt=class extends yn(ot.FtLitElementRedux){};var Pe=function(e,t,r,n){var i=arguments.length,o=i<3?t:n===null?n=Object.getOwnPropertyDescriptor(t,r):n,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(a=e[s])&&(o=(i<3?a(o):i>3?a(t,r,o):a(t,r))||o);return i>3&&o&&Object.defineProperty(t,r,o),o},B=class extends nt{constructor(){super(),this.editorMode=!1,this.addStore(g)}render(){return!this.key||!this.context?this.editorMode?"Select a context and a label key.":it.nothing:it.html`
|
|
82
86
|
<span class="ft-i18n">
|
|
83
87
|
${this.i18n(this.context,this.key,...Array.isArray(this.args)?this.args:[])}
|
|
84
88
|
</span>
|
|
85
|
-
`}update(t){var r;super.update(t),["context","key","defaultMessage"].some(n=>t.has(n))&&this.context&&this.key&&this.addI18nMessages(this.context,{[this.key]:(r=this.defaultMessage)!==null&&r!==void 0?r:""})}};
|
|
89
|
+
`}update(t){var r;super.update(t),["context","key","defaultMessage"].some(n=>t.has(n))&&this.context&&this.key&&this.addI18nMessages(this.context,{[this.key]:(r=this.defaultMessage)!==null&&r!==void 0?r:""})}};B.elementDefinitions={};B.styles=hr;Pe([(0,st.redux)()],B.prototype,"editorMode",void 0);Pe([(0,at.property)()],B.prototype,"context",void 0);Pe([(0,at.property)()],B.prototype,"key",void 0);Pe([(0,st.jsonProperty)([])],B.prototype,"args",void 0);Pe([(0,at.property)()],B.prototype,"defaultMessage",void 0);var ut=class e{static build(t){return new e(t)}static fromGwt(t){return new e(t)}constructor(t){this.name=t,this.properties=new Proxy({},{get:(r,n)=>{let i=n;return o=>({context:this.name,key:i,args:typeof o=="function"?void 0:o,argsProvider:typeof o=="function"?o:void 0})}}),this.messages=new Proxy({},{get:(r,n)=>(...i)=>se.resolveMessage(this.name,n,...i)}),this.rawMessages=new Proxy({},{get:(r,n)=>se.resolveRawMessage(this.name,n)})}};(0,gn.customElement)("ft-i18n")(B);var $t=ut.build("designedReaderTopicContent");var k=function(e,t,r,n){var i=arguments.length,o=i<3?t:n===null?n=Object.getOwnPropertyDescriptor(t,r):n,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(a=e[s])&&(o=(i<3?a(o):i>3?a(t,r,o):a(t,r))||o);return i>3&&o&&Object.defineProperty(t,r,o),o},C=class extends De{constructor(){super(...arguments),this.contentPreprocessor=t=>t,this.onContentAvailable=()=>null}render(){var t;return!this.map||!this.error&&!this.content?ne.html`
|
|
86
90
|
<section class="topic-loading"></section>
|
|
87
|
-
`:
|
|
91
|
+
`:ne.html`
|
|
88
92
|
<style>
|
|
89
93
|
@import "${(t=this.map)===null||t===void 0?void 0:t.contentStyles.topicStylesheetUrl}";
|
|
90
94
|
</style>
|
|
91
|
-
<section class="topic" lang="${
|
|
95
|
+
<section class="topic" lang="${this.getTopicLanguage()}">
|
|
92
96
|
${this.renderTopicContent()}
|
|
93
97
|
</section>
|
|
94
|
-
`}update(t){super.update(t),
|
|
98
|
+
`}update(t){super.update(t),["map","tocNode","translationDestinationLanguage","translationProfileId"].some(r=>t.has(r))&&this.updateContent()}updateContent(){var t;this.error=void 0,this.content=void 0,this.map&&this.tocNode&&((t=this.stateManager)===null||t===void 0||t.fetchTopicContent(this.tocNode).then(r=>this.contentPreprocessor(r||'<div class="empty-topic"></div>')).then(r=>this.content=r).catch(r=>this.error=r))}contentAvailableCallback(t){var r,n,i,o,a,s,c;super.contentAvailableCallback(t),!this.disableContextInteractions&&(!((r=this.scrollTarget)===null||r===void 0)&&r.section)&&(!((n=this.tocNode)===null||n===void 0)&&n.tocId)&&((i=this.tocNode)===null||i===void 0?void 0:i.tocId)===this.scrollTarget.tocId&&this.content&&(((a=(o=this.shadowRoot)===null||o===void 0?void 0:o.querySelector(`[id="${this.scrollTarget.section}"], [name="${this.scrollTarget.section}"]`))!==null&&a!==void 0?a:this).dispatchEvent(new Event("scroll-into-view",{bubbles:!0,composed:!0})),(s=this.stateManager)===null||s===void 0||s.scrollDone()),(t.has("searchInDocumentQuery")||t.has("content"))&&this.content&&(0,R.waitFor)(()=>this.topicContainer).then(u=>{(0,R.highlightHtml)(u,this.searchInDocumentQuery,{attributes:{part:"kwicmatch"}})}),t.has("content")&&this.content&&(0,R.waitFor)(()=>this.topicContainer).then(u=>{this.moveSvgInShadowRoot(),this.processExpandingBlocks(),this.processOpenApiSelect(),this.onContentAvailable(u,this.shadowRoot)}),(t.has("content")&&this.content||t.has("error")&&this.error)&&performance.mark("fluid_topics__reader_topic_displayed__"+((c=this.tocNode)===null||c===void 0?void 0:c.tocId))}processExpandingBlocks(){for(let t of this.shadowRoot.querySelectorAll(".ft-expanding-block-link"))t.onclick=()=>{var r,n,i,o;if(t.classList.contains("ft-expanding-exclusive")&&!t.classList.contains("ft-expanding-block-expanded"))for(let s of Array.from((n=(r=this.topicContainer)===null||r===void 0?void 0:r.querySelectorAll(".ft-expanding-block-expanded"))!==null&&n!==void 0?n:[]))s.classList.remove("ft-expanding-block-expanded");t.classList.toggle("ft-expanding-block-expanded");let a=t.getAttribute("data-expanding-block-target-id");(o=(i=this.topicContainer)===null||i===void 0?void 0:i.querySelector("[id='"+a+"']"))===null||o===void 0||o.classList.toggle("ft-expanding-block-expanded")}}processOpenApiSelect(){for(let t of this.shadowRoot.querySelectorAll(".ft-openapi-select"))t.onchange=r=>{var n,i,o;let a=r.target,s=(n=a?.parentElement)===null||n===void 0?void 0:n.parentElement;(i=s?.querySelector(".selected-example"))===null||i===void 0||i.classList.remove("selected-example"),(o=s?.querySelector('.select-example[content-type="'+a?.value+'"]'))===null||o===void 0||o.classList.add("selected-example")}}moveSvgInShadowRoot(){this.shadowRoot.querySelectorAll(".ft-svg-container").forEach(t=>{if(!t.shadowRoot){let r=t.innerHTML;t.innerHTML="";let n=t.attachShadow({mode:"open"}),i=document.createRange().createContextualFragment(r),o=document.importNode(i,!0);n.append(o)}})}onStoreAvailable(){super.onStoreAvailable(),this.updateContent()}renderTopicContent(){var t,r,n;if(this.error)return ne.html`
|
|
95
99
|
<div class="topic-on-error">
|
|
96
100
|
<ft-icon>WARNING</ft-icon>
|
|
97
101
|
<div>
|
|
98
102
|
${this.is404Error()?$t.messages.topicMissingAdvice():$t.messages.somethingWentWrong()}
|
|
99
103
|
</div>
|
|
100
104
|
</div>
|
|
101
|
-
`;let
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
105
|
+
`;let i=(r=(t=this.map)===null||t===void 0?void 0:t.contentStyles.customCssClasses.join(" "))!==null&&r!==void 0?r:"";return this.translationLoading?ne.html`
|
|
106
|
+
<ft-skeleton></ft-skeleton>`:ne.html`
|
|
107
|
+
<div class="depth-${(n=this.tocNode)===null||n===void 0?void 0:n.depth} content-locale-${this.getTopicLanguage()} ${i}">
|
|
108
|
+
${this.content!=null?(0,bn.unsafeHTML)(`${this.content}`):ne.nothing}
|
|
109
|
+
</div>
|
|
110
|
+
`}is404Error(){return this.error.status===404}getTopicLanguage(){var t;return this.translationDestinationLanguage&&!this.translationError?this.translationDestinationLanguage.code:(t=this.map)===null||t===void 0?void 0:t.lang}};C.styles=[tr,R.highlightHtmlStyles];k([(0,R.redux)()],C.prototype,"map",void 0);k([(0,R.redux)({selector:e=>e.translation.profileId})],C.prototype,"translationProfileId",void 0);k([(0,R.redux)({selector:e=>e.translation.destinationLanguage})],C.prototype,"translationDestinationLanguage",void 0);k([(0,R.redux)({selector:e=>e.translation.isLoading})],C.prototype,"translationLoading",void 0);k([(0,R.redux)({selector:e=>e.translation.isError})],C.prototype,"translationError",void 0);k([(0,R.redux)()],C.prototype,"scrollTarget",void 0);k([(0,oe.state)()],C.prototype,"content",void 0);k([(0,oe.state)()],C.prototype,"error",void 0);k([(0,R.redux)({selector:(e,t)=>t.disableContextInteractions?"":e.searchInDocumentQuery})],C.prototype,"searchInDocumentQuery",void 0);k([(0,oe.property)({attribute:!1})],C.prototype,"contentPreprocessor",void 0);k([(0,oe.property)({attribute:!1})],C.prototype,"onContentAvailable",void 0);k([(0,oe.query)("section.topic")],C.prototype,"topicContainer",void 0);(0,xn.customElement)("ft-reader-topic-content")(C);})();
|
|
106
111
|
/*! Bundled license information:
|
|
107
112
|
|
|
108
113
|
@lit/reactive-element/css-tag.js:
|