@fluid-topics/ft-reader-context 1.1.82 → 1.1.83

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.
package/README.md CHANGED
@@ -42,16 +42,16 @@ import "@fluid-topics/ft-reader-topic-title"
42
42
  import "@fluid-topics/ft-reader-topic-content"
43
43
 
44
44
  function render() {
45
- return html`
46
- <ft-app-context
45
+ return html`
46
+ <ft-app-context
47
47
  baseUrl="https://doc.fluidtopics.com/"
48
48
  apiIntegrationIdentifier="custom-integration">
49
49
  <ft-reader-context mapId="MdDo16IjKjJdTxsdVYuWjA">
50
50
  <ft-reader-toc></ft-reader-toc>
51
51
  <ft-reader-content></ft-reader-content>
52
52
  <ft-reader-toc scope="current-page"></ft-reader-toc>
53
- </ft-reader-context>
54
- </ft-app-context>
53
+ </ft-reader-context>
54
+ </ft-app-context>
55
55
  `
56
56
  }
57
57
  ```
@@ -71,27 +71,27 @@ function render() {
71
71
  overflow: hidden;
72
72
  gap: 8px;
73
73
  }
74
-
74
+
75
75
  ft-reader-context > * {
76
76
  height: 100%;
77
77
  overflow: auto;
78
78
  }
79
-
79
+
80
80
  ft-reader-toc {
81
81
  flex-shrink: 0;
82
82
  flex-grow: 0;
83
83
  width: 20%;
84
84
  }
85
-
85
+
86
86
  ft-reader-content {
87
87
  flex-shrink: 1;
88
88
  flex-grow: 1;
89
89
  }
90
-
90
+
91
91
  ft-reader-toc[scope="current-page"][empty] {
92
92
  display: none;
93
93
  }
94
-
94
+
95
95
  </style>
96
96
 
97
97
  <ft-app-context
@@ -105,13 +105,13 @@ function render() {
105
105
  </ft-app-context>
106
106
 
107
107
  <script src="https://cdn.jsdelivr.net/npm/@fluid-topics/public-api/dist/fluidtopics.min.js"></script>
108
- <script src="https://cdn.jsdelivr.net/npm/@fluid-topics/public-api/ft-app-context/build/ft-app-context.min.js"></script>
109
- <script src="https://cdn.jsdelivr.net/npm/@fluid-topics/public-api/ft-reader-context/build/ft-reader-context.min.js"></script>
110
- <script src="https://cdn.jsdelivr.net/npm/@fluid-topics/public-api/ft-reader-toc/build/ft-reader-toc.min.js"></script>
111
- <script src="https://cdn.jsdelivr.net/npm/@fluid-topics/public-api/ft-reader-content/build/ft-reader-content.min.js"></script>
112
- <script src="https://cdn.jsdelivr.net/npm/@fluid-topics/public-api/ft-reader-topic-context/build/ft-reader-topic-context.min.js"></script>
113
- <script src="https://cdn.jsdelivr.net/npm/@fluid-topics/public-api/ft-reader-topic-title/build/ft-reader-topic-title.min.js"></script>
114
- <script src="https://cdn.jsdelivr.net/npm/@fluid-topics/public-api/ft-reader-topic-content/build/ft-reader-topic-content.min.js"></script>
108
+ <script src="https://cdn.jsdelivr.net/npm/@fluid-topics/ft-app-context/build/ft-app-context.min.js"></script>
109
+ <script src="https://cdn.jsdelivr.net/npm/@fluid-topics/ft-reader-context/build/ft-reader-context.min.js"></script>
110
+ <script src="https://cdn.jsdelivr.net/npm/@fluid-topics/ft-reader-toc/build/ft-reader-toc.min.js"></script>
111
+ <script src="https://cdn.jsdelivr.net/npm/@fluid-topics/ft-reader-content/build/ft-reader-content.min.js"></script>
112
+ <script src="https://cdn.jsdelivr.net/npm/@fluid-topics/ft-reader-topic-context/build/ft-reader-topic-context.min.js"></script>
113
+ <script src="https://cdn.jsdelivr.net/npm/@fluid-topics/ft-reader-topic-title/build/ft-reader-topic-title.min.js"></script>
114
+ <script src="https://cdn.jsdelivr.net/npm/@fluid-topics/ft-reader-topic-content/build/ft-reader-topic-content.min.js"></script>
115
115
  </body>
116
116
  </html>
117
117
 
@@ -3,12 +3,13 @@ import { FtLitElementRedux, FtRegistrationContext } from "@fluid-topics/ft-wc-ut
3
3
  import { FtReaderComponentInterface } from "./registration";
4
4
  import { FtReaderStateManager } from "./store/FtReaderStateManager";
5
5
  import { FtReaderPage, FtReaderScrollTarget, FtReaderTocNode } from "./store/model";
6
- import type { FtMap } from "@fluid-topics/public-api";
6
+ import type { FtMap, FtSession } from "@fluid-topics/public-api";
7
7
  import { FtReaderContextProperties } from "./ft-reader-context.properties";
8
8
  import type { FtReaderService } from "./store/utils/FtReaderService";
9
9
  export declare class FtReaderContext extends FtLitElementRedux implements FtReaderContextProperties, FtRegistrationContext<FtReaderComponentInterface> {
10
10
  static styles: import("lit").CSSResult;
11
11
  baseUrl?: string;
12
+ session?: FtSession;
12
13
  mapId?: string;
13
14
  tocId?: string;
14
15
  section?: string;
@@ -75,6 +75,9 @@ class FtReaderContext extends FtLitElementRedux {
75
75
  if (["tocId", "section", "page", "mapId", "topicPivot"].some(p => props.has(p)) && this.mapId) {
76
76
  this.navigateToTarget();
77
77
  }
78
+ if (props.has("session")) {
79
+ this.reload();
80
+ }
78
81
  }
79
82
  contentAvailableCallback(props) {
80
83
  var _a;
@@ -115,8 +118,7 @@ class FtReaderContext extends FtLitElementRedux {
115
118
  this.stateManager.clear();
116
119
  }
117
120
  async reload() {
118
- this.clear();
119
- await this.navigateToTarget();
121
+ await this.stateManager.reload();
120
122
  }
121
123
  async navigateToTarget() {
122
124
  await this.stateManager.load();
@@ -186,6 +188,9 @@ FtReaderContext.styles = styles;
186
188
  __decorate([
187
189
  redux({ store: ftAppInfoStore.name })
188
190
  ], FtReaderContext.prototype, "baseUrl", void 0);
191
+ __decorate([
192
+ redux({ store: ftAppInfoStore.name })
193
+ ], FtReaderContext.prototype, "session", void 0);
189
194
  __decorate([
190
195
  property()
191
196
  ], FtReaderContext.prototype, "mapId", void 0);
@@ -1,15 +1,15 @@
1
- "use strict";(()=>{var dn=Object.create;var Ft=Object.defineProperty;var fn=Object.getOwnPropertyDescriptor;var pn=Object.getOwnPropertyNames;var hn=Object.getPrototypeOf,vn=Object.prototype.hasOwnProperty;var Ie=(t,e)=>()=>(e||t((e={exports:{}}).exports,e),e.exports);var mn=(t,e,r,n)=>{if(e&&typeof e=="object"||typeof e=="function")for(let i of pn(e))!vn.call(t,i)&&i!==r&&Ft(t,i,{get:()=>e[i],enumerable:!(n=fn(e,i))||n.enumerable});return t};var x=(t,e,r)=>(r=t!=null?dn(hn(t)):{},mn(e||!t||!t.__esModule?Ft(r,"default",{value:t,enumerable:!0}):r,t));var U=Ie((li,jt)=>{jt.exports=ftGlobals.wcUtils});var fe=Ie((di,Bt)=>{Bt.exports=ftGlobals.lit});var oe=Ie((fi,Vt)=>{Vt.exports=ftGlobals.litDecorators});var zt=Ie(Kt=>{(function(t){var e=function(r){var n={searchParams:"URLSearchParams"in t,iterable:"Symbol"in t&&"iterator"in Symbol,blob:"FileReader"in t&&"Blob"in t&&function(){try{return new Blob,!0}catch{return!1}}(),formData:"FormData"in t,arrayBuffer:"ArrayBuffer"in t};function i(c){return c&&DataView.prototype.isPrototypeOf(c)}if(n.arrayBuffer)var a=["[object Int8Array]","[object Uint8Array]","[object Uint8ClampedArray]","[object Int16Array]","[object Uint16Array]","[object Int32Array]","[object Uint32Array]","[object Float32Array]","[object Float64Array]"],o=ArrayBuffer.isView||function(c){return c&&a.indexOf(Object.prototype.toString.call(c))>-1};function s(c){if(typeof c!="string"&&(c=String(c)),/[^a-z0-9\-#$%&'*+.^_`|~]/i.test(c))throw new TypeError("Invalid character in header field name");return c.toLowerCase()}function l(c){return typeof c!="string"&&(c=String(c)),c}function u(c){var p={next:function(){var g=c.shift();return{done:g===void 0,value:g}}};return n.iterable&&(p[Symbol.iterator]=function(){return p}),p}function d(c){this.map={},c instanceof d?c.forEach(function(p,g){this.append(g,p)},this):Array.isArray(c)?c.forEach(function(p){this.append(p[0],p[1])},this):c&&Object.getOwnPropertyNames(c).forEach(function(p){this.append(p,c[p])},this)}d.prototype.append=function(c,p){c=s(c),p=l(p);var g=this.map[c];this.map[c]=g?g+", "+p:p},d.prototype.delete=function(c){delete this.map[s(c)]},d.prototype.get=function(c){return c=s(c),this.has(c)?this.map[c]:null},d.prototype.has=function(c){return this.map.hasOwnProperty(s(c))},d.prototype.set=function(c,p){this.map[s(c)]=l(p)},d.prototype.forEach=function(c,p){for(var g in this.map)this.map.hasOwnProperty(g)&&c.call(p,this.map[g],g,this)},d.prototype.keys=function(){var c=[];return this.forEach(function(p,g){c.push(g)}),u(c)},d.prototype.values=function(){var c=[];return this.forEach(function(p){c.push(p)}),u(c)},d.prototype.entries=function(){var c=[];return this.forEach(function(p,g){c.push([g,p])}),u(c)},n.iterable&&(d.prototype[Symbol.iterator]=d.prototype.entries);function m(c){if(c.bodyUsed)return Promise.reject(new TypeError("Already read"));c.bodyUsed=!0}function f(c){return new Promise(function(p,g){c.onload=function(){p(c.result)},c.onerror=function(){g(c.error)}})}function y(c){var p=new FileReader,g=f(p);return p.readAsArrayBuffer(c),g}function h(c){var p=new FileReader,g=f(p);return p.readAsText(c),g}function v(c){for(var p=new Uint8Array(c),g=new Array(p.length),P=0;P<p.length;P++)g[P]=String.fromCharCode(p[P]);return g.join("")}function w(c){if(c.slice)return c.slice(0);var p=new Uint8Array(c.byteLength);return p.set(new Uint8Array(c)),p.buffer}function S(){return this.bodyUsed=!1,this._initBody=function(c){this._bodyInit=c,c?typeof c=="string"?this._bodyText=c:n.blob&&Blob.prototype.isPrototypeOf(c)?this._bodyBlob=c:n.formData&&FormData.prototype.isPrototypeOf(c)?this._bodyFormData=c:n.searchParams&&URLSearchParams.prototype.isPrototypeOf(c)?this._bodyText=c.toString():n.arrayBuffer&&n.blob&&i(c)?(this._bodyArrayBuffer=w(c.buffer),this._bodyInit=new Blob([this._bodyArrayBuffer])):n.arrayBuffer&&(ArrayBuffer.prototype.isPrototypeOf(c)||o(c))?this._bodyArrayBuffer=w(c):this._bodyText=c=Object.prototype.toString.call(c):this._bodyText="",this.headers.get("content-type")||(typeof c=="string"?this.headers.set("content-type","text/plain;charset=UTF-8"):this._bodyBlob&&this._bodyBlob.type?this.headers.set("content-type",this._bodyBlob.type):n.searchParams&&URLSearchParams.prototype.isPrototypeOf(c)&&this.headers.set("content-type","application/x-www-form-urlencoded;charset=UTF-8"))},n.blob&&(this.blob=function(){var c=m(this);if(c)return c;if(this._bodyBlob)return Promise.resolve(this._bodyBlob);if(this._bodyArrayBuffer)return Promise.resolve(new Blob([this._bodyArrayBuffer]));if(this._bodyFormData)throw new Error("could not read FormData body as blob");return Promise.resolve(new Blob([this._bodyText]))},this.arrayBuffer=function(){return this._bodyArrayBuffer?m(this)||Promise.resolve(this._bodyArrayBuffer):this.blob().then(y)}),this.text=function(){var c=m(this);if(c)return c;if(this._bodyBlob)return h(this._bodyBlob);if(this._bodyArrayBuffer)return Promise.resolve(v(this._bodyArrayBuffer));if(this._bodyFormData)throw new Error("could not read FormData body as text");return Promise.resolve(this._bodyText)},n.formData&&(this.formData=function(){return this.text().then(z)}),this.json=function(){return this.text().then(JSON.parse)},this}var E=["DELETE","GET","HEAD","OPTIONS","POST","PUT"];function O(c){var p=c.toUpperCase();return E.indexOf(p)>-1?p:c}function A(c,p){p=p||{};var g=p.body;if(c instanceof A){if(c.bodyUsed)throw new TypeError("Already read");this.url=c.url,this.credentials=c.credentials,p.headers||(this.headers=new d(c.headers)),this.method=c.method,this.mode=c.mode,this.signal=c.signal,!g&&c._bodyInit!=null&&(g=c._bodyInit,c.bodyUsed=!0)}else this.url=String(c);if(this.credentials=p.credentials||this.credentials||"same-origin",(p.headers||!this.headers)&&(this.headers=new d(p.headers)),this.method=O(p.method||this.method||"GET"),this.mode=p.mode||this.mode||null,this.signal=p.signal||this.signal,this.referrer=null,(this.method==="GET"||this.method==="HEAD")&&g)throw new TypeError("Body not allowed for GET or HEAD requests");this._initBody(g)}A.prototype.clone=function(){return new A(this,{body:this._bodyInit})};function z(c){var p=new FormData;return c.trim().split("&").forEach(function(g){if(g){var P=g.split("="),N=P.shift().replace(/\+/g," "),T=P.join("=").replace(/\+/g," ");p.append(decodeURIComponent(N),decodeURIComponent(T))}}),p}function H(c){var p=new d,g=c.replace(/\r?\n[\t ]+/g," ");return g.split(/\r?\n/).forEach(function(P){var N=P.split(":"),T=N.shift().trim();if(T){var Re=N.join(":").trim();p.append(T,Re)}}),p}S.call(A.prototype);function M(c,p){p||(p={}),this.type="default",this.status=p.status===void 0?200:p.status,this.ok=this.status>=200&&this.status<300,this.statusText="statusText"in p?p.statusText:"OK",this.headers=new d(p.headers),this.url=p.url||"",this._initBody(c)}S.call(M.prototype),M.prototype.clone=function(){return new M(this._bodyInit,{status:this.status,statusText:this.statusText,headers:new d(this.headers),url:this.url})},M.error=function(){var c=new M(null,{status:0,statusText:""});return c.type="error",c};var xe=[301,302,303,307,308];M.redirect=function(c,p){if(xe.indexOf(p)===-1)throw new RangeError("Invalid status code");return new M(null,{status:p,headers:{location:c}})},r.DOMException=t.DOMException;try{new r.DOMException}catch{r.DOMException=function(p,g){this.message=p,this.name=g;var P=Error(p);this.stack=P.stack},r.DOMException.prototype=Object.create(Error.prototype),r.DOMException.prototype.constructor=r.DOMException}function W(c,p){return new Promise(function(g,P){var N=new A(c,p);if(N.signal&&N.signal.aborted)return P(new r.DOMException("Aborted","AbortError"));var T=new XMLHttpRequest;function Re(){T.abort()}T.onload=function(){var be={status:T.status,statusText:T.statusText,headers:H(T.getAllResponseHeaders()||"")};be.url="responseURL"in T?T.responseURL:be.headers.get("X-Request-URL");var it="response"in T?T.response:T.responseText;g(new M(it,be))},T.onerror=function(){P(new TypeError("Network request failed"))},T.ontimeout=function(){P(new TypeError("Network request failed"))},T.onabort=function(){P(new r.DOMException("Aborted","AbortError"))},T.open(N.method,N.url,!0),N.credentials==="include"?T.withCredentials=!0:N.credentials==="omit"&&(T.withCredentials=!1),"responseType"in T&&n.blob&&(T.responseType="blob"),N.headers.forEach(function(be,it){T.setRequestHeader(it,be)}),N.signal&&(N.signal.addEventListener("abort",Re),T.onreadystatechange=function(){T.readyState===4&&N.signal.removeEventListener("abort",Re)}),T.send(typeof N._bodyInit>"u"?null:N._bodyInit)})}return W.polyfill=!0,t.fetch||(t.fetch=W,t.Headers=d,t.Request=A,t.Response=M),r.Headers=d,r.Request=A,r.Response=M,r.fetch=W,Object.defineProperty(r,"__esModule",{value:!0}),r}({})})(typeof self<"u"?self:Kt)});var ln=x(U());var Oe=x(fe()),ae=x(oe()),F=x(U());var J=x(U());var Ht=x(U()),qt=t=>Ht.FtReduxStore.get({name:"ft-reader-"+t,initialState:{mapId:void 0,visibleTopics:[],map:void 0,toc:void 0,pagesToc:void 0,paginationConfiguration:void 0,currentPage:void 0,scrollTarget:void 0,configuration:void 0,searchInDocumentQuery:void 0,relatives:void 0}});var at=class{constructor(e){this.paginatedToc=e,this.nodeByTocId={},this.knownPrettyUrls=new Set,this.duplicatedPrettyUrls=new Set,this.pages=[],this.pageByTocId={}}build(){return{paginationConfiguration:this.paginatedToc.configuration,toc:this.convertNodes(this.paginatedToc.paginatedToc,1),pagesToc:this.extractPagesToc(this.paginatedToc.paginatedToc,1),nodeByTocId:this.nodeByTocId,duplicatedPrettyUrls:this.duplicatedPrettyUrls,pages:this.pages,pageByTocId:this.pageByTocId}}extractPagesToc(e,r,n){return e.flatMap(i=>(i.pageConfiguration&&this.registerPage(this.buildPage(i,n)),i.tocId==null?this.extractPagesToc(i.children,r,n):[{tocId:i.tocId,title:i.title,depth:r,children:this.extractPagesToc(i.children,r+1,i.tocId)}]))}convertNodes(e,r,n){return e.flatMap(i=>{var a,o,s;if(i.tocId==null)return[...this.convertSectionNodes((a=i.pageToc)!==null&&a!==void 0?a:[],r,i.tocId),...this.convertNodes(i.children,r,i.tocId)];let l=(o=i.prettyUrl)===null||o===void 0?void 0:o.replace(/^\//,""),u={tocId:i.tocId,contentId:i.contentId,title:i.title,hasRating:i.hasRating,origin:i.origin,prettyUrl:l,depth:r,parentTocId:n,children:[]};this.register(u);let d=this.convertSectionNodes((s=i.pageToc)!==null&&s!==void 0?s:[],r+1,i.tocId),m=this.convertNodes(i.children,r+1,u.tocId);return u.children=[...d,...m],[u]})}convertSectionNodes(e,r,n){return e.flatMap(i=>{var a;let o=(a=i.prettyUrl)===null||a===void 0?void 0:a.replace(/^\//,""),s={...i,prettyUrl:o,depth:r,parentTocId:n,children:[]};return this.register(s),s.children=this.convertSectionNodes(i.children,r+1,i.tocId),[s]})}buildPage(e,r){var n,i,a,o,s,l;let u={number:this.pages.length+1,title:(n=e.title)!==null&&n!==void 0?n:"",rootTocId:(i=e.tocId)!==null&&i!==void 0?i:"root",toc:((a=e.pageToc)!==null&&a!==void 0?a:[]).map(f=>this.nodeByTocId[f.tocId]),topics:[],hiddenTopics:[],breadcrumb:r?this.buildBreadcrumb(this.nodeByTocId[r]):[]},d=(f,y)=>(y?u.topics:u.hiddenTopics).push(f),m=(s=(o=e.pageConfiguration)===null||o===void 0?void 0:o.parentsVisibility)!==null&&s!==void 0?s:[];return u.breadcrumb.forEach((f,y)=>{d(f,m[y])}),e.tocId&&d(e.tocId,e.pageConfiguration.isVisible),u.topics.push(...this.tocIds((l=e.pageToc)!==null&&l!==void 0?l:[])),u}registerPage(e){for(let r of[...e.topics,...e.hiddenTopics])this.pageByTocId[r]||(this.pageByTocId[r]=e);this.pages.push(e)}tocIds(e){return e.flatMap(r=>[r.tocId,...this.tocIds(r.children)])}buildBreadcrumb(e){let r=[e.tocId];for(;e?.parentTocId;)r.unshift(e.parentTocId),e=this.nodeByTocId[e.parentTocId];return r}register(e){e.prettyUrl&&(this.knownPrettyUrls.has(e.prettyUrl)&&this.duplicatedPrettyUrls.add(e.prettyUrl),this.knownPrettyUrls.add(e.prettyUrl)),this.nodeByTocId[e.tocId]=e}},Pe=class{convertPaginatedToc(e){return new at(e).build()}};var wi=x(zt(),1);var $t;(function(t){t.black="black",t.green="green",t.blue="blue",t.purple="purple",t.red="red",t.orange="orange",t.yellow="yellow"})($t||($t={}));var Gt;(function(t){t.OFFICIAL="OFFICIAL",t.PERSONAL="PERSONAL",t.SHARED="SHARED"})(Gt||(Gt={}));var Wt;(function(t){t.THIRD_PARTY="THIRD_PARTY",t.OFF_THE_GRID="OFF_THE_GRID",t.CONTENT_PACKAGER="CONTENT_PACKAGER",t.PAGES="PAGES",t.DESIGNED_READER="DESIGNED_READER"})(Wt||(Wt={}));var Xt;(function(t){t.HOMEPAGE="HOMEPAGE",t.CUSTOM="CUSTOM",t.HEADER="HEADER",t.READER="READER",t.TOPIC_TEMPLATE="TOPIC_TEMPLATE",t.SEARCH="SEARCH",t.SEARCH_RESULT="SEARCH_RESULT"})(Xt||(Xt={}));var Yt;(function(t){t.CLASSIC="CLASSIC",t.CUSTOM="CUSTOM",t.DESIGNER="DESIGNER"})(Yt||(Yt={}));var Jt;(function(t){t.AND="AND",t.OR="OR",t.MONOVALUED="MONOVALUED"})(Jt||(Jt={}));var Qt;(function(t){t.NONE="NONE",t.ALPHABET="ALPHABET",t.VERSION="VERSION"})(Qt||(Qt={}));var Ce;(function(t){t.STARS="STARS",t.LIKE="LIKE",t.DICHOTOMOUS="DICHOTOMOUS",t.NO_RATING="NO_RATING"})(Ce||(Ce={}));var Zt;(function(t){t.LAST_WEEK="LAST_WEEK",t.LAST_MONTH="LAST_MONTH",t.LAST_QUARTER="LAST_QUARTER",t.LAST_YEAR="LAST_YEAR",t.CUSTOM="CUSTOM"})(Zt||(Zt={}));var er;(function(t){t.ASC="ASC",t.DESC="DESC"})(er||(er={}));var tr;(function(t){t.ALPHA="ALPHA",t.NATURAL="NATURAL"})(tr||(tr={}));var rr;(function(t){t.EVERYWHERE="EVERYWHERE",t.TITLE_ONLY="TITLE_ONLY",t.NONE="NONE"})(rr||(rr={}));var nr;(function(t){t.ARTICLE="ARTICLE",t.BOOK="BOOK",t.SHARED_BOOK="SHARED_BOOK"})(nr||(nr={}));var ir;(function(t){t.FLUIDTOPICS="FLUIDTOPICS",t.EXTERNAL="EXTERNAL"})(ir||(ir={}));var ar;(function(t){t.MAP="MAP",t.DOCUMENT="DOCUMENT",t.TOPIC="TOPIC",t.PERSONAL_BOOK="PERSONAL_BOOK",t.SHARED_BOOK="SHARED_BOOK"})(ar||(ar={}));var or;(function(t){t.MAP="MAP",t.DOCUMENT="DOCUMENT",t.TOPIC="TOPIC"})(or||(or={}));var sr;(function(t){t.DEFAULT="DEFAULT",t.DOCUMENTS="DOCUMENTS",t.ALL_TOPICS="ALL_TOPICS"})(sr||(sr={}));var R;(function(t){t.PERSONAL_BOOK_USER="PERSONAL_BOOK_USER",t.PERSONAL_BOOK_SHARE_USER="PERSONAL_BOOK_SHARE_USER",t.HTML_EXPORT_USER="HTML_EXPORT_USER",t.PDF_EXPORT_USER="PDF_EXPORT_USER",t.SAVED_SEARCH_USER="SAVED_SEARCH_USER",t.COLLECTION_USER="COLLECTION_USER",t.OFFLINE_USER="OFFLINE_USER",t.ANALYTICS_USER="ANALYTICS_USER",t.BETA_USER="BETA_USER",t.DEBUG_USER="DEBUG_USER",t.PRINT_USER="PRINT_USER",t.RATING_USER="RATING_USER",t.FEEDBACK_USER="FEEDBACK_USER",t.GENERATIVE_AI_USER="GENERATIVE_AI_USER",t.CONTENT_PUBLISHER="CONTENT_PUBLISHER",t.KHUB_ADMIN="KHUB_ADMIN",t.USERS_ADMIN="USERS_ADMIN",t.PORTAL_ADMIN="PORTAL_ADMIN",t.ADMIN="ADMIN",t.DEVELOPER="DEVELOPER"})(R||(R={}));var ur;(function(t){t.VALID="VALID",t.INVALID="INVALID"})(ur||(ur={}));var yn={[R.PERSONAL_BOOK_SHARE_USER]:[R.PERSONAL_BOOK_USER],[R.HTML_EXPORT_USER]:[R.PERSONAL_BOOK_USER],[R.PDF_EXPORT_USER]:[R.PERSONAL_BOOK_USER],[R.KHUB_ADMIN]:[R.CONTENT_PUBLISHER],[R.ADMIN]:[R.KHUB_ADMIN,R.USERS_ADMIN,R.PORTAL_ADMIN],[R.DEVELOPER]:[R.BETA_USER,R.DEBUG_USER]};function cr(t,e){return t===e||(yn[t]??[]).some(r=>cr(r,e))}function se(t,e){return t==null?!1:(Array.isArray(t)?t:Array.isArray(t.roles)?t.roles:Array.isArray(t.profile?.roles)?t.profile.roles:[]).some(n=>cr(n,e))}var X;(function(t){t.FEEDBACK="FEEDBACK",t.RATING="RATING",t.PRINT="PRINT",t.BOOKMARK="BOOKMARK",t.COLLECTIONS="COLLECTIONS",t.PERSONAL_BOOKS="PERSONAL_BOOKS"})(X||(X={}));var sn=x(U());var vr=x(fe()),B=x(oe()),q=x(U());var lr=x(fe());var dr=lr.css`
2
- `;var fr=x(U()),gn="ft-app-info",bn={},b=fr.FtReduxStore.get({name:gn,reducers:bn,initialState:{baseUrl:void 0,apiIntegrationIdentifier:void 0,uiLocale:document.documentElement.lang||"en-US",availableUiLocales:[],metadataConfiguration:void 0,editorMode:!1,noCustom:!1,noCustomComponent:!1,session:void 0,openExternalDocumentInNewTab:!1,navigatorOnline:!0,forcedOffline:!1}});var Q=x(U());var ot=x(U());var ue=class t{static get(e){let{baseUrl:r,apiIntegrationIdentifier:n}=b.getState(),i=e??n;if(r&&i&&window.fluidtopics)return new window.fluidtopics.FluidTopicsApi(r,i,!0)}static await(e){return new Promise(r=>{let n=t.get(e);if(n)r(n);else{let i=b.subscribe(()=>{n=t.get(e),n&&(i(),r(n))})}})}};var $=class{constructor(e=!0,r){var n;this.overrideApi=r;let i=this.constructor;i.commonCache=(n=i.commonCache)!==null&&n!==void 0?n:new ot.CacheRegistry,this.cache=e?i.commonCache:new ot.CacheRegistry}get api(){var e;return(e=this.overrideApi)!==null&&e!==void 0?e:ue.get()}get awaitApi(){var e;return(e=this.overrideApi)!==null&&e!==void 0?e:ue.await()}clearCache(){this.cache.clearAll()}};var pr,Sn=Symbol("clearAfterUnitTest"),_e=class extends ${constructor(e){super(),this.messageContextProvider=e,this.defaultMessages={},this.listeners={},this.currentUiLocale="",this[pr]=()=>{this.defaultMessages={},this.cache=new Q.CacheRegistry,this.listeners={}},this.currentUiLocale=b.getState().uiLocale,b.subscribe(()=>this.clearWhenUiLocaleChanges())}clearWhenUiLocaleChanges(){let{uiLocale:e}=b.getState();this.currentUiLocale!==e&&(this.currentUiLocale=e,this.cache.clearAll(),this.notifyAll())}addContext(e){let r=e.name.toLowerCase();this.cache.setFinal(r,e),this.notify(r)}getAllContexts(){return this.cache.resolvedValues()}async prepareContext(e,r){var n;if(e=e.toLowerCase(),Object.keys(r).length>0){let i={...(n=this.defaultMessages[e])!==null&&n!==void 0?n:{},...r};(0,Q.deepEqual)(this.defaultMessages[e],i)||(this.defaultMessages[e]=i,await this.notify(e))}await this.fetchContext(e)}resolveMessage(e,r,...n){var i,a,o;e=e.toLowerCase(),this.fetchContext(e);let s=(a=(i=this.cache.getNow(e))===null||i===void 0?void 0:i.messages)!==null&&a!==void 0?a:{};return new Q.ParametrizedLabelResolver((o=this.defaultMessages[e])!==null&&o!==void 0?o:{},s).resolve(r,...n)}async fetchContext(e){if(!this.cache.has(e))try{await this.cache.get(e,()=>this.messageContextProvider(this.currentUiLocale,e)),await this.notify(e)}catch(r){console.error(r)}}subscribe(e,r){var n;return e=e.toLowerCase(),this.listeners[e]=(n=this.listeners[e])!==null&&n!==void 0?n:new Set,this.listeners[e].add(r),()=>{var i;return(i=this.listeners[e])===null||i===void 0?void 0:i.delete(r)}}async notifyAll(){await Promise.all(Object.keys(this.listeners).map(e=>this.notify(e)))}async notify(e){this.listeners[e]!=null&&await Promise.all([...this.listeners[e].values()].map(r=>(0,Q.delay)(0).then(()=>r()).catch(()=>null)))}};pr=Sn;window.FluidTopicsI18nService==null&&(window.FluidTopicsI18nService=new class extends _e{constructor(){super(async(t,e)=>(await this.awaitApi).getFluidTopicsMessageContext(t,e))}});window.FluidTopicsCustomI18nService==null&&(window.FluidTopicsCustomI18nService=new class extends _e{constructor(){super(async(t,e)=>(await this.awaitApi).getCustomMessageContext(t,e))}});var hr=window.FluidTopicsI18nService,ji=window.FluidTopicsCustomI18nService;var D=function(t,e,r,n){var i=arguments.length,a=i<3?e:n===null?n=Object.getOwnPropertyDescriptor(e,r):n,o;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")a=Reflect.decorate(t,e,r,n);else for(var s=t.length-1;s>=0;s--)(o=t[s])&&(a=(i<3?o(a):i>3?o(e,r,a):o(e,r))||a);return i>3&&a&&Object.defineProperty(e,r,a),a},C=class extends q.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=()=>ue.get(),this.messageContexts=[],this.cache=new q.CacheRegistry,this.cleanSessionDebouncer=new q.Debouncer}render(){return vr.html`
1
+ "use strict";(()=>{var pn=Object.create;var Vt=Object.defineProperty;var hn=Object.getOwnPropertyDescriptor;var vn=Object.getOwnPropertyNames;var mn=Object.getPrototypeOf,yn=Object.prototype.hasOwnProperty;var Ie=(t,e)=>()=>(e||t((e={exports:{}}).exports,e),e.exports);var gn=(t,e,r,n)=>{if(e&&typeof e=="object"||typeof e=="function")for(let i of vn(e))!yn.call(t,i)&&i!==r&&Vt(t,i,{get:()=>e[i],enumerable:!(n=hn(e,i))||n.enumerable});return t};var x=(t,e,r)=>(r=t!=null?pn(mn(t)):{},gn(e||!t||!t.__esModule?Vt(r,"default",{value:t,enumerable:!0}):r,t));var F=Ie((fi,Ht)=>{Ht.exports=ftGlobals.wcUtils});var fe=Ie((pi,qt)=>{qt.exports=ftGlobals.lit});var se=Ie((hi,Kt)=>{Kt.exports=ftGlobals.litDecorators});var Wt=Ie(Gt=>{(function(t){var e=function(r){var n={searchParams:"URLSearchParams"in t,iterable:"Symbol"in t&&"iterator"in Symbol,blob:"FileReader"in t&&"Blob"in t&&function(){try{return new Blob,!0}catch{return!1}}(),formData:"FormData"in t,arrayBuffer:"ArrayBuffer"in t};function i(c){return c&&DataView.prototype.isPrototypeOf(c)}if(n.arrayBuffer)var a=["[object Int8Array]","[object Uint8Array]","[object Uint8ClampedArray]","[object Int16Array]","[object Uint16Array]","[object Int32Array]","[object Uint32Array]","[object Float32Array]","[object Float64Array]"],o=ArrayBuffer.isView||function(c){return c&&a.indexOf(Object.prototype.toString.call(c))>-1};function s(c){if(typeof c!="string"&&(c=String(c)),/[^a-z0-9\-#$%&'*+.^_`|~]/i.test(c))throw new TypeError("Invalid character in header field name");return c.toLowerCase()}function l(c){return typeof c!="string"&&(c=String(c)),c}function u(c){var p={next:function(){var g=c.shift();return{done:g===void 0,value:g}}};return n.iterable&&(p[Symbol.iterator]=function(){return p}),p}function d(c){this.map={},c instanceof d?c.forEach(function(p,g){this.append(g,p)},this):Array.isArray(c)?c.forEach(function(p){this.append(p[0],p[1])},this):c&&Object.getOwnPropertyNames(c).forEach(function(p){this.append(p,c[p])},this)}d.prototype.append=function(c,p){c=s(c),p=l(p);var g=this.map[c];this.map[c]=g?g+", "+p:p},d.prototype.delete=function(c){delete this.map[s(c)]},d.prototype.get=function(c){return c=s(c),this.has(c)?this.map[c]:null},d.prototype.has=function(c){return this.map.hasOwnProperty(s(c))},d.prototype.set=function(c,p){this.map[s(c)]=l(p)},d.prototype.forEach=function(c,p){for(var g in this.map)this.map.hasOwnProperty(g)&&c.call(p,this.map[g],g,this)},d.prototype.keys=function(){var c=[];return this.forEach(function(p,g){c.push(g)}),u(c)},d.prototype.values=function(){var c=[];return this.forEach(function(p){c.push(p)}),u(c)},d.prototype.entries=function(){var c=[];return this.forEach(function(p,g){c.push([g,p])}),u(c)},n.iterable&&(d.prototype[Symbol.iterator]=d.prototype.entries);function m(c){if(c.bodyUsed)return Promise.reject(new TypeError("Already read"));c.bodyUsed=!0}function f(c){return new Promise(function(p,g){c.onload=function(){p(c.result)},c.onerror=function(){g(c.error)}})}function y(c){var p=new FileReader,g=f(p);return p.readAsArrayBuffer(c),g}function h(c){var p=new FileReader,g=f(p);return p.readAsText(c),g}function v(c){for(var p=new Uint8Array(c),g=new Array(p.length),P=0;P<p.length;P++)g[P]=String.fromCharCode(p[P]);return g.join("")}function w(c){if(c.slice)return c.slice(0);var p=new Uint8Array(c.byteLength);return p.set(new Uint8Array(c)),p.buffer}function S(){return this.bodyUsed=!1,this._initBody=function(c){this._bodyInit=c,c?typeof c=="string"?this._bodyText=c:n.blob&&Blob.prototype.isPrototypeOf(c)?this._bodyBlob=c:n.formData&&FormData.prototype.isPrototypeOf(c)?this._bodyFormData=c:n.searchParams&&URLSearchParams.prototype.isPrototypeOf(c)?this._bodyText=c.toString():n.arrayBuffer&&n.blob&&i(c)?(this._bodyArrayBuffer=w(c.buffer),this._bodyInit=new Blob([this._bodyArrayBuffer])):n.arrayBuffer&&(ArrayBuffer.prototype.isPrototypeOf(c)||o(c))?this._bodyArrayBuffer=w(c):this._bodyText=c=Object.prototype.toString.call(c):this._bodyText="",this.headers.get("content-type")||(typeof c=="string"?this.headers.set("content-type","text/plain;charset=UTF-8"):this._bodyBlob&&this._bodyBlob.type?this.headers.set("content-type",this._bodyBlob.type):n.searchParams&&URLSearchParams.prototype.isPrototypeOf(c)&&this.headers.set("content-type","application/x-www-form-urlencoded;charset=UTF-8"))},n.blob&&(this.blob=function(){var c=m(this);if(c)return c;if(this._bodyBlob)return Promise.resolve(this._bodyBlob);if(this._bodyArrayBuffer)return Promise.resolve(new Blob([this._bodyArrayBuffer]));if(this._bodyFormData)throw new Error("could not read FormData body as blob");return Promise.resolve(new Blob([this._bodyText]))},this.arrayBuffer=function(){return this._bodyArrayBuffer?m(this)||Promise.resolve(this._bodyArrayBuffer):this.blob().then(y)}),this.text=function(){var c=m(this);if(c)return c;if(this._bodyBlob)return h(this._bodyBlob);if(this._bodyArrayBuffer)return Promise.resolve(v(this._bodyArrayBuffer));if(this._bodyFormData)throw new Error("could not read FormData body as text");return Promise.resolve(this._bodyText)},n.formData&&(this.formData=function(){return this.text().then(z)}),this.json=function(){return this.text().then(JSON.parse)},this}var E=["DELETE","GET","HEAD","OPTIONS","POST","PUT"];function O(c){var p=c.toUpperCase();return E.indexOf(p)>-1?p:c}function A(c,p){p=p||{};var g=p.body;if(c instanceof A){if(c.bodyUsed)throw new TypeError("Already read");this.url=c.url,this.credentials=c.credentials,p.headers||(this.headers=new d(c.headers)),this.method=c.method,this.mode=c.mode,this.signal=c.signal,!g&&c._bodyInit!=null&&(g=c._bodyInit,c.bodyUsed=!0)}else this.url=String(c);if(this.credentials=p.credentials||this.credentials||"same-origin",(p.headers||!this.headers)&&(this.headers=new d(p.headers)),this.method=O(p.method||this.method||"GET"),this.mode=p.mode||this.mode||null,this.signal=p.signal||this.signal,this.referrer=null,(this.method==="GET"||this.method==="HEAD")&&g)throw new TypeError("Body not allowed for GET or HEAD requests");this._initBody(g)}A.prototype.clone=function(){return new A(this,{body:this._bodyInit})};function z(c){var p=new FormData;return c.trim().split("&").forEach(function(g){if(g){var P=g.split("="),N=P.shift().replace(/\+/g," "),T=P.join("=").replace(/\+/g," ");p.append(decodeURIComponent(N),decodeURIComponent(T))}}),p}function H(c){var p=new d,g=c.replace(/\r?\n[\t ]+/g," ");return g.split(/\r?\n/).forEach(function(P){var N=P.split(":"),T=N.shift().trim();if(T){var Re=N.join(":").trim();p.append(T,Re)}}),p}S.call(A.prototype);function M(c,p){p||(p={}),this.type="default",this.status=p.status===void 0?200:p.status,this.ok=this.status>=200&&this.status<300,this.statusText="statusText"in p?p.statusText:"OK",this.headers=new d(p.headers),this.url=p.url||"",this._initBody(c)}S.call(M.prototype),M.prototype.clone=function(){return new M(this._bodyInit,{status:this.status,statusText:this.statusText,headers:new d(this.headers),url:this.url})},M.error=function(){var c=new M(null,{status:0,statusText:""});return c.type="error",c};var xe=[301,302,303,307,308];M.redirect=function(c,p){if(xe.indexOf(p)===-1)throw new RangeError("Invalid status code");return new M(null,{status:p,headers:{location:c}})},r.DOMException=t.DOMException;try{new r.DOMException}catch{r.DOMException=function(p,g){this.message=p,this.name=g;var P=Error(p);this.stack=P.stack},r.DOMException.prototype=Object.create(Error.prototype),r.DOMException.prototype.constructor=r.DOMException}function W(c,p){return new Promise(function(g,P){var N=new A(c,p);if(N.signal&&N.signal.aborted)return P(new r.DOMException("Aborted","AbortError"));var T=new XMLHttpRequest;function Re(){T.abort()}T.onload=function(){var ge={status:T.status,statusText:T.statusText,headers:H(T.getAllResponseHeaders()||"")};ge.url="responseURL"in T?T.responseURL:ge.headers.get("X-Request-URL");var st="response"in T?T.response:T.responseText;g(new M(st,ge))},T.onerror=function(){P(new TypeError("Network request failed"))},T.ontimeout=function(){P(new TypeError("Network request failed"))},T.onabort=function(){P(new r.DOMException("Aborted","AbortError"))},T.open(N.method,N.url,!0),N.credentials==="include"?T.withCredentials=!0:N.credentials==="omit"&&(T.withCredentials=!1),"responseType"in T&&n.blob&&(T.responseType="blob"),N.headers.forEach(function(ge,st){T.setRequestHeader(st,ge)}),N.signal&&(N.signal.addEventListener("abort",Re),T.onreadystatechange=function(){T.readyState===4&&N.signal.removeEventListener("abort",Re)}),T.send(typeof N._bodyInit>"u"?null:N._bodyInit)})}return W.polyfill=!0,t.fetch||(t.fetch=W,t.Headers=d,t.Request=A,t.Response=M),r.Headers=d,r.Request=A,r.Response=M,r.fetch=W,Object.defineProperty(r,"__esModule",{value:!0}),r}({})})(typeof self<"u"?self:Gt)});var fn=x(F());var Oe=x(fe()),oe=x(se()),U=x(F());var J=x(F());var zt=x(F()),$t=t=>zt.FtReduxStore.get({name:"ft-reader-"+t,initialState:{mapId:void 0,visibleTopics:[],map:void 0,toc:void 0,pagesToc:void 0,paginationConfiguration:void 0,currentPage:void 0,scrollTarget:void 0,configuration:void 0,searchInDocumentQuery:void 0,relatives:void 0}});var ut=class{constructor(e,r){this.mapId=e,this.paginatedToc=r,this.nodeByTocId={},this.nodeByUrl={},this.duplicatedPrettyUrls=new Set,this.pages=[],this.pageByTocId={}}build(){return{paginationConfiguration:this.paginatedToc.configuration,toc:this.convertNodes(this.paginatedToc.paginatedToc,1),pagesToc:this.extractPagesToc(this.paginatedToc.paginatedToc,1),nodeByTocId:this.nodeByTocId,nodeByUrl:this.nodeByUrl,duplicatedPrettyUrls:this.duplicatedPrettyUrls,pages:this.pages,pageByTocId:this.pageByTocId}}extractPagesToc(e,r,n){return e.flatMap(i=>(i.pageConfiguration&&this.registerPage(this.buildPage(i,n)),i.tocId==null?this.extractPagesToc(i.children,r,n):[{tocId:i.tocId,title:i.title,depth:r,children:this.extractPagesToc(i.children,r+1,i.tocId)}]))}convertNodes(e,r,n){return e.flatMap(i=>{var a,o,s;if(i.tocId==null)return[...this.convertSectionNodes((a=i.pageToc)!==null&&a!==void 0?a:[],r,i.tocId),...this.convertNodes(i.children,r,i.tocId)];let l=(o=i.prettyUrl)===null||o===void 0?void 0:o.replace(/^\//,""),u={tocId:i.tocId,contentId:i.contentId,title:i.title,hasRating:i.hasRating,origin:i.origin,prettyUrl:l,depth:r,parentTocId:n,children:[]};this.register(u);let d=this.convertSectionNodes((s=i.pageToc)!==null&&s!==void 0?s:[],r+1,i.tocId),m=this.convertNodes(i.children,r+1,u.tocId);return u.children=[...d,...m],[u]})}convertSectionNodes(e,r,n){return e.flatMap(i=>{var a;let o=(a=i.prettyUrl)===null||a===void 0?void 0:a.replace(/^\//,""),s={...i,prettyUrl:o,depth:r,parentTocId:n,children:[]};return this.register(s),s.children=this.convertSectionNodes(i.children,r+1,i.tocId),[s]})}buildPage(e,r){var n,i,a,o,s,l;let u={number:this.pages.length+1,title:(n=e.title)!==null&&n!==void 0?n:"",rootTocId:(i=e.tocId)!==null&&i!==void 0?i:"root",toc:((a=e.pageToc)!==null&&a!==void 0?a:[]).map(f=>this.nodeByTocId[f.tocId]),topics:[],hiddenTopics:[],breadcrumb:r?this.buildBreadcrumb(this.nodeByTocId[r]):[]},d=(f,y)=>(y?u.topics:u.hiddenTopics).push(f),m=(s=(o=e.pageConfiguration)===null||o===void 0?void 0:o.parentsVisibility)!==null&&s!==void 0?s:[];return u.breadcrumb.forEach((f,y)=>{d(f,m[y])}),e.tocId&&d(e.tocId,e.pageConfiguration.isVisible),u.topics.push(...this.tocIds((l=e.pageToc)!==null&&l!==void 0?l:[])),u}registerPage(e){for(let r of[...e.topics,...e.hiddenTopics])this.pageByTocId[r]||(this.pageByTocId[r]=e);this.pages.push(e)}tocIds(e){return e.flatMap(r=>[r.tocId,...this.tocIds(r.children)])}buildBreadcrumb(e){let r=[e.tocId];for(;e?.parentTocId;)r.unshift(e.parentTocId),e=this.nodeByTocId[e.parentTocId];return r}register(e){e.prettyUrl&&(this.nodeByUrl[e.prettyUrl]==null?this.nodeByUrl[e.prettyUrl]=e:this.duplicatedPrettyUrls.add(e.prettyUrl)),this.nodeByUrl[`${this.mapId}/${e.tocId}`]=e,this.nodeByTocId[e.tocId]=e}},Pe=class{convertPaginatedToc(e,r){return new ut(e,r).build()}};var Oi=x(Wt(),1);var Xt;(function(t){t.black="black",t.green="green",t.blue="blue",t.purple="purple",t.red="red",t.orange="orange",t.yellow="yellow"})(Xt||(Xt={}));var Yt;(function(t){t.OFFICIAL="OFFICIAL",t.PERSONAL="PERSONAL",t.SHARED="SHARED"})(Yt||(Yt={}));var Jt;(function(t){t.THIRD_PARTY="THIRD_PARTY",t.OFF_THE_GRID="OFF_THE_GRID",t.CONTENT_PACKAGER="CONTENT_PACKAGER",t.PAGES="PAGES",t.DESIGNED_READER="DESIGNED_READER"})(Jt||(Jt={}));var Qt;(function(t){t.HOMEPAGE="HOMEPAGE",t.CUSTOM="CUSTOM",t.HEADER="HEADER",t.READER="READER",t.TOPIC_TEMPLATE="TOPIC_TEMPLATE",t.SEARCH="SEARCH",t.SEARCH_RESULT="SEARCH_RESULT"})(Qt||(Qt={}));var Zt;(function(t){t.CLASSIC="CLASSIC",t.CUSTOM="CUSTOM",t.DESIGNER="DESIGNER"})(Zt||(Zt={}));var er;(function(t){t.AND="AND",t.OR="OR",t.MONOVALUED="MONOVALUED"})(er||(er={}));var tr;(function(t){t.NONE="NONE",t.ALPHABET="ALPHABET",t.VERSION="VERSION"})(tr||(tr={}));var Ce;(function(t){t.STARS="STARS",t.LIKE="LIKE",t.DICHOTOMOUS="DICHOTOMOUS",t.NO_RATING="NO_RATING"})(Ce||(Ce={}));var rr;(function(t){t.LAST_WEEK="LAST_WEEK",t.LAST_MONTH="LAST_MONTH",t.LAST_QUARTER="LAST_QUARTER",t.LAST_YEAR="LAST_YEAR",t.CUSTOM="CUSTOM"})(rr||(rr={}));var nr;(function(t){t.ASC="ASC",t.DESC="DESC"})(nr||(nr={}));var ir;(function(t){t.ALPHA="ALPHA",t.NATURAL="NATURAL"})(ir||(ir={}));var ar;(function(t){t.EVERYWHERE="EVERYWHERE",t.TITLE_ONLY="TITLE_ONLY",t.NONE="NONE"})(ar||(ar={}));var or;(function(t){t.ARTICLE="ARTICLE",t.BOOK="BOOK",t.SHARED_BOOK="SHARED_BOOK"})(or||(or={}));var sr;(function(t){t.FLUIDTOPICS="FLUIDTOPICS",t.EXTERNAL="EXTERNAL"})(sr||(sr={}));var ur;(function(t){t.MAP="MAP",t.DOCUMENT="DOCUMENT",t.TOPIC="TOPIC",t.PERSONAL_BOOK="PERSONAL_BOOK",t.SHARED_BOOK="SHARED_BOOK"})(ur||(ur={}));var cr;(function(t){t.MAP="MAP",t.DOCUMENT="DOCUMENT",t.TOPIC="TOPIC"})(cr||(cr={}));var lr;(function(t){t.DEFAULT="DEFAULT",t.DOCUMENTS="DOCUMENTS",t.ALL_TOPICS="ALL_TOPICS"})(lr||(lr={}));var R;(function(t){t.PERSONAL_BOOK_USER="PERSONAL_BOOK_USER",t.PERSONAL_BOOK_SHARE_USER="PERSONAL_BOOK_SHARE_USER",t.HTML_EXPORT_USER="HTML_EXPORT_USER",t.PDF_EXPORT_USER="PDF_EXPORT_USER",t.SAVED_SEARCH_USER="SAVED_SEARCH_USER",t.COLLECTION_USER="COLLECTION_USER",t.OFFLINE_USER="OFFLINE_USER",t.ANALYTICS_USER="ANALYTICS_USER",t.BETA_USER="BETA_USER",t.DEBUG_USER="DEBUG_USER",t.PRINT_USER="PRINT_USER",t.RATING_USER="RATING_USER",t.FEEDBACK_USER="FEEDBACK_USER",t.GENERATIVE_AI_USER="GENERATIVE_AI_USER",t.CONTENT_PUBLISHER="CONTENT_PUBLISHER",t.KHUB_ADMIN="KHUB_ADMIN",t.USERS_ADMIN="USERS_ADMIN",t.PORTAL_ADMIN="PORTAL_ADMIN",t.ADMIN="ADMIN",t.DEVELOPER="DEVELOPER"})(R||(R={}));var dr;(function(t){t.VALID="VALID",t.INVALID="INVALID"})(dr||(dr={}));var bn={[R.PERSONAL_BOOK_SHARE_USER]:[R.PERSONAL_BOOK_USER],[R.HTML_EXPORT_USER]:[R.PERSONAL_BOOK_USER],[R.PDF_EXPORT_USER]:[R.PERSONAL_BOOK_USER],[R.KHUB_ADMIN]:[R.CONTENT_PUBLISHER],[R.ADMIN]:[R.KHUB_ADMIN,R.USERS_ADMIN,R.PORTAL_ADMIN],[R.DEVELOPER]:[R.BETA_USER,R.DEBUG_USER]};function fr(t,e){return t===e||(bn[t]??[]).some(r=>fr(r,e))}function ue(t,e){return t==null?!1:(Array.isArray(t)?t:Array.isArray(t.roles)?t.roles:Array.isArray(t.profile?.roles)?t.profile.roles:[]).some(n=>fr(n,e))}var X;(function(t){t.FEEDBACK="FEEDBACK",t.RATING="RATING",t.PRINT="PRINT",t.BOOKMARK="BOOKMARK",t.COLLECTIONS="COLLECTIONS",t.PERSONAL_BOOKS="PERSONAL_BOOKS"})(X||(X={}));var cn=x(F());var yr=x(fe()),B=x(se()),q=x(F());var pr=x(fe());var hr=pr.css`
2
+ `;var _e=x(F()),Sn="ft-app-info",ct=class extends CustomEvent{constructor(e){super("authentication-change",{detail:e})}},En={session:(t,e)=>{(0,_e.deepEqual)(t.session,e.payload)||(t.session=e.payload,setTimeout(()=>b.eventBus.dispatchEvent(new ct(e.payload)),0))}},b=_e.FtReduxStore.get({name:Sn,reducers:En,initialState:{baseUrl:void 0,apiIntegrationIdentifier:void 0,uiLocale:document.documentElement.lang||"en-US",availableUiLocales:[],metadataConfiguration:void 0,editorMode:!1,noCustom:!1,noCustomComponent:!1,session:void 0,openExternalDocumentInNewTab:!1,navigatorOnline:!0,forcedOffline:!1}});var Q=x(F());var lt=x(F());var ce=class t{static get(e){let{baseUrl:r,apiIntegrationIdentifier:n}=b.getState(),i=e??n;if(r&&i&&window.fluidtopics)return new window.fluidtopics.FluidTopicsApi(r,i,!0)}static await(e){return new Promise(r=>{let n=t.get(e);if(n)r(n);else{let i=b.subscribe(()=>{n=t.get(e),n&&(i(),r(n))})}})}};var $=class{constructor(e=!0,r){var n;this.overrideApi=r;let i=this.constructor;i.commonCache=(n=i.commonCache)!==null&&n!==void 0?n:new lt.CacheRegistry,this.cache=e?i.commonCache:new lt.CacheRegistry}get api(){var e;return(e=this.overrideApi)!==null&&e!==void 0?e:ce.get()}get awaitApi(){return this.overrideApi?Promise.resolve(this.overrideApi):ce.await()}clearCache(){this.cache.clearAll()}};var vr,An=Symbol("clearAfterUnitTest"),Ne=class extends ${constructor(e){super(),this.messageContextProvider=e,this.defaultMessages={},this.listeners={},this.currentUiLocale="",this[vr]=()=>{this.defaultMessages={},this.cache=new Q.CacheRegistry,this.listeners={}},this.currentUiLocale=b.getState().uiLocale,b.subscribe(()=>this.clearWhenUiLocaleChanges())}clearWhenUiLocaleChanges(){let{uiLocale:e}=b.getState();this.currentUiLocale!==e&&(this.currentUiLocale=e,this.cache.clearAll(),this.notifyAll())}addContext(e){let r=e.name.toLowerCase();this.cache.setFinal(r,e),this.notify(r)}getAllContexts(){return this.cache.resolvedValues()}async prepareContext(e,r){var n;if(e=e.toLowerCase(),Object.keys(r).length>0){let i={...(n=this.defaultMessages[e])!==null&&n!==void 0?n:{},...r};(0,Q.deepEqual)(this.defaultMessages[e],i)||(this.defaultMessages[e]=i,await this.notify(e))}await this.fetchContext(e)}resolveMessage(e,r,...n){var i,a,o;e=e.toLowerCase(),this.fetchContext(e);let s=(a=(i=this.cache.getNow(e))===null||i===void 0?void 0:i.messages)!==null&&a!==void 0?a:{};return new Q.ParametrizedLabelResolver((o=this.defaultMessages[e])!==null&&o!==void 0?o:{},s).resolve(r,...n)}async fetchContext(e){if(!this.cache.has(e))try{await this.cache.get(e,()=>this.messageContextProvider(this.currentUiLocale,e)),await this.notify(e)}catch(r){console.error(r)}}subscribe(e,r){var n;return e=e.toLowerCase(),this.listeners[e]=(n=this.listeners[e])!==null&&n!==void 0?n:new Set,this.listeners[e].add(r),()=>{var i;return(i=this.listeners[e])===null||i===void 0?void 0:i.delete(r)}}async notifyAll(){await Promise.all(Object.keys(this.listeners).map(e=>this.notify(e)))}async notify(e){this.listeners[e]!=null&&await Promise.all([...this.listeners[e].values()].map(r=>(0,Q.delay)(0).then(()=>r()).catch(()=>null)))}};vr=An;window.FluidTopicsI18nService==null&&(window.FluidTopicsI18nService=new class extends Ne{constructor(){super(async(t,e)=>(await this.awaitApi).getFluidTopicsMessageContext(t,e))}});window.FluidTopicsCustomI18nService==null&&(window.FluidTopicsCustomI18nService=new class extends Ne{constructor(){super(async(t,e)=>(await this.awaitApi).getCustomMessageContext(t,e))}});var mr=window.FluidTopicsI18nService,Vi=window.FluidTopicsCustomI18nService;var k=function(t,e,r,n){var i=arguments.length,a=i<3?e:n===null?n=Object.getOwnPropertyDescriptor(e,r):n,o;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")a=Reflect.decorate(t,e,r,n);else for(var s=t.length-1;s>=0;s--)(o=t[s])&&(a=(i<3?o(a):i>3?o(e,r,a):o(e,r))||a);return i>3&&a&&Object.defineProperty(e,r,a),a},C=class extends q.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=()=>ce.get(),this.messageContexts=[],this.cache=new q.CacheRegistry,this.cleanSessionDebouncer=new q.Debouncer}render(){return yr.html`
3
3
  <slot></slot>
4
- `}update(e){super.update(e),e.has("baseUrl")&&(b.actions.baseUrl(this.baseUrl),window.fluidTopicsBaseUrl=this.baseUrl),e.has("apiIntegrationIdentifier")&&b.actions.apiIntegrationIdentifier(this.apiIntegrationIdentifier),e.has("uiLocale")&&b.actions.uiLocale(this.uiLocale),e.has("metadataConfiguration")&&b.actions.metadataConfiguration(this.metadataConfiguration),e.has("noCustom")&&b.actions.noCustom(this.noCustom),e.has("editorMode")&&b.actions.editorMode(this.editorMode),e.has("noCustomComponent")&&b.actions.noCustomComponent(this.noCustomComponent),e.has("session")&&b.actions.session(this.session),e.has("availableUiLocales")&&b.actions.availableUiLocales(Array.isArray(this.availableUiLocales)?this.availableUiLocales:[]),e.has("messageContexts")&&this.messageContexts!=null&&this.messageContexts.forEach(r=>hr.addContext(r)),e.has("openExternalDocumentInNewTab")&&b.actions.openExternalDocumentInNewTab(this.openExternalDocumentInNewTab),e.has("navigatorOnline")&&b.actions.navigatorOnline(this.navigatorOnline),e.has("forcedOffline")&&b.actions.forcedOffline(this.forcedOffline),setTimeout(()=>this.updateIfNeeded())}async updateIfNeeded(){!this.withManualResources&&this.apiProvider()&&(this.session==null&&this.updateSession(),this.availableUiLocales==null&&this.updateUiLocales(),this.metadataConfiguration==null&&this.updateMetadataConfiguration())}async updateSession(){this.session=await this.cache.get("session",async()=>{let e=await this.apiProvider().getCurrentSession();return e.idleTimeoutInMillis>0&&this.cleanSessionDebouncer.run(()=>{this.cache.clear("session"),this.session=void 0},e.idleTimeoutInMillis),e})}async updateUiLocales(){this.availableUiLocales=await this.cache.get("availableUiLocales",()=>this.apiProvider().getAvailableUiLocales())}async updateMetadataConfiguration(){this.metadataConfiguration=await this.cache.get("metadataConfiguration",()=>this.apiProvider().getMetadataConfiguration())}};C.elementDefinitions={};C.styles=dr;D([(0,B.property)()],C.prototype,"baseUrl",void 0);D([(0,B.property)()],C.prototype,"apiIntegrationIdentifier",void 0);D([(0,B.property)()],C.prototype,"uiLocale",void 0);D([(0,q.jsonProperty)(null)],C.prototype,"availableUiLocales",void 0);D([(0,q.jsonProperty)(null)],C.prototype,"metadataConfiguration",void 0);D([(0,B.property)({type:Boolean})],C.prototype,"editorMode",void 0);D([(0,B.property)({type:Boolean})],C.prototype,"noCustom",void 0);D([(0,B.property)({type:Boolean})],C.prototype,"openExternalDocumentInNewTab",void 0);D([(0,B.property)({converter:{fromAttribute(t){return t==="false"?!1:t==="true"||(t??!1)}}})],C.prototype,"noCustomComponent",void 0);D([(0,B.property)({type:Boolean})],C.prototype,"withManualResources",void 0);D([(0,B.property)({type:Boolean})],C.prototype,"navigatorOnline",void 0);D([(0,B.property)({type:Boolean})],C.prototype,"forcedOffline",void 0);D([(0,B.property)({type:Object})],C.prototype,"apiProvider",void 0);D([(0,q.jsonProperty)([])],C.prototype,"messageContexts",void 0);D([(0,q.jsonProperty)(void 0)],C.prototype,"session",void 0);var oi=x(oe());function En(t,e){if(t===e)return!0;if(t&&e&&typeof t=="object"&&typeof e=="object"){if(t.constructor!==e.constructor)return!1;var r,n,i;if(Array.isArray(t)){if(r=t.length,r!=e.length)return!1;for(n=r;n--!==0;)if(!pe(t[n],e[n]))return!1;return!0}if(t instanceof Map&&e instanceof Map){if(t.size!==e.size)return!1;for(n of t.entries())if(!e.has(n[0]))return!1;for(n of t.entries())if(!pe(n[1],e.get(n[0])))return!1;return!0}if(t instanceof Set&&e instanceof Set){if(t.size!==e.size)return!1;for(n of t.entries())if(!e.has(n[0]))return!1;return!0}if(t.constructor===RegExp)return t.source===e.source&&t.flags===e.flags;if(t.valueOf!==Object.prototype.valueOf)return t.valueOf()===e.valueOf();if(i=Object.keys(t),r=i.length,r!==Object.keys(e).length)return!1;for(n=r;n--!==0;)if(!Object.prototype.hasOwnProperty.call(e,i[n]))return!1;for(n=r;n--!==0;){var a=i[n];if(!pe(t[a],e[a]))return!1}return!0}return t!==t&&e!==e}function pe(t,e){try{return En(t,e)}catch{return!1}}var An=x(oe(),1);var Ne=class{constructor(){this.queue=[]}add(e,r=!1){r&&(this.queue=this.queue.filter(n=>n.type!==e.type)),this.queue.push(e)}consume(e){let r=this.queue.find(n=>n.type===e);return r&&(this.queue=this.queue.filter(n=>n!==r)),r}};var ut=x(oe(),1);var mr=x(oe(),1);function yr(t,e){let r=()=>JSON.parse(JSON.stringify(t));return(0,mr.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:(n,i)=>!pe(n,i),...e??{}})}var Me=class{constructor(e=0){this.timeout=e,this.callbacks=[]}run(e,r){return this.callbacks=[e],this.debounce(r)}queue(e,r){return this.callbacks.push(e),this.debounce(r)}cancel(){this.clearTimeout(),this.resolvePromise&&this.resolvePromise(!1),this.clearPromise()}debounce(e){return this.promise==null&&(this.promise=new Promise((r,n)=>{this.resolvePromise=r,this.rejectPromise=n})),this.clearTimeout(),this._debounce=window.setTimeout(()=>this.runCallbacks(),e??this.timeout),this.promise}async runCallbacks(){var e,r;let n=[...this.callbacks];this.callbacks=[];let i=(e=this.rejectPromise)!==null&&e!==void 0?e:()=>null,a=(r=this.resolvePromise)!==null&&r!==void 0?r:()=>null;this.clearPromise();for(let o of n)try{await o()}catch(s){i(s);return}a(!0)}clearTimeout(){this._debounce!=null&&window.clearTimeout(this._debounce)}clearPromise(){this.promise=void 0,this.resolvePromise=void 0,this.rejectPromise=void 0}};var br=x(fe(),1);var ke=window,wn=ke.ShadowRoot&&(ke.ShadyCSS===void 0||ke.ShadyCSS.nativeShadow)&&"adoptedStyleSheets"in Document.prototype&&"replace"in CSSStyleSheet.prototype,ta=Symbol();var gr=(t,e)=>{wn?t.adoptedStyleSheets=e.map(r=>r instanceof CSSStyleSheet?r:r.styleSheet):e.forEach(r=>{let n=document.createElement("style"),i=ke.litNonce;i!==void 0&&n.setAttribute("nonce",i),n.textContent=r.cssText,t.appendChild(n)})};var De=class extends br.LitElement{createRenderRoot(){let e=this.constructor;e.elementDefinitions&&!e.registry&&(e.registry=new CustomElementRegistry,Object.entries(e.elementDefinitions).forEach(([i,a])=>e.registry.define(i,a)));let r={...e.shadowRootOptions,customElements:e.registry},n=this.renderOptions.creationScope=this.attachShadow(r);return gr(n,e.elementStyles),n}};var st=function(t,e,r,n){var i=arguments.length,a=i<3?e:n===null?n=Object.getOwnPropertyDescriptor(e,r):n,o;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")a=Reflect.decorate(t,e,r,n);else for(var s=t.length-1;s>=0;s--)(o=t[s])&&(a=(i<3?o(a):i>3?o(e,r,a):o(e,r))||a);return i>3&&a&&Object.defineProperty(e,r,a),a},Ar,Sr=Symbol("constructorPrototype"),Er=Symbol("constructorName"),wr=Symbol("exportpartsDebouncer"),ce=class extends De{constructor(){super(),this.adoptedCustomStyleSheet=new CSSStyleSheet,this.useAdoptedStyleSheets=!0,this[Ar]=new Me(5),this[Er]=this.constructor.name,this[Sr]=this.constructor.prototype}adoptedCallback(){this.constructor.name!==this[Er]&&Object.setPrototypeOf(this,this[Sr])}connectedCallback(){super.connectedCallback();try{this.shadowRoot&&!this.shadowRoot.adoptedStyleSheets.includes(this.adoptedCustomStyleSheet)&&(this.shadowRoot.adoptedStyleSheets=[...this.shadowRoot.adoptedStyleSheets,this.adoptedCustomStyleSheet])}catch(e){this.useAdoptedStyleSheets=!1,console.error("Cannot use adopted stylesheets",e)}}updated(e){super.updated(e),this.updateComplete.then(()=>{this.contentAvailableCallback(e),this.applyCustomStylesheet(e),this.scheduleExportpartsUpdate()})}contentAvailableCallback(e){}applyCustomStylesheet(e){var r,n,i;if(this.useAdoptedStyleSheets){if(e.has("customStylesheet"))try{this.adoptedCustomStyleSheet.replaceSync((r=this.customStylesheet)!==null&&r!==void 0?r:"")}catch(a){console.error(a,this.customStylesheet)}}else if(((i=(n=this.shadowRoot)===null||n===void 0?void 0:n.querySelectorAll(".ft-lit-element--custom-stylesheet"))!==null&&i!==void 0?i:[]).forEach(a=>a.remove()),this.customStylesheet){let a=document.createElement("style");a.classList.add("ft-lit-element--custom-stylesheet"),a.innerHTML=this.customStylesheet,this.shadowRoot.append(a)}}scheduleExportpartsUpdate(){var e,r,n;(!((e=this.exportpartsPrefix)===null||e===void 0)&&e.trim()||(n=(r=this.exportpartsPrefixes)===null||r===void 0?void 0:r.length)!==null&&n!==void 0&&n)&&this[wr].run(()=>{var i,a;!((i=this.exportpartsPrefix)===null||i===void 0)&&i.trim()?this.setExportpartsAttribute([this.exportpartsPrefix]):this.exportpartsPrefixes!=null&&((a=this.exportpartsPrefixes)===null||a===void 0?void 0:a.length)>0&&this.setExportpartsAttribute(this.exportpartsPrefixes)})}setExportpartsAttribute(e){var r,n,i,a,o,s;let l=f=>f!=null&&f.trim().length>0,u=e.filter(l).map(f=>f.trim());if(u.length===0){this.removeAttribute("exportparts");return}let d=new Set;for(let f of(n=(r=this.shadowRoot)===null||r===void 0?void 0:r.querySelectorAll("[part],[exportparts]"))!==null&&n!==void 0?n:[]){let y=(a=(i=f.getAttribute("part"))===null||i===void 0?void 0:i.split(" "))!==null&&a!==void 0?a:[],h=(s=(o=f.getAttribute("exportparts"))===null||o===void 0?void 0:o.split(",").map(v=>v.split(":")[1]))!==null&&s!==void 0?s:[];new Array(...y,...h).filter(l).map(v=>v.trim()).forEach(v=>d.add(v))}if(d.size===0){this.removeAttribute("exportparts");return}let m=[...d.values()].flatMap(f=>u.map(y=>`${f}:${y}--${f}`));this.setAttribute("exportparts",[...this.part,...m].join(", "))}};Ar=wr;st([(0,ut.property)()],ce.prototype,"exportpartsPrefix",void 0);st([yr([])],ce.prototype,"exportpartsPrefixes",void 0);st([(0,ut.property)()],ce.prototype,"customStylesheet",void 0);function Se(t){var e;return(e=t?.isFtReduxStore)!==null&&e!==void 0?e:!1}var Tr,Or,xr,Ue=Symbol("internalReduxEventsUnsubscribers"),Z=Symbol("internalStoresUnsubscribers"),le=Symbol("internalStores"),Ee=class extends ce{constructor(){super(...arguments),this[Tr]=new Map,this[Or]=new Map,this[xr]=[]}get reduxConstructor(){return this.constructor}update(e){super.update(e),[...this.reduxConstructor.reduxReactiveProperties].some(r=>e.has(r))&&this.updateFromStores()}getUnnamedStore(){if(this[le].size>1)throw new Error("Cannot resolve unnamed store when multiple stores are configured.");return[...this[le].values()][0]}getStore(e){return e==null?this.getUnnamedStore():this[le].get(e)}addStore(e,r){var n;r=(n=r??(Se(e)?e.name:void 0))!==null&&n!==void 0?n:"default-store",this.unsubscribeFromStore(r),this.setupStore(r,e)}removeStore(e){let r=typeof e=="string"?e:e.name;this.unsubscribeFromStore(r),this[le].delete(r)}setupStore(e,r){this[le].set(e,r),this.subscribeToStore(e,r),this.updateFromStores()}setupStores(){this.unsubscribeFromStores(),this[le].forEach((e,r)=>this.subscribeToStore(r,e)),this.updateFromStores()}updateFromStores(){this.reduxConstructor.reduxProperties.forEach((e,r)=>{let n=this.constructor.getPropertyOptions(r);if(!n?.attribute||!this.hasAttribute(typeof n?.attribute=="string"?n.attribute:r)){let i=this.getStore(e.store);i&&(e.store?this[Z].has(e.store):this[Z].size>0)&&(this[r]=e.selector(i.getState(),this))}})}subscribeToStore(e,r){var n;this[Z].set(e,r.subscribe(()=>this.updateFromStores())),Se(r)&&r.eventBus&&((n=this.reduxConstructor.reduxEventListeners)===null||n===void 0||n.forEach((i,a)=>{if(typeof this[a]=="function"&&(!i.store||r.name===i.store)){let o=s=>this[a](s);r.eventBus.addEventListener(i.eventName,o),this[Ue].push(()=>r.eventBus.removeEventListener(i.eventName,o))}})),this.onStoreAvailable(e)}unsubscribeFromStores(){this[Z].forEach((e,r)=>this.unsubscribeFromStore(r)),this[Ue].forEach(e=>e()),this[Ue]=[]}unsubscribeFromStore(e){this[Z].has(e)&&this[Z].get(e)(),this[Z].delete(e)}onStoreAvailable(e){}connectedCallback(){super.connectedCallback(),this.setupStores()}disconnectedCallback(){super.disconnectedCallback(),this.unsubscribeFromStores()}};Tr=Z,Or=le,xr=Ue;Ee.reduxProperties=new Map;Ee.reduxReactiveProperties=new Set;Ee.reduxEventListeners=new Map;function V(t){for(var e=arguments.length,r=Array(e>1?e-1:0),n=1;n<e;n++)r[n-1]=arguments[n];if(0)var i,a;throw Error("[Immer] minified error nr: "+t+(r.length?" "+r.map(function(o){return"'"+o+"'"}).join(","):"")+". Find the full error at: https://bit.ly/3cXEKWf")}function Y(t){return!!t&&!!t[I]}function K(t){var e;return!!t&&(function(r){if(!r||typeof r!="object")return!1;var n=Object.getPrototypeOf(r);if(n===null)return!0;var i=Object.hasOwnProperty.call(n,"constructor")&&n.constructor;return i===Object||typeof i=="function"&&Function.toString.call(i)===_n}(t)||Array.isArray(t)||!!t[Mr]||!!(!((e=t.constructor)===null||e===void 0)&&e[Mr])||yt(t)||gt(t))}function de(t,e,r){r===void 0&&(r=!1),me(t)===0?(r?Object.keys:ve)(t).forEach(function(n){r&&typeof n=="symbol"||e(n,t[n],t)}):t.forEach(function(n,i){return e(i,n,t)})}function me(t){var e=t[I];return e?e.i>3?e.i-4:e.i:Array.isArray(t)?1:yt(t)?2:gt(t)?3:0}function he(t,e){return me(t)===2?t.has(e):Object.prototype.hasOwnProperty.call(t,e)}function Tn(t,e){return me(t)===2?t.get(e):t[e]}function kr(t,e,r){var n=me(t);n===2?t.set(e,r):n===3?t.add(r):t[e]=r}function Dr(t,e){return t===e?t!==0||1/t==1/e:t!=t&&e!=e}function yt(t){return Pn&&t instanceof Map}function gt(t){return Cn&&t instanceof Set}function ee(t){return t.o||t.t}function bt(t){if(Array.isArray(t))return Array.prototype.slice.call(t);var e=Fr(t);delete e[I];for(var r=ve(e),n=0;n<r.length;n++){var i=r[n],a=e[i];a.writable===!1&&(a.writable=!0,a.configurable=!0),(a.get||a.set)&&(e[i]={configurable:!0,writable:!0,enumerable:a.enumerable,value:t[i]})}return Object.create(Object.getPrototypeOf(t),e)}function St(t,e){return e===void 0&&(e=!1),Et(t)||Y(t)||!K(t)||(me(t)>1&&(t.set=t.add=t.clear=t.delete=On),Object.freeze(t),e&&de(t,function(r,n){return St(n,!0)},!0)),t}function On(){V(2)}function Et(t){return t==null||typeof t!="object"||Object.isFrozen(t)}function G(t){var e=mt[t];return e||V(18,t),e}function xn(t,e){mt[t]||(mt[t]=e)}function pt(){return we}function ct(t,e){e&&(G("Patches"),t.u=[],t.s=[],t.v=e)}function Le(t){ht(t),t.p.forEach(Rn),t.p=null}function ht(t){t===we&&(we=t.l)}function Rr(t){return we={p:[],l:we,h:t,m:!0,_:0}}function Rn(t){var e=t[I];e.i===0||e.i===1?e.j():e.g=!0}function lt(t,e){e._=e.p.length;var r=e.p[0],n=t!==void 0&&t!==r;return e.h.O||G("ES5").S(e,t,n),n?(r[I].P&&(Le(e),V(4)),K(t)&&(t=Fe(e,t),e.l||je(e,t)),e.u&&G("Patches").M(r[I].t,t,e.u,e.s)):t=Fe(e,r,[]),Le(e),e.u&&e.v(e.u,e.s),t!==Lr?t:void 0}function Fe(t,e,r){if(Et(e))return e;var n=e[I];if(!n)return de(e,function(s,l){return Ir(t,n,e,s,l,r)},!0),e;if(n.A!==t)return e;if(!n.P)return je(t,n.t,!0),n.t;if(!n.I){n.I=!0,n.A._--;var i=n.i===4||n.i===5?n.o=bt(n.k):n.o,a=i,o=!1;n.i===3&&(a=new Set(i),i.clear(),o=!0),de(a,function(s,l){return Ir(t,n,i,s,l,r,o)}),je(t,i,!1),r&&t.u&&G("Patches").N(n,r,t.u,t.s)}return n.o}function Ir(t,e,r,n,i,a,o){if(Y(i)){var s=Fe(t,i,a&&e&&e.i!==3&&!he(e.R,n)?a.concat(n):void 0);if(kr(r,n,s),!Y(s))return;t.m=!1}else o&&r.add(i);if(K(i)&&!Et(i)){if(!t.h.D&&t._<1)return;Fe(t,i),e&&e.A.l||je(t,i)}}function je(t,e,r){r===void 0&&(r=!1),!t.l&&t.h.D&&t.m&&St(e,r)}function dt(t,e){var r=t[I];return(r?ee(r):t)[e]}function Pr(t,e){if(e in t)for(var r=Object.getPrototypeOf(t);r;){var n=Object.getOwnPropertyDescriptor(r,e);if(n)return n;r=Object.getPrototypeOf(r)}}function te(t){t.P||(t.P=!0,t.l&&te(t.l))}function ft(t){t.o||(t.o=bt(t.t))}function vt(t,e,r){var n=yt(e)?G("MapSet").F(e,r):gt(e)?G("MapSet").T(e,r):t.O?function(i,a){var o=Array.isArray(i),s={i:o?1:0,A:a?a.A:pt(),P:!1,I:!1,R:{},l:a,t:i,k:null,o:null,j:null,C:!1},l=s,u=Te;o&&(l=[s],u=Ae);var d=Proxy.revocable(l,u),m=d.revoke,f=d.proxy;return s.k=f,s.j=m,f}(e,r):G("ES5").J(e,r);return(r?r.A:pt()).p.push(n),n}function In(t){return Y(t)||V(22,t),function e(r){if(!K(r))return r;var n,i=r[I],a=me(r);if(i){if(!i.P&&(i.i<4||!G("ES5").K(i)))return i.t;i.I=!0,n=Cr(r,a),i.I=!1}else n=Cr(r,a);return de(n,function(o,s){i&&Tn(i.t,o)===s||kr(n,o,e(s))}),a===3?new Set(n):n}(t)}function Cr(t,e){switch(e){case 2:return new Map(t);case 3:return Array.from(t)}return bt(t)}function Ur(){function t(o,s){var l=a[o];return l?l.enumerable=s:a[o]=l={configurable:!0,enumerable:s,get:function(){var u=this[I];return Te.get(u,o)},set:function(u){var d=this[I];Te.set(d,o,u)}},l}function e(o){for(var s=o.length-1;s>=0;s--){var l=o[s][I];if(!l.P)switch(l.i){case 5:n(l)&&te(l);break;case 4:r(l)&&te(l)}}}function r(o){for(var s=o.t,l=o.k,u=ve(l),d=u.length-1;d>=0;d--){var m=u[d];if(m!==I){var f=s[m];if(f===void 0&&!he(s,m))return!0;var y=l[m],h=y&&y[I];if(h?h.t!==f:!Dr(y,f))return!0}}var v=!!s[I];return u.length!==ve(s).length+(v?0:1)}function n(o){var s=o.k;if(s.length!==o.t.length)return!0;var l=Object.getOwnPropertyDescriptor(s,s.length-1);if(l&&!l.get)return!0;for(var u=0;u<s.length;u++)if(!s.hasOwnProperty(u))return!0;return!1}function i(o){o.g&&V(3,JSON.stringify(ee(o)))}var a={};xn("ES5",{J:function(o,s){var l=Array.isArray(o),u=function(m,f){if(m){for(var y=Array(f.length),h=0;h<f.length;h++)Object.defineProperty(y,""+h,t(h,!0));return y}var v=Fr(f);delete v[I];for(var w=ve(v),S=0;S<w.length;S++){var E=w[S];v[E]=t(E,m||!!v[E].enumerable)}return Object.create(Object.getPrototypeOf(f),v)}(l,o),d={i:l?5:4,A:s?s.A:pt(),P:!1,I:!1,R:{},l:s,t:o,k:u,o:null,g:!1,C:!1};return Object.defineProperty(u,I,{value:d,writable:!0}),u},S:function(o,s,l){l?Y(s)&&s[I].A===o&&e(o.p):(o.u&&function u(d){if(d&&typeof d=="object"){var m=d[I];if(m){var f=m.t,y=m.k,h=m.R,v=m.i;if(v===4)de(y,function(A){A!==I&&(f[A]!==void 0||he(f,A)?h[A]||u(y[A]):(h[A]=!0,te(m)))}),de(f,function(A){y[A]!==void 0||he(y,A)||(h[A]=!1,te(m))});else if(v===5){if(n(m)&&(te(m),h.length=!0),y.length<f.length)for(var w=y.length;w<f.length;w++)h[w]=!1;else for(var S=f.length;S<y.length;S++)h[S]=!0;for(var E=Math.min(y.length,f.length),O=0;O<E;O++)y.hasOwnProperty(O)||(h[O]=!0),h[O]===void 0&&u(y[O])}}}}(o.p[0]),e(o.p))},K:function(o){return o.i===4?r(o):n(o)}})}var _r,we,At=typeof Symbol<"u"&&typeof Symbol("x")=="symbol",Pn=typeof Map<"u",Cn=typeof Set<"u",Nr=typeof Proxy<"u"&&Proxy.revocable!==void 0&&typeof Reflect<"u",Lr=At?Symbol.for("immer-nothing"):((_r={})["immer-nothing"]=!0,_r),Mr=At?Symbol.for("immer-draftable"):"__$immer_draftable",I=At?Symbol.for("immer-state"):"__$immer_state";var _n=""+Object.prototype.constructor,ve=typeof Reflect<"u"&&Reflect.ownKeys?Reflect.ownKeys:Object.getOwnPropertySymbols!==void 0?function(t){return Object.getOwnPropertyNames(t).concat(Object.getOwnPropertySymbols(t))}:Object.getOwnPropertyNames,Fr=Object.getOwnPropertyDescriptors||function(t){var e={};return ve(t).forEach(function(r){e[r]=Object.getOwnPropertyDescriptor(t,r)}),e},mt={},Te={get:function(t,e){if(e===I)return t;var r=ee(t);if(!he(r,e))return function(i,a,o){var s,l=Pr(a,o);return l?"value"in l?l.value:(s=l.get)===null||s===void 0?void 0:s.call(i.k):void 0}(t,r,e);var n=r[e];return t.I||!K(n)?n:n===dt(t.t,e)?(ft(t),t.o[e]=vt(t.A.h,n,t)):n},has:function(t,e){return e in ee(t)},ownKeys:function(t){return Reflect.ownKeys(ee(t))},set:function(t,e,r){var n=Pr(ee(t),e);if(n?.set)return n.set.call(t.k,r),!0;if(!t.P){var i=dt(ee(t),e),a=i?.[I];if(a&&a.t===r)return t.o[e]=r,t.R[e]=!1,!0;if(Dr(r,i)&&(r!==void 0||he(t.t,e)))return!0;ft(t),te(t)}return t.o[e]===r&&(r!==void 0||e in t.o)||Number.isNaN(r)&&Number.isNaN(t.o[e])||(t.o[e]=r,t.R[e]=!0),!0},deleteProperty:function(t,e){return dt(t.t,e)!==void 0||e in t.t?(t.R[e]=!1,ft(t),te(t)):delete t.R[e],t.o&&delete t.o[e],!0},getOwnPropertyDescriptor:function(t,e){var r=ee(t),n=Reflect.getOwnPropertyDescriptor(r,e);return n&&{writable:!0,configurable:t.i!==1||e!=="length",enumerable:n.enumerable,value:r[e]}},defineProperty:function(){V(11)},getPrototypeOf:function(t){return Object.getPrototypeOf(t.t)},setPrototypeOf:function(){V(12)}},Ae={};de(Te,function(t,e){Ae[t]=function(){return arguments[0]=arguments[0][0],e.apply(this,arguments)}}),Ae.deleteProperty=function(t,e){return Ae.set.call(this,t,e,void 0)},Ae.set=function(t,e,r){return Te.set.call(this,t[0],e,r,t[0])};var Nn=function(){function t(r){var n=this;this.O=Nr,this.D=!0,this.produce=function(i,a,o){if(typeof i=="function"&&typeof a!="function"){var s=a;a=i;var l=n;return function(v){var w=this;v===void 0&&(v=s);for(var S=arguments.length,E=Array(S>1?S-1:0),O=1;O<S;O++)E[O-1]=arguments[O];return l.produce(v,function(A){var z;return(z=a).call.apply(z,[w,A].concat(E))})}}var u;if(typeof a!="function"&&V(6),o!==void 0&&typeof o!="function"&&V(7),K(i)){var d=Rr(n),m=vt(n,i,void 0),f=!0;try{u=a(m),f=!1}finally{f?Le(d):ht(d)}return typeof Promise<"u"&&u instanceof Promise?u.then(function(v){return ct(d,o),lt(v,d)},function(v){throw Le(d),v}):(ct(d,o),lt(u,d))}if(!i||typeof i!="object"){if((u=a(i))===void 0&&(u=i),u===Lr&&(u=void 0),n.D&&St(u,!0),o){var y=[],h=[];G("Patches").M(i,u,y,h),o(y,h)}return u}V(21,i)},this.produceWithPatches=function(i,a){if(typeof i=="function")return function(u){for(var d=arguments.length,m=Array(d>1?d-1:0),f=1;f<d;f++)m[f-1]=arguments[f];return n.produceWithPatches(u,function(y){return i.apply(void 0,[y].concat(m))})};var o,s,l=n.produce(i,a,function(u,d){o=u,s=d});return typeof Promise<"u"&&l instanceof Promise?l.then(function(u){return[u,o,s]}):[l,o,s]},typeof r?.useProxies=="boolean"&&this.setUseProxies(r.useProxies),typeof r?.autoFreeze=="boolean"&&this.setAutoFreeze(r.autoFreeze)}var e=t.prototype;return e.createDraft=function(r){K(r)||V(8),Y(r)&&(r=In(r));var n=Rr(this),i=vt(this,r,void 0);return i[I].C=!0,ht(n),i},e.finishDraft=function(r,n){var i=r&&r[I],a=i.A;return ct(a,n),lt(void 0,a)},e.setAutoFreeze=function(r){this.D=r},e.setUseProxies=function(r){r&&!Nr&&V(20),this.O=r},e.applyPatches=function(r,n){var i;for(i=n.length-1;i>=0;i--){var a=n[i];if(a.path.length===0&&a.op==="replace"){r=a.value;break}}i>-1&&(n=n.slice(i+1));var o=G("Patches").$;return Y(r)?o(r,n):this.produce(r,function(s){return o(s,n)})},t}(),L=new Nn,Mn=L.produce,pa=L.produceWithPatches.bind(L),ha=L.setAutoFreeze.bind(L),va=L.setUseProxies.bind(L),ma=L.applyPatches.bind(L),ya=L.createDraft.bind(L),ga=L.finishDraft.bind(L),Be=Mn;function re(t){"@babel/helpers - typeof";return re=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(e){return typeof e}:function(e){return e&&typeof Symbol=="function"&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},re(t)}function wt(t,e){if(re(t)!=="object"||t===null)return t;var r=t[Symbol.toPrimitive];if(r!==void 0){var n=r.call(t,e||"default");if(re(n)!=="object")return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return(e==="string"?String:Number)(t)}function Tt(t){var e=wt(t,"string");return re(e)==="symbol"?e:String(e)}function Ot(t,e,r){return e=Tt(e),e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function jr(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter(function(i){return Object.getOwnPropertyDescriptor(t,i).enumerable})),r.push.apply(r,n)}return r}function Ve(t){for(var e=1;e<arguments.length;e++){var r=arguments[e]!=null?arguments[e]:{};e%2?jr(Object(r),!0).forEach(function(n){Ot(t,n,r[n])}):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):jr(Object(r)).forEach(function(n){Object.defineProperty(t,n,Object.getOwnPropertyDescriptor(r,n))})}return t}function k(t){return"Minified Redux error #"+t+"; visit https://redux.js.org/Errors?code="+t+" for the full message or use the non-minified dev environment for full errors. "}var Br=function(){return typeof Symbol=="function"&&Symbol.observable||"@@observable"}(),xt=function(){return Math.random().toString(36).substring(7).split("").join(".")},He={INIT:"@@redux/INIT"+xt(),REPLACE:"@@redux/REPLACE"+xt(),PROBE_UNKNOWN_ACTION:function(){return"@@redux/PROBE_UNKNOWN_ACTION"+xt()}};function kn(t){if(typeof t!="object"||t===null)return!1;for(var e=t;Object.getPrototypeOf(e)!==null;)e=Object.getPrototypeOf(e);return Object.getPrototypeOf(t)===e}function Rt(t,e,r){var n;if(typeof e=="function"&&typeof r=="function"||typeof r=="function"&&typeof arguments[3]=="function")throw new Error(k(0));if(typeof e=="function"&&typeof r>"u"&&(r=e,e=void 0),typeof r<"u"){if(typeof r!="function")throw new Error(k(1));return r(Rt)(t,e)}if(typeof t!="function")throw new Error(k(2));var i=t,a=e,o=[],s=o,l=!1;function u(){s===o&&(s=o.slice())}function d(){if(l)throw new Error(k(3));return a}function m(v){if(typeof v!="function")throw new Error(k(4));if(l)throw new Error(k(5));var w=!0;return u(),s.push(v),function(){if(w){if(l)throw new Error(k(6));w=!1,u();var E=s.indexOf(v);s.splice(E,1),o=null}}}function f(v){if(!kn(v))throw new Error(k(7));if(typeof v.type>"u")throw new Error(k(8));if(l)throw new Error(k(9));try{l=!0,a=i(a,v)}finally{l=!1}for(var w=o=s,S=0;S<w.length;S++){var E=w[S];E()}return v}function y(v){if(typeof v!="function")throw new Error(k(10));i=v,f({type:He.REPLACE})}function h(){var v,w=m;return v={subscribe:function(E){if(typeof E!="object"||E===null)throw new Error(k(11));function O(){E.next&&E.next(d())}O();var A=w(O);return{unsubscribe:A}}},v[Br]=function(){return this},v}return f({type:He.INIT}),n={dispatch:f,subscribe:m,getState:d,replaceReducer:y},n[Br]=h,n}function Dn(t){Object.keys(t).forEach(function(e){var r=t[e],n=r(void 0,{type:He.INIT});if(typeof n>"u")throw new Error(k(12));if(typeof r(void 0,{type:He.PROBE_UNKNOWN_ACTION()})>"u")throw new Error(k(13))})}function Vr(t){for(var e=Object.keys(t),r={},n=0;n<e.length;n++){var i=e[n];typeof t[i]=="function"&&(r[i]=t[i])}var a=Object.keys(r),o,s;try{Dn(r)}catch(l){s=l}return function(u,d){if(u===void 0&&(u={}),s)throw s;if(0)var m;for(var f=!1,y={},h=0;h<a.length;h++){var v=a[h],w=r[v],S=u[v],E=w(S,d);if(typeof E>"u"){var O=d&&d.type;throw new Error(k(14))}y[v]=E,f=f||E!==S}return f=f||a.length!==Object.keys(u).length,f?y:u}}function ye(){for(var t=arguments.length,e=new Array(t),r=0;r<t;r++)e[r]=arguments[r];return e.length===0?function(n){return n}:e.length===1?e[0]:e.reduce(function(n,i){return function(){return n(i.apply(void 0,arguments))}})}function Hr(){for(var t=arguments.length,e=new Array(t),r=0;r<t;r++)e[r]=arguments[r];return function(n){return function(){var i=n.apply(void 0,arguments),a=function(){throw new Error(k(15))},o={getState:i.getState,dispatch:function(){return a.apply(void 0,arguments)}},s=e.map(function(l){return l(o)});return a=ye.apply(void 0,s)(i.dispatch),Ve(Ve({},i),{},{dispatch:a})}}}function qr(t){var e=function(n){var i=n.dispatch,a=n.getState;return function(o){return function(s){return typeof s=="function"?s(i,a,t):o(s)}}};return e}var Kr=qr();Kr.withExtraArgument=qr;var It=Kr;var Xr=function(){var t=function(e,r){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(n,i){n.__proto__=i}||function(n,i){for(var a in i)Object.prototype.hasOwnProperty.call(i,a)&&(n[a]=i[a])},t(e,r)};return function(e,r){if(typeof r!="function"&&r!==null)throw new TypeError("Class extends value "+String(r)+" is not a constructor or null");t(e,r);function n(){this.constructor=e}e.prototype=r===null?Object.create(r):(n.prototype=r.prototype,new n)}}(),Un=function(t,e){var r={label:0,sent:function(){if(a[0]&1)throw a[1];return a[1]},trys:[],ops:[]},n,i,a,o;return o={next:s(0),throw:s(1),return:s(2)},typeof Symbol=="function"&&(o[Symbol.iterator]=function(){return this}),o;function s(u){return function(d){return l([u,d])}}function l(u){if(n)throw new TypeError("Generator is already executing.");for(;r;)try{if(n=1,i&&(a=u[0]&2?i.return:u[0]?i.throw||((a=i.return)&&a.call(i),0):i.next)&&!(a=a.call(i,u[1])).done)return a;switch(i=0,a&&(u=[u[0]&2,a.value]),u[0]){case 0:case 1:a=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(a=r.trys,!(a=a.length>0&&a[a.length-1])&&(u[0]===6||u[0]===2)){r=0;continue}if(u[0]===3&&(!a||u[1]>a[0]&&u[1]<a[3])){r.label=u[1];break}if(u[0]===6&&r.label<a[1]){r.label=a[1],a=u;break}if(a&&r.label<a[2]){r.label=a[2],r.ops.push(u);break}a[2]&&r.ops.pop(),r.trys.pop();continue}u=e.call(t,r)}catch(d){u=[6,d],i=0}finally{n=a=0}if(u[0]&5)throw u[1];return{value:u[0]?u[1]:void 0,done:!0}}},ge=function(t,e){for(var r=0,n=e.length,i=t.length;r<n;r++,i++)t[i]=e[r];return t},Ln=Object.defineProperty,Fn=Object.defineProperties,jn=Object.getOwnPropertyDescriptors,zr=Object.getOwnPropertySymbols,Bn=Object.prototype.hasOwnProperty,Vn=Object.prototype.propertyIsEnumerable,$r=function(t,e,r){return e in t?Ln(t,e,{enumerable:!0,configurable:!0,writable:!0,value:r}):t[e]=r},ne=function(t,e){for(var r in e||(e={}))Bn.call(e,r)&&$r(t,r,e[r]);if(zr)for(var n=0,i=zr(e);n<i.length;n++){var r=i[n];Vn.call(e,r)&&$r(t,r,e[r])}return t},Pt=function(t,e){return Fn(t,jn(e))},Hn=function(t,e,r){return new Promise(function(n,i){var a=function(l){try{s(r.next(l))}catch(u){i(u)}},o=function(l){try{s(r.throw(l))}catch(u){i(u)}},s=function(l){return l.done?n(l.value):Promise.resolve(l.value).then(a,o)};s((r=r.apply(t,e)).next())})};var qn=typeof window<"u"&&window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__?window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__:function(){if(arguments.length!==0)return typeof arguments[0]=="object"?ye:ye.apply(null,arguments)},Ua=typeof window<"u"&&window.__REDUX_DEVTOOLS_EXTENSION__?window.__REDUX_DEVTOOLS_EXTENSION__:function(){return function(t){return t}};function Kn(t){if(typeof t!="object"||t===null)return!1;var e=Object.getPrototypeOf(t);if(e===null)return!0;for(var r=e;Object.getPrototypeOf(r)!==null;)r=Object.getPrototypeOf(r);return e===r}var zn=function(t){Xr(e,t);function e(){for(var r=[],n=0;n<arguments.length;n++)r[n]=arguments[n];var i=t.apply(this,r)||this;return Object.setPrototypeOf(i,e.prototype),i}return Object.defineProperty(e,Symbol.species,{get:function(){return e},enumerable:!1,configurable:!0}),e.prototype.concat=function(){for(var r=[],n=0;n<arguments.length;n++)r[n]=arguments[n];return t.prototype.concat.apply(this,r)},e.prototype.prepend=function(){for(var r=[],n=0;n<arguments.length;n++)r[n]=arguments[n];return r.length===1&&Array.isArray(r[0])?new(e.bind.apply(e,ge([void 0],r[0].concat(this)))):new(e.bind.apply(e,ge([void 0],r.concat(this))))},e}(Array),$n=function(t){Xr(e,t);function e(){for(var r=[],n=0;n<arguments.length;n++)r[n]=arguments[n];var i=t.apply(this,r)||this;return Object.setPrototypeOf(i,e.prototype),i}return Object.defineProperty(e,Symbol.species,{get:function(){return e},enumerable:!1,configurable:!0}),e.prototype.concat=function(){for(var r=[],n=0;n<arguments.length;n++)r[n]=arguments[n];return t.prototype.concat.apply(this,r)},e.prototype.prepend=function(){for(var r=[],n=0;n<arguments.length;n++)r[n]=arguments[n];return r.length===1&&Array.isArray(r[0])?new(e.bind.apply(e,ge([void 0],r[0].concat(this)))):new(e.bind.apply(e,ge([void 0],r.concat(this))))},e}(Array);function Nt(t){return K(t)?Be(t,function(){}):t}function Gn(t){return typeof t=="boolean"}function Wn(){return function(e){return Xn(e)}}function Xn(t){t===void 0&&(t={});var e=t.thunk,r=e===void 0?!0:e,n=t.immutableCheck,i=n===void 0?!0:n,a=t.serializableCheck,o=a===void 0?!0:a,s=new zn;if(r&&(Gn(r)?s.push(It):s.push(It.withExtraArgument(r.extraArgument))),0){if(i)var l;if(o)var u}return s}var Ct=!0;function Yr(t){var e=Wn(),r=t||{},n=r.reducer,i=n===void 0?void 0:n,a=r.middleware,o=a===void 0?e():a,s=r.devTools,l=s===void 0?!0:s,u=r.preloadedState,d=u===void 0?void 0:u,m=r.enhancers,f=m===void 0?void 0:m,y;if(typeof i=="function")y=i;else if(Kn(i))y=Vr(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=o;if(typeof h=="function"&&(h=h(e),!Ct&&!Array.isArray(h)))throw new Error("when using a middleware builder function, an array of middleware must be returned");if(!Ct&&h.some(function(A){return typeof A!="function"}))throw new Error("each middleware provided to configureStore must be a function");var v=Hr.apply(void 0,h),w=ye;l&&(w=qn(ne({trace:!Ct},typeof l=="object"&&l)));var S=new $n(v),E=S;Array.isArray(f)?E=ge([v],f):typeof f=="function"&&(E=f(S));var O=w.apply(void 0,E);return Rt(y,d,O)}function ie(t,e){function r(){for(var n=[],i=0;i<arguments.length;i++)n[i]=arguments[i];if(e){var a=e.apply(void 0,n);if(!a)throw new Error("prepareAction did not return an object");return ne(ne({type:t,payload:a.payload},"meta"in a&&{meta:a.meta}),"error"in a&&{error:a.error})}return{type:t,payload:n[0]}}return r.toString=function(){return""+t},r.type=t,r.match=function(n){return n.type===t},r}function Jr(t){var e={},r=[],n,i={addCase:function(a,o){var s=typeof a=="string"?a:a.type;if(s in e)throw new Error("addCase cannot be called with two reducers for the same action type");return e[s]=o,i},addMatcher:function(a,o){return r.push({matcher:a,reducer:o}),i},addDefaultCase:function(a){return n=a,i}};return t(i),[e,r,n]}function Yn(t){return typeof t=="function"}function Jn(t,e,r,n){r===void 0&&(r=[]);var i=typeof e=="function"?Jr(e):[e,r,n],a=i[0],o=i[1],s=i[2],l;if(Yn(t))l=function(){return Nt(t())};else{var u=Nt(t);l=function(){return u}}function d(m,f){m===void 0&&(m=l());var y=ge([a[f.type]],o.filter(function(h){var v=h.matcher;return v(f)}).map(function(h){var v=h.reducer;return v}));return y.filter(function(h){return!!h}).length===0&&(y=[s]),y.reduce(function(h,v){if(v)if(Y(h)){var w=h,S=v(w,f);return S===void 0?h:S}else{if(K(h))return Be(h,function(E){return v(E,f)});var S=v(h,f);if(S===void 0){if(h===null)return h;throw Error("A case reducer on a non-draftable value must not return undefined")}return S}return h},m)}return d.getInitialState=l,d}function Qn(t,e){return t+"/"+e}function Qr(t){var e=t.name;if(!e)throw new Error("`name` is a required option for createSlice");typeof process<"u";var r=typeof t.initialState=="function"?t.initialState:Nt(t.initialState),n=t.reducers||{},i=Object.keys(n),a={},o={},s={};i.forEach(function(d){var m=n[d],f=Qn(e,d),y,h;"reducer"in m?(y=m.reducer,h=m.prepare):y=m,a[d]=y,o[f]=y,s[d]=h?ie(f,h):ie(f)});function l(){var d=typeof t.extraReducers=="function"?Jr(t.extraReducers):[t.extraReducers],m=d[0],f=m===void 0?{}:m,y=d[1],h=y===void 0?[]:y,v=d[2],w=v===void 0?void 0:v,S=ne(ne({},f),o);return Jn(r,function(E){for(var O in S)E.addCase(O,S[O]);for(var A=0,z=h;A<z.length;A++){var H=z[A];E.addMatcher(H.matcher,H.reducer)}w&&E.addDefaultCase(w)})}var u;return{name:e,reducer:function(d,m){return u||(u=l()),u(d,m)},actions:s,caseReducers:a,getInitialState:function(){return u||(u=l()),u.getInitialState()}}}var Zn="ModuleSymbhasOwnPr-0123456789ABCDEFGHNRVfgctiUvz_KqYTJkLxpZXIjQW",ei=function(t){t===void 0&&(t=21);for(var e="",r=t;r--;)e+=Zn[Math.random()*64|0];return e},ti=["name","message","stack","code"],_t=function(){function t(e,r){this.payload=e,this.meta=r}return t}(),Gr=function(){function t(e,r){this.payload=e,this.meta=r}return t}(),ri=function(t){if(typeof t=="object"&&t!==null){for(var e={},r=0,n=ti;r<n.length;r++){var i=n[r];typeof t[i]=="string"&&(e[i]=t[i])}return e}return{message:String(t)}},Ba=function(){function t(e,r,n){var i=ie(e+"/fulfilled",function(d,m,f,y){return{payload:d,meta:Pt(ne({},y||{}),{arg:f,requestId:m,requestStatus:"fulfilled"})}}),a=ie(e+"/pending",function(d,m,f){return{payload:void 0,meta:Pt(ne({},f||{}),{arg:m,requestId:d,requestStatus:"pending"})}}),o=ie(e+"/rejected",function(d,m,f,y,h){return{payload:y,error:(n&&n.serializeError||ri)(d||"Rejected"),meta:Pt(ne({},h||{}),{arg:f,requestId:m,rejectedWithValue:!!y,requestStatus:"rejected",aborted:d?.name==="AbortError",condition:d?.name==="ConditionError"})}}),s=!1,l=typeof AbortController<"u"?AbortController:function(){function d(){this.signal={aborted:!1,addEventListener:function(){},dispatchEvent:function(){return!1},onabort:function(){},removeEventListener:function(){},reason:void 0,throwIfAborted:function(){}}}return d.prototype.abort=function(){},d}();function u(d){return function(m,f,y){var h=n?.idGenerator?n.idGenerator(d):ei(),v=new l,w,S=!1;function E(A){w=A,v.abort()}var O=function(){return Hn(this,null,function(){var A,z,H,M,xe,W,c;return Un(this,function(p){switch(p.label){case 0:return p.trys.push([0,4,,5]),M=(A=n?.condition)==null?void 0:A.call(n,d,{getState:f,extra:y}),ii(M)?[4,M]:[3,2];case 1:M=p.sent(),p.label=2;case 2:if(M===!1||v.signal.aborted)throw{name:"ConditionError",message:"Aborted due to condition callback returning false."};return S=!0,xe=new Promise(function(g,P){return v.signal.addEventListener("abort",function(){return P({name:"AbortError",message:w||"Aborted"})})}),m(a(h,d,(z=n?.getPendingMeta)==null?void 0:z.call(n,{requestId:h,arg:d},{getState:f,extra:y}))),[4,Promise.race([xe,Promise.resolve(r(d,{dispatch:m,getState:f,extra:y,requestId:h,signal:v.signal,abort:E,rejectWithValue:function(g,P){return new _t(g,P)},fulfillWithValue:function(g,P){return new Gr(g,P)}})).then(function(g){if(g instanceof _t)throw g;return g instanceof Gr?i(g.payload,h,d,g.meta):i(g,h,d)})])];case 3:return H=p.sent(),[3,5];case 4:return W=p.sent(),H=W instanceof _t?o(null,h,d,W.payload,W.meta):o(W,h,d),[3,5];case 5:return c=n&&!n.dispatchConditionRejection&&o.match(H)&&H.meta.condition,c||m(H),[2,H]}})})}();return Object.assign(O,{abort:E,requestId:h,arg:d,unwrap:function(){return O.then(ni)}})}}return Object.assign(u,{pending:a,rejected:o,fulfilled:i,typePrefix:e})}return t.withTypes=function(){return t},t}();function ni(t){if(t.meta&&t.meta.rejectedWithValue)throw t.payload;if(t.error)throw t.error;return t.payload}function ii(t){return t!==null&&typeof t=="object"&&typeof t.then=="function"}var Zr="listener",en="completed",tn="cancelled",Va="task-"+tn,Ha="task-"+en,qa=Zr+"-"+tn,Ka=Zr+"-"+en;var Mt="listenerMiddleware";var za=ie(Mt+"/add"),$a=ie(Mt+"/removeAll"),Ga=ie(Mt+"/remove");var Wr,Wa=typeof queueMicrotask=="function"?queueMicrotask.bind(typeof window<"u"?window:typeof global<"u"?global:globalThis):function(t){return(Wr||(Wr=Promise.resolve())).then(t).catch(function(e){return setTimeout(function(){throw e},0)})},ai=function(t){return function(e){setTimeout(e,t)}},Xa=typeof window<"u"&&window.requestAnimationFrame?window.requestAnimationFrame:ai(10);Ur();window.ftReduxStores||(window.ftReduxStores={});var rn=class t{static get(e){var r;let n=typeof e=="string"?e:e.name,i=typeof e=="string"?void 0:e,a=window.ftReduxStores[n];if(Se(a))return a;if(i==null)return;let o=Qr({...i,reducers:(r=i.reducers)!==null&&r!==void 0?r:{}}),s=Yr({reducer:(l,u)=>u.type==="CLEAR_FT_REDUX_STORE"?o.getInitialState():typeof u.type=="string"&&u.type.startsWith("DEFAULT_VALUE_SETTER__")?{...l,...u.overwrites}:o.reducer(l,u)});return window.ftReduxStores[i.name]=new t(o,s)}constructor(e,r){this.reduxSlice=e,this.reduxStore=r,this.isFtReduxStore=!0,this.eventBus=document.createElement("event-bus"),this.commands=new Ne,this.actions=new Proxy(this.reduxSlice.actions,{get:(n,i,a)=>{let o=i,s=n[o];return s?(...l)=>{let u=s(...l);return this.reduxStore.dispatch(u),u}:l=>{this.setState({[o]:l})}}})}clear(){this.reduxStore.dispatch({type:"CLEAR_FT_REDUX_STORE"})}setState(e){this.reduxStore.dispatch({type:"DEFAULT_VALUE_SETTER__"+Object.keys(e).join("_"),overwrites:e})}get dispatch(){throw new Error("Don't use this method, actions are automatically dispatched when called.")}[Symbol.observable](){return this.reduxStore[Symbol.observable]()}getState(){return this.reduxStore.getState()}replaceReducer(e){throw new Error("Not implemented yet.")}subscribe(e){return this.reduxStore.subscribe(e)}get name(){return this.reduxSlice.name}get reducer(){return this.reduxSlice.reducer}get caseReducers(){return this.reduxSlice.caseReducers}getInitialState(){return this.reduxSlice.getInitialState()}};var $e=x(U());var qe=class extends ${async listMySearches(){let e=b.getState().session;return e?.sessionAuthenticated?this.cache.get("my-searches",async()=>(await this.awaitApi).listMySearches(e.profile.userId),5*60*1e3):[]}};var Ke=class extends ${async listMyBookmarks(){let e=b.getState().session;return e?.sessionAuthenticated?this.cache.get("my-bookmarks",async()=>(await this.awaitApi).listMyBookmarks(e.profile.userId),5*60*1e3):[]}};var si="ft-user-assets",ze=$e.FtReduxStore.get({name:si,initialState:{savedSearches:void 0,bookmarks:void 0}}),kt=class{constructor(){this.currentSession=b.getState().session,this.bookmarksAreUsed=!1,this.bookmarksService=new Ke,this.savedSearchesService=new qe,b.subscribe(()=>this.reloadWhenUserSessionChanges())}reloadWhenUserSessionChanges(){var e;let{session:r}=b.getState();(0,$e.deepEqual)((e=this.currentSession)===null||e===void 0?void 0:e.profile,r?.profile)||(this.currentSession=r,this.clearMySearches(),this.reloadBookmarks())}clear(){this.clearMySearches(),this.clearMyBookmarks()}clearMySearches(){this.savedSearchesService.clearCache(),ze.actions.savedSearches(void 0)}clearMyBookmarks(){this.bookmarksService.clearCache(),ze.actions.bookmarks(void 0)}async reloadMySearches(){this.savedSearchesService.clearCache();let e=await this.savedSearchesService.listMySearches();ze.actions.savedSearches(e)}async reloadBookmarks(){this.bookmarksService.clearCache(),await this.updateBookmarksIfUsed()}async registerBookmarkComponent(){this.bookmarksAreUsed=!0,await this.updateBookmarksIfUsed()}async updateBookmarksIfUsed(){var e;if(this.bookmarksAreUsed){let r=!((e=this.currentSession)===null||e===void 0)&&e.sessionAuthenticated?await this.bookmarksService.listMyBookmarks():void 0;ze.actions.bookmarks(r)}}},nn=new kt;var Dt=class{addCommand(e,r=!1){b.commands.add(e,r)}consumeCommand(e){return b.commands.consume(e)}};window.FluidTopicsAppInfoStoreService=new Dt;var an=x(U()),Ut=class{highlightHtml(e,r){(0,an.highlightHtml)(e,r)}};window.FluidTopicsHighlightHtmlService=new Ut;var on=x(U());var Lt=class{isDate(e){var r,n,i,a;return(a=(i=((n=(r=b.getState().metadataConfiguration)===null||r===void 0?void 0:r.descriptors)!==null&&n!==void 0?n:[]).find(s=>s.key===e))===null||i===void 0?void 0:i.date)!==null&&a!==void 0?a:!1}format(e,r){var n,i,a;return on.DateFormatter.format(e,(n=r?.locale)!==null&&n!==void 0?n:b.getState().uiLocale,(i=r?.longFormat)!==null&&i!==void 0?i:!1,(a=r?.withTime)!==null&&a!==void 0?a:!1)}};window.FluidTopicsDateService=new Lt;(0,sn.customElement)("ft-app-context")(C);var Ge=class extends ${get mapId(){return this._mapId}set mapId(e){e!==this._mapId&&this.clear(),this._mapId=e}constructor(e,r,n){super(!1,r),this.converter=e,this._mapId=n,this.initCache()}async withMapId(e){return this._mapId?e(this._mapId):void 0}initCache(){this.cache.registerFinal("configuration",()=>this.api.getReaderConfiguration()),this.cache.register("map",()=>this.withMapId(e=>this.fetchMap(e))),this.cache.register("enrichedToc",()=>this.withMapId(e=>this.fetchPages(e).then(r=>this.converter.convertPaginatedToc(r)))),this.cache.register("ratingSummary",()=>{var e,r;return se((r=(e=b.getState().session)===null||e===void 0?void 0:e.profile.roles)!==null&&r!==void 0?r:[],"RATING_USER")?this.withMapId(i=>this.fetchMapRating(i)):Promise.resolve()})}clear(){this.cache.clearAll()}getMap(){return this.cache.get("map")}getMapNow(){return this.cache.getNow("map")}getConfiguration(){return this.cache.get("configuration")}getEnrichedToc(){return this.cache.get("enrichedToc")}get enrichedToc(){return this.cache.getNow("enrichedToc")}async getPaginationConfiguration(){return(await this.getEnrichedToc()).paginationConfiguration}async getToc(){return(await this.getEnrichedToc()).toc}async getPagesToc(){return(await this.getEnrichedToc()).pagesToc}async getTocNode(e){return(await this.getEnrichedToc()).nodeByTocId[e]}getTocNodeNow(e){var r;return(r=this.enrichedToc)===null||r===void 0?void 0:r.nodeByTocId[e]}async getPage(e){let r=await this.getEnrichedToc();return r.pages[e-1]||r.pages[0]}async getPageByTocId(e){let r=await this.getEnrichedToc();return r.pageByTocId[e]||r.pages[0]}getTopicInfo(e){return this.cache.get("topic-"+e.tocId,()=>this.fetchTopicMetadata(e))}getTopicContent(e){return this.cache.get("topic-content-"+e.tocId,()=>this.fetchTopicHTMLContent(e))}getAttachments(){return this.cache.get("map-attachments",()=>this.fetchAttachments())}getRelativesForDocument(e,r){return this.cache.get("document-relatives-"+e+"-"+r.join("-"),()=>this.fetchRelativesForDocument(e,r))}getRelativesForTopicInMap(e,r,n){return this.cache.get("topic-relatives-"+[e,r,...n].join("-"),()=>this.fetchRelativesForTopicInMap(e,r,n))}getAttachmentDownloadLink(e){return this.makeAbsolute(`${this.api.endpoints.khub.maps.mapId(this.mapId).attachments.attachmentId(e).content}?download=true`)}getLink(e,r,n){let i=this.getNavigationData(e,r,n),a=this.getReaderLinkPrefix()+(i.prettyUrl?i.prettyUrl:`${i.mapId}/${i.tocId}`),o=new URL(a,this.api.tenantBaseUrl);return i.page!=null&&o.searchParams.set("page",`${i.page}`),i.prettyUrlDuplicated&&o.searchParams.set("tocId",i.tocId),i.section!=null&&o.searchParams.set("section",i.section),o.href}getNavigationData(e,r,n){var i,a;e=e||"root";let o=this.enrichedToc,s=o?.pageByTocId[e],l=o?.nodeByTocId[e],u=l?.prettyUrl;return{mapId:this.mapId,tocId:e,topicTitle:(i=l?.title)!==null&&i!==void 0?i:"",page:r&&s&&s.number!==r?r:void 0,prettyUrl:u?.replace(/^r\//,""),prettyUrlDuplicated:(a=o?.duplicatedPrettyUrls.has(u??""))!==null&&a!==void 0?a:!1,section:n}}async getAccurateNavigationData(e,r,n){return await this.getEnrichedToc(),this.getNavigationData(e,r,n)}getRatingSummary(){return this.cache.get("ratingSummary")}reloadRating(){return this.cache.clear("ratingSummary"),this.getRatingSummary()}getMapRating(){return this.getRatingSummary().then(e=>e?.publication)}getTopicRating(e){return this.getRatingSummary().then(r=>{var n;return r?{type:r.topics.type,rating:(n=r.topics)===null||n===void 0?void 0:n.ratings.find(i=>i.tocId===e)}:void 0})}rateMap(e,r){return this.makeRateMapRequest(e,r).then(()=>this.clearRatingIfNecessary())}unrateMap(){return this.makeUnrateMapRequest().then(()=>this.clearRatingIfNecessary())}sendMapFeedback(e,r){return this.makeMapFeedbackRequest(e,r)}rateTopic(e,r,n){return this.makeRateTopicRequest(e,r,n).then(()=>this.clearRatingIfNecessary())}unrateTopic(e){return this.makeUnrateTopicRequest(e).then(()=>this.clearRatingIfNecessary())}async clearRatingIfNecessary(){let e=b.getState().session;e?.sessionAuthenticated&&this.cache.clear("ratingSummary")}sendTopicFeedback(e,r,n){return this.makeTopicFeedbackRequest(e,r,n)}fontsStylesheet(){return this.api.makeAbsolute(this.api.endpoints.stylesheets.fonts)}themeStylesheet(){return this.api.makeAbsolute(this.api.endpoints.stylesheets.theme)}buildBreadcrumb(e){let r=this.getTocNodeNow(e),n=[{tocId:r.tocId,title:r.title}],i=this.getTocNodeNow(r.parentTocId);for(;i;)n.unshift({tocId:i.tocId,title:i.title}),i=this.getTocNodeNow(i.parentTocId);return n}isFeatureAccessible(e,{session:r,ratingType:n}){var i;if(!this.isFeatureAvailable(e))return!1;switch(e){case X.FEEDBACK:return se(r??[],R.FEEDBACK_USER);case X.RATING:return se(r??[],R.RATING_USER)&&n!=null&&n!==Ce.NO_RATING;case X.PRINT:return se(r??[],R.PRINT_USER);case X.BOOKMARK:return!!r?.sessionAuthenticated;case X.COLLECTIONS:return se(r??[],R.COLLECTION_USER);case X.PERSONAL_BOOKS:return se(r??[],R.PERSONAL_BOOK_USER)&&!(!((i=this.getMapNow())===null||i===void 0)&&i.pbkConfidential);default:return!1}}makeAbsolute(e){return this.api.makeAbsolute(e)}};var We=class t extends Ge{static async build(e){return new t(new Pe,void 0,e)}clear(){super.clear(),this.fingerprint=void 0}async fetchMap(e){let r=await this.api.getMap(e);return this.fingerprint=r.fingerprint,r}fetchMapRating(e){return this.api.getMapRating(e)}async fetchPages(e){return await this.getMap(),this.api.getPages(e,this.fingerprint)}fetchTopicHTMLContent(e){return this.api.getTopicHTMLContent(this.mapId,e.contentId,"DESIGNED_READER",this.fingerprint)}fetchTopicMetadata(e){return this.api.getTopic(this.mapId,e.contentId,this.fingerprint)}fetchAttachments(){return this.api.getMapAttachments(this.mapId).catch(()=>[])}fetchRelativesForDocument(e,r){return this.api.search({query:"",paging:{page:1,perPage:-1},scope:"DOCUMENTS",filters:[{negative:!1,values:r,key:e}],sort:[],facets:[]})}fetchRelativesForTopicInMap(e,r,n){return this.api.search({query:"",paging:{page:1,perPage:1},scope:"ALL_TOPICS",filters:[{negative:!1,values:n,key:r},{negative:!1,values:[e],key:"ft:publicationId"}],sort:[],facets:[]})}makeMapFeedbackRequest(e,r){return this.api.sendMapFeedback(this.mapId,e,r)}makeRateMapRequest(e,r){return this.api.rateMap(this.mapId,e,r)}makeRateTopicRequest(e,r,n){return this.api.rateTopic(this.mapId,e,r,n)}makeTopicFeedbackRequest(e,r,n){return this.api.sendTopicFeedback(this.mapId,e,r,n)}makeUnrateMapRequest(){return this.api.unrateMap(this.mapId)}makeUnrateTopicRequest(e){return this.api.unrateTopic(this.mapId,e)}getReaderLinkPrefix(){return"r/"}isFeatureAvailable(e){return!0}};var Xe=class t{static build(e,r){return new t(qt(e.trim()||"context"),r??We.build)}constructor(e,r,n){this.store=e,this.clusteringHelperProvider=n,this.metadataForSwitchToRelatives=new Set,this.loadDebouncer=new J.Debouncer(10),this.initService(r)}async initService(e){return this.service=await e(),this.service.mapId=this.store.getState().mapId,this.reload()}async setMapId(e){e!==this.store.getState().mapId&&(this.store.actions.mapId(e),this.service&&(this.service.mapId=e),await this.reload())}setVisibleTopics(e){this.store.actions.visibleTopics(e)}async awaitService(){return(0,J.waitFor)(()=>this.service)}async navigateToTopic(e,r,n){let i=await this.awaitService(),a=await(n!=null?i.getPage(n):i.getPageByTocId(e??"root"));this.store.actions.currentPage(a),this.store.actions.scrollTarget({tocId:this.resolveValidNonRootTocId(e,a),section:r})}resolveValidNonRootTocId(e,r){var n,i,a;let o=(n=e==="root"?void 0:e)!==null&&n!==void 0?n:r.rootTocId;return r.topics.includes(o)?o:(a=(i=r.topics[0])!==null&&i!==void 0?i:r.hiddenTopics[0])!==null&&a!==void 0?a:"root"}async navigateToPage(e){let n=await(await this.awaitService()).getPage(e);this.store.actions.currentPage(n)}scrollDone(){this.store.actions.scrollTarget({})}async load(){var e;!((e=this.service)===null||e===void 0)&&e.mapId&&this.store.getState().map==null&&await this.loadDebouncer.run(()=>this.fetchData())}clear(){var e;this.store.actions.configuration(void 0),this.store.actions.map(void 0),this.store.actions.toc(void 0),this.store.actions.pagesToc(void 0),this.store.actions.currentPage(void 0),this.store.actions.searchInDocumentQuery(""),this.store.actions.relatives(void 0),(e=this.service)===null||e===void 0||e.clear(),this.clusteringHelper=void 0}reload(){return this.clear(),this.load()}async fetchData(){var e,r,n,i,a;try{await Promise.all([(e=this.service)===null||e===void 0?void 0:e.getConfiguration().then(o=>this.store.actions.configuration(o)),(r=this.service)===null||r===void 0?void 0:r.getMap().then(o=>this.store.actions.map(o)),(n=this.service)===null||n===void 0?void 0:n.getToc().then(o=>this.store.actions.toc(o)),(i=this.service)===null||i===void 0?void 0:i.getPagesToc().then(o=>this.store.actions.pagesToc(o)),(a=this.service)===null||a===void 0?void 0:a.getPaginationConfiguration().then(o=>this.store.actions.paginationConfiguration(o))]).then(()=>{this.metadataForSwitchToRelatives.size>0&&this.fetchRelatives()})}catch(o){this.errorHandler&&!(o instanceof J.CanceledPromiseError)&&this.errorHandler(o)}}fetchRelatives(){var e,r,n;let i=(e=this.store.getState().map)===null||e===void 0?void 0:e.metadata.filter(a=>{var o;return a.key==((o=this.store.getState().configuration)===null||o===void 0?void 0:o.relativePivotMetadata)}).flatMap(a=>a.values);i!==void 0&&i.length>0?(r=this.service)===null||r===void 0||r.getRelativesForDocument((n=this.store.getState().configuration)===null||n===void 0?void 0:n.relativePivotMetadata,i).then(a=>{let o=a.results.flatMap(s=>s.entries);this.store.actions.relatives(o),this.updateClusteringHelper()}):this.updateClusteringHelper()}updateClusteringHelper(){this.clusteringHelper=this.createClusteringHelper(),this.clusteringHelper&&this.store.eventBus.dispatchEvent(new CustomEvent("clustering-helper-created"))}createClusteringHelper(){var e,r;if(this.clusteringHelperProvider)return this.clusteringHelperProvider();let n=this.store.getState().relatives;if(n){let i=n.find(o=>{var s;return((s=o.map)===null||s===void 0?void 0:s.mapId)==this.store.getState().mapId}),a=(r=(e=b.getState().metadataConfiguration)===null||e===void 0?void 0:e.descriptors)!==null&&r!==void 0?r:[];return new J.ClusteringHelper(n,i,this.metadataForSwitchToRelatives,a)}}async navigateToRelativeTopicIfFound(e){var r,n,i;let a=await(0,J.waitFor)(()=>{var u;return(u=this.store.getState().configuration)===null||u===void 0?void 0:u.relativeTopicPivotMetadata}),o=this.store.getState().mapId,l=await(await this.awaitService()).getRelativesForTopicInMap(o,a,[e]);if(!((i=(n=(r=l?.results)===null||r===void 0?void 0:r[0])===null||n===void 0?void 0:n.entries)===null||i===void 0)&&i[0]){let u=l.results[0].entries[0].topic.tocId;return await this.navigateToTopic(u),!0}else return await this.navigateToTopic("root"),!1}setSearchInDocumentQuery(e){this.store.actions.searchInDocumentQuery(e)}registerMetadataForSwitchToRelatives(e){this.metadataForSwitchToRelatives.add(e),this.store.getState().relatives==null?this.fetchRelatives():this.updateClusteringHelper()}unregisterMetadataForSwitchToRelatives(e){this.metadataForSwitchToRelatives.delete(e),this.updateClusteringHelper()}};var un=x(fe()),os={},cn=un.css`
5
- `;var Ye=class extends CustomEvent{constructor(e,r){super("ft-reader-map-loaded",{detail:{map:e,toc:r}})}},Je=class extends CustomEvent{constructor(e,r){super("ft-reader-visible-topics-change",{detail:{visibleTopics:r}})}},Qe=class extends CustomEvent{constructor(e){super("ft-reader-navigation-done",{detail:e})}},Ze=class extends CustomEvent{constructor(e){super("ft-reader-load-error",{detail:e})}},et=class extends Event{constructor(){super("ft-reader-map-not-found")}},tt=class extends Event{constructor(){super("ft-reader-map-unauthorized")}},rt=class extends Event{constructor(){super("ft-reader-map-forbidden")}},nt=class extends Event{constructor(){super("ft-reader-topic-relative-not-found",{bubbles:!0,composed:!0})}};var j=function(t,e,r,n){var i=arguments.length,a=i<3?e:n===null?n=Object.getOwnPropertyDescriptor(e,r):n,o;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")a=Reflect.decorate(t,e,r,n);else for(var s=t.length-1;s>=0;s--)(o=t[s])&&(a=(i<3?o(a):i>3?o(e,r,a):o(e,r))||a);return i>3&&a&&Object.defineProperty(e,r,a),a},ui=t=>e=>+(e??"NaN")>0?+e:t,_=class extends F.FtLitElementRedux{constructor(){super(),this.visibleTopics=[],this.scrollToTargetDebouncer=new F.Debouncer(5),this.navigationDebouncer=new F.Debouncer(10),this.mapLoadedEventDebouncer=new F.Debouncer(50),this.addStore(b)}render(){return Oe.html`
4
+ `}update(e){super.update(e),e.has("baseUrl")&&(b.actions.baseUrl(this.baseUrl),window.fluidTopicsBaseUrl=this.baseUrl),e.has("apiIntegrationIdentifier")&&b.actions.apiIntegrationIdentifier(this.apiIntegrationIdentifier),e.has("uiLocale")&&b.actions.uiLocale(this.uiLocale),e.has("metadataConfiguration")&&b.actions.metadataConfiguration(this.metadataConfiguration),e.has("noCustom")&&b.actions.noCustom(this.noCustom),e.has("editorMode")&&b.actions.editorMode(this.editorMode),e.has("noCustomComponent")&&b.actions.noCustomComponent(this.noCustomComponent),e.has("session")&&b.actions.session(this.session),e.has("availableUiLocales")&&b.actions.availableUiLocales(Array.isArray(this.availableUiLocales)?this.availableUiLocales:[]),e.has("messageContexts")&&this.messageContexts!=null&&this.messageContexts.forEach(r=>mr.addContext(r)),e.has("openExternalDocumentInNewTab")&&b.actions.openExternalDocumentInNewTab(this.openExternalDocumentInNewTab),e.has("navigatorOnline")&&b.actions.navigatorOnline(this.navigatorOnline),e.has("forcedOffline")&&b.actions.forcedOffline(this.forcedOffline),setTimeout(()=>this.updateIfNeeded())}async updateIfNeeded(){!this.withManualResources&&this.apiProvider()&&(this.session==null&&this.updateSession(),this.availableUiLocales==null&&this.updateUiLocales(),this.metadataConfiguration==null&&this.updateMetadataConfiguration())}async updateSession(){this.session=await this.cache.get("session",async()=>{let e=await this.apiProvider().getCurrentSession();return e.idleTimeoutInMillis>0&&this.cleanSessionDebouncer.run(()=>{this.cache.clear("session"),this.session=void 0},e.idleTimeoutInMillis),e})}async updateUiLocales(){this.availableUiLocales=await this.cache.get("availableUiLocales",()=>this.apiProvider().getAvailableUiLocales())}async updateMetadataConfiguration(){this.metadataConfiguration=await this.cache.get("metadataConfiguration",()=>this.apiProvider().getMetadataConfiguration())}};C.elementDefinitions={};C.styles=hr;k([(0,B.property)()],C.prototype,"baseUrl",void 0);k([(0,B.property)()],C.prototype,"apiIntegrationIdentifier",void 0);k([(0,B.property)()],C.prototype,"uiLocale",void 0);k([(0,q.jsonProperty)(null)],C.prototype,"availableUiLocales",void 0);k([(0,q.jsonProperty)(null)],C.prototype,"metadataConfiguration",void 0);k([(0,B.property)({type:Boolean})],C.prototype,"editorMode",void 0);k([(0,B.property)({type:Boolean})],C.prototype,"noCustom",void 0);k([(0,B.property)({type:Boolean})],C.prototype,"openExternalDocumentInNewTab",void 0);k([(0,B.property)({converter:{fromAttribute(t){return t==="false"?!1:t==="true"||(t??!1)}}})],C.prototype,"noCustomComponent",void 0);k([(0,B.property)({type:Boolean})],C.prototype,"withManualResources",void 0);k([(0,B.property)({type:Boolean})],C.prototype,"navigatorOnline",void 0);k([(0,B.property)({type:Boolean})],C.prototype,"forcedOffline",void 0);k([(0,B.property)({type:Object})],C.prototype,"apiProvider",void 0);k([(0,q.jsonProperty)([])],C.prototype,"messageContexts",void 0);k([(0,q.jsonProperty)(void 0)],C.prototype,"session",void 0);var ui=x(se());function wn(t,e){if(t===e)return!0;if(t&&e&&typeof t=="object"&&typeof e=="object"){if(t.constructor!==e.constructor)return!1;var r,n,i;if(Array.isArray(t)){if(r=t.length,r!=e.length)return!1;for(n=r;n--!==0;)if(!Me(t[n],e[n]))return!1;return!0}if(t instanceof Map&&e instanceof Map){if(t.size!==e.size)return!1;for(n of t.entries())if(!e.has(n[0]))return!1;for(n of t.entries())if(!Me(n[1],e.get(n[0])))return!1;return!0}if(t instanceof Set&&e instanceof Set){if(t.size!==e.size)return!1;for(n of t.entries())if(!e.has(n[0]))return!1;return!0}if(t.constructor===RegExp)return t.source===e.source&&t.flags===e.flags;if(t.valueOf!==Object.prototype.valueOf)return t.valueOf()===e.valueOf();if(i=Object.keys(t),r=i.length,r!==Object.keys(e).length)return!1;for(n=r;n--!==0;)if(!Object.prototype.hasOwnProperty.call(e,i[n]))return!1;for(n=r;n--!==0;){var a=i[n];if(!Me(t[a],e[a]))return!1}return!0}return t!==t&&e!==e}function Me(t,e){try{return wn(t,e)}catch{return!1}}function dt(t,e){return!Me(t,e)}var Tn=x(se(),1);var De=class{constructor(){this.queue=[]}add(e,r=!1){r&&(this.queue=this.queue.filter(n=>n.type!==e.type)),this.queue.push(e)}consume(e){let r=this.queue.find(n=>n.type===e);return r&&(this.queue=this.queue.filter(n=>n!==r)),r}};var be=x(se(),1);var gr=x(se(),1);function br(t,e){let r=()=>JSON.parse(JSON.stringify(t));return(0,gr.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:dt,...e??{}})}var ke=class{constructor(e=0){this.timeout=e,this.callbacks=[]}run(e,r){return this.callbacks=[e],this.debounce(r)}queue(e,r){return this.callbacks.push(e),this.debounce(r)}cancel(){this.clearTimeout(),this.resolvePromise&&this.resolvePromise(!1),this.clearPromise()}debounce(e){return this.promise==null&&(this.promise=new Promise((r,n)=>{this.resolvePromise=r,this.rejectPromise=n})),this.clearTimeout(),this._debounce=window.setTimeout(()=>this.runCallbacks(),e??this.timeout),this.promise}async runCallbacks(){var e,r;let n=[...this.callbacks];this.callbacks=[];let i=(e=this.rejectPromise)!==null&&e!==void 0?e:()=>null,a=(r=this.resolvePromise)!==null&&r!==void 0?r:()=>null;this.clearPromise();for(let o of n)try{await o()}catch(s){i(s);return}a(!0)}clearTimeout(){this._debounce!=null&&window.clearTimeout(this._debounce)}clearPromise(){this.promise=void 0,this.resolvePromise=void 0,this.rejectPromise=void 0}};var Er=x(fe(),1);var Ue=window,On=Ue.ShadowRoot&&(Ue.ShadyCSS===void 0||Ue.ShadyCSS.nativeShadow)&&"adoptedStyleSheets"in Document.prototype&&"replace"in CSSStyleSheet.prototype,na=Symbol();var Sr=(t,e)=>{On?t.adoptedStyleSheets=e.map(r=>r instanceof CSSStyleSheet?r:r.styleSheet):e.forEach(r=>{let n=document.createElement("style"),i=Ue.litNonce;i!==void 0&&n.setAttribute("nonce",i),n.textContent=r.cssText,t.appendChild(n)})};var Le=class extends Er.LitElement{createRenderRoot(){let e=this.constructor;e.elementDefinitions&&!e.registry&&(e.registry=new CustomElementRegistry,Object.entries(e.elementDefinitions).forEach(([i,a])=>e.registry.define(i,a)));let r={...e.shadowRootOptions,customElements:e.registry},n=this.renderOptions.creationScope=this.attachShadow(r);return Sr(n,e.elementStyles),n}};var Fe=function(t,e,r,n){var i=arguments.length,a=i<3?e:n===null?n=Object.getOwnPropertyDescriptor(e,r):n,o;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")a=Reflect.decorate(t,e,r,n);else for(var s=t.length-1;s>=0;s--)(o=t[s])&&(a=(i<3?o(a):i>3?o(e,r,a):o(e,r))||a);return i>3&&a&&Object.defineProperty(e,r,a),a},Tr,Ar=Symbol("constructorPrototype"),wr=Symbol("constructorName"),Or=Symbol("exportpartsDebouncer"),Z=class extends Le{constructor(){super(),this.useAdoptedStyleSheets=!0,this.adoptedCustomStyleSheet=new CSSStyleSheet,this[Tr]=new ke(5),this[wr]=this.constructor.name,this[Ar]=this.constructor.prototype}adoptedCallback(){this.constructor.name!==this[wr]&&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(e){this.useAdoptedStyleSheets=!1,console.error("Cannot use adopted stylesheets",e)}this.importDynamicDependencies()}importDynamicDependencies(){}updated(e){super.updated(e),this.updateComplete.then(()=>{this.contentAvailableCallback(e),this.applyCustomStylesheet(e),this.scheduleExportpartsUpdate()})}contentAvailableCallback(e){}applyCustomStylesheet(e){var r,n,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(a=>a.remove()),this.useAdoptedStyleSheets){if(e.has("customStylesheet"))try{this.adoptedCustomStyleSheet.replaceSync((i=this.customStylesheet)!==null&&i!==void 0?i:"")}catch(a){console.error(a,this.customStylesheet),this.useAdoptedStyleSheets=!1}}else if(this.customStylesheet){let a=document.createElement("style");a.classList.add("ft-lit-element--custom-stylesheet"),a.innerHTML=this.customStylesheet,this.shadowRoot.append(a)}}scheduleExportpartsUpdate(){var e,r,n;(!((e=this.exportpartsPrefix)===null||e===void 0)&&e.trim()||(n=(r=this.exportpartsPrefixes)===null||r===void 0?void 0:r.length)!==null&&n!==void 0&&n)&&this[Or].run(()=>{var i,a;!((i=this.exportpartsPrefix)===null||i===void 0)&&i.trim()?this.setExportpartsAttribute([this.exportpartsPrefix]):this.exportpartsPrefixes!=null&&((a=this.exportpartsPrefixes)===null||a===void 0?void 0:a.length)>0&&this.setExportpartsAttribute(this.exportpartsPrefixes)})}setExportpartsAttribute(e){var r,n,i,a,o,s;let l=f=>f!=null&&f.trim().length>0,u=e.filter(l).map(f=>f.trim());if(u.length===0){this.removeAttribute("exportparts");return}let d=new Set;for(let f of(n=(r=this.shadowRoot)===null||r===void 0?void 0:r.querySelectorAll("[part],[exportparts]"))!==null&&n!==void 0?n:[]){let y=(a=(i=f.getAttribute("part"))===null||i===void 0?void 0:i.split(" "))!==null&&a!==void 0?a:[],h=(s=(o=f.getAttribute("exportparts"))===null||o===void 0?void 0:o.split(",").map(v=>v.split(":")[1]))!==null&&s!==void 0?s:[];new Array(...y,...h).filter(l).map(v=>v.trim()).forEach(v=>d.add(v))}if(d.size===0){this.removeAttribute("exportparts");return}let m=[...d.values()].flatMap(f=>u.map(y=>`${f}:${y}--${f}`));this.setAttribute("exportparts",[...this.part,...m].join(", "))}};Tr=Or;Fe([(0,be.property)()],Z.prototype,"exportpartsPrefix",void 0);Fe([br([])],Z.prototype,"exportpartsPrefixes",void 0);Fe([(0,be.property)()],Z.prototype,"customStylesheet",void 0);Fe([(0,be.state)()],Z.prototype,"useAdoptedStyleSheets",void 0);function Se(t){var e;return(e=t?.isFtReduxStore)!==null&&e!==void 0?e:!1}var xr,Rr,Ir,je=Symbol("internalReduxEventsUnsubscribers"),ee=Symbol("internalStoresUnsubscribers"),le=Symbol("internalStores"),Ee=class extends Z{constructor(){super(...arguments),this[xr]=new Map,this[Rr]=new Map,this[Ir]=[]}get reduxConstructor(){return this.constructor}update(e){super.update(e),[...this.reduxConstructor.reduxReactiveProperties].some(r=>e.has(r))&&this.updateFromStores()}getUnnamedStore(){if(this[le].size>1)throw new Error("Cannot resolve unnamed store when multiple stores are configured.");return[...this[le].values()][0]}getStore(e){return e==null?this.getUnnamedStore():this[le].get(e)}addStore(e,r){var n;r=(n=r??(Se(e)?e.name:void 0))!==null&&n!==void 0?n:"default-store",this.unsubscribeFromStore(r),this.setupStore(r,e)}removeStore(e){let r=typeof e=="string"?e:e.name;this.unsubscribeFromStore(r),this[le].delete(r)}setupStore(e,r){this[le].set(e,r),this.subscribeToStore(e,r),this.updateFromStores()}setupStores(){this.unsubscribeFromStores(),this[le].forEach((e,r)=>this.subscribeToStore(r,e)),this.updateFromStores()}updateFromStores(){this.reduxConstructor.reduxProperties.forEach((e,r)=>{let n=this.constructor.getPropertyOptions(r);if(!n?.attribute||!this.hasAttribute(typeof n?.attribute=="string"?n.attribute:r)){let i=this.getStore(e.store);i&&(e.store?this[ee].has(e.store):this[ee].size>0)&&(this[r]=e.selector(i.getState(),this))}})}subscribeToStore(e,r){var n;this[ee].set(e,r.subscribe(()=>this.updateFromStores())),Se(r)&&r.eventBus&&((n=this.reduxConstructor.reduxEventListeners)===null||n===void 0||n.forEach((i,a)=>{if(typeof this[a]=="function"&&(!i.store||r.name===i.store)){let o=s=>this[a](s);r.eventBus.addEventListener(i.eventName,o),this[je].push(()=>r.eventBus.removeEventListener(i.eventName,o))}})),this.onStoreAvailable(e)}unsubscribeFromStores(){this[ee].forEach((e,r)=>this.unsubscribeFromStore(r)),this[je].forEach(e=>e()),this[je]=[]}unsubscribeFromStore(e){this[ee].has(e)&&this[ee].get(e)(),this[ee].delete(e)}onStoreAvailable(e){}connectedCallback(){super.connectedCallback(),this.setupStores()}disconnectedCallback(){super.disconnectedCallback(),this.unsubscribeFromStores()}};xr=ee,Rr=le,Ir=je;Ee.reduxProperties=new Map;Ee.reduxReactiveProperties=new Set;Ee.reduxEventListeners=new Map;function V(t){for(var e=arguments.length,r=Array(e>1?e-1:0),n=1;n<e;n++)r[n-1]=arguments[n];if(0)var i,a;throw Error("[Immer] minified error nr: "+t+(r.length?" "+r.map(function(o){return"'"+o+"'"}).join(","):"")+". Find the full error at: https://bit.ly/3cXEKWf")}function Y(t){return!!t&&!!t[I]}function K(t){var e;return!!t&&(function(r){if(!r||typeof r!="object")return!1;var n=Object.getPrototypeOf(r);if(n===null)return!0;var i=Object.hasOwnProperty.call(n,"constructor")&&n.constructor;return i===Object||typeof i=="function"&&Function.toString.call(i)===Mn}(t)||Array.isArray(t)||!!t[kr]||!!(!((e=t.constructor)===null||e===void 0)&&e[kr])||St(t)||Et(t))}function de(t,e,r){r===void 0&&(r=!1),ve(t)===0?(r?Object.keys:he)(t).forEach(function(n){r&&typeof n=="symbol"||e(n,t[n],t)}):t.forEach(function(n,i){return e(i,n,t)})}function ve(t){var e=t[I];return e?e.i>3?e.i-4:e.i:Array.isArray(t)?1:St(t)?2:Et(t)?3:0}function pe(t,e){return ve(t)===2?t.has(e):Object.prototype.hasOwnProperty.call(t,e)}function xn(t,e){return ve(t)===2?t.get(e):t[e]}function Ur(t,e,r){var n=ve(t);n===2?t.set(e,r):n===3?t.add(r):t[e]=r}function Lr(t,e){return t===e?t!==0||1/t==1/e:t!=t&&e!=e}function St(t){return _n&&t instanceof Map}function Et(t){return Nn&&t instanceof Set}function te(t){return t.o||t.t}function At(t){if(Array.isArray(t))return Array.prototype.slice.call(t);var e=Br(t);delete e[I];for(var r=he(e),n=0;n<r.length;n++){var i=r[n],a=e[i];a.writable===!1&&(a.writable=!0,a.configurable=!0),(a.get||a.set)&&(e[i]={configurable:!0,writable:!0,enumerable:a.enumerable,value:t[i]})}return Object.create(Object.getPrototypeOf(t),e)}function wt(t,e){return e===void 0&&(e=!1),Tt(t)||Y(t)||!K(t)||(ve(t)>1&&(t.set=t.add=t.clear=t.delete=Rn),Object.freeze(t),e&&de(t,function(r,n){return wt(n,!0)},!0)),t}function Rn(){V(2)}function Tt(t){return t==null||typeof t!="object"||Object.isFrozen(t)}function G(t){var e=bt[t];return e||V(18,t),e}function In(t,e){bt[t]||(bt[t]=e)}function mt(){return we}function ft(t,e){e&&(G("Patches"),t.u=[],t.s=[],t.v=e)}function Be(t){yt(t),t.p.forEach(Pn),t.p=null}function yt(t){t===we&&(we=t.l)}function Pr(t){return we={p:[],l:we,h:t,m:!0,_:0}}function Pn(t){var e=t[I];e.i===0||e.i===1?e.j():e.g=!0}function pt(t,e){e._=e.p.length;var r=e.p[0],n=t!==void 0&&t!==r;return e.h.O||G("ES5").S(e,t,n),n?(r[I].P&&(Be(e),V(4)),K(t)&&(t=Ve(e,t),e.l||He(e,t)),e.u&&G("Patches").M(r[I].t,t,e.u,e.s)):t=Ve(e,r,[]),Be(e),e.u&&e.v(e.u,e.s),t!==jr?t:void 0}function Ve(t,e,r){if(Tt(e))return e;var n=e[I];if(!n)return de(e,function(s,l){return Cr(t,n,e,s,l,r)},!0),e;if(n.A!==t)return e;if(!n.P)return He(t,n.t,!0),n.t;if(!n.I){n.I=!0,n.A._--;var i=n.i===4||n.i===5?n.o=At(n.k):n.o,a=i,o=!1;n.i===3&&(a=new Set(i),i.clear(),o=!0),de(a,function(s,l){return Cr(t,n,i,s,l,r,o)}),He(t,i,!1),r&&t.u&&G("Patches").N(n,r,t.u,t.s)}return n.o}function Cr(t,e,r,n,i,a,o){if(Y(i)){var s=Ve(t,i,a&&e&&e.i!==3&&!pe(e.R,n)?a.concat(n):void 0);if(Ur(r,n,s),!Y(s))return;t.m=!1}else o&&r.add(i);if(K(i)&&!Tt(i)){if(!t.h.D&&t._<1)return;Ve(t,i),e&&e.A.l||He(t,i)}}function He(t,e,r){r===void 0&&(r=!1),!t.l&&t.h.D&&t.m&&wt(e,r)}function ht(t,e){var r=t[I];return(r?te(r):t)[e]}function _r(t,e){if(e in t)for(var r=Object.getPrototypeOf(t);r;){var n=Object.getOwnPropertyDescriptor(r,e);if(n)return n;r=Object.getPrototypeOf(r)}}function re(t){t.P||(t.P=!0,t.l&&re(t.l))}function vt(t){t.o||(t.o=At(t.t))}function gt(t,e,r){var n=St(e)?G("MapSet").F(e,r):Et(e)?G("MapSet").T(e,r):t.O?function(i,a){var o=Array.isArray(i),s={i:o?1:0,A:a?a.A:mt(),P:!1,I:!1,R:{},l:a,t:i,k:null,o:null,j:null,C:!1},l=s,u=Te;o&&(l=[s],u=Ae);var d=Proxy.revocable(l,u),m=d.revoke,f=d.proxy;return s.k=f,s.j=m,f}(e,r):G("ES5").J(e,r);return(r?r.A:mt()).p.push(n),n}function Cn(t){return Y(t)||V(22,t),function e(r){if(!K(r))return r;var n,i=r[I],a=ve(r);if(i){if(!i.P&&(i.i<4||!G("ES5").K(i)))return i.t;i.I=!0,n=Nr(r,a),i.I=!1}else n=Nr(r,a);return de(n,function(o,s){i&&xn(i.t,o)===s||Ur(n,o,e(s))}),a===3?new Set(n):n}(t)}function Nr(t,e){switch(e){case 2:return new Map(t);case 3:return Array.from(t)}return At(t)}function Fr(){function t(o,s){var l=a[o];return l?l.enumerable=s:a[o]=l={configurable:!0,enumerable:s,get:function(){var u=this[I];return Te.get(u,o)},set:function(u){var d=this[I];Te.set(d,o,u)}},l}function e(o){for(var s=o.length-1;s>=0;s--){var l=o[s][I];if(!l.P)switch(l.i){case 5:n(l)&&re(l);break;case 4:r(l)&&re(l)}}}function r(o){for(var s=o.t,l=o.k,u=he(l),d=u.length-1;d>=0;d--){var m=u[d];if(m!==I){var f=s[m];if(f===void 0&&!pe(s,m))return!0;var y=l[m],h=y&&y[I];if(h?h.t!==f:!Lr(y,f))return!0}}var v=!!s[I];return u.length!==he(s).length+(v?0:1)}function n(o){var s=o.k;if(s.length!==o.t.length)return!0;var l=Object.getOwnPropertyDescriptor(s,s.length-1);if(l&&!l.get)return!0;for(var u=0;u<s.length;u++)if(!s.hasOwnProperty(u))return!0;return!1}function i(o){o.g&&V(3,JSON.stringify(te(o)))}var a={};In("ES5",{J:function(o,s){var l=Array.isArray(o),u=function(m,f){if(m){for(var y=Array(f.length),h=0;h<f.length;h++)Object.defineProperty(y,""+h,t(h,!0));return y}var v=Br(f);delete v[I];for(var w=he(v),S=0;S<w.length;S++){var E=w[S];v[E]=t(E,m||!!v[E].enumerable)}return Object.create(Object.getPrototypeOf(f),v)}(l,o),d={i:l?5:4,A:s?s.A:mt(),P:!1,I:!1,R:{},l:s,t:o,k:u,o:null,g:!1,C:!1};return Object.defineProperty(u,I,{value:d,writable:!0}),u},S:function(o,s,l){l?Y(s)&&s[I].A===o&&e(o.p):(o.u&&function u(d){if(d&&typeof d=="object"){var m=d[I];if(m){var f=m.t,y=m.k,h=m.R,v=m.i;if(v===4)de(y,function(A){A!==I&&(f[A]!==void 0||pe(f,A)?h[A]||u(y[A]):(h[A]=!0,re(m)))}),de(f,function(A){y[A]!==void 0||pe(y,A)||(h[A]=!1,re(m))});else if(v===5){if(n(m)&&(re(m),h.length=!0),y.length<f.length)for(var w=y.length;w<f.length;w++)h[w]=!1;else for(var S=f.length;S<y.length;S++)h[S]=!0;for(var E=Math.min(y.length,f.length),O=0;O<E;O++)y.hasOwnProperty(O)||(h[O]=!0),h[O]===void 0&&u(y[O])}}}}(o.p[0]),e(o.p))},K:function(o){return o.i===4?r(o):n(o)}})}var Mr,we,Ot=typeof Symbol<"u"&&typeof Symbol("x")=="symbol",_n=typeof Map<"u",Nn=typeof Set<"u",Dr=typeof Proxy<"u"&&Proxy.revocable!==void 0&&typeof Reflect<"u",jr=Ot?Symbol.for("immer-nothing"):((Mr={})["immer-nothing"]=!0,Mr),kr=Ot?Symbol.for("immer-draftable"):"__$immer_draftable",I=Ot?Symbol.for("immer-state"):"__$immer_state";var Mn=""+Object.prototype.constructor,he=typeof Reflect<"u"&&Reflect.ownKeys?Reflect.ownKeys:Object.getOwnPropertySymbols!==void 0?function(t){return Object.getOwnPropertyNames(t).concat(Object.getOwnPropertySymbols(t))}:Object.getOwnPropertyNames,Br=Object.getOwnPropertyDescriptors||function(t){var e={};return he(t).forEach(function(r){e[r]=Object.getOwnPropertyDescriptor(t,r)}),e},bt={},Te={get:function(t,e){if(e===I)return t;var r=te(t);if(!pe(r,e))return function(i,a,o){var s,l=_r(a,o);return l?"value"in l?l.value:(s=l.get)===null||s===void 0?void 0:s.call(i.k):void 0}(t,r,e);var n=r[e];return t.I||!K(n)?n:n===ht(t.t,e)?(vt(t),t.o[e]=gt(t.A.h,n,t)):n},has:function(t,e){return e in te(t)},ownKeys:function(t){return Reflect.ownKeys(te(t))},set:function(t,e,r){var n=_r(te(t),e);if(n?.set)return n.set.call(t.k,r),!0;if(!t.P){var i=ht(te(t),e),a=i?.[I];if(a&&a.t===r)return t.o[e]=r,t.R[e]=!1,!0;if(Lr(r,i)&&(r!==void 0||pe(t.t,e)))return!0;vt(t),re(t)}return t.o[e]===r&&(r!==void 0||e in t.o)||Number.isNaN(r)&&Number.isNaN(t.o[e])||(t.o[e]=r,t.R[e]=!0),!0},deleteProperty:function(t,e){return ht(t.t,e)!==void 0||e in t.t?(t.R[e]=!1,vt(t),re(t)):delete t.R[e],t.o&&delete t.o[e],!0},getOwnPropertyDescriptor:function(t,e){var r=te(t),n=Reflect.getOwnPropertyDescriptor(r,e);return n&&{writable:!0,configurable:t.i!==1||e!=="length",enumerable:n.enumerable,value:r[e]}},defineProperty:function(){V(11)},getPrototypeOf:function(t){return Object.getPrototypeOf(t.t)},setPrototypeOf:function(){V(12)}},Ae={};de(Te,function(t,e){Ae[t]=function(){return arguments[0]=arguments[0][0],e.apply(this,arguments)}}),Ae.deleteProperty=function(t,e){return Ae.set.call(this,t,e,void 0)},Ae.set=function(t,e,r){return Te.set.call(this,t[0],e,r,t[0])};var Dn=function(){function t(r){var n=this;this.O=Dr,this.D=!0,this.produce=function(i,a,o){if(typeof i=="function"&&typeof a!="function"){var s=a;a=i;var l=n;return function(v){var w=this;v===void 0&&(v=s);for(var S=arguments.length,E=Array(S>1?S-1:0),O=1;O<S;O++)E[O-1]=arguments[O];return l.produce(v,function(A){var z;return(z=a).call.apply(z,[w,A].concat(E))})}}var u;if(typeof a!="function"&&V(6),o!==void 0&&typeof o!="function"&&V(7),K(i)){var d=Pr(n),m=gt(n,i,void 0),f=!0;try{u=a(m),f=!1}finally{f?Be(d):yt(d)}return typeof Promise<"u"&&u instanceof Promise?u.then(function(v){return ft(d,o),pt(v,d)},function(v){throw Be(d),v}):(ft(d,o),pt(u,d))}if(!i||typeof i!="object"){if((u=a(i))===void 0&&(u=i),u===jr&&(u=void 0),n.D&&wt(u,!0),o){var y=[],h=[];G("Patches").M(i,u,y,h),o(y,h)}return u}V(21,i)},this.produceWithPatches=function(i,a){if(typeof i=="function")return function(u){for(var d=arguments.length,m=Array(d>1?d-1:0),f=1;f<d;f++)m[f-1]=arguments[f];return n.produceWithPatches(u,function(y){return i.apply(void 0,[y].concat(m))})};var o,s,l=n.produce(i,a,function(u,d){o=u,s=d});return typeof Promise<"u"&&l instanceof Promise?l.then(function(u){return[u,o,s]}):[l,o,s]},typeof r?.useProxies=="boolean"&&this.setUseProxies(r.useProxies),typeof r?.autoFreeze=="boolean"&&this.setAutoFreeze(r.autoFreeze)}var e=t.prototype;return e.createDraft=function(r){K(r)||V(8),Y(r)&&(r=Cn(r));var n=Pr(this),i=gt(this,r,void 0);return i[I].C=!0,yt(n),i},e.finishDraft=function(r,n){var i=r&&r[I],a=i.A;return ft(a,n),pt(void 0,a)},e.setAutoFreeze=function(r){this.D=r},e.setUseProxies=function(r){r&&!Dr&&V(20),this.O=r},e.applyPatches=function(r,n){var i;for(i=n.length-1;i>=0;i--){var a=n[i];if(a.path.length===0&&a.op==="replace"){r=a.value;break}}i>-1&&(n=n.slice(i+1));var o=G("Patches").$;return Y(r)?o(r,n):this.produce(r,function(s){return o(s,n)})},t}(),j=new Dn,kn=j.produce,va=j.produceWithPatches.bind(j),ma=j.setAutoFreeze.bind(j),ya=j.setUseProxies.bind(j),ga=j.applyPatches.bind(j),ba=j.createDraft.bind(j),Sa=j.finishDraft.bind(j),qe=kn;function ne(t){"@babel/helpers - typeof";return ne=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(e){return typeof e}:function(e){return e&&typeof Symbol=="function"&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},ne(t)}function xt(t,e){if(ne(t)!=="object"||t===null)return t;var r=t[Symbol.toPrimitive];if(r!==void 0){var n=r.call(t,e||"default");if(ne(n)!=="object")return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return(e==="string"?String:Number)(t)}function Rt(t){var e=xt(t,"string");return ne(e)==="symbol"?e:String(e)}function It(t,e,r){return e=Rt(e),e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function Vr(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter(function(i){return Object.getOwnPropertyDescriptor(t,i).enumerable})),r.push.apply(r,n)}return r}function Ke(t){for(var e=1;e<arguments.length;e++){var r=arguments[e]!=null?arguments[e]:{};e%2?Vr(Object(r),!0).forEach(function(n){It(t,n,r[n])}):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):Vr(Object(r)).forEach(function(n){Object.defineProperty(t,n,Object.getOwnPropertyDescriptor(r,n))})}return t}function D(t){return"Minified Redux error #"+t+"; visit https://redux.js.org/Errors?code="+t+" for the full message or use the non-minified dev environment for full errors. "}var Hr=function(){return typeof Symbol=="function"&&Symbol.observable||"@@observable"}(),Pt=function(){return Math.random().toString(36).substring(7).split("").join(".")},ze={INIT:"@@redux/INIT"+Pt(),REPLACE:"@@redux/REPLACE"+Pt(),PROBE_UNKNOWN_ACTION:function(){return"@@redux/PROBE_UNKNOWN_ACTION"+Pt()}};function Un(t){if(typeof t!="object"||t===null)return!1;for(var e=t;Object.getPrototypeOf(e)!==null;)e=Object.getPrototypeOf(e);return Object.getPrototypeOf(t)===e}function Ct(t,e,r){var n;if(typeof e=="function"&&typeof r=="function"||typeof r=="function"&&typeof arguments[3]=="function")throw new Error(D(0));if(typeof e=="function"&&typeof r>"u"&&(r=e,e=void 0),typeof r<"u"){if(typeof r!="function")throw new Error(D(1));return r(Ct)(t,e)}if(typeof t!="function")throw new Error(D(2));var i=t,a=e,o=[],s=o,l=!1;function u(){s===o&&(s=o.slice())}function d(){if(l)throw new Error(D(3));return a}function m(v){if(typeof v!="function")throw new Error(D(4));if(l)throw new Error(D(5));var w=!0;return u(),s.push(v),function(){if(w){if(l)throw new Error(D(6));w=!1,u();var E=s.indexOf(v);s.splice(E,1),o=null}}}function f(v){if(!Un(v))throw new Error(D(7));if(typeof v.type>"u")throw new Error(D(8));if(l)throw new Error(D(9));try{l=!0,a=i(a,v)}finally{l=!1}for(var w=o=s,S=0;S<w.length;S++){var E=w[S];E()}return v}function y(v){if(typeof v!="function")throw new Error(D(10));i=v,f({type:ze.REPLACE})}function h(){var v,w=m;return v={subscribe:function(E){if(typeof E!="object"||E===null)throw new Error(D(11));function O(){E.next&&E.next(d())}O();var A=w(O);return{unsubscribe:A}}},v[Hr]=function(){return this},v}return f({type:ze.INIT}),n={dispatch:f,subscribe:m,getState:d,replaceReducer:y},n[Hr]=h,n}function Ln(t){Object.keys(t).forEach(function(e){var r=t[e],n=r(void 0,{type:ze.INIT});if(typeof n>"u")throw new Error(D(12));if(typeof r(void 0,{type:ze.PROBE_UNKNOWN_ACTION()})>"u")throw new Error(D(13))})}function qr(t){for(var e=Object.keys(t),r={},n=0;n<e.length;n++){var i=e[n];typeof t[i]=="function"&&(r[i]=t[i])}var a=Object.keys(r),o,s;try{Ln(r)}catch(l){s=l}return function(u,d){if(u===void 0&&(u={}),s)throw s;if(0)var m;for(var f=!1,y={},h=0;h<a.length;h++){var v=a[h],w=r[v],S=u[v],E=w(S,d);if(typeof E>"u"){var O=d&&d.type;throw new Error(D(14))}y[v]=E,f=f||E!==S}return f=f||a.length!==Object.keys(u).length,f?y:u}}function me(){for(var t=arguments.length,e=new Array(t),r=0;r<t;r++)e[r]=arguments[r];return e.length===0?function(n){return n}:e.length===1?e[0]:e.reduce(function(n,i){return function(){return n(i.apply(void 0,arguments))}})}function Kr(){for(var t=arguments.length,e=new Array(t),r=0;r<t;r++)e[r]=arguments[r];return function(n){return function(){var i=n.apply(void 0,arguments),a=function(){throw new Error(D(15))},o={getState:i.getState,dispatch:function(){return a.apply(void 0,arguments)}},s=e.map(function(l){return l(o)});return a=me.apply(void 0,s)(i.dispatch),Ke(Ke({},i),{},{dispatch:a})}}}function zr(t){var e=function(n){var i=n.dispatch,a=n.getState;return function(o){return function(s){return typeof s=="function"?s(i,a,t):o(s)}}};return e}var $r=zr();$r.withExtraArgument=zr;var _t=$r;var Jr=function(){var t=function(e,r){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(n,i){n.__proto__=i}||function(n,i){for(var a in i)Object.prototype.hasOwnProperty.call(i,a)&&(n[a]=i[a])},t(e,r)};return function(e,r){if(typeof r!="function"&&r!==null)throw new TypeError("Class extends value "+String(r)+" is not a constructor or null");t(e,r);function n(){this.constructor=e}e.prototype=r===null?Object.create(r):(n.prototype=r.prototype,new n)}}(),Fn=function(t,e){var r={label:0,sent:function(){if(a[0]&1)throw a[1];return a[1]},trys:[],ops:[]},n,i,a,o;return o={next:s(0),throw:s(1),return:s(2)},typeof Symbol=="function"&&(o[Symbol.iterator]=function(){return this}),o;function s(u){return function(d){return l([u,d])}}function l(u){if(n)throw new TypeError("Generator is already executing.");for(;r;)try{if(n=1,i&&(a=u[0]&2?i.return:u[0]?i.throw||((a=i.return)&&a.call(i),0):i.next)&&!(a=a.call(i,u[1])).done)return a;switch(i=0,a&&(u=[u[0]&2,a.value]),u[0]){case 0:case 1:a=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(a=r.trys,!(a=a.length>0&&a[a.length-1])&&(u[0]===6||u[0]===2)){r=0;continue}if(u[0]===3&&(!a||u[1]>a[0]&&u[1]<a[3])){r.label=u[1];break}if(u[0]===6&&r.label<a[1]){r.label=a[1],a=u;break}if(a&&r.label<a[2]){r.label=a[2],r.ops.push(u);break}a[2]&&r.ops.pop(),r.trys.pop();continue}u=e.call(t,r)}catch(d){u=[6,d],i=0}finally{n=a=0}if(u[0]&5)throw u[1];return{value:u[0]?u[1]:void 0,done:!0}}},ye=function(t,e){for(var r=0,n=e.length,i=t.length;r<n;r++,i++)t[i]=e[r];return t},jn=Object.defineProperty,Bn=Object.defineProperties,Vn=Object.getOwnPropertyDescriptors,Gr=Object.getOwnPropertySymbols,Hn=Object.prototype.hasOwnProperty,qn=Object.prototype.propertyIsEnumerable,Wr=function(t,e,r){return e in t?jn(t,e,{enumerable:!0,configurable:!0,writable:!0,value:r}):t[e]=r},ie=function(t,e){for(var r in e||(e={}))Hn.call(e,r)&&Wr(t,r,e[r]);if(Gr)for(var n=0,i=Gr(e);n<i.length;n++){var r=i[n];qn.call(e,r)&&Wr(t,r,e[r])}return t},Nt=function(t,e){return Bn(t,Vn(e))},Kn=function(t,e,r){return new Promise(function(n,i){var a=function(l){try{s(r.next(l))}catch(u){i(u)}},o=function(l){try{s(r.throw(l))}catch(u){i(u)}},s=function(l){return l.done?n(l.value):Promise.resolve(l.value).then(a,o)};s((r=r.apply(t,e)).next())})};var zn=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)},Fa=typeof window<"u"&&window.__REDUX_DEVTOOLS_EXTENSION__?window.__REDUX_DEVTOOLS_EXTENSION__:function(){return function(t){return t}};function $n(t){if(typeof t!="object"||t===null)return!1;var e=Object.getPrototypeOf(t);if(e===null)return!0;for(var r=e;Object.getPrototypeOf(r)!==null;)r=Object.getPrototypeOf(r);return e===r}var Gn=function(t){Jr(e,t);function e(){for(var r=[],n=0;n<arguments.length;n++)r[n]=arguments[n];var i=t.apply(this,r)||this;return Object.setPrototypeOf(i,e.prototype),i}return Object.defineProperty(e,Symbol.species,{get:function(){return e},enumerable:!1,configurable:!0}),e.prototype.concat=function(){for(var r=[],n=0;n<arguments.length;n++)r[n]=arguments[n];return t.prototype.concat.apply(this,r)},e.prototype.prepend=function(){for(var r=[],n=0;n<arguments.length;n++)r[n]=arguments[n];return r.length===1&&Array.isArray(r[0])?new(e.bind.apply(e,ye([void 0],r[0].concat(this)))):new(e.bind.apply(e,ye([void 0],r.concat(this))))},e}(Array),Wn=function(t){Jr(e,t);function e(){for(var r=[],n=0;n<arguments.length;n++)r[n]=arguments[n];var i=t.apply(this,r)||this;return Object.setPrototypeOf(i,e.prototype),i}return Object.defineProperty(e,Symbol.species,{get:function(){return e},enumerable:!1,configurable:!0}),e.prototype.concat=function(){for(var r=[],n=0;n<arguments.length;n++)r[n]=arguments[n];return t.prototype.concat.apply(this,r)},e.prototype.prepend=function(){for(var r=[],n=0;n<arguments.length;n++)r[n]=arguments[n];return r.length===1&&Array.isArray(r[0])?new(e.bind.apply(e,ye([void 0],r[0].concat(this)))):new(e.bind.apply(e,ye([void 0],r.concat(this))))},e}(Array);function kt(t){return K(t)?qe(t,function(){}):t}function Xn(t){return typeof t=="boolean"}function Yn(){return function(e){return Jn(e)}}function Jn(t){t===void 0&&(t={});var e=t.thunk,r=e===void 0?!0:e,n=t.immutableCheck,i=n===void 0?!0:n,a=t.serializableCheck,o=a===void 0?!0:a,s=new Gn;if(r&&(Xn(r)?s.push(_t):s.push(_t.withExtraArgument(r.extraArgument))),0){if(i)var l;if(o)var u}return s}var Mt=!0;function Qr(t){var e=Yn(),r=t||{},n=r.reducer,i=n===void 0?void 0:n,a=r.middleware,o=a===void 0?e():a,s=r.devTools,l=s===void 0?!0:s,u=r.preloadedState,d=u===void 0?void 0:u,m=r.enhancers,f=m===void 0?void 0:m,y;if(typeof i=="function")y=i;else if($n(i))y=qr(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=o;if(typeof h=="function"&&(h=h(e),!Mt&&!Array.isArray(h)))throw new Error("when using a middleware builder function, an array of middleware must be returned");if(!Mt&&h.some(function(A){return typeof A!="function"}))throw new Error("each middleware provided to configureStore must be a function");var v=Kr.apply(void 0,h),w=me;l&&(w=zn(ie({trace:!Mt},typeof l=="object"&&l)));var S=new Wn(v),E=S;Array.isArray(f)?E=ye([v],f):typeof f=="function"&&(E=f(S));var O=w.apply(void 0,E);return Ct(y,d,O)}function ae(t,e){function r(){for(var n=[],i=0;i<arguments.length;i++)n[i]=arguments[i];if(e){var a=e.apply(void 0,n);if(!a)throw new Error("prepareAction did not return an object");return ie(ie({type:t,payload:a.payload},"meta"in a&&{meta:a.meta}),"error"in a&&{error:a.error})}return{type:t,payload:n[0]}}return r.toString=function(){return""+t},r.type=t,r.match=function(n){return n.type===t},r}function Zr(t){var e={},r=[],n,i={addCase:function(a,o){var s=typeof a=="string"?a:a.type;if(s in e)throw new Error("addCase cannot be called with two reducers for the same action type");return e[s]=o,i},addMatcher:function(a,o){return r.push({matcher:a,reducer:o}),i},addDefaultCase:function(a){return n=a,i}};return t(i),[e,r,n]}function Qn(t){return typeof t=="function"}function Zn(t,e,r,n){r===void 0&&(r=[]);var i=typeof e=="function"?Zr(e):[e,r,n],a=i[0],o=i[1],s=i[2],l;if(Qn(t))l=function(){return kt(t())};else{var u=kt(t);l=function(){return u}}function d(m,f){m===void 0&&(m=l());var y=ye([a[f.type]],o.filter(function(h){var v=h.matcher;return v(f)}).map(function(h){var v=h.reducer;return v}));return y.filter(function(h){return!!h}).length===0&&(y=[s]),y.reduce(function(h,v){if(v)if(Y(h)){var w=h,S=v(w,f);return S===void 0?h:S}else{if(K(h))return qe(h,function(E){return v(E,f)});var S=v(h,f);if(S===void 0){if(h===null)return h;throw Error("A case reducer on a non-draftable value must not return undefined")}return S}return h},m)}return d.getInitialState=l,d}function ei(t,e){return t+"/"+e}function en(t){var e=t.name;if(!e)throw new Error("`name` is a required option for createSlice");typeof process<"u";var r=typeof t.initialState=="function"?t.initialState:kt(t.initialState),n=t.reducers||{},i=Object.keys(n),a={},o={},s={};i.forEach(function(d){var m=n[d],f=ei(e,d),y,h;"reducer"in m?(y=m.reducer,h=m.prepare):y=m,a[d]=y,o[f]=y,s[d]=h?ae(f,h):ae(f)});function l(){var d=typeof t.extraReducers=="function"?Zr(t.extraReducers):[t.extraReducers],m=d[0],f=m===void 0?{}:m,y=d[1],h=y===void 0?[]:y,v=d[2],w=v===void 0?void 0:v,S=ie(ie({},f),o);return Zn(r,function(E){for(var O in S)E.addCase(O,S[O]);for(var A=0,z=h;A<z.length;A++){var H=z[A];E.addMatcher(H.matcher,H.reducer)}w&&E.addDefaultCase(w)})}var u;return{name:e,reducer:function(d,m){return u||(u=l()),u(d,m)},actions:s,caseReducers:a,getInitialState:function(){return u||(u=l()),u.getInitialState()}}}var ti="ModuleSymbhasOwnPr-0123456789ABCDEFGHNRVfgctiUvz_KqYTJkLxpZXIjQW",ri=function(t){t===void 0&&(t=21);for(var e="",r=t;r--;)e+=ti[Math.random()*64|0];return e},ni=["name","message","stack","code"],Dt=function(){function t(e,r){this.payload=e,this.meta=r}return t}(),Xr=function(){function t(e,r){this.payload=e,this.meta=r}return t}(),ii=function(t){if(typeof t=="object"&&t!==null){for(var e={},r=0,n=ni;r<n.length;r++){var i=n[r];typeof t[i]=="string"&&(e[i]=t[i])}return e}return{message:String(t)}},Ha=function(){function t(e,r,n){var i=ae(e+"/fulfilled",function(d,m,f,y){return{payload:d,meta:Nt(ie({},y||{}),{arg:f,requestId:m,requestStatus:"fulfilled"})}}),a=ae(e+"/pending",function(d,m,f){return{payload:void 0,meta:Nt(ie({},f||{}),{arg:m,requestId:d,requestStatus:"pending"})}}),o=ae(e+"/rejected",function(d,m,f,y,h){return{payload:y,error:(n&&n.serializeError||ii)(d||"Rejected"),meta:Nt(ie({},h||{}),{arg:f,requestId:m,rejectedWithValue:!!y,requestStatus:"rejected",aborted:d?.name==="AbortError",condition:d?.name==="ConditionError"})}}),s=!1,l=typeof AbortController<"u"?AbortController:function(){function d(){this.signal={aborted:!1,addEventListener:function(){},dispatchEvent:function(){return!1},onabort:function(){},removeEventListener:function(){},reason:void 0,throwIfAborted:function(){}}}return d.prototype.abort=function(){},d}();function u(d){return function(m,f,y){var h=n?.idGenerator?n.idGenerator(d):ri(),v=new l,w,S=!1;function E(A){w=A,v.abort()}var O=function(){return Kn(this,null,function(){var A,z,H,M,xe,W,c;return Fn(this,function(p){switch(p.label){case 0:return p.trys.push([0,4,,5]),M=(A=n?.condition)==null?void 0:A.call(n,d,{getState:f,extra:y}),oi(M)?[4,M]:[3,2];case 1:M=p.sent(),p.label=2;case 2:if(M===!1||v.signal.aborted)throw{name:"ConditionError",message:"Aborted due to condition callback returning false."};return S=!0,xe=new Promise(function(g,P){return v.signal.addEventListener("abort",function(){return P({name:"AbortError",message:w||"Aborted"})})}),m(a(h,d,(z=n?.getPendingMeta)==null?void 0:z.call(n,{requestId:h,arg:d},{getState:f,extra:y}))),[4,Promise.race([xe,Promise.resolve(r(d,{dispatch:m,getState:f,extra:y,requestId:h,signal:v.signal,abort:E,rejectWithValue:function(g,P){return new Dt(g,P)},fulfillWithValue:function(g,P){return new Xr(g,P)}})).then(function(g){if(g instanceof Dt)throw g;return g instanceof Xr?i(g.payload,h,d,g.meta):i(g,h,d)})])];case 3:return H=p.sent(),[3,5];case 4:return W=p.sent(),H=W instanceof Dt?o(null,h,d,W.payload,W.meta):o(W,h,d),[3,5];case 5:return c=n&&!n.dispatchConditionRejection&&o.match(H)&&H.meta.condition,c||m(H),[2,H]}})})}();return Object.assign(O,{abort:E,requestId:h,arg:d,unwrap:function(){return O.then(ai)}})}}return Object.assign(u,{pending:a,rejected:o,fulfilled:i,typePrefix:e})}return t.withTypes=function(){return t},t}();function ai(t){if(t.meta&&t.meta.rejectedWithValue)throw t.payload;if(t.error)throw t.error;return t.payload}function oi(t){return t!==null&&typeof t=="object"&&typeof t.then=="function"}var tn="listener",rn="completed",nn="cancelled",qa="task-"+nn,Ka="task-"+rn,za=tn+"-"+nn,$a=tn+"-"+rn;var Ut="listenerMiddleware";var Ga=ae(Ut+"/add"),Wa=ae(Ut+"/removeAll"),Xa=ae(Ut+"/remove");var Yr,Ya=typeof queueMicrotask=="function"?queueMicrotask.bind(typeof window<"u"?window:typeof global<"u"?global:globalThis):function(t){return(Yr||(Yr=Promise.resolve())).then(t).catch(function(e){return setTimeout(function(){throw e},0)})},si=function(t){return function(e){setTimeout(e,t)}},Ja=typeof window<"u"&&window.requestAnimationFrame?window.requestAnimationFrame:si(10);Fr();window.ftReduxStores||(window.ftReduxStores={});var an=class t{static get(e){var r;let n=typeof e=="string"?e:e.name,i=typeof e=="string"?void 0:e,a=window.ftReduxStores[n];if(Se(a))return a;if(i==null)return;let o=en({...i,reducers:(r=i.reducers)!==null&&r!==void 0?r:{}}),s=Qr({reducer:(l,u)=>u.type==="CLEAR_FT_REDUX_STORE"?o.getInitialState():typeof u.type=="string"&&u.type.startsWith("DEFAULT_VALUE_SETTER__")?{...l,...u.overwrites}:o.reducer(l,u)});return window.ftReduxStores[i.name]=new t(o,s)}constructor(e,r){this.reduxSlice=e,this.reduxStore=r,this.isFtReduxStore=!0,this.eventBus=document.createElement("event-bus"),this.commands=new De,this.actions=new Proxy(this.reduxSlice.actions,{get:(n,i,a)=>{let o=i,s=n[o];return s?(...l)=>{let u=s(...l);return this.reduxStore.dispatch(u),u}:l=>{this.setState({[o]:l})}}})}clear(){this.reduxStore.dispatch({type:"CLEAR_FT_REDUX_STORE"})}setState(e){this.reduxStore.dispatch({type:"DEFAULT_VALUE_SETTER__"+Object.keys(e).join("_"),overwrites:e})}get dispatch(){throw new Error("Don't use this method, actions are automatically dispatched when called.")}[Symbol.observable](){return this.reduxStore[Symbol.observable]()}getState(){return this.reduxStore.getState()}replaceReducer(e){throw new Error("Not implemented yet.")}subscribe(e){return this.reduxStore.subscribe(e)}get name(){return this.reduxSlice.name}get reducer(){return this.reduxSlice.reducer}get caseReducers(){return this.reduxSlice.caseReducers}getInitialState(){return this.reduxSlice.getInitialState()}};var Xe=x(F());var $e=class extends ${async listMySearches(){let e=b.getState().session;return e?.sessionAuthenticated?this.cache.get("my-searches",async()=>(await this.awaitApi).listMySearches(e.profile.userId),5*60*1e3):[]}};var Ge=class extends ${async listMyBookmarks(){let e=b.getState().session;return e?.sessionAuthenticated?this.cache.get("my-bookmarks",async()=>(await this.awaitApi).listMyBookmarks(e.profile.userId),5*60*1e3):[]}};var ci="ft-user-assets",We=Xe.FtReduxStore.get({name:ci,initialState:{savedSearches:void 0,bookmarks:void 0}}),Lt=class{constructor(){this.currentSession=b.getState().session,this.bookmarksAreUsed=!1,this.bookmarksService=new Ge,this.savedSearchesService=new $e,b.subscribe(()=>this.reloadWhenUserSessionChanges())}reloadWhenUserSessionChanges(){var e;let{session:r}=b.getState();(0,Xe.deepEqual)((e=this.currentSession)===null||e===void 0?void 0:e.profile,r?.profile)||(this.currentSession=r,this.clearMySearches(),this.reloadBookmarks())}clear(){this.clearMySearches(),this.clearMyBookmarks()}clearMySearches(){this.savedSearchesService.clearCache(),We.actions.savedSearches(void 0)}clearMyBookmarks(){this.bookmarksService.clearCache(),We.actions.bookmarks(void 0)}async reloadMySearches(){this.savedSearchesService.clearCache();let e=await this.savedSearchesService.listMySearches();We.actions.savedSearches(e)}async reloadBookmarks(){this.bookmarksService.clearCache(),await this.updateBookmarksIfUsed()}async registerBookmarkComponent(){this.bookmarksAreUsed=!0,await this.updateBookmarksIfUsed()}async updateBookmarksIfUsed(){var e;if(this.bookmarksAreUsed){let r=!((e=this.currentSession)===null||e===void 0)&&e.sessionAuthenticated?await this.bookmarksService.listMyBookmarks():void 0;We.actions.bookmarks(r)}}},on=new Lt;var Ft=class{addCommand(e,r=!1){b.commands.add(e,r)}consumeCommand(e){return b.commands.consume(e)}};window.FluidTopicsAppInfoStoreService=new Ft;var sn=x(F()),jt=class{highlightHtml(e,r){(0,sn.highlightHtml)(e,r)}};window.FluidTopicsHighlightHtmlService=new jt;var un=x(F());var Bt=class{isDate(e){var r,n,i,a;return(a=(i=((n=(r=b.getState().metadataConfiguration)===null||r===void 0?void 0:r.descriptors)!==null&&n!==void 0?n:[]).find(s=>s.key===e))===null||i===void 0?void 0:i.date)!==null&&a!==void 0?a:!1}format(e,r){var n,i,a;return un.DateFormatter.format(e,(n=r?.locale)!==null&&n!==void 0?n:b.getState().uiLocale,(i=r?.longFormat)!==null&&i!==void 0?i:!1,(a=r?.withTime)!==null&&a!==void 0?a:!1)}};window.FluidTopicsDateService=new Bt;(0,cn.customElement)("ft-app-context")(C);var Ye=class extends ${get mapId(){return this._mapId}set mapId(e){e!==this._mapId&&this.clear(),this._mapId=e}constructor(e,r,n){super(!1,r),this.converter=e,this._mapId=n,this.initCache()}async withMapId(e){return this._mapId?e(this._mapId):void 0}initCache(){this.cache.registerFinal("configuration",()=>this.api.getReaderConfiguration()),this.cache.register("map",()=>this.withMapId(e=>this.fetchMap(e))),this.cache.register("enrichedToc",()=>this.withMapId(e=>this.fetchPages(e).then(r=>this.converter.convertPaginatedToc(e,r)))),this.cache.register("ratingSummary",()=>{var e,r;return ue((r=(e=b.getState().session)===null||e===void 0?void 0:e.profile.roles)!==null&&r!==void 0?r:[],"RATING_USER")?this.withMapId(i=>this.fetchMapRating(i)):Promise.resolve()})}clear(){this.cache.clearAll()}getMap(){return this.cache.get("map")}getMapNow(){return this.cache.getNow("map")}getConfiguration(){return this.cache.get("configuration")}getEnrichedToc(){return this.cache.get("enrichedToc")}get enrichedToc(){return this.cache.getNow("enrichedToc")}async getPaginationConfiguration(){return(await this.getEnrichedToc()).paginationConfiguration}async getToc(){return(await this.getEnrichedToc()).toc}async getPagesToc(){return(await this.getEnrichedToc()).pagesToc}async getTocNode(e){return(await this.getEnrichedToc()).nodeByTocId[e]}getTocNodeNow(e){var r;return(r=this.enrichedToc)===null||r===void 0?void 0:r.nodeByTocId[e]}getTocNodeNowByUrl(e){var r,n;let i=this.getMapNow();return i?.prettyUrl==e||`${i?.id}/root`===e?(r=this.enrichedToc)===null||r===void 0?void 0:r.toc[0]:(n=this.enrichedToc)===null||n===void 0?void 0:n.nodeByUrl[e]}async getPage(e){let r=await this.getEnrichedToc();return r.pages[e-1]||r.pages[0]}async getPageByTocId(e){let r=await this.getEnrichedToc();return r.pageByTocId[e]||r.pages[0]}getTopicInfo(e){return this.cache.get("topic-"+e.tocId,()=>this.fetchTopicMetadata(e))}getTopicContent(e){return this.cache.get("topic-content-"+e.tocId,()=>this.fetchTopicHTMLContent(e))}getAttachments(){return this.cache.get("map-attachments",()=>this.fetchAttachments())}getRelativesForDocument(e,r){return this.cache.get("document-relatives-"+e+"-"+r.join("-"),()=>this.fetchRelativesForDocument(e,r))}getRelativesForTopicInMap(e,r,n){return this.cache.get("topic-relatives-"+[e,r,...n].join("-"),()=>this.fetchRelativesForTopicInMap(e,r,n))}getAttachmentDownloadLink(e){return this.makeAbsolute(`${this.api.endpoints.khub.maps.mapId(this.mapId).attachments.attachmentId(e).content}?download=true`)}getLink(e,r,n){let i=this.getNavigationData(e,r,n),a=this.getReaderLinkPrefix()+(i.prettyUrl?i.prettyUrl:`${i.mapId}/${i.tocId}`),o=new URL(a,this.api.tenantBaseUrl);return i.page!=null&&o.searchParams.set("page",`${i.page}`),i.prettyUrlDuplicated&&o.searchParams.set("tocId",i.tocId),i.section!=null&&o.searchParams.set("section",i.section),o.href}getNavigationData(e,r,n){var i,a;e=e||"root";let o=this.enrichedToc,s=o?.pageByTocId[e],l=o?.nodeByTocId[e],u=l?.prettyUrl;return{mapId:this.mapId,tocId:e,topicTitle:(i=l?.title)!==null&&i!==void 0?i:"",page:r&&s&&s.number!==r?r:void 0,prettyUrl:u?.replace(/^r\//,""),prettyUrlDuplicated:(a=o?.duplicatedPrettyUrls.has(u??""))!==null&&a!==void 0?a:!1,section:n}}async getAccurateNavigationData(e,r,n){return await this.getEnrichedToc(),this.getNavigationData(e,r,n)}getRatingSummary(){return this.cache.get("ratingSummary")}reloadRating(){return this.cache.clear("ratingSummary"),this.getRatingSummary()}getMapRating(){return this.getRatingSummary().then(e=>e?.publication)}getTopicRating(e){return this.getRatingSummary().then(r=>{var n;return r?{type:r.topics.type,rating:(n=r.topics)===null||n===void 0?void 0:n.ratings.find(i=>i.tocId===e)}:void 0})}rateMap(e,r){return this.makeRateMapRequest(e,r).then(()=>this.clearRatingIfNecessary())}unrateMap(){return this.makeUnrateMapRequest().then(()=>this.clearRatingIfNecessary())}sendMapFeedback(e,r){return this.makeMapFeedbackRequest(e,r)}rateTopic(e,r,n){return this.makeRateTopicRequest(e,r,n).then(()=>this.clearRatingIfNecessary())}unrateTopic(e){return this.makeUnrateTopicRequest(e).then(()=>this.clearRatingIfNecessary())}async clearRatingIfNecessary(){let e=b.getState().session;e?.sessionAuthenticated&&this.cache.clear("ratingSummary")}sendTopicFeedback(e,r,n){return this.makeTopicFeedbackRequest(e,r,n)}fontsStylesheet(){return this.api.makeAbsolute(this.api.endpoints.stylesheets.fonts)}themeStylesheet(){return this.api.makeAbsolute(this.api.endpoints.stylesheets.theme)}buildBreadcrumb(e){let r=this.getTocNodeNow(e),n=[{tocId:r.tocId,title:r.title}],i=this.getTocNodeNow(r.parentTocId);for(;i;)n.unshift({tocId:i.tocId,title:i.title}),i=this.getTocNodeNow(i.parentTocId);return n}isFeatureAccessible(e,{session:r,ratingType:n}){var i;if(!this.isFeatureAvailable(e))return!1;switch(e){case X.FEEDBACK:return ue(r??[],R.FEEDBACK_USER);case X.RATING:return ue(r??[],R.RATING_USER)&&n!=null&&n!==Ce.NO_RATING;case X.PRINT:return ue(r??[],R.PRINT_USER);case X.BOOKMARK:return!!r?.sessionAuthenticated;case X.COLLECTIONS:return ue(r??[],R.COLLECTION_USER);case X.PERSONAL_BOOKS:return ue(r??[],R.PERSONAL_BOOK_USER)&&!(!((i=this.getMapNow())===null||i===void 0)&&i.pbkConfidential);default:return!1}}makeAbsolute(e){return this.api.makeAbsolute(e)}};var Je=class t extends Ye{static async build(e){return new t(new Pe,void 0,e)}clear(){super.clear(),this.fingerprint=void 0}async fetchMap(e){let r=await this.api.getMap(e);return this.fingerprint=r.fingerprint,r}fetchMapRating(e){return this.api.getMapRating(e)}async fetchPages(e){return await this.getMap(),this.api.getPages(e,this.fingerprint)}fetchTopicHTMLContent(e){return this.api.getTopicHTMLContent(this.mapId,e.contentId,"DESIGNED_READER",this.fingerprint)}fetchTopicMetadata(e){return this.api.getTopic(this.mapId,e.contentId,this.fingerprint)}fetchAttachments(){return this.api.getMapAttachments(this.mapId).catch(()=>[])}fetchRelativesForDocument(e,r){return this.api.search({query:"",paging:{page:1,perPage:-1},scope:"DOCUMENTS",filters:[{negative:!1,values:r,key:e}],sort:[],facets:[]})}fetchRelativesForTopicInMap(e,r,n){return this.api.search({query:"",paging:{page:1,perPage:1},scope:"ALL_TOPICS",filters:[{negative:!1,values:n,key:r},{negative:!1,values:[e],key:"ft:publicationId"}],sort:[],facets:[]})}makeMapFeedbackRequest(e,r){return this.api.sendMapFeedback(this.mapId,e,r)}makeRateMapRequest(e,r){return this.api.rateMap(this.mapId,e,r)}makeRateTopicRequest(e,r,n){return this.api.rateTopic(this.mapId,e,r,n)}makeTopicFeedbackRequest(e,r,n){return this.api.sendTopicFeedback(this.mapId,e,r,n)}makeUnrateMapRequest(){return this.api.unrateMap(this.mapId)}makeUnrateTopicRequest(e){return this.api.unrateTopic(this.mapId,e)}getReaderLinkPrefix(){return"r/"}isFeatureAvailable(e){return!0}};var Qe=class t{static build(e,r){return new t($t(e.trim()||"context"),r??Je.build)}constructor(e,r,n){this.store=e,this.clusteringHelperProvider=n,this.metadataForSwitchToRelatives=new Set,this.loadDebouncer=new J.Debouncer(10),this.initService(r)}async initService(e){return this.service=await e(),this.service.mapId=this.store.getState().mapId,this.reload()}async setMapId(e){e!==this.store.getState().mapId&&(this.store.actions.mapId(e),this.service&&(this.service.mapId=e),await this.reload())}setVisibleTopics(e){this.store.actions.visibleTopics(e)}async awaitService(){return(0,J.waitFor)(()=>this.service)}async navigateToTopic(e,r,n){let i=await this.awaitService(),a=await(n!=null?i.getPage(n):i.getPageByTocId(e??"root"));this.store.actions.currentPage(a),this.store.actions.scrollTarget({tocId:this.resolveValidNonRootTocId(e,a),section:r})}resolveValidNonRootTocId(e,r){var n,i,a;let o=(n=e==="root"?void 0:e)!==null&&n!==void 0?n:r.rootTocId;return r.topics.includes(o)?o:(a=(i=r.topics[0])!==null&&i!==void 0?i:r.hiddenTopics[0])!==null&&a!==void 0?a:"root"}async navigateToPage(e){let n=await(await this.awaitService()).getPage(e);this.store.actions.currentPage(n)}scrollDone(){this.store.actions.scrollTarget({})}async load(){var e;!((e=this.service)===null||e===void 0)&&e.mapId&&this.store.getState().map==null&&await this.loadDebouncer.run(()=>this.fetchData())}clear(){var e;this.store.actions.configuration(void 0),this.store.actions.map(void 0),this.store.actions.toc(void 0),this.store.actions.pagesToc(void 0),this.store.actions.currentPage(void 0),this.store.actions.searchInDocumentQuery(""),this.store.actions.relatives(void 0),(e=this.service)===null||e===void 0||e.clear(),this.clusteringHelper=void 0}reload(){return this.clear(),this.load()}async fetchData(){var e,r,n,i,a;try{await Promise.all([(e=this.service)===null||e===void 0?void 0:e.getConfiguration().then(o=>this.store.actions.configuration(o)),(r=this.service)===null||r===void 0?void 0:r.getMap().then(o=>this.store.actions.map(o)),(n=this.service)===null||n===void 0?void 0:n.getToc().then(o=>this.store.actions.toc(o)),(i=this.service)===null||i===void 0?void 0:i.getPagesToc().then(o=>this.store.actions.pagesToc(o)),(a=this.service)===null||a===void 0?void 0:a.getPaginationConfiguration().then(o=>this.store.actions.paginationConfiguration(o))]).then(()=>{this.metadataForSwitchToRelatives.size>0&&this.fetchRelatives()})}catch(o){this.errorHandler&&!(o instanceof J.CanceledPromiseError)&&this.errorHandler(o)}}fetchRelatives(){var e,r,n;let i=(e=this.store.getState().map)===null||e===void 0?void 0:e.metadata.filter(a=>{var o;return a.key==((o=this.store.getState().configuration)===null||o===void 0?void 0:o.relativePivotMetadata)}).flatMap(a=>a.values);i!==void 0&&i.length>0?(r=this.service)===null||r===void 0||r.getRelativesForDocument((n=this.store.getState().configuration)===null||n===void 0?void 0:n.relativePivotMetadata,i).then(a=>{let o=a.results.flatMap(s=>s.entries);this.store.actions.relatives(o),this.updateClusteringHelper()}):this.updateClusteringHelper()}updateClusteringHelper(){this.clusteringHelper=this.createClusteringHelper(),this.clusteringHelper&&this.store.eventBus.dispatchEvent(new CustomEvent("clustering-helper-created"))}createClusteringHelper(){var e,r;if(this.clusteringHelperProvider)return this.clusteringHelperProvider();let n=this.store.getState().relatives;if(n){let i=n.find(o=>{var s;return((s=o.map)===null||s===void 0?void 0:s.mapId)==this.store.getState().mapId}),a=(r=(e=b.getState().metadataConfiguration)===null||e===void 0?void 0:e.descriptors)!==null&&r!==void 0?r:[];return new J.ClusteringHelper(n,i,this.metadataForSwitchToRelatives,a)}}async navigateToRelativeTopicIfFound(e){var r,n,i;let a=await(0,J.waitFor)(()=>{var u;return(u=this.store.getState().configuration)===null||u===void 0?void 0:u.relativeTopicPivotMetadata}),o=this.store.getState().mapId,l=await(await this.awaitService()).getRelativesForTopicInMap(o,a,[e]);if(!((i=(n=(r=l?.results)===null||r===void 0?void 0:r[0])===null||n===void 0?void 0:n.entries)===null||i===void 0)&&i[0]){let u=l.results[0].entries[0].topic.tocId;return await this.navigateToTopic(u),!0}else return await this.navigateToTopic("root"),!1}setSearchInDocumentQuery(e){this.store.actions.searchInDocumentQuery(e)}registerMetadataForSwitchToRelatives(e){this.metadataForSwitchToRelatives.add(e),this.store.getState().relatives==null?this.fetchRelatives():this.updateClusteringHelper()}unregisterMetadataForSwitchToRelatives(e){this.metadataForSwitchToRelatives.delete(e),this.updateClusteringHelper()}};var ln=x(fe()),us={},dn=ln.css`
5
+ `;var Ze=class extends CustomEvent{constructor(e,r){super("ft-reader-map-loaded",{detail:{map:e,toc:r}})}},et=class extends CustomEvent{constructor(e,r){super("ft-reader-visible-topics-change",{detail:{visibleTopics:r}})}},tt=class extends CustomEvent{constructor(e){super("ft-reader-navigation-done",{detail:e})}},rt=class extends CustomEvent{constructor(e){super("ft-reader-load-error",{detail:e})}},nt=class extends Event{constructor(){super("ft-reader-map-not-found")}},it=class extends Event{constructor(){super("ft-reader-map-unauthorized")}},at=class extends Event{constructor(){super("ft-reader-map-forbidden")}},ot=class extends Event{constructor(){super("ft-reader-topic-relative-not-found",{bubbles:!0,composed:!0})}};var L=function(t,e,r,n){var i=arguments.length,a=i<3?e:n===null?n=Object.getOwnPropertyDescriptor(e,r):n,o;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")a=Reflect.decorate(t,e,r,n);else for(var s=t.length-1;s>=0;s--)(o=t[s])&&(a=(i<3?o(a):i>3?o(e,r,a):o(e,r))||a);return i>3&&a&&Object.defineProperty(e,r,a),a},li=t=>e=>+(e??"NaN")>0?+e:t,_=class extends U.FtLitElementRedux{constructor(){super(),this.visibleTopics=[],this.scrollToTargetDebouncer=new U.Debouncer(5),this.navigationDebouncer=new U.Debouncer(10),this.mapLoadedEventDebouncer=new U.Debouncer(50),this.addStore(b)}render(){return Oe.html`
6
6
  ${this.importStyleIfNeeded()}
7
7
  <slot @register-ft-reader-component=${this.registerComponent}></slot>
8
8
  `}importStyleIfNeeded(){var e,r;let n=(e=this.stateManager.service)===null||e===void 0?void 0:e.themeStylesheet();return!n||window.location.href.startsWith((r=this.baseUrl)!==null&&r!==void 0?r:"")?Oe.nothing:Oe.html`
9
9
  <style>
10
10
  @import "${n}"
11
11
  </style>
12
- `}get stateManager(){return this._stateManager==null&&(this._stateManager=Xe.build(this.id||(""+Math.round(Math.random()*999e3)).padStart(6,"0"),this.readerServiceProvider),this._stateManager.errorHandler=e=>this.handleLoadError(e),this.addStore(this.stateManager.store,"reader")),this._stateManager}connectedCallback(){super.connectedCallback(),this.stateManager.setMapId(this.mapId),this.stateManager.awaitService().then(e=>{let r=e.fontsStylesheet();if(r&&!window.location.href.startsWith(this.baseUrl)&&!document.querySelector(`head link[href="${r}"]`)){let n=document.createElement("link");n.setAttribute("rel","stylesheet"),n.setAttribute("href",r),document.head.append(n)}})}update(e){super.update(e),e.has("readerServiceProvider")&&this.readerServiceProvider&&this.stateManager.initService(this.readerServiceProvider),e.has("mapId")&&this.mapId&&(this.stateManager.setMapId(this.mapId),this.lastNotifiedNotFoundRelative=void 0),e.has("searchInDocumentQuery")&&this.searchInDocumentQuery!=null&&this.stateManager.setSearchInDocumentQuery(this.searchInDocumentQuery),["tocId","section","page","mapId","topicPivot"].some(r=>e.has(r))&&this.mapId&&this.navigateToTarget()}contentAvailableCallback(e){var r;if(super.contentAvailableCallback(e),(e.has("map")||e.has("toc"))&&this.sendLoadedEventIfLoaded(),e.has("scrollTarget")&&((r=this.scrollTarget)===null||r===void 0?void 0:r.tocId)==null){let n=e.get("scrollTarget");n?.tocId!=null&&this.scrollToTargetDebouncer.run(()=>{var i;return this.stateManager.service.getAccurateNavigationData(n.tocId,(i=this.currentPage)===null||i===void 0?void 0:i.number,n.section).then(a=>this.dispatchEvent(new Qe(a)))})}e.has("visibleTopics")&&Promise.all(this.visibleTopics.map(n=>{var i;return this.stateManager.service.getAccurateNavigationData(n,(i=this.currentPage)===null||i===void 0?void 0:i.number)})).then(n=>{let i=n.filter(a=>a!=null&&a.topicTitle!=="").map(a=>{var o;return{tocId:a.tocId,title:a.topicTitle,page:a.page,prettyUrl:a.prettyUrl,prettyUrlDuplicated:a.prettyUrlDuplicated,breadcrumb:(o=this.stateManager.service)===null||o===void 0?void 0:o.buildBreadcrumb(a.tocId)}});this.dispatchEvent(new Je(this.map,i))})}clear(){this.stateManager.clear()}async reload(){this.clear(),await this.navigateToTarget()}async navigateToTarget(){await this.stateManager.load(),await this.navigationDebouncer.run(async()=>{this.topicPivot!=null?!await this.stateManager.navigateToRelativeTopicIfFound(this.topicPivot)&&this.lastNotifiedNotFoundRelative!==this.mapId+this.topicPivot?(this.dispatchEvent(new nt),this.lastNotifiedNotFoundRelative=this.mapId+this.topicPivot):this.lastNotifiedNotFoundRelative=void 0:this.tocId!=null?await this.stateManager.navigateToTopic(this.tocId,this.section,this.page):this.page!=null&&await this.stateManager.navigateToPage(this.page)})}registerComponent(e){e.stopPropagation();let r=e.composedPath()[0];this.register(r)}register(e){e.setReaderStateManager(this.stateManager)}handleLoadError(e){let r=e;r.status===401?this.dispatchEvent(new tt):r.status===403?this.dispatchEvent(new rt):r.status===404?this.dispatchEvent(new et):this.dispatchEvent(new Ze(e))}reloadBookmarks(){nn.reloadBookmarks()}async reloadRating(){var e,r;await((e=this.stateManager.service)===null||e===void 0?void 0:e.reloadRating()),(r=this.stateManager.store)===null||r===void 0||r.eventBus.dispatchEvent(new CustomEvent("rating-changed"))}sendLoadedEventIfLoaded(){this.mapLoadedEventDebouncer.run(()=>{this.map&&this.toc&&this.dispatchEvent(new Ye(this.map,this.toc))})}};_.styles=cn;j([(0,F.redux)({store:b.name})],_.prototype,"baseUrl",void 0);j([(0,ae.property)()],_.prototype,"mapId",void 0);j([(0,ae.property)()],_.prototype,"tocId",void 0);j([(0,ae.property)()],_.prototype,"section",void 0);j([(0,ae.property)()],_.prototype,"topicPivot",void 0);j([(0,ae.property)()],_.prototype,"searchInDocumentQuery",void 0);j([(0,ae.property)({type:Number,converter:{fromAttribute:ui()}})],_.prototype,"page",void 0);j([(0,F.redux)({store:"reader"})],_.prototype,"map",void 0);j([(0,F.redux)({store:"reader"})],_.prototype,"toc",void 0);j([(0,F.redux)({store:"reader"})],_.prototype,"visibleTopics",void 0);j([(0,F.redux)({store:"reader"})],_.prototype,"currentPage",void 0);j([(0,F.redux)({store:"reader"})],_.prototype,"scrollTarget",void 0);j([(0,ae.property)({attribute:!1})],_.prototype,"readerServiceProvider",void 0);(0,ln.customElement)("ft-reader-context")(_);})();
12
+ `}get stateManager(){return this._stateManager==null&&(this._stateManager=Qe.build(this.id||(""+Math.round(Math.random()*999e3)).padStart(6,"0"),this.readerServiceProvider),this._stateManager.errorHandler=e=>this.handleLoadError(e),this.addStore(this.stateManager.store,"reader")),this._stateManager}connectedCallback(){super.connectedCallback(),this.stateManager.setMapId(this.mapId),this.stateManager.awaitService().then(e=>{let r=e.fontsStylesheet();if(r&&!window.location.href.startsWith(this.baseUrl)&&!document.querySelector(`head link[href="${r}"]`)){let n=document.createElement("link");n.setAttribute("rel","stylesheet"),n.setAttribute("href",r),document.head.append(n)}})}update(e){super.update(e),e.has("readerServiceProvider")&&this.readerServiceProvider&&this.stateManager.initService(this.readerServiceProvider),e.has("mapId")&&this.mapId&&(this.stateManager.setMapId(this.mapId),this.lastNotifiedNotFoundRelative=void 0),e.has("searchInDocumentQuery")&&this.searchInDocumentQuery!=null&&this.stateManager.setSearchInDocumentQuery(this.searchInDocumentQuery),["tocId","section","page","mapId","topicPivot"].some(r=>e.has(r))&&this.mapId&&this.navigateToTarget(),e.has("session")&&this.reload()}contentAvailableCallback(e){var r;if(super.contentAvailableCallback(e),(e.has("map")||e.has("toc"))&&this.sendLoadedEventIfLoaded(),e.has("scrollTarget")&&((r=this.scrollTarget)===null||r===void 0?void 0:r.tocId)==null){let n=e.get("scrollTarget");n?.tocId!=null&&this.scrollToTargetDebouncer.run(()=>{var i;return this.stateManager.service.getAccurateNavigationData(n.tocId,(i=this.currentPage)===null||i===void 0?void 0:i.number,n.section).then(a=>this.dispatchEvent(new tt(a)))})}e.has("visibleTopics")&&Promise.all(this.visibleTopics.map(n=>{var i;return this.stateManager.service.getAccurateNavigationData(n,(i=this.currentPage)===null||i===void 0?void 0:i.number)})).then(n=>{let i=n.filter(a=>a!=null&&a.topicTitle!=="").map(a=>{var o;return{tocId:a.tocId,title:a.topicTitle,page:a.page,prettyUrl:a.prettyUrl,prettyUrlDuplicated:a.prettyUrlDuplicated,breadcrumb:(o=this.stateManager.service)===null||o===void 0?void 0:o.buildBreadcrumb(a.tocId)}});this.dispatchEvent(new et(this.map,i))})}clear(){this.stateManager.clear()}async reload(){await this.stateManager.reload()}async navigateToTarget(){await this.stateManager.load(),await this.navigationDebouncer.run(async()=>{this.topicPivot!=null?!await this.stateManager.navigateToRelativeTopicIfFound(this.topicPivot)&&this.lastNotifiedNotFoundRelative!==this.mapId+this.topicPivot?(this.dispatchEvent(new ot),this.lastNotifiedNotFoundRelative=this.mapId+this.topicPivot):this.lastNotifiedNotFoundRelative=void 0:this.tocId!=null?await this.stateManager.navigateToTopic(this.tocId,this.section,this.page):this.page!=null&&await this.stateManager.navigateToPage(this.page)})}registerComponent(e){e.stopPropagation();let r=e.composedPath()[0];this.register(r)}register(e){e.setReaderStateManager(this.stateManager)}handleLoadError(e){let r=e;r.status===401?this.dispatchEvent(new it):r.status===403?this.dispatchEvent(new at):r.status===404?this.dispatchEvent(new nt):this.dispatchEvent(new rt(e))}reloadBookmarks(){on.reloadBookmarks()}async reloadRating(){var e,r;await((e=this.stateManager.service)===null||e===void 0?void 0:e.reloadRating()),(r=this.stateManager.store)===null||r===void 0||r.eventBus.dispatchEvent(new CustomEvent("rating-changed"))}sendLoadedEventIfLoaded(){this.mapLoadedEventDebouncer.run(()=>{this.map&&this.toc&&this.dispatchEvent(new Ze(this.map,this.toc))})}};_.styles=dn;L([(0,U.redux)({store:b.name})],_.prototype,"baseUrl",void 0);L([(0,U.redux)({store:b.name})],_.prototype,"session",void 0);L([(0,oe.property)()],_.prototype,"mapId",void 0);L([(0,oe.property)()],_.prototype,"tocId",void 0);L([(0,oe.property)()],_.prototype,"section",void 0);L([(0,oe.property)()],_.prototype,"topicPivot",void 0);L([(0,oe.property)()],_.prototype,"searchInDocumentQuery",void 0);L([(0,oe.property)({type:Number,converter:{fromAttribute:li()}})],_.prototype,"page",void 0);L([(0,U.redux)({store:"reader"})],_.prototype,"map",void 0);L([(0,U.redux)({store:"reader"})],_.prototype,"toc",void 0);L([(0,U.redux)({store:"reader"})],_.prototype,"visibleTopics",void 0);L([(0,U.redux)({store:"reader"})],_.prototype,"currentPage",void 0);L([(0,U.redux)({store:"reader"})],_.prototype,"scrollTarget",void 0);L([(0,oe.property)({attribute:!1})],_.prototype,"readerServiceProvider",void 0);(0,fn.customElement)("ft-reader-context")(_);})();
13
13
  /*! Bundled license information:
14
14
 
15
15
  @lit/reactive-element/css-tag.js: