aptechka 0.73.3 → 0.74.1
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/lib/masonry-layout/index.cjs +1 -1
- package/lib/masonry-layout/index.js +49 -35
- package/lib/morph/index.cjs +1 -1
- package/lib/morph/index.js +169 -166
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";var v=
|
|
1
|
+
"use strict";var v=e=>{throw TypeError(e)};var p=(e,s,t)=>s.has(e)||v("Cannot "+t);var o=(e,s,t)=>(p(e,s,"read from private field"),t?t.call(e):s.get(e)),c=(e,s,t)=>s.has(e)?v("Cannot add the same private member more than once"):s instanceof WeakSet?s.add(e):s.set(e,t),f=(e,s,t,i)=>(p(e,s,"write to private field"),i?i.call(e,t):s.set(e,t),t),m=(e,s,t)=>(p(e,s,"access private method"),t);Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const w=require("../css-property/index.cjs"),C=require("../index-DekP7OZe.cjs"),x=require("../events-KVanG9sR.cjs"),R=require("../stylesheet-HWF2a3nr.cjs");var l,u,a,h,y,d,b;class E extends HTMLElement{constructor(){super();c(this,d);c(this,l,new w.CSSProperty(this,"--distribute-rule","default",{skipSubscribeNotification:!0}));c(this,u,new w.CSSProperty(this,"--columns",2));c(this,a,[]);c(this,h,null);c(this,y,()=>{m(this,d,b).call(this)});const t=this.attachShadow({mode:"open"});t.adoptedStyleSheets=[R.createStylesheet({":host":{display:"grid",gridTemplateColumns:"repeat(var(--columns), 1fr)"},".column":{display:"grid",width:"100%",gap:"var(--gap, 0rem)",gridAutoRows:"max-content"}})]}get columnElements(){return o(this,a)}connectedCallback(){f(this,h,new MutationObserver(o(this,y))),o(this,h).observe(this,{childList:!0}),o(this,l).subscribe(()=>{m(this,d,b).call(this)}),o(this,u).subscribe(t=>{var i;this.shadowRoot.innerHTML="",f(this,a,[]);for(let n=0;n<t.current;n++){const r=document.createElement("div");r.classList.add("column"),r.innerHTML=`<slot name="col-${n}"></slot>`,o(this,a).push(r),(i=this.shadowRoot)==null||i.appendChild(r)}m(this,d,b).call(this)}),o(this,l).observe(),o(this,u).observe()}disconnectedCallback(){o(this,u).close(),o(this,h).disconnect(),this.classList.remove("distributed")}}l=new WeakMap,u=new WeakMap,a=new WeakMap,h=new WeakMap,y=new WeakMap,d=new WeakSet,b=function(){const t=[...this.children],i=o(this,u).current;o(this,l).current==="chessboard"&&i%2===0?t.forEach((n,r)=>{const L=Math.floor(r/i),S=r%i,g=L%2,M=(S+g)%i;n.slot=`col-${M}`}):o(this,l).current==="default"&&t.forEach((n,r)=>{n.slot=`col-${r%i}`}),this.classList.add("distributed"),x.dispatchEvent(this,"masonryLayoutDistributed",{custom:!0})};C.isBrowser&&!customElements.get("e-masonry-layout")&&customElements.define("e-masonry-layout",E);exports.MasonryLayoutElement=E;
|
|
@@ -1,26 +1,34 @@
|
|
|
1
|
-
var
|
|
2
|
-
throw TypeError(
|
|
1
|
+
var w = (s) => {
|
|
2
|
+
throw TypeError(s);
|
|
3
3
|
};
|
|
4
|
-
var
|
|
5
|
-
var o = (
|
|
6
|
-
import { CSSProperty as
|
|
7
|
-
import { i as
|
|
8
|
-
import { d as
|
|
9
|
-
import { c as
|
|
10
|
-
var
|
|
11
|
-
class
|
|
4
|
+
var f = (s, e, t) => e.has(s) || w("Cannot " + t);
|
|
5
|
+
var o = (s, e, t) => (f(s, e, "read from private field"), t ? t.call(s) : e.get(s)), c = (s, e, t) => e.has(s) ? w("Cannot add the same private member more than once") : e instanceof WeakSet ? e.add(s) : e.set(s, t), y = (s, e, t, i) => (f(s, e, "write to private field"), i ? i.call(s, t) : e.set(s, t), t), m = (s, e, t) => (f(s, e, "access private method"), t);
|
|
6
|
+
import { CSSProperty as v } from "../css-property/index.js";
|
|
7
|
+
import { i as M } from "../index-Bv9zgfdb.js";
|
|
8
|
+
import { d as C } from "../events-CsVF98U6.js";
|
|
9
|
+
import { c as R } from "../stylesheet-DpnWNVyD.js";
|
|
10
|
+
var l, a, h, u, b, d, p;
|
|
11
|
+
class x extends HTMLElement {
|
|
12
12
|
constructor() {
|
|
13
13
|
super();
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
14
|
+
c(this, d);
|
|
15
|
+
c(this, l, new v(
|
|
16
|
+
this,
|
|
17
|
+
"--distribute-rule",
|
|
18
|
+
"default",
|
|
19
|
+
{
|
|
20
|
+
skipSubscribeNotification: !0
|
|
21
|
+
}
|
|
22
|
+
));
|
|
23
|
+
c(this, a, new v(this, "--columns", 2));
|
|
24
|
+
c(this, h, []);
|
|
25
|
+
c(this, u, null);
|
|
26
|
+
c(this, b, () => {
|
|
27
|
+
m(this, d, p).call(this);
|
|
20
28
|
});
|
|
21
|
-
const
|
|
22
|
-
|
|
23
|
-
|
|
29
|
+
const t = this.attachShadow({ mode: "open" });
|
|
30
|
+
t.adoptedStyleSheets = [
|
|
31
|
+
R({
|
|
24
32
|
":host": {
|
|
25
33
|
display: "grid",
|
|
26
34
|
gridTemplateColumns: "repeat(var(--columns), 1fr)"
|
|
@@ -35,31 +43,37 @@ class w extends HTMLElement {
|
|
|
35
43
|
];
|
|
36
44
|
}
|
|
37
45
|
get columnElements() {
|
|
38
|
-
return o(this,
|
|
46
|
+
return o(this, h);
|
|
39
47
|
}
|
|
40
48
|
connectedCallback() {
|
|
41
|
-
|
|
49
|
+
y(this, u, new MutationObserver(o(this, b))), o(this, u).observe(this, {
|
|
42
50
|
childList: !0
|
|
43
|
-
}), o(this,
|
|
51
|
+
}), o(this, l).subscribe(() => {
|
|
52
|
+
m(this, d, p).call(this);
|
|
53
|
+
}), o(this, a).subscribe((t) => {
|
|
44
54
|
var i;
|
|
45
|
-
this.shadowRoot.innerHTML = "",
|
|
46
|
-
for (let
|
|
47
|
-
const
|
|
48
|
-
|
|
55
|
+
this.shadowRoot.innerHTML = "", y(this, h, []);
|
|
56
|
+
for (let n = 0; n < t.current; n++) {
|
|
57
|
+
const r = document.createElement("div");
|
|
58
|
+
r.classList.add("column"), r.innerHTML = `<slot name="col-${n}"></slot>`, o(this, h).push(r), (i = this.shadowRoot) == null || i.appendChild(r);
|
|
49
59
|
}
|
|
50
|
-
|
|
51
|
-
}), o(this,
|
|
60
|
+
m(this, d, p).call(this);
|
|
61
|
+
}), o(this, l).observe(), o(this, a).observe();
|
|
52
62
|
}
|
|
53
63
|
disconnectedCallback() {
|
|
54
|
-
o(this,
|
|
64
|
+
o(this, a).close(), o(this, u).disconnect(), this.classList.remove("distributed");
|
|
55
65
|
}
|
|
56
66
|
}
|
|
57
|
-
|
|
58
|
-
[...this.children]
|
|
59
|
-
|
|
60
|
-
|
|
67
|
+
l = new WeakMap(), a = new WeakMap(), h = new WeakMap(), u = new WeakMap(), b = new WeakMap(), d = new WeakSet(), p = function() {
|
|
68
|
+
const t = [...this.children], i = o(this, a).current;
|
|
69
|
+
o(this, l).current === "chessboard" && i % 2 === 0 ? t.forEach((n, r) => {
|
|
70
|
+
const E = Math.floor(r / i), L = r % i, g = E % 2, S = (L + g) % i;
|
|
71
|
+
n.slot = `col-${S}`;
|
|
72
|
+
}) : o(this, l).current === "default" && t.forEach((n, r) => {
|
|
73
|
+
n.slot = `col-${r % i}`;
|
|
74
|
+
}), this.classList.add("distributed"), C(this, "masonryLayoutDistributed", { custom: !0 });
|
|
61
75
|
};
|
|
62
|
-
|
|
76
|
+
M && !customElements.get("e-masonry-layout") && customElements.define("e-masonry-layout", x);
|
|
63
77
|
export {
|
|
64
|
-
|
|
78
|
+
x as MasonryLayoutElement
|
|
65
79
|
};
|
package/lib/morph/index.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";var se=Object.defineProperty,ae=Object.defineProperties;var ne=Object.getOwnPropertyDescriptors;var Wt=Object.getOwnPropertySymbols;var re=Object.prototype.hasOwnProperty,oe=Object.prototype.propertyIsEnumerable;var Xt=(o,e)=>(e=Symbol[o])?e:Symbol.for("Symbol."+o),jt=o=>{throw TypeError(o)};var Yt=(o,e,i)=>e in o?se(o,e,{enumerable:!0,configurable:!0,writable:!0,value:i}):o[e]=i,gt=(o,e)=>{for(var i in e||(e={}))re.call(e,i)&&Yt(o,i,e[i]);if(Wt)for(var i of Wt(e))oe.call(e,i)&&Yt(o,i,e[i]);return o},At=(o,e)=>ae(o,ne(e));var Pt=(o,e,i)=>e.has(o)||jt("Cannot "+i);var t=(o,e,i)=>(Pt(o,e,"read from private field"),i?i.call(o):e.get(o)),l=(o,e,i)=>e.has(o)?jt("Cannot add the same private member more than once"):e instanceof WeakSet?e.add(o):e.set(o,i),r=(o,e,i,s)=>(Pt(o,e,"write to private field"),s?s.call(o,i):e.set(o,i),i),p=(o,e,i)=>(Pt(o,e,"access private method"),i);var W=(o,e,i)=>new Promise((s,h)=>{var v=d=>{try{L(i.next(d))}catch(E){h(E)}},g=d=>{try{L(i.throw(d))}catch(E){h(E)}},L=d=>d.done?s(d.value):Promise.resolve(d.value).then(v,g);L((i=i.apply(o,e)).next())});var Kt=(o,e,i)=>(e=o[Xt("asyncIterator")])?e.call(o):(o=o[Xt("iterator")](),e={},i=(s,h)=>(h=o[s])&&(e[s]=v=>new Promise((g,L,d)=>(v=h.call(o,v),d=v.done,Promise.resolve(v.value).then(E=>g({value:E,done:d}),L)))),i("next"),i("return"),e);Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const Jt=require("../index-DekP7OZe.cjs"),M=require("../events-KVanG9sR.cjs"),le=require("../polyfills-Df4r-ETT.cjs"),$t=require("../scroll-CIdNtj3G.cjs");require("construct-style-sheets-polyfill");const at=require("../url-DGcX4fGV.cjs"),he=require("../css-value-parser/index.cjs");class Qt extends HTMLElement{connectedCallback(){const e={"aria-live":"assertive","aria-atomic":"true",style:"position: absolute; left: 0; top: 0; clip: rect(0 0 0 0); clip-path: inset(50%); overflow: hidden; white-space: nowrap; width: 1px; height: 1px"};for(const[i,s]of Object.entries(e))this.setAttribute(i,s)}}Jt.isBrowser&&!customElements.get("morph-announcer")&&customElements.define("morph-announcer",Qt);var P,a,I,J,Et,rt,Q;class Ct{constructor(e,i){l(this,J);l(this,P);l(this,a);l(this,I);l(this,rt,e=>{var s;if(e.preventDefault(),document.documentElement.classList.contains("click-disabled"))return;if(t(this,a).hasAttribute("data-back")&&t(this,P).previousURL)history.back();else{r(this,I,t(this,a).getAttribute("href")||"/");const h=t(this,a).getAttribute("data-history-action")||"push",v=t(this,a).hasAttribute("data-center-scroll"),g=getComputedStyle(t(this,a)).getPropertyValue("--offset-scroll").trim(),L=g?he.cssValueParser.parse(g):void 0,d=t(this,a).hasAttribute("data-revalidate")||t(this,a).hasAttribute("data-pagination-more-link")||t(this,a).hasAttribute("data-pagination-set-link"),E=t(this,a).hasAttribute("data-keep-search-parameters"),bt=t(this,a).hasAttribute("data-keep-scroll-position")||t(this,a).hasAttribute("data-pagination-more-link"),Lt=t(this,a).getAttribute("data-scroll-behaviour"),ut=p(this,J,Et).call(this,t(this,a).getAttribute("data-pagination-set-link")||t(this,a).getAttribute("data-pagination-more-link"));ut&&(t(this,a).hasAttribute("data-pagination-set-link")?t(this,P).links.forEach(q=>{q.updatePagination(parseInt(t(this,a).getAttribute("data-value")||"1"),ut.selector)}):t(this,a).hasAttribute("data-pagination-more-link")&&t(this,P).links.forEach(q=>{q.updatePagination(ut.currentPage+1,ut.selector)}));const dt=((s=t(this,a).getAttribute("data-submorph"))==null?void 0:s.split(",").map(q=>q.trim()))||t(this,a).hasAttribute("data-pagination-more-link")&&[t(this,a).getAttribute("data-pagination-more-link")]||t(this,a).hasAttribute("data-pagination-set-link")&&[t(this,a).getAttribute("data-pagination-set-link")]||void 0,c=t(this,a).hasAttribute("data-clear-state");t(this,P).navigate(t(this,I),{historyAction:h,centerScroll:v,offsetScroll:L,revalidate:d,keepSearchParameters:E,submorph:dt,clearState:c,keepScrollPosition:bt,scrollBehaviour:Lt,submorphAppend:t(this,a).hasAttribute("data-pagination-more-link")})}});l(this,Q,()=>{const e=t(this,a).hasAttribute("data-revalidate");t(this,P).prefetch(t(this,I),e),t(this,a).removeEventListener("pointerenter",t(this,Q))});r(this,P,i),r(this,a,e),t(this,a).addEventListener("click",t(this,rt)),r(this,I,t(this,a).getAttribute("href")||"/"),this.checkCurrent(location.href.replace(location.origin,""));const s=p(this,J,Et).call(this,t(this,a).getAttribute("data-pagination-set-link")||t(this,a).getAttribute("data-pagination-more-link"));s&&this.updatePagination(s.currentPage,s.selector),t(this,a).hasAttribute("data-prefetch")&&t(this,a).addEventListener("pointerenter",t(this,Q))}get element(){return t(this,a)}checkCurrent(e){var h;const i=t(this,P).normalizePath(e),s=t(this,P).normalizePath(t(this,I));t(this,a).hasAttribute("data-include")&&i.pathname.includes(s.pathname)?t(this,a).classList.add("current"):s.pathname===i.pathname?t(this,a).classList.add("current"):(h=t(this,a).getAttribute("data-associated-paths"))!=null&&h.split(",").find(v=>i.pathname.includes(v))?t(this,a).classList.add("current"):t(this,a).classList.remove("current"),i.path===s.path?t(this,a).classList.add("exact"):t(this,a).classList.remove("exact")}updatePagination(e,i){const s=p(this,J,Et).call(this,i);if(s)if(s.element.setAttribute("data-current-page",e.toString()),t(this,a).hasAttribute("data-pagination-more-link"))if(e<s.totalPages){t(this,a).style.display="";const h=t(this,a).querySelector("[data-pagination-more-link-counter]");h&&(h.textContent=(s.totalPages-e).toString());const v=t(this,a).getAttribute("href"),g=new URL(v,window.location.origin);g.searchParams.set("page",(e+1).toString());const L=g.href.replace(g.origin,"").toString();t(this,a).setAttribute("href",L),this.checkCurrent(L)}else t(this,a).style.display="none";else t(this,a).hasAttribute("data-pagination-set-link")&&(t(this,a).getAttribute("data-value")===e.toString()?t(this,a).classList.add("pagination-current"):t(this,a).classList.remove("pagination-current"))}destroy(){t(this,a).removeEventListener("click",t(this,rt)),t(this,a).removeEventListener("pointerenter",t(this,Q)),t(this,a).classList.remove("current","exact","pagination-current")}}P=new WeakMap,a=new WeakMap,I=new WeakMap,J=new WeakSet,Et=function(e){if(!e)return;const i=document.querySelector(e);if(i){const s=parseInt(i.getAttribute("data-current-page")||"1"),h=parseInt(i.getAttribute("data-total-pages")||"1");return{element:i,currentPage:s,totalPages:h,selector:e}}},rt=new WeakMap,Q=new WeakMap;const ce=new DOMParser;var T,X,k,x,Y,z,Z,j,V,ot;class Gt{constructor(e,i){l(this,T);l(this,X);l(this,k,{x:0,y:0});l(this,x,null);l(this,Y,null);l(this,z,null);l(this,Z,null);l(this,j,null);l(this,V,null);l(this,ot);r(this,T,e),r(this,X,i)}get pathname(){return t(this,X)}get scrollState(){return t(this,k)}get document(){return t(this,z)}setHeaders(e){r(this,ot,e)}setInitialDocument(e){r(this,x,e.cloneNode(!0))}abort(){var e;return(e=t(this,j))==null?void 0:e.abort(`[${t(this,X)}] page loading cancelled`)}fetch(e,i,s){return W(this,null,function*(){var h;if(!s){const L=((h=t(this,x))==null?void 0:h.documentElement.getAttribute("data-cache"))&&i!==e,d=t(this,x)&&t(this,T).isPopstateNavigation;if(t(this,V)||L||d)return t(this,V)}return r(this,V,new Promise(v=>W(this,null,function*(){try{r(this,j,new AbortController);const L=yield(yield fetch(e,{signal:t(this,j).signal,headers:gt({"X-MORPH":"true","X-MORPH-CURRENT-PATH":encodeURIComponent(i),"X-MORPH-NEW-PATH":encodeURIComponent(e)},t(this,ot))})).text(),d=ce.parseFromString(L,"text/html");this.setInitialDocument(d)}catch(g){console.warn(g)}finally{r(this,j,null),r(this,V,null),v()}}))),t(this,V)})}cloneDocument(){r(this,z,(t(this,Y)||t(this,x)).cloneNode(!0))}get title(){let e="";if(t(this,z).title)e=t(this,z).title;else{const i=t(this,z).querySelector("h1");e=(i==null?void 0:i.innerText)||(i==null?void 0:i.textContent)||t(this,X)}return e}clearScrollState(){t(this,k).x=0,t(this,k).y=0}clearDocumentState(){r(this,Y,null)}saveScrollState(){t(this,x).documentElement.hasAttribute("data-no-scroll-restoration")?(t(this,k).x=0,t(this,k).y=0):(t(this,k).x=t(this,T).scrollValue.left,t(this,k).y=t(this,T).scrollValue.top)}restoreScrollPosition(){t(this,T).scrollElement.scroll({top:t(this,k).y,left:t(this,k).x,behavior:"instant"})}saveDocumentState(){t(this,x).documentElement.hasAttribute("data-no-page-restoration")?r(this,Y,null):r(this,Y,document.cloneNode(!0))}renewScrollPosition(){t(this,T).scrollElement.scroll({top:0,left:0,behavior:"instant"})}saveState(e){r(this,Z,e)}clearState(){const e=t(this,Z);return r(this,Z,null),e}}T=new WeakMap,X=new WeakMap,k=new WeakMap,x=new WeakMap,Y=new WeakMap,z=new WeakMap,Z=new WeakMap,j=new WeakMap,V=new WeakMap,ot=new WeakMap;var R,_,y,O,f,K,F,B,C,lt,N,$,tt,et,ht,it,m,Rt,ct,vt,Mt,Zt,Tt,xt,Nt,qt,St,st;const nt=class nt{constructor(e){l(this,m);l(this,R,null);l(this,_,null);l(this,y,[]);l(this,O);l(this,f,null);l(this,K);l(this,F,[]);l(this,B,!1);l(this,C,null);l(this,lt,!1);l(this,N,new Map);l(this,$,null);l(this,tt,0);l(this,et,0);l(this,ht);l(this,it);l(this,ct,e=>{var i;return((i=e.getAttribute("href"))==null?void 0:i.startsWith("/"))&&!e.hasAttribute("download")&&!e.hasAttribute("data-morph-skip")&&!e.closest("[data-morph-skip]")&&e.getAttribute("target")!=="_blank"});l(this,St,e=>W(this,null,function*(){e.preventDefault(),r(this,B,!0),yield this.navigate(location.href.replace(location.origin,""),{historyAction:"none",submorph:t(this,it)?void 0:t(this,ht),revalidate:t(this,it)}),r(this,B,!1)}));l(this,st,()=>{const{left:e,top:i}=this.scrollValue,s=i-t(this,et),h=e-t(this,tt);r(this,et,i),r(this,tt,e),document.documentElement.classList.toggle("scroll-y",i>0),document.documentElement.classList.toggle("scroll-x",e>0),document.documentElement.classList.toggle("scroll-y-forward",s>0),document.documentElement.classList.toggle("scroll-y-backward",s<0),document.documentElement.classList.toggle("scroll-x-forward",h>0),document.documentElement.classList.toggle("scroll-x-backward",h<0),M.dispatchEvent(document,"morphScroll",{detail:{left:e,top:i}})});if(Jt.isBrowser&&!nt.instance){nt.instance=this,r(this,R,{base:at.normalizeBase(e==null?void 0:e.base),waitForHeadToLoad:(e==null?void 0:e.waitForHeadToLoad)!==!1,trailingSlash:(e==null?void 0:e.trailingSlash)||!1,scrollSelector:e==null?void 0:e.scrollSelector,morphInsideScrollContainer:(e==null?void 0:e.morphInsideScrollContainer)||!1}),r(this,_,p(this,m,Mt).call(this,document.body));const i=this.normalizePath(location.pathname+location.search+location.hash);r(this,f,i);const s=new Gt(this,t(this,f).pathname);s.setInitialDocument(document),t(this,N).set(t(this,f).pathname,s),document.documentElement.setAttribute("data-current-pathname",t(this,f).pathname),document.documentElement.setAttribute("data-current-leaf",i.leaf),this.findLinks(),history.scrollRestoration="manual",addEventListener("popstate",t(this,St)),at.changeHistory({action:"replace",pathname:i.pathname,searchParameters:i.parameters,hash:i.hash}),r(this,$,new Qt),p(this,m,Nt).call(this,document)}}get currentURL(){return t(this,f)}get previousURL(){return t(this,K)}get links(){return t(this,y)}get scrollElement(){return t(this,C)}get isPopstateNavigation(){return t(this,B)}get scrollValue(){let e=0,i=0;return t(this,lt)?(e=window.scrollY,i=window.scrollX):(e=t(this,C).scrollTop,i=t(this,C).scrollLeft),{top:e,left:i}}saveState(e){const i=t(this,N).get(t(this,f).path);i&&i.saveState(e)}getState(){const e=t(this,N).get(t(this,f).path);return e==null?void 0:e.clearState()}normalizePath(e){return at.splitPath(e,{base:t(this,R).base,trailingSlash:t(this,R).trailingSlash})}prefetch(e,i){return W(this,null,function*(){var h;if(t(this,F).length)return;e=((h=this.pathnameModifier)==null?void 0:h.call(this,e))||e;const s=p(this,m,vt).call(this,e);s==null||s.fetch(e,t(this,f).path,i)})}excludeHeadChild(e){return!1}setHeaders(e){}navigate(ut){return W(this,arguments,function*(e,{historyAction:i="push",centerScroll:s,offsetScroll:h,scrollBehaviour:v,revalidate:g,keepSearchParameters:L,submorph:d,submorphAppend:E,clearState:bt,keepScrollPosition:Lt}={}){var q,Ut,Dt,It;if(t(this,F).length)return;r(this,ht,d),r(this,it,g);const dt=((q=this.pathnameModifier)==null?void 0:q.call(this,e))||e,c=this.normalizePath(dt);if(t(this,y).forEach(G=>{G.checkCurrent(c.path)}),!g&&(((Ut=t(this,O))==null?void 0:Ut.pathname)===c.pathname||t(this,f).pathname===c.pathname)){p(this,m,qt).call(this,c.hash||0,{centerScroll:s,offsetScroll:h,behavior:"smooth"}),M.dispatchEvent(document,"morphSamePath",{custom:!0}),((Dt=t(this,f))==null?void 0:Dt.parameters)!==c.parameters&&(r(this,K,t(this,f)),r(this,f,c),at.changeHistory({action:((It=t(this,f))==null?void 0:It.hash)!==c.hash?"replace":i,pathname:c.pathname,searchParameters:c.parameters,hash:c.hash}),M.dispatchEvent(document,"morphURLParametersChange",{detail:{newURL:t(this,f),previousURL:t(this,K)}}));return}r(this,O,c);try{let G=!0;if(this.preprocessor)try{yield new Promise((n,w)=>{var A;(A=this.preprocessor)==null||A.call(this,{url:c,resolve:n,reject:w,submorph:d})})}catch(n){n?console.error(n):console.log("Route change canceled"),G=!1}if(!G||t(this,O).pathname!==c.pathname){t(this,y).forEach(n=>{n.checkCurrent(t(this,f).path)});return}const zt={url:c,submorph:d};d?E||d.forEach(n=>{document.querySelectorAll(n).forEach(w=>{w.classList.add("out"),w.setAttribute("data-morph-out","")})}):t(this,_).forEach(n=>{var w,A;(w=n.firstElementChild)==null||w.classList.add("out"),(A=n.firstElementChild)==null||A.setAttribute("data-morph-out","")}),M.dispatchEvent(document,"morphNavigation",{detail:zt});const yt=p(this,m,vt).call(this,t(this,f).pathname),S=p(this,m,vt).call(this,c.pathname);if(t(this,N).forEach(n=>{n.pathname!==c.pathname&&n.abort()}),yield S==null?void 0:S.fetch(dt,t(this,f).path,g),t(this,O).pathname!==c.pathname){t(this,y).forEach(n=>{n.checkCurrent(t(this,f).path)});return}yt.clearState(),yt.saveScrollState(),yt.saveDocumentState(),(!t(this,B)||g)&&(S.clearScrollState(),S.clearDocumentState()),bt&&S.clearState(),S.cloneDocument(),t(this,$).textContent=S.title,document.body.appendChild(t(this,$));const mt=At(gt({},zt),{document:S.document});E||mt.document.querySelectorAll("[data-morph-out]").forEach(n=>{n.classList.remove("out")}),M.dispatchEvent(document,"morphStart",{detail:mt});const Vt=Array.from(document.head.children),Ot=Array.from(S.document.head.children),Ft=p(this,m,Zt).call(this,Vt,Ot),_t=p(this,m,Tt).call(this,Vt,Ft),ft=p(this,m,Tt).call(this,Ot,Ft).filter(n=>!this.excludeHeadChild(n));ft.forEach((n,w)=>{n.tagName==="SCRIPT"&&(ft[w]=p(this,m,Rt).call(this,n))}),ft.forEach(n=>{document.head.appendChild(n)});const wt=ft.filter(n=>{if(n.hasAttribute("data-no-waiting"))return!1;if(p(this,m,xt).call(this,n))return!0});t(this,R).waitForHeadToLoad&&wt.length&&(yield new Promise(n=>W(this,null,function*(){let w=0;try{for(var A=Kt(wt),ee,U,H;ee=!(U=yield A.next()).done;ee=!1){const pt=U.value;pt.onload=()=>{w++,w===wt.length&&n()}}}catch(U){H=[U]}finally{try{ee&&(U=A.return)&&(yield U.call(A))}finally{if(H)throw H[0]}}}))),yield $t.wait(10);const Bt=[];E||_t.forEach(n=>{n.hasAttribute("data-permanent")||(p(this,m,xt).call(this,n)?Bt.push(n):n.remove())});const te=p(this,m,Mt).call(this,S.document.body);!t(this,R).morphInsideScrollContainer&&!d&&p(this,m,Nt).call(this,S.document),document.documentElement.setAttribute("data-current-pathname",c.pathname),document.documentElement.setAttribute("data-current-leaf",c.leaf),at.changeHistory({action:i,pathname:c.pathname,searchParameters:c.parameters||(L?location.search:""),hash:c.hash}),t(this,$).remove(),r(this,K,t(this,f)),r(this,f,c);const kt=[];t(this,_).forEach((n,w)=>{const A=te[w],ee=getComputedStyle(n).getPropertyValue("--morph-duration");let U=[],H=[];d?(d.forEach(u=>{const b=n.querySelector(u),D=A.querySelector(u);b&&D&&(H.push(b),U.push(D))}),H.forEach(u=>{u.parentElement&&kt.push(u.parentElement)})):(U.push(...A.childNodes),H.push(...n.childNodes),kt.push(n)),E||H.forEach(u=>{u instanceof HTMLElement&&(this.destroyOldLinks(u),u.classList.add("old"))}),U.forEach(u=>{u instanceof HTMLElement&&(this.findNewLinks(u),u.classList.add("new"))}),d?E?U.forEach((u,b)=>{H[b]instanceof HTMLElement&&H[b].append(...u.childNodes)}):U.forEach((u,b)=>{var D;(D=H[b].parentElement)==null||D.insertBefore(u,H[b])}):n.prepend(...U),le.requestIdleCallback(()=>{E||H.forEach(u=>{u instanceof HTMLElement&&u.classList.add("old-idle")}),U.forEach(u=>{var b;u instanceof HTMLElement&&((b=u.parentElement)==null||b.style.setProperty("--new-content-height",u.offsetHeight+"px"),u.classList.add("new-idle"))})});const pt=At(gt({},mt),{morphElement:n});M.dispatchEvent(document,"morphNewChildrenAdded",{detail:pt});const ie=new Promise(u=>{setTimeout(()=>{E||H.forEach(b=>b.remove()),U.forEach(b=>{var D;b instanceof HTMLElement&&((D=b.parentElement)==null||D.style.removeProperty("--new-content-height"),b.classList.remove("new-idle","new"))}),E||M.dispatchEvent(document,"morphOldChildrenRemoved",{detail:pt}),u()},(parseFloat(ee)||0)*1e3+10)});t(this,F).push(ie)}),this.isPopstateNavigation?document.documentElement.style.setProperty("--new-document-scroll-position",(this.scrollValue.top-S.scrollState.y)*1+"px"):document.documentElement.style.setProperty("--new-document-scroll-position",this.scrollValue.top+"px"),M.dispatchEvent(document,"morphBeforeNavigationScroll",{detail:S.scrollState}),c.hash?(S.clearScrollState(),p(this,m,qt).call(this,c.hash,{centerScroll:s,offsetScroll:h,behavior:v})):t(this,B)?S.restoreScrollPosition():Lt||S.renewScrollPosition(),yield Promise.all(t(this,F)),E||Bt.forEach(n=>n.remove()),r(this,F,[]),kt.forEach(n=>{n.querySelectorAll("script").forEach(A=>{A.replaceWith(p(this,m,Rt).call(this,A))})}),t(this,y).forEach(n=>{n.checkCurrent(t(this,f).path)}),M.dispatchEvent(document,"morphComplete",{detail:mt}),document.documentElement.style.removeProperty("--new-document-scroll-position"),window.dispatchEvent(new Event("resize"))}catch(G){console.error(G)}r(this,O,void 0)})}addLink(e){t(this,y).push(new Ct(e,this))}addLinks(e){e.forEach(i=>{this.addLink(i)})}removeLink(e){r(this,y,t(this,y).filter(i=>i.element===e?(i.destroy(),!1):!0))}destroyOldLinks(e){r(this,y,t(this,y).filter(i=>e.contains(i.element)?(i.destroy(),!1):!0))}findNewLinks(e){const i=[...e.querySelectorAll("a")].filter(t(this,ct));t(this,y).push(...i.map(s=>new Ct(s,this)))}findLinks(){const e=[...document.documentElement.querySelectorAll("a")].filter(t(this,ct));t(this,y).forEach(i=>i.destroy()),r(this,y,e.map(i=>new Ct(i,this)))}};R=new WeakMap,_=new WeakMap,y=new WeakMap,O=new WeakMap,f=new WeakMap,K=new WeakMap,F=new WeakMap,B=new WeakMap,C=new WeakMap,lt=new WeakMap,N=new WeakMap,$=new WeakMap,tt=new WeakMap,et=new WeakMap,ht=new WeakMap,it=new WeakMap,m=new WeakSet,Rt=function(e){const i=document.createElement("script");for(let s=0;s<e.attributes.length;s++){const h=e.attributes[s];i.setAttribute(h.name,h.value)}return e.hasAttribute("src")||(i.innerHTML=e.innerHTML),i},ct=new WeakMap,vt=function(e){const i=this.normalizePath(e);let s=t(this,N).get(i.pathname);return s||(s=new Gt(this,i.pathname),t(this,N).set(i.pathname,s)),s},Mt=function(e){const i=[...e.querySelectorAll("[data-morph]")];return i.length?i:[e]},Zt=function(e,i){return e.filter(s=>i.find(h=>h.outerHTML===s.outerHTML))},Tt=function(e,i){return e.filter(s=>!i.find(h=>h.outerHTML===s.outerHTML))},xt=function(e){return e.tagName==="SCRIPT"||e.tagName==="STYLE"||e.tagName==="LINK"&&e.getAttribute("rel")==="stylesheet"},Nt=function(e){var i,s;(i=t(this,C))==null||i.removeEventListener("scroll",t(this,st)),r(this,et,0),r(this,tt,0),r(this,C,t(this,R).scrollSelector&&e.querySelector(t(this,R).scrollSelector)||window),r(this,lt,t(this,C)===window),(s=t(this,C))==null||s.addEventListener("scroll",t(this,st)),t(this,st).call(this)},qt=function(e,i){const s=typeof e=="string"?document.getElementById(e):e;(typeof s=="number"||s)&&$t.scrollToElement(s,{scrollElement:t(this,C),behavior:(i==null?void 0:i.behavior)||"instant",center:i==null?void 0:i.centerScroll,offset:i==null?void 0:i.offsetScroll})},St=new WeakMap,st=new WeakMap,nt.instance=null;let Ht=nt;exports.Morph=Ht;
|
|
1
|
+
"use strict";var ae=Object.defineProperty,ne=Object.defineProperties;var re=Object.getOwnPropertyDescriptors;var Xt=Object.getOwnPropertySymbols;var oe=Object.prototype.hasOwnProperty,le=Object.prototype.propertyIsEnumerable;var Yt=(o,e)=>(e=Symbol[o])?e:Symbol.for("Symbol."+o),Kt=o=>{throw TypeError(o)};var jt=(o,e,i)=>e in o?ae(o,e,{enumerable:!0,configurable:!0,writable:!0,value:i}):o[e]=i,St=(o,e)=>{for(var i in e||(e={}))oe.call(e,i)&&jt(o,i,e[i]);if(Xt)for(var i of Xt(e))le.call(e,i)&&jt(o,i,e[i]);return o},Pt=(o,e)=>ne(o,re(e));var Ct=(o,e,i)=>e.has(o)||Kt("Cannot "+i);var t=(o,e,i)=>(Ct(o,e,"read from private field"),i?i.call(o):e.get(o)),l=(o,e,i)=>e.has(o)?Kt("Cannot add the same private member more than once"):e instanceof WeakSet?e.add(o):e.set(o,i),r=(o,e,i,s)=>(Ct(o,e,"write to private field"),s?s.call(o,i):e.set(o,i),i),p=(o,e,i)=>(Ct(o,e,"access private method"),i);var W=(o,e,i)=>new Promise((s,h)=>{var v=d=>{try{L(i.next(d))}catch(E){h(E)}},g=d=>{try{L(i.throw(d))}catch(E){h(E)}},L=d=>d.done?s(d.value):Promise.resolve(d.value).then(v,g);L((i=i.apply(o,e)).next())});var $t=(o,e,i)=>(e=o[Yt("asyncIterator")])?e.call(o):(o=o[Yt("iterator")](),e={},i=(s,h)=>(h=o[s])&&(e[s]=v=>new Promise((g,L,d)=>(v=h.call(o,v),d=v.done,Promise.resolve(v.value).then(E=>g({value:E,done:d}),L)))),i("next"),i("return"),e);Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const Qt=require("../index-DekP7OZe.cjs"),M=require("../events-KVanG9sR.cjs"),Gt=require("../scroll-CIdNtj3G.cjs");require("construct-style-sheets-polyfill");const nt=require("../url-DGcX4fGV.cjs"),he=require("../css-value-parser/index.cjs");class Zt extends HTMLElement{connectedCallback(){const e={"aria-live":"assertive","aria-atomic":"true",style:"position: absolute; left: 0; top: 0; clip: rect(0 0 0 0); clip-path: inset(50%); overflow: hidden; white-space: nowrap; width: 1px; height: 1px"};for(const[i,s]of Object.entries(e))this.setAttribute(i,s)}}Qt.isBrowser&&!customElements.get("morph-announcer")&&customElements.define("morph-announcer",Zt);var P,a,I,J,bt,ot,Q;class Ht{constructor(e,i){l(this,J);l(this,P);l(this,a);l(this,I);l(this,ot,e=>{var s;if(e.preventDefault(),document.documentElement.classList.contains("click-disabled"))return;if(t(this,a).hasAttribute("data-back")&&t(this,P).previousURL)history.back();else{r(this,I,t(this,a).getAttribute("href")||"/");const h=t(this,a).getAttribute("data-history-action")||"push",v=t(this,a).hasAttribute("data-center-scroll"),g=getComputedStyle(t(this,a)).getPropertyValue("--offset-scroll").trim(),L=g?he.cssValueParser.parse(g):void 0,d=t(this,a).hasAttribute("data-revalidate")||t(this,a).hasAttribute("data-pagination-more-link")||t(this,a).hasAttribute("data-pagination-set-link"),E=t(this,a).hasAttribute("data-keep-search-parameters"),mt=t(this,a).hasAttribute("data-keep-scroll-position")||t(this,a).hasAttribute("data-pagination-more-link");console.log(mt);const at=t(this,a).getAttribute("data-scroll-behaviour"),ft=p(this,J,bt).call(this,t(this,a).getAttribute("data-pagination-set-link")||t(this,a).getAttribute("data-pagination-more-link"));ft&&(t(this,a).hasAttribute("data-pagination-set-link")?t(this,P).links.forEach(U=>{U.updatePagination(parseInt(t(this,a).getAttribute("data-value")||"1"),ft.selector)}):t(this,a).hasAttribute("data-pagination-more-link")&&t(this,P).links.forEach(U=>{U.updatePagination(ft.currentPage+1,ft.selector)}));const pt=((s=t(this,a).getAttribute("data-submorph"))==null?void 0:s.split(",").map(U=>U.trim()))||t(this,a).hasAttribute("data-pagination-more-link")&&[t(this,a).getAttribute("data-pagination-more-link")]||t(this,a).hasAttribute("data-pagination-set-link")&&[t(this,a).getAttribute("data-pagination-set-link")]||void 0,c=t(this,a).hasAttribute("data-clear-state");t(this,P).navigate(t(this,I),{historyAction:h,centerScroll:v,offsetScroll:L,revalidate:d,keepSearchParameters:E,submorph:pt,clearState:c,keepScrollPosition:mt,scrollBehaviour:at,submorphAppend:t(this,a).hasAttribute("data-pagination-more-link")})}});l(this,Q,()=>{const e=t(this,a).hasAttribute("data-revalidate");t(this,P).prefetch(t(this,I),e),t(this,a).removeEventListener("pointerenter",t(this,Q))});r(this,P,i),r(this,a,e),t(this,a).addEventListener("click",t(this,ot)),r(this,I,t(this,a).getAttribute("href")||"/"),this.checkCurrent(location.href.replace(location.origin,""));const s=p(this,J,bt).call(this,t(this,a).getAttribute("data-pagination-set-link")||t(this,a).getAttribute("data-pagination-more-link"));s&&this.updatePagination(s.currentPage,s.selector),t(this,a).hasAttribute("data-prefetch")&&t(this,a).addEventListener("pointerenter",t(this,Q))}get element(){return t(this,a)}checkCurrent(e){var h;const i=t(this,P).normalizePath(e),s=t(this,P).normalizePath(t(this,I));t(this,a).hasAttribute("data-include")&&i.pathname.includes(s.pathname)?t(this,a).classList.add("current"):s.pathname===i.pathname?t(this,a).classList.add("current"):(h=t(this,a).getAttribute("data-associated-paths"))!=null&&h.split(",").find(v=>i.pathname.includes(v))?t(this,a).classList.add("current"):t(this,a).classList.remove("current"),i.path===s.path?t(this,a).classList.add("exact"):t(this,a).classList.remove("exact")}updatePagination(e,i){const s=p(this,J,bt).call(this,i);if(s)if(s.element.setAttribute("data-current-page",e.toString()),t(this,a).hasAttribute("data-pagination-more-link"))if(e<s.totalPages){t(this,a).style.display="";const h=t(this,a).querySelector("[data-pagination-more-link-counter]");h&&(h.textContent=(s.totalPages-e).toString());const v=t(this,a).getAttribute("href"),g=new URL(v,window.location.origin);g.searchParams.set("page",(e+1).toString());const L=g.href.replace(g.origin,"").toString();t(this,a).setAttribute("href",L),this.checkCurrent(L)}else t(this,a).style.display="none";else t(this,a).hasAttribute("data-pagination-set-link")&&(t(this,a).getAttribute("data-value")===e.toString()?t(this,a).classList.add("pagination-current"):t(this,a).classList.remove("pagination-current"))}destroy(){t(this,a).removeEventListener("click",t(this,ot)),t(this,a).removeEventListener("pointerenter",t(this,Q)),t(this,a).classList.remove("current","exact","pagination-current")}}P=new WeakMap,a=new WeakMap,I=new WeakMap,J=new WeakSet,bt=function(e){if(!e)return;const i=document.querySelector(e);if(i){const s=parseInt(i.getAttribute("data-current-page")||"1"),h=parseInt(i.getAttribute("data-total-pages")||"1");return{element:i,currentPage:s,totalPages:h,selector:e}}},ot=new WeakMap,Q=new WeakMap;const ce=new DOMParser;var T,X,A,x,Y,z,Z,j,V,lt;class Jt{constructor(e,i){l(this,T);l(this,X);l(this,A,{x:0,y:0});l(this,x,null);l(this,Y,null);l(this,z,null);l(this,Z,null);l(this,j,null);l(this,V,null);l(this,lt);r(this,T,e),r(this,X,i)}get pathname(){return t(this,X)}get scrollState(){return t(this,A)}get document(){return t(this,z)}setHeaders(e){r(this,lt,e)}setInitialDocument(e){r(this,x,e.cloneNode(!0))}abort(){var e;return(e=t(this,j))==null?void 0:e.abort(`[${t(this,X)}] page loading cancelled`)}fetch(e,i,s){return W(this,null,function*(){var h;if(!s){const L=((h=t(this,x))==null?void 0:h.documentElement.getAttribute("data-cache"))&&i!==e,d=t(this,x)&&t(this,T).isPopstateNavigation;if(t(this,V)||L||d)return t(this,V)}return r(this,V,new Promise(v=>W(this,null,function*(){try{r(this,j,new AbortController);const L=yield(yield fetch(e,{signal:t(this,j).signal,headers:St({"X-MORPH":"true","X-MORPH-CURRENT-PATH":encodeURIComponent(i),"X-MORPH-NEW-PATH":encodeURIComponent(e)},t(this,lt))})).text(),d=ce.parseFromString(L,"text/html");this.setInitialDocument(d)}catch(g){console.warn(g)}finally{r(this,j,null),r(this,V,null),v()}}))),t(this,V)})}cloneDocument(){r(this,z,(t(this,Y)||t(this,x)).cloneNode(!0))}get title(){let e="";if(t(this,z).title)e=t(this,z).title;else{const i=t(this,z).querySelector("h1");e=(i==null?void 0:i.innerText)||(i==null?void 0:i.textContent)||t(this,X)}return e}clearScrollState(){t(this,A).x=0,t(this,A).y=0}clearDocumentState(){r(this,Y,null)}saveScrollState(){t(this,x).documentElement.hasAttribute("data-no-scroll-restoration")?(t(this,A).x=0,t(this,A).y=0):(t(this,A).x=t(this,T).scrollValue.left,t(this,A).y=t(this,T).scrollValue.top)}restoreScrollPosition(){t(this,T).scrollElement.scroll({top:t(this,A).y,left:t(this,A).x,behavior:"instant"})}saveDocumentState(){t(this,x).documentElement.hasAttribute("data-no-page-restoration")?r(this,Y,null):r(this,Y,document.cloneNode(!0))}renewScrollPosition(){t(this,T).scrollElement.scroll({top:0,left:0,behavior:"instant"})}saveState(e){r(this,Z,e)}clearState(){const e=t(this,Z);return r(this,Z,null),e}}T=new WeakMap,X=new WeakMap,A=new WeakMap,x=new WeakMap,Y=new WeakMap,z=new WeakMap,Z=new WeakMap,j=new WeakMap,V=new WeakMap,lt=new WeakMap;var R,_,y,O,f,K,F,B,C,ht,N,$,tt,et,ct,it,ut,m,Mt,dt,Lt,Tt,_t,xt,Nt,Ut,qt,yt,st;const rt=class rt{constructor(e){l(this,m);l(this,R,null);l(this,_,null);l(this,y,[]);l(this,O);l(this,f,null);l(this,K);l(this,F,[]);l(this,B,!1);l(this,C,null);l(this,ht,!1);l(this,N,new Map);l(this,$,null);l(this,tt,0);l(this,et,0);l(this,ct);l(this,it);l(this,ut);l(this,dt,e=>{var i;return((i=e.getAttribute("href"))==null?void 0:i.startsWith("/"))&&!e.hasAttribute("download")&&!e.hasAttribute("data-morph-skip")&&!e.closest("[data-morph-skip]")&&e.getAttribute("target")!=="_blank"});l(this,yt,e=>W(this,null,function*(){e.preventDefault(),r(this,B,!0),yield this.navigate(location.href.replace(location.origin,""),{historyAction:"none",submorph:t(this,it)?void 0:t(this,ct),revalidate:t(this,it),keepScrollPosition:t(this,ut)}),r(this,B,!1)}));l(this,st,()=>{const{left:e,top:i}=this.scrollValue,s=i-t(this,et),h=e-t(this,tt);r(this,et,i),r(this,tt,e),document.documentElement.classList.toggle("scroll-y",i>0),document.documentElement.classList.toggle("scroll-x",e>0),document.documentElement.classList.toggle("scroll-y-forward",s>0),document.documentElement.classList.toggle("scroll-y-backward",s<0),document.documentElement.classList.toggle("scroll-x-forward",h>0),document.documentElement.classList.toggle("scroll-x-backward",h<0),M.dispatchEvent(document,"morphScroll",{detail:{left:e,top:i}})});if(Qt.isBrowser&&!rt.instance){rt.instance=this,r(this,R,{base:nt.normalizeBase(e==null?void 0:e.base),waitForHeadToLoad:(e==null?void 0:e.waitForHeadToLoad)!==!1,trailingSlash:(e==null?void 0:e.trailingSlash)||!1,scrollSelector:e==null?void 0:e.scrollSelector,morphInsideScrollContainer:(e==null?void 0:e.morphInsideScrollContainer)||!1}),r(this,_,p(this,m,Tt).call(this,document.body));const i=this.normalizePath(location.pathname+location.search+location.hash);r(this,f,i);const s=new Jt(this,t(this,f).pathname);s.setInitialDocument(document),t(this,N).set(t(this,f).pathname,s),document.documentElement.setAttribute("data-current-pathname",t(this,f).pathname),document.documentElement.setAttribute("data-current-leaf",i.leaf),this.findLinks(),history.scrollRestoration="manual",addEventListener("popstate",t(this,yt)),nt.changeHistory({action:"replace",pathname:i.pathname,searchParameters:i.parameters,hash:i.hash}),r(this,$,new Zt),p(this,m,Ut).call(this,document)}}get currentURL(){return t(this,f)}get previousURL(){return t(this,K)}get links(){return t(this,y)}get scrollElement(){return t(this,C)}get isPopstateNavigation(){return t(this,B)}get scrollValue(){let e=0,i=0;return t(this,ht)?(e=window.scrollY,i=window.scrollX):(e=t(this,C).scrollTop,i=t(this,C).scrollLeft),{top:e,left:i}}saveState(e){const i=t(this,N).get(t(this,f).path);i&&i.saveState(e)}getState(){const e=t(this,N).get(t(this,f).path);return e==null?void 0:e.clearState()}normalizePath(e){return nt.splitPath(e,{base:t(this,R).base,trailingSlash:t(this,R).trailingSlash})}prefetch(e,i){return W(this,null,function*(){var h;if(t(this,F).length)return;e=((h=this.pathnameModifier)==null?void 0:h.call(this,e))||e;const s=p(this,m,Lt).call(this,e);s==null||s.fetch(e,t(this,f).path,i)})}excludeHeadChild(e){return!1}setHeaders(e){}navigate(ft){return W(this,arguments,function*(e,{historyAction:i="push",centerScroll:s,offsetScroll:h,scrollBehaviour:v,revalidate:g,keepSearchParameters:L,submorph:d,submorphAppend:E,clearState:mt,keepScrollPosition:at}={}){var U,Dt,It,zt;if(t(this,F).length)return;r(this,ct,d),r(this,it,g),r(this,ut,at);const pt=((U=this.pathnameModifier)==null?void 0:U.call(this,e))||e,c=this.normalizePath(pt);if(t(this,y).forEach(G=>{G.checkCurrent(c.path)}),!g&&(((Dt=t(this,O))==null?void 0:Dt.pathname)===c.pathname||t(this,f).pathname===c.pathname)){at||p(this,m,qt).call(this,c.hash||0,{centerScroll:s,offsetScroll:h,behavior:"smooth"}),M.dispatchEvent(document,"morphSamePath",{custom:!0}),((It=t(this,f))==null?void 0:It.parameters)!==c.parameters&&(r(this,K,t(this,f)),r(this,f,c),nt.changeHistory({action:((zt=t(this,f))==null?void 0:zt.hash)!==c.hash?"replace":i,pathname:c.pathname,searchParameters:c.parameters,hash:c.hash}),M.dispatchEvent(document,"morphURLParametersChange",{detail:{newURL:t(this,f),previousURL:t(this,K)}}));return}r(this,O,c);try{let G=!0;if(this.preprocessor)try{yield new Promise((n,w)=>{var k;(k=this.preprocessor)==null||k.call(this,{url:c,resolve:n,reject:w,submorph:d})})}catch(n){n?console.error(n):console.log("Route change canceled"),G=!1}if(!G||t(this,O).pathname!==c.pathname){t(this,y).forEach(n=>{n.checkCurrent(t(this,f).path)});return}const Vt={url:c,submorph:d};d?E||d.forEach(n=>{document.querySelectorAll(n).forEach(w=>{w.classList.add("out"),w.setAttribute("data-morph-out","")})}):t(this,_).forEach(n=>{var w,k;(w=n.firstElementChild)==null||w.classList.add("out"),(k=n.firstElementChild)==null||k.setAttribute("data-morph-out","")}),M.dispatchEvent(document,"morphNavigation",{detail:Vt});const wt=p(this,m,Lt).call(this,t(this,f).pathname),S=p(this,m,Lt).call(this,c.pathname);if(t(this,N).forEach(n=>{n.pathname!==c.pathname&&n.abort()}),yield S==null?void 0:S.fetch(pt,t(this,f).path,g),t(this,O).pathname!==c.pathname){t(this,y).forEach(n=>{n.checkCurrent(t(this,f).path)});return}wt.clearState(),wt.saveScrollState(),wt.saveDocumentState(),(!t(this,B)||g)&&(S.clearScrollState(),S.clearDocumentState()),mt&&S.clearState(),S.cloneDocument(),t(this,$).textContent=S.title,document.body.appendChild(t(this,$));const gt=Pt(St({},Vt),{document:S.document});E||gt.document.querySelectorAll("[data-morph-out]").forEach(n=>{n.classList.remove("out")}),M.dispatchEvent(document,"morphStart",{detail:gt});const Ot=Array.from(document.head.children),Ft=Array.from(S.document.head.children),Bt=p(this,m,_t).call(this,Ot,Ft),te=p(this,m,xt).call(this,Ot,Bt),Et=p(this,m,xt).call(this,Ft,Bt).filter(n=>!this.excludeHeadChild(n));Et.forEach((n,w)=>{n.tagName==="SCRIPT"&&(Et[w]=p(this,m,Mt).call(this,n))}),Et.forEach(n=>{document.head.appendChild(n)});const At=Et.filter(n=>{if(n.hasAttribute("data-no-waiting"))return!1;if(p(this,m,Nt).call(this,n))return!0});t(this,R).waitForHeadToLoad&&At.length&&(yield new Promise(n=>W(this,null,function*(){let w=0;try{for(var k=$t(At),ie,q,H;ie=!(q=yield k.next()).done;ie=!1){const vt=q.value;vt.onload=()=>{w++,w===At.length&&n()}}}catch(q){H=[q]}finally{try{ie&&(q=k.return)&&(yield q.call(k))}finally{if(H)throw H[0]}}}))),yield Gt.wait(10);const Wt=[];E||te.forEach(n=>{n.hasAttribute("data-permanent")||(p(this,m,Nt).call(this,n)?Wt.push(n):n.remove())});const ee=p(this,m,Tt).call(this,S.document.body);!t(this,R).morphInsideScrollContainer&&!d&&p(this,m,Ut).call(this,S.document),document.documentElement.setAttribute("data-current-pathname",c.pathname),document.documentElement.setAttribute("data-current-leaf",c.leaf),nt.changeHistory({action:i,pathname:c.pathname,searchParameters:c.parameters||(L?location.search:""),hash:c.hash}),t(this,$).remove(),r(this,K,t(this,f)),r(this,f,c);const kt=[];t(this,_).forEach((n,w)=>{const k=ee[w],ie=getComputedStyle(n).getPropertyValue("--morph-duration");let q=[],H=[];d?(d.forEach(u=>{const b=n.querySelector(u),D=k.querySelector(u);b&&D&&(H.push(b),q.push(D))}),H.forEach(u=>{u.parentElement&&kt.push(u.parentElement)})):(q.push(...k.childNodes),H.push(...n.childNodes),kt.push(n)),E||H.forEach(u=>{u instanceof HTMLElement&&(this.destroyOldLinks(u),u.classList.add("old"))}),q.forEach(u=>{u instanceof HTMLElement&&(this.findNewLinks(u),u.classList.add("new"))}),d?E?q.forEach((u,b)=>{H[b]instanceof HTMLElement&&H[b].append(...u.childNodes)}):q.forEach((u,b)=>{var D;(D=H[b].parentElement)==null||D.insertBefore(u,H[b])}):n.prepend(...q),setTimeout(()=>{E||H.forEach(u=>{u instanceof HTMLElement&&u.classList.add("old-idle")}),q.forEach(u=>{var b;u instanceof HTMLElement&&((b=u.parentElement)==null||b.style.setProperty("--new-content-height",u.offsetHeight+"px"),u.classList.add("new-idle"))})},0);const vt=Pt(St({},gt),{morphElement:n});M.dispatchEvent(document,"morphNewChildrenAdded",{detail:vt});const se=new Promise(u=>{setTimeout(()=>{E||H.forEach(b=>b.remove()),q.forEach(b=>{var D;b instanceof HTMLElement&&((D=b.parentElement)==null||D.style.removeProperty("--new-content-height"),b.classList.remove("new-idle","new"))}),E||M.dispatchEvent(document,"morphOldChildrenRemoved",{detail:vt}),u()},(parseFloat(ie)||0)*1e3+10)});t(this,F).push(se)}),this.isPopstateNavigation?document.documentElement.style.setProperty("--new-document-scroll-position",(this.scrollValue.top-S.scrollState.y)*1+"px"):document.documentElement.style.setProperty("--new-document-scroll-position",this.scrollValue.top+"px"),M.dispatchEvent(document,"morphBeforeNavigationScroll",{detail:S.scrollState}),c.hash?(S.clearScrollState(),p(this,m,qt).call(this,c.hash,{centerScroll:s,offsetScroll:h,behavior:v})):t(this,B)?S.restoreScrollPosition():at||S.renewScrollPosition(),yield Promise.all(t(this,F)),E||Wt.forEach(n=>n.remove()),r(this,F,[]),kt.forEach(n=>{n.querySelectorAll("script").forEach(k=>{k.replaceWith(p(this,m,Mt).call(this,k))})}),t(this,y).forEach(n=>{n.checkCurrent(t(this,f).path)}),M.dispatchEvent(document,"morphComplete",{detail:gt}),document.documentElement.style.removeProperty("--new-document-scroll-position"),window.dispatchEvent(new Event("resize"))}catch(G){console.error(G)}r(this,O,void 0)})}addLink(e){t(this,y).push(new Ht(e,this))}addLinks(e){e.forEach(i=>{this.addLink(i)})}removeLink(e){r(this,y,t(this,y).filter(i=>i.element===e?(i.destroy(),!1):!0))}destroyOldLinks(e){r(this,y,t(this,y).filter(i=>e.contains(i.element)?(i.destroy(),!1):!0))}findNewLinks(e){const i=[...e.querySelectorAll("a")].filter(t(this,dt));t(this,y).push(...i.map(s=>new Ht(s,this)))}findLinks(){const e=[...document.documentElement.querySelectorAll("a")].filter(t(this,dt));t(this,y).forEach(i=>i.destroy()),r(this,y,e.map(i=>new Ht(i,this)))}};R=new WeakMap,_=new WeakMap,y=new WeakMap,O=new WeakMap,f=new WeakMap,K=new WeakMap,F=new WeakMap,B=new WeakMap,C=new WeakMap,ht=new WeakMap,N=new WeakMap,$=new WeakMap,tt=new WeakMap,et=new WeakMap,ct=new WeakMap,it=new WeakMap,ut=new WeakMap,m=new WeakSet,Mt=function(e){const i=document.createElement("script");for(let s=0;s<e.attributes.length;s++){const h=e.attributes[s];i.setAttribute(h.name,h.value)}return e.hasAttribute("src")||(i.innerHTML=e.innerHTML),i},dt=new WeakMap,Lt=function(e){const i=this.normalizePath(e);let s=t(this,N).get(i.pathname);return s||(s=new Jt(this,i.pathname),t(this,N).set(i.pathname,s)),s},Tt=function(e){const i=[...e.querySelectorAll("[data-morph]")];return i.length?i:[e]},_t=function(e,i){return e.filter(s=>i.find(h=>h.outerHTML===s.outerHTML))},xt=function(e,i){return e.filter(s=>!i.find(h=>h.outerHTML===s.outerHTML))},Nt=function(e){return e.tagName==="SCRIPT"||e.tagName==="STYLE"||e.tagName==="LINK"&&e.getAttribute("rel")==="stylesheet"},Ut=function(e){var i,s;(i=t(this,C))==null||i.removeEventListener("scroll",t(this,st)),r(this,et,0),r(this,tt,0),r(this,C,t(this,R).scrollSelector&&e.querySelector(t(this,R).scrollSelector)||window),r(this,ht,t(this,C)===window),(s=t(this,C))==null||s.addEventListener("scroll",t(this,st)),t(this,st).call(this)},qt=function(e,i){const s=typeof e=="string"?document.getElementById(e):e;(typeof s=="number"||s)&&Gt.scrollToElement(s,{scrollElement:t(this,C),behavior:(i==null?void 0:i.behavior)||"instant",center:i==null?void 0:i.centerScroll,offset:i==null?void 0:i.offsetScroll})},yt=new WeakMap,st=new WeakMap,rt.instance=null;let Rt=rt;exports.Morph=Rt;
|
package/lib/morph/index.js
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
var
|
|
2
|
-
var
|
|
3
|
-
var
|
|
4
|
-
var
|
|
5
|
-
var
|
|
1
|
+
var se = Object.defineProperty, ae = Object.defineProperties;
|
|
2
|
+
var ne = Object.getOwnPropertyDescriptors;
|
|
3
|
+
var Wt = Object.getOwnPropertySymbols;
|
|
4
|
+
var re = Object.prototype.hasOwnProperty, oe = Object.prototype.propertyIsEnumerable;
|
|
5
|
+
var Xt = (o, e) => (e = Symbol[o]) ? e : Symbol.for("Symbol." + o), Kt = (o) => {
|
|
6
6
|
throw TypeError(o);
|
|
7
7
|
};
|
|
8
|
-
var
|
|
8
|
+
var Yt = (o, e, i) => e in o ? se(o, e, { enumerable: !0, configurable: !0, writable: !0, value: i }) : o[e] = i, St = (o, e) => {
|
|
9
9
|
for (var i in e || (e = {}))
|
|
10
|
-
|
|
11
|
-
if (
|
|
12
|
-
for (var i of
|
|
13
|
-
|
|
10
|
+
re.call(e, i) && Yt(o, i, e[i]);
|
|
11
|
+
if (Wt)
|
|
12
|
+
for (var i of Wt(e))
|
|
13
|
+
oe.call(e, i) && Yt(o, i, e[i]);
|
|
14
14
|
return o;
|
|
15
|
-
}, kt = (o, e) =>
|
|
16
|
-
var
|
|
17
|
-
var t = (o, e, i) => (
|
|
15
|
+
}, kt = (o, e) => ae(o, ne(e));
|
|
16
|
+
var Pt = (o, e, i) => e.has(o) || Kt("Cannot " + i);
|
|
17
|
+
var t = (o, e, i) => (Pt(o, e, "read from private field"), i ? i.call(o) : e.get(o)), l = (o, e, i) => e.has(o) ? Kt("Cannot add the same private member more than once") : e instanceof WeakSet ? e.add(o) : e.set(o, i), r = (o, e, i, s) => (Pt(o, e, "write to private field"), s ? s.call(o, i) : e.set(o, i), i), p = (o, e, i) => (Pt(o, e, "access private method"), i);
|
|
18
18
|
var W = (o, e, i) => new Promise((s, h) => {
|
|
19
19
|
var S = (d) => {
|
|
20
20
|
try {
|
|
@@ -31,15 +31,14 @@ var W = (o, e, i) => new Promise((s, h) => {
|
|
|
31
31
|
}, b = (d) => d.done ? s(d.value) : Promise.resolve(d.value).then(S, g);
|
|
32
32
|
b((i = i.apply(o, e)).next());
|
|
33
33
|
});
|
|
34
|
-
var jt = (o, e, i) => (e = o[
|
|
35
|
-
import { i as
|
|
36
|
-
import { d as
|
|
37
|
-
import { r as oe } from "../polyfills-DJrTJQky.js";
|
|
34
|
+
var jt = (o, e, i) => (e = o[Xt("asyncIterator")]) ? e.call(o) : (o = o[Xt("iterator")](), e = {}, i = (s, h) => (h = o[s]) && (e[s] = (S) => new Promise((g, b, d) => (S = h.call(o, S), d = S.done, Promise.resolve(S.value).then((E) => g({ value: E, done: d }), b)))), i("next"), i("return"), e);
|
|
35
|
+
import { i as Jt } from "../index-Bv9zgfdb.js";
|
|
36
|
+
import { d as T } from "../events-CsVF98U6.js";
|
|
38
37
|
import { w as le, s as he } from "../scroll-DPkCFTxg.js";
|
|
39
38
|
import "construct-style-sheets-polyfill";
|
|
40
|
-
import { n as ce, c as
|
|
39
|
+
import { n as ce, c as Ct, s as ue } from "../url-CFnGU6md.js";
|
|
41
40
|
import { cssValueParser as de } from "../css-value-parser/index.js";
|
|
42
|
-
class
|
|
41
|
+
class Qt extends HTMLElement {
|
|
43
42
|
connectedCallback() {
|
|
44
43
|
const e = {
|
|
45
44
|
"aria-live": "assertive",
|
|
@@ -50,15 +49,15 @@ class Jt extends HTMLElement {
|
|
|
50
49
|
this.setAttribute(i, s);
|
|
51
50
|
}
|
|
52
51
|
}
|
|
53
|
-
|
|
54
|
-
var P, a, q, J,
|
|
55
|
-
class
|
|
52
|
+
Jt && !customElements.get("morph-announcer") && customElements.define("morph-announcer", Qt);
|
|
53
|
+
var P, a, q, J, vt, rt, Q;
|
|
54
|
+
class Ht {
|
|
56
55
|
constructor(e, i) {
|
|
57
56
|
l(this, J);
|
|
58
57
|
l(this, P);
|
|
59
58
|
l(this, a);
|
|
60
59
|
l(this, q);
|
|
61
|
-
l(this,
|
|
60
|
+
l(this, rt, (e) => {
|
|
62
61
|
var s;
|
|
63
62
|
if (e.preventDefault(), document.documentElement.classList.contains("click-disabled"))
|
|
64
63
|
return;
|
|
@@ -70,21 +69,23 @@ class Ct {
|
|
|
70
69
|
"data-history-action"
|
|
71
70
|
) || "push", S = t(this, a).hasAttribute("data-center-scroll"), g = getComputedStyle(t(this, a)).getPropertyValue("--offset-scroll").trim(), b = g ? de.parse(g) : void 0, d = t(this, a).hasAttribute("data-revalidate") || t(this, a).hasAttribute("data-pagination-more-link") || t(this, a).hasAttribute("data-pagination-set-link"), E = t(this, a).hasAttribute(
|
|
72
71
|
"data-keep-search-parameters"
|
|
73
|
-
),
|
|
72
|
+
), dt = t(this, a).hasAttribute("data-keep-scroll-position") || t(this, a).hasAttribute("data-pagination-more-link");
|
|
73
|
+
console.log(dt);
|
|
74
|
+
const at = t(this, a).getAttribute(
|
|
74
75
|
"data-scroll-behaviour"
|
|
75
|
-
),
|
|
76
|
-
|
|
76
|
+
), mt = p(this, J, vt).call(this, t(this, a).getAttribute("data-pagination-set-link") || t(this, a).getAttribute("data-pagination-more-link"));
|
|
77
|
+
mt && (t(this, a).hasAttribute("data-pagination-set-link") ? t(this, P).links.forEach((U) => {
|
|
77
78
|
U.updatePagination(
|
|
78
79
|
parseInt(t(this, a).getAttribute("data-value") || "1"),
|
|
79
|
-
|
|
80
|
+
mt.selector
|
|
80
81
|
);
|
|
81
82
|
}) : t(this, a).hasAttribute("data-pagination-more-link") && t(this, P).links.forEach((U) => {
|
|
82
83
|
U.updatePagination(
|
|
83
|
-
|
|
84
|
-
|
|
84
|
+
mt.currentPage + 1,
|
|
85
|
+
mt.selector
|
|
85
86
|
);
|
|
86
87
|
}));
|
|
87
|
-
const
|
|
88
|
+
const ft = ((s = t(this, a).getAttribute("data-submorph")) == null ? void 0 : s.split(",").map((U) => U.trim())) || t(this, a).hasAttribute("data-pagination-more-link") && [
|
|
88
89
|
t(this, a).getAttribute("data-pagination-more-link")
|
|
89
90
|
] || t(this, a).hasAttribute("data-pagination-set-link") && [
|
|
90
91
|
t(this, a).getAttribute("data-pagination-set-link")
|
|
@@ -95,10 +96,10 @@ class Ct {
|
|
|
95
96
|
offsetScroll: b,
|
|
96
97
|
revalidate: d,
|
|
97
98
|
keepSearchParameters: E,
|
|
98
|
-
submorph:
|
|
99
|
+
submorph: ft,
|
|
99
100
|
clearState: c,
|
|
100
|
-
keepScrollPosition:
|
|
101
|
-
scrollBehaviour:
|
|
101
|
+
keepScrollPosition: dt,
|
|
102
|
+
scrollBehaviour: at,
|
|
102
103
|
submorphAppend: t(this, a).hasAttribute("data-pagination-more-link")
|
|
103
104
|
});
|
|
104
105
|
}
|
|
@@ -107,8 +108,8 @@ class Ct {
|
|
|
107
108
|
const e = t(this, a).hasAttribute("data-revalidate");
|
|
108
109
|
t(this, P).prefetch(t(this, q), e), t(this, a).removeEventListener("pointerenter", t(this, Q));
|
|
109
110
|
});
|
|
110
|
-
r(this, P, i), r(this, a, e), t(this, a).addEventListener("click", t(this,
|
|
111
|
-
const s = p(this, J,
|
|
111
|
+
r(this, P, i), r(this, a, e), t(this, a).addEventListener("click", t(this, rt)), r(this, q, t(this, a).getAttribute("href") || "/"), this.checkCurrent(location.href.replace(location.origin, ""));
|
|
112
|
+
const s = p(this, J, vt).call(this, t(this, a).getAttribute("data-pagination-set-link") || t(this, a).getAttribute("data-pagination-more-link"));
|
|
112
113
|
s && this.updatePagination(
|
|
113
114
|
s.currentPage,
|
|
114
115
|
s.selector
|
|
@@ -123,7 +124,7 @@ class Ct {
|
|
|
123
124
|
t(this, a).hasAttribute("data-include") && i.pathname.includes(s.pathname) ? t(this, a).classList.add("current") : s.pathname === i.pathname ? t(this, a).classList.add("current") : (h = t(this, a).getAttribute("data-associated-paths")) != null && h.split(",").find((S) => i.pathname.includes(S)) ? t(this, a).classList.add("current") : t(this, a).classList.remove("current"), i.path === s.path ? t(this, a).classList.add("exact") : t(this, a).classList.remove("exact");
|
|
124
125
|
}
|
|
125
126
|
updatePagination(e, i) {
|
|
126
|
-
const s = p(this, J,
|
|
127
|
+
const s = p(this, J, vt).call(this, i);
|
|
127
128
|
if (s)
|
|
128
129
|
if (s.element.setAttribute(
|
|
129
130
|
"data-current-page",
|
|
@@ -144,10 +145,10 @@ class Ct {
|
|
|
144
145
|
else t(this, a).hasAttribute("data-pagination-set-link") && (t(this, a).getAttribute("data-value") === e.toString() ? t(this, a).classList.add("pagination-current") : t(this, a).classList.remove("pagination-current"));
|
|
145
146
|
}
|
|
146
147
|
destroy() {
|
|
147
|
-
t(this, a).removeEventListener("click", t(this,
|
|
148
|
+
t(this, a).removeEventListener("click", t(this, rt)), t(this, a).removeEventListener("pointerenter", t(this, Q)), t(this, a).classList.remove("current", "exact", "pagination-current");
|
|
148
149
|
}
|
|
149
150
|
}
|
|
150
|
-
P = new WeakMap(), a = new WeakMap(), q = new WeakMap(), J = new WeakSet(),
|
|
151
|
+
P = new WeakMap(), a = new WeakMap(), q = new WeakMap(), J = new WeakSet(), vt = function(e) {
|
|
151
152
|
if (!e)
|
|
152
153
|
return;
|
|
153
154
|
const i = document.querySelector(e);
|
|
@@ -164,41 +165,41 @@ P = new WeakMap(), a = new WeakMap(), q = new WeakMap(), J = new WeakSet(), gt =
|
|
|
164
165
|
selector: e
|
|
165
166
|
};
|
|
166
167
|
}
|
|
167
|
-
},
|
|
168
|
+
}, rt = new WeakMap(), Q = new WeakMap();
|
|
168
169
|
const me = new DOMParser();
|
|
169
|
-
var
|
|
170
|
-
class
|
|
170
|
+
var M, X, A, x, Y, z, Z, K, V, ot;
|
|
171
|
+
class $t {
|
|
171
172
|
constructor(e, i) {
|
|
172
|
-
l(this,
|
|
173
|
+
l(this, M);
|
|
173
174
|
l(this, X);
|
|
174
|
-
l(this,
|
|
175
|
+
l(this, A, { x: 0, y: 0 });
|
|
175
176
|
l(this, x, null);
|
|
176
177
|
l(this, Y, null);
|
|
177
178
|
l(this, z, null);
|
|
178
179
|
l(this, Z, null);
|
|
179
|
-
l(this,
|
|
180
|
+
l(this, K, null);
|
|
180
181
|
l(this, V, null);
|
|
181
|
-
l(this,
|
|
182
|
-
r(this,
|
|
182
|
+
l(this, ot);
|
|
183
|
+
r(this, M, e), r(this, X, i);
|
|
183
184
|
}
|
|
184
185
|
get pathname() {
|
|
185
186
|
return t(this, X);
|
|
186
187
|
}
|
|
187
188
|
get scrollState() {
|
|
188
|
-
return t(this,
|
|
189
|
+
return t(this, A);
|
|
189
190
|
}
|
|
190
191
|
get document() {
|
|
191
192
|
return t(this, z);
|
|
192
193
|
}
|
|
193
194
|
setHeaders(e) {
|
|
194
|
-
r(this,
|
|
195
|
+
r(this, ot, e);
|
|
195
196
|
}
|
|
196
197
|
setInitialDocument(e) {
|
|
197
198
|
r(this, x, e.cloneNode(!0));
|
|
198
199
|
}
|
|
199
200
|
abort() {
|
|
200
201
|
var e;
|
|
201
|
-
return (e = t(this,
|
|
202
|
+
return (e = t(this, K)) == null ? void 0 : e.abort(
|
|
202
203
|
`[${t(this, X)}] page loading cancelled`
|
|
203
204
|
);
|
|
204
205
|
}
|
|
@@ -206,26 +207,26 @@ class Kt {
|
|
|
206
207
|
return W(this, null, function* () {
|
|
207
208
|
var h;
|
|
208
209
|
if (!s) {
|
|
209
|
-
const b = ((h = t(this, x)) == null ? void 0 : h.documentElement.getAttribute("data-cache")) && i !== e, d = t(this, x) && t(this,
|
|
210
|
+
const b = ((h = t(this, x)) == null ? void 0 : h.documentElement.getAttribute("data-cache")) && i !== e, d = t(this, x) && t(this, M).isPopstateNavigation;
|
|
210
211
|
if (t(this, V) || b || d)
|
|
211
212
|
return t(this, V);
|
|
212
213
|
}
|
|
213
214
|
return r(this, V, new Promise((S) => W(this, null, function* () {
|
|
214
215
|
try {
|
|
215
|
-
r(this,
|
|
216
|
+
r(this, K, new AbortController());
|
|
216
217
|
const b = yield (yield fetch(e, {
|
|
217
|
-
signal: t(this,
|
|
218
|
-
headers:
|
|
218
|
+
signal: t(this, K).signal,
|
|
219
|
+
headers: St({
|
|
219
220
|
"X-MORPH": "true",
|
|
220
221
|
"X-MORPH-CURRENT-PATH": encodeURIComponent(i),
|
|
221
222
|
"X-MORPH-NEW-PATH": encodeURIComponent(e)
|
|
222
|
-
}, t(this,
|
|
223
|
+
}, t(this, ot))
|
|
223
224
|
})).text(), d = me.parseFromString(b, "text/html");
|
|
224
225
|
this.setInitialDocument(d);
|
|
225
226
|
} catch (g) {
|
|
226
227
|
console.warn(g);
|
|
227
228
|
} finally {
|
|
228
|
-
r(this,
|
|
229
|
+
r(this, K, null), r(this, V, null), S();
|
|
229
230
|
}
|
|
230
231
|
}))), t(this, V);
|
|
231
232
|
});
|
|
@@ -244,7 +245,7 @@ class Kt {
|
|
|
244
245
|
return e;
|
|
245
246
|
}
|
|
246
247
|
clearScrollState() {
|
|
247
|
-
t(this,
|
|
248
|
+
t(this, A).x = 0, t(this, A).y = 0;
|
|
248
249
|
}
|
|
249
250
|
clearDocumentState() {
|
|
250
251
|
r(this, Y, null);
|
|
@@ -252,12 +253,12 @@ class Kt {
|
|
|
252
253
|
saveScrollState() {
|
|
253
254
|
t(this, x).documentElement.hasAttribute(
|
|
254
255
|
"data-no-scroll-restoration"
|
|
255
|
-
) ? (t(this,
|
|
256
|
+
) ? (t(this, A).x = 0, t(this, A).y = 0) : (t(this, A).x = t(this, M).scrollValue.left, t(this, A).y = t(this, M).scrollValue.top);
|
|
256
257
|
}
|
|
257
258
|
restoreScrollPosition() {
|
|
258
|
-
t(this,
|
|
259
|
-
top: t(this,
|
|
260
|
-
left: t(this,
|
|
259
|
+
t(this, M).scrollElement.scroll({
|
|
260
|
+
top: t(this, A).y,
|
|
261
|
+
left: t(this, A).x,
|
|
261
262
|
behavior: "instant"
|
|
262
263
|
});
|
|
263
264
|
}
|
|
@@ -267,7 +268,7 @@ class Kt {
|
|
|
267
268
|
) ? r(this, Y, null) : r(this, Y, document.cloneNode(!0));
|
|
268
269
|
}
|
|
269
270
|
renewScrollPosition() {
|
|
270
|
-
t(this,
|
|
271
|
+
t(this, M).scrollElement.scroll({
|
|
271
272
|
top: 0,
|
|
272
273
|
left: 0,
|
|
273
274
|
behavior: "instant"
|
|
@@ -281,9 +282,9 @@ class Kt {
|
|
|
281
282
|
return r(this, Z, null), e;
|
|
282
283
|
}
|
|
283
284
|
}
|
|
284
|
-
|
|
285
|
-
var R, _, y, F, f,
|
|
286
|
-
const
|
|
285
|
+
M = new WeakMap(), X = new WeakMap(), A = new WeakMap(), x = new WeakMap(), Y = new WeakMap(), z = new WeakMap(), Z = new WeakMap(), K = new WeakMap(), V = new WeakMap(), ot = new WeakMap();
|
|
286
|
+
var R, _, y, F, f, j, O, B, C, lt, N, $, tt, et, ht, it, ct, m, Rt, ut, Lt, Tt, Zt, Mt, xt, Nt, Ut, bt, st;
|
|
287
|
+
const nt = class nt {
|
|
287
288
|
constructor(e) {
|
|
288
289
|
l(this, m);
|
|
289
290
|
l(this, R, null);
|
|
@@ -291,26 +292,28 @@ const at = class at {
|
|
|
291
292
|
l(this, y, []);
|
|
292
293
|
l(this, F);
|
|
293
294
|
l(this, f, null);
|
|
294
|
-
l(this,
|
|
295
|
+
l(this, j);
|
|
295
296
|
l(this, O, []);
|
|
296
297
|
l(this, B, !1);
|
|
297
298
|
l(this, C, null);
|
|
298
|
-
l(this,
|
|
299
|
+
l(this, lt, !1);
|
|
299
300
|
l(this, N, /* @__PURE__ */ new Map());
|
|
300
301
|
l(this, $, null);
|
|
301
302
|
l(this, tt, 0);
|
|
302
303
|
l(this, et, 0);
|
|
303
|
-
l(this,
|
|
304
|
+
l(this, ht);
|
|
304
305
|
l(this, it);
|
|
305
|
-
l(this,
|
|
306
|
+
l(this, ct);
|
|
307
|
+
l(this, ut, (e) => {
|
|
306
308
|
var i;
|
|
307
309
|
return ((i = e.getAttribute("href")) == null ? void 0 : i.startsWith("/")) && !e.hasAttribute("download") && !e.hasAttribute("data-morph-skip") && !e.closest("[data-morph-skip]") && e.getAttribute("target") !== "_blank";
|
|
308
310
|
});
|
|
309
|
-
l(this,
|
|
311
|
+
l(this, bt, (e) => W(this, null, function* () {
|
|
310
312
|
e.preventDefault(), r(this, B, !0), yield this.navigate(location.href.replace(location.origin, ""), {
|
|
311
313
|
historyAction: "none",
|
|
312
|
-
submorph: t(this, it) ? void 0 : t(this,
|
|
313
|
-
revalidate: t(this, it)
|
|
314
|
+
submorph: t(this, it) ? void 0 : t(this, ht),
|
|
315
|
+
revalidate: t(this, it),
|
|
316
|
+
keepScrollPosition: t(this, ct)
|
|
314
317
|
}), r(this, B, !1);
|
|
315
318
|
}));
|
|
316
319
|
l(this, st, () => {
|
|
@@ -327,45 +330,45 @@ const at = class at {
|
|
|
327
330
|
), document.documentElement.classList.toggle(
|
|
328
331
|
"scroll-x-backward",
|
|
329
332
|
h < 0
|
|
330
|
-
),
|
|
333
|
+
), T(document, "morphScroll", {
|
|
331
334
|
detail: {
|
|
332
335
|
left: e,
|
|
333
336
|
top: i
|
|
334
337
|
}
|
|
335
338
|
});
|
|
336
339
|
});
|
|
337
|
-
if (
|
|
338
|
-
|
|
340
|
+
if (Jt && !nt.instance) {
|
|
341
|
+
nt.instance = this, r(this, R, {
|
|
339
342
|
base: ce(e == null ? void 0 : e.base),
|
|
340
343
|
waitForHeadToLoad: (e == null ? void 0 : e.waitForHeadToLoad) !== !1,
|
|
341
344
|
trailingSlash: (e == null ? void 0 : e.trailingSlash) || !1,
|
|
342
345
|
scrollSelector: e == null ? void 0 : e.scrollSelector,
|
|
343
346
|
morphInsideScrollContainer: (e == null ? void 0 : e.morphInsideScrollContainer) || !1
|
|
344
|
-
}), r(this, _, p(this, m,
|
|
347
|
+
}), r(this, _, p(this, m, Tt).call(this, document.body));
|
|
345
348
|
const i = this.normalizePath(
|
|
346
349
|
location.pathname + location.search + location.hash
|
|
347
350
|
);
|
|
348
351
|
r(this, f, i);
|
|
349
|
-
const s = new
|
|
352
|
+
const s = new $t(this, t(this, f).pathname);
|
|
350
353
|
s.setInitialDocument(document), t(this, N).set(t(this, f).pathname, s), document.documentElement.setAttribute(
|
|
351
354
|
"data-current-pathname",
|
|
352
355
|
t(this, f).pathname
|
|
353
356
|
), document.documentElement.setAttribute(
|
|
354
357
|
"data-current-leaf",
|
|
355
358
|
i.leaf
|
|
356
|
-
), this.findLinks(), history.scrollRestoration = "manual", addEventListener("popstate", t(this,
|
|
359
|
+
), this.findLinks(), history.scrollRestoration = "manual", addEventListener("popstate", t(this, bt)), Ct({
|
|
357
360
|
action: "replace",
|
|
358
361
|
pathname: i.pathname,
|
|
359
362
|
searchParameters: i.parameters,
|
|
360
363
|
hash: i.hash
|
|
361
|
-
}), r(this, $, new
|
|
364
|
+
}), r(this, $, new Qt()), p(this, m, Nt).call(this, document);
|
|
362
365
|
}
|
|
363
366
|
}
|
|
364
367
|
get currentURL() {
|
|
365
368
|
return t(this, f);
|
|
366
369
|
}
|
|
367
370
|
get previousURL() {
|
|
368
|
-
return t(this,
|
|
371
|
+
return t(this, j);
|
|
369
372
|
}
|
|
370
373
|
get links() {
|
|
371
374
|
return t(this, y);
|
|
@@ -378,7 +381,7 @@ const at = class at {
|
|
|
378
381
|
}
|
|
379
382
|
get scrollValue() {
|
|
380
383
|
let e = 0, i = 0;
|
|
381
|
-
return t(this,
|
|
384
|
+
return t(this, lt) ? (e = window.scrollY, i = window.scrollX) : (e = t(this, C).scrollTop, i = t(this, C).scrollLeft), { top: e, left: i };
|
|
382
385
|
}
|
|
383
386
|
saveState(e) {
|
|
384
387
|
const i = t(this, N).get(t(this, f).path);
|
|
@@ -400,7 +403,7 @@ const at = class at {
|
|
|
400
403
|
if (t(this, O).length)
|
|
401
404
|
return;
|
|
402
405
|
e = ((h = this.pathnameModifier) == null ? void 0 : h.call(this, e)) || e;
|
|
403
|
-
const s = p(this, m,
|
|
406
|
+
const s = p(this, m, Lt).call(this, e);
|
|
404
407
|
s == null || s.fetch(e, t(this, f).path, i);
|
|
405
408
|
});
|
|
406
409
|
}
|
|
@@ -409,7 +412,7 @@ const at = class at {
|
|
|
409
412
|
}
|
|
410
413
|
setHeaders(e) {
|
|
411
414
|
}
|
|
412
|
-
navigate(
|
|
415
|
+
navigate(mt) {
|
|
413
416
|
return W(this, arguments, function* (e, {
|
|
414
417
|
historyAction: i = "push",
|
|
415
418
|
centerScroll: s,
|
|
@@ -419,32 +422,32 @@ const at = class at {
|
|
|
419
422
|
keepSearchParameters: b,
|
|
420
423
|
submorph: d,
|
|
421
424
|
submorphAppend: E,
|
|
422
|
-
clearState:
|
|
423
|
-
keepScrollPosition:
|
|
425
|
+
clearState: dt,
|
|
426
|
+
keepScrollPosition: at
|
|
424
427
|
} = {}) {
|
|
425
|
-
var U,
|
|
428
|
+
var U, Dt, It, qt;
|
|
426
429
|
if (t(this, O).length)
|
|
427
430
|
return;
|
|
428
|
-
r(this,
|
|
429
|
-
const
|
|
431
|
+
r(this, ht, d), r(this, it, g), r(this, ct, at);
|
|
432
|
+
const ft = ((U = this.pathnameModifier) == null ? void 0 : U.call(this, e)) || e, c = this.normalizePath(ft);
|
|
430
433
|
if (t(this, y).forEach((G) => {
|
|
431
434
|
G.checkCurrent(c.path);
|
|
432
|
-
}), !g && (((
|
|
433
|
-
p(this, m,
|
|
435
|
+
}), !g && (((Dt = t(this, F)) == null ? void 0 : Dt.pathname) === c.pathname || t(this, f).pathname === c.pathname)) {
|
|
436
|
+
at || p(this, m, Ut).call(this, c.hash || 0, {
|
|
434
437
|
centerScroll: s,
|
|
435
438
|
offsetScroll: h,
|
|
436
439
|
behavior: "smooth"
|
|
437
|
-
}),
|
|
440
|
+
}), T(document, "morphSamePath", {
|
|
438
441
|
custom: !0
|
|
439
|
-
}), ((
|
|
440
|
-
action: ((
|
|
442
|
+
}), ((It = t(this, f)) == null ? void 0 : It.parameters) !== c.parameters && (r(this, j, t(this, f)), r(this, f, c), Ct({
|
|
443
|
+
action: ((qt = t(this, f)) == null ? void 0 : qt.hash) !== c.hash ? "replace" : i,
|
|
441
444
|
pathname: c.pathname,
|
|
442
445
|
searchParameters: c.parameters,
|
|
443
446
|
hash: c.hash
|
|
444
|
-
}),
|
|
447
|
+
}), T(document, "morphURLParametersChange", {
|
|
445
448
|
detail: {
|
|
446
449
|
newURL: t(this, f),
|
|
447
|
-
previousURL: t(this,
|
|
450
|
+
previousURL: t(this, j)
|
|
448
451
|
}
|
|
449
452
|
}));
|
|
450
453
|
return;
|
|
@@ -455,8 +458,8 @@ const at = class at {
|
|
|
455
458
|
if (this.preprocessor)
|
|
456
459
|
try {
|
|
457
460
|
yield new Promise((n, w) => {
|
|
458
|
-
var
|
|
459
|
-
(
|
|
461
|
+
var k;
|
|
462
|
+
(k = this.preprocessor) == null || k.call(this, {
|
|
460
463
|
url: c,
|
|
461
464
|
resolve: n,
|
|
462
465
|
reject: w,
|
|
@@ -472,7 +475,7 @@ const at = class at {
|
|
|
472
475
|
});
|
|
473
476
|
return;
|
|
474
477
|
}
|
|
475
|
-
const
|
|
478
|
+
const zt = {
|
|
476
479
|
url: c,
|
|
477
480
|
submorph: d
|
|
478
481
|
};
|
|
@@ -481,88 +484,88 @@ const at = class at {
|
|
|
481
484
|
w.classList.add("out"), w.setAttribute("data-morph-out", "");
|
|
482
485
|
});
|
|
483
486
|
}) : t(this, _).forEach((n) => {
|
|
484
|
-
var w,
|
|
485
|
-
(w = n.firstElementChild) == null || w.classList.add("out"), (
|
|
486
|
-
}),
|
|
487
|
-
detail:
|
|
487
|
+
var w, k;
|
|
488
|
+
(w = n.firstElementChild) == null || w.classList.add("out"), (k = n.firstElementChild) == null || k.setAttribute("data-morph-out", "");
|
|
489
|
+
}), T(document, "morphNavigation", {
|
|
490
|
+
detail: zt
|
|
488
491
|
});
|
|
489
|
-
const
|
|
492
|
+
const yt = p(this, m, Lt).call(this, t(this, f).pathname), v = p(this, m, Lt).call(this, c.pathname);
|
|
490
493
|
if (t(this, N).forEach((n) => {
|
|
491
494
|
n.pathname !== c.pathname && n.abort();
|
|
492
|
-
}), yield v == null ? void 0 : v.fetch(
|
|
495
|
+
}), yield v == null ? void 0 : v.fetch(ft, t(this, f).path, g), t(this, F).pathname !== c.pathname) {
|
|
493
496
|
t(this, y).forEach((n) => {
|
|
494
497
|
n.checkCurrent(t(this, f).path);
|
|
495
498
|
});
|
|
496
499
|
return;
|
|
497
500
|
}
|
|
498
|
-
|
|
499
|
-
const
|
|
501
|
+
yt.clearState(), yt.saveScrollState(), yt.saveDocumentState(), (!t(this, B) || g) && (v.clearScrollState(), v.clearDocumentState()), dt && v.clearState(), v.cloneDocument(), t(this, $).textContent = v.title, document.body.appendChild(t(this, $));
|
|
502
|
+
const pt = kt(St({}, zt), {
|
|
500
503
|
document: v.document
|
|
501
504
|
});
|
|
502
|
-
E ||
|
|
505
|
+
E || pt.document.querySelectorAll("[data-morph-out]").forEach((n) => {
|
|
503
506
|
n.classList.remove("out");
|
|
504
|
-
}),
|
|
505
|
-
detail:
|
|
507
|
+
}), T(document, "morphStart", {
|
|
508
|
+
detail: pt
|
|
506
509
|
});
|
|
507
|
-
const
|
|
508
|
-
|
|
509
|
-
n.tagName === "SCRIPT" && (
|
|
510
|
-
}),
|
|
510
|
+
const Vt = Array.from(document.head.children), Ft = Array.from(v.document.head.children), Ot = p(this, m, Zt).call(this, Vt, Ft), _t = p(this, m, Mt).call(this, Vt, Ot), gt = p(this, m, Mt).call(this, Ft, Ot).filter((n) => !this.excludeHeadChild(n));
|
|
511
|
+
gt.forEach((n, w) => {
|
|
512
|
+
n.tagName === "SCRIPT" && (gt[w] = p(this, m, Rt).call(this, n));
|
|
513
|
+
}), gt.forEach((n) => {
|
|
511
514
|
document.head.appendChild(n);
|
|
512
515
|
});
|
|
513
|
-
const
|
|
516
|
+
const wt = gt.filter((n) => {
|
|
514
517
|
if (n.hasAttribute("data-no-waiting"))
|
|
515
518
|
return !1;
|
|
516
|
-
if (p(this, m,
|
|
519
|
+
if (p(this, m, xt).call(this, n))
|
|
517
520
|
return !0;
|
|
518
521
|
});
|
|
519
|
-
t(this, R).waitForHeadToLoad &&
|
|
522
|
+
t(this, R).waitForHeadToLoad && wt.length && (yield new Promise((n) => W(this, null, function* () {
|
|
520
523
|
let w = 0;
|
|
521
524
|
try {
|
|
522
|
-
for (var
|
|
523
|
-
const
|
|
524
|
-
|
|
525
|
-
w++, w ===
|
|
525
|
+
for (var k = jt(wt), ee, D, H; ee = !(D = yield k.next()).done; ee = !1) {
|
|
526
|
+
const Et = D.value;
|
|
527
|
+
Et.onload = () => {
|
|
528
|
+
w++, w === wt.length && n();
|
|
526
529
|
};
|
|
527
530
|
}
|
|
528
531
|
} catch (D) {
|
|
529
532
|
H = [D];
|
|
530
533
|
} finally {
|
|
531
534
|
try {
|
|
532
|
-
|
|
535
|
+
ee && (D = k.return) && (yield D.call(k));
|
|
533
536
|
} finally {
|
|
534
537
|
if (H)
|
|
535
538
|
throw H[0];
|
|
536
539
|
}
|
|
537
540
|
}
|
|
538
541
|
}))), yield le(10);
|
|
539
|
-
const
|
|
540
|
-
E ||
|
|
541
|
-
n.hasAttribute("data-permanent") || (p(this, m,
|
|
542
|
+
const Bt = [];
|
|
543
|
+
E || _t.forEach((n) => {
|
|
544
|
+
n.hasAttribute("data-permanent") || (p(this, m, xt).call(this, n) ? Bt.push(n) : n.remove());
|
|
542
545
|
});
|
|
543
|
-
const
|
|
544
|
-
!t(this, R).morphInsideScrollContainer && !d && p(this, m,
|
|
546
|
+
const te = p(this, m, Tt).call(this, v.document.body);
|
|
547
|
+
!t(this, R).morphInsideScrollContainer && !d && p(this, m, Nt).call(this, v.document), document.documentElement.setAttribute(
|
|
545
548
|
"data-current-pathname",
|
|
546
549
|
c.pathname
|
|
547
550
|
), document.documentElement.setAttribute(
|
|
548
551
|
"data-current-leaf",
|
|
549
552
|
c.leaf
|
|
550
|
-
),
|
|
553
|
+
), Ct({
|
|
551
554
|
action: i,
|
|
552
555
|
pathname: c.pathname,
|
|
553
556
|
searchParameters: c.parameters || (b ? location.search : ""),
|
|
554
557
|
hash: c.hash
|
|
555
|
-
}), t(this, $).remove(), r(this,
|
|
556
|
-
const
|
|
558
|
+
}), t(this, $).remove(), r(this, j, t(this, f)), r(this, f, c);
|
|
559
|
+
const At = [];
|
|
557
560
|
t(this, _).forEach((n, w) => {
|
|
558
|
-
const
|
|
561
|
+
const k = te[w], ee = getComputedStyle(n).getPropertyValue("--morph-duration");
|
|
559
562
|
let D = [], H = [];
|
|
560
563
|
d ? (d.forEach((u) => {
|
|
561
|
-
const L = n.querySelector(u), I =
|
|
564
|
+
const L = n.querySelector(u), I = k.querySelector(u);
|
|
562
565
|
L && I && (H.push(L), D.push(I));
|
|
563
566
|
}), H.forEach((u) => {
|
|
564
|
-
u.parentElement &&
|
|
565
|
-
})) : (D.push(...
|
|
567
|
+
u.parentElement && At.push(u.parentElement);
|
|
568
|
+
})) : (D.push(...k.childNodes), H.push(...n.childNodes), At.push(n)), E || H.forEach((u) => {
|
|
566
569
|
u instanceof HTMLElement && (this.destroyOldLinks(u), u.classList.add("old"));
|
|
567
570
|
}), D.forEach((u) => {
|
|
568
571
|
u instanceof HTMLElement && (this.findNewLinks(u), u.classList.add("new"));
|
|
@@ -574,7 +577,7 @@ const at = class at {
|
|
|
574
577
|
u,
|
|
575
578
|
H[L]
|
|
576
579
|
);
|
|
577
|
-
}) : n.prepend(...D),
|
|
580
|
+
}) : n.prepend(...D), setTimeout(() => {
|
|
578
581
|
E || H.forEach((u) => {
|
|
579
582
|
u instanceof HTMLElement && u.classList.add("old-idle");
|
|
580
583
|
}), D.forEach((u) => {
|
|
@@ -584,46 +587,46 @@ const at = class at {
|
|
|
584
587
|
u.offsetHeight + "px"
|
|
585
588
|
), u.classList.add("new-idle"));
|
|
586
589
|
});
|
|
587
|
-
});
|
|
588
|
-
const
|
|
590
|
+
}, 0);
|
|
591
|
+
const Et = kt(St({}, pt), {
|
|
589
592
|
morphElement: n
|
|
590
593
|
});
|
|
591
|
-
|
|
592
|
-
detail:
|
|
594
|
+
T(document, "morphNewChildrenAdded", {
|
|
595
|
+
detail: Et
|
|
593
596
|
});
|
|
594
|
-
const
|
|
597
|
+
const ie = new Promise((u) => {
|
|
595
598
|
setTimeout(() => {
|
|
596
599
|
E || H.forEach((L) => L.remove()), D.forEach((L) => {
|
|
597
600
|
var I;
|
|
598
601
|
L instanceof HTMLElement && ((I = L.parentElement) == null || I.style.removeProperty(
|
|
599
602
|
"--new-content-height"
|
|
600
603
|
), L.classList.remove("new-idle", "new"));
|
|
601
|
-
}), E ||
|
|
602
|
-
detail:
|
|
604
|
+
}), E || T(document, "morphOldChildrenRemoved", {
|
|
605
|
+
detail: Et
|
|
603
606
|
}), u();
|
|
604
|
-
}, (parseFloat(
|
|
607
|
+
}, (parseFloat(ee) || 0) * 1e3 + 10);
|
|
605
608
|
});
|
|
606
|
-
t(this, O).push(
|
|
609
|
+
t(this, O).push(ie);
|
|
607
610
|
}), this.isPopstateNavigation ? document.documentElement.style.setProperty(
|
|
608
611
|
"--new-document-scroll-position",
|
|
609
612
|
(this.scrollValue.top - v.scrollState.y) * 1 + "px"
|
|
610
613
|
) : document.documentElement.style.setProperty(
|
|
611
614
|
"--new-document-scroll-position",
|
|
612
615
|
this.scrollValue.top + "px"
|
|
613
|
-
),
|
|
616
|
+
), T(document, "morphBeforeNavigationScroll", {
|
|
614
617
|
detail: v.scrollState
|
|
615
|
-
}), c.hash ? (v.clearScrollState(), p(this, m,
|
|
618
|
+
}), c.hash ? (v.clearScrollState(), p(this, m, Ut).call(this, c.hash, {
|
|
616
619
|
centerScroll: s,
|
|
617
620
|
offsetScroll: h,
|
|
618
621
|
behavior: S
|
|
619
|
-
})) : t(this, B) ? v.restoreScrollPosition() :
|
|
620
|
-
n.querySelectorAll("script").forEach((
|
|
621
|
-
|
|
622
|
+
})) : t(this, B) ? v.restoreScrollPosition() : at || v.renewScrollPosition(), yield Promise.all(t(this, O)), E || Bt.forEach((n) => n.remove()), r(this, O, []), At.forEach((n) => {
|
|
623
|
+
n.querySelectorAll("script").forEach((k) => {
|
|
624
|
+
k.replaceWith(p(this, m, Rt).call(this, k));
|
|
622
625
|
});
|
|
623
626
|
}), t(this, y).forEach((n) => {
|
|
624
627
|
n.checkCurrent(t(this, f).path);
|
|
625
|
-
}),
|
|
626
|
-
detail:
|
|
628
|
+
}), T(document, "morphComplete", {
|
|
629
|
+
detail: pt
|
|
627
630
|
}), document.documentElement.style.removeProperty(
|
|
628
631
|
"--new-document-scroll-position"
|
|
629
632
|
), window.dispatchEvent(new Event("resize"));
|
|
@@ -634,7 +637,7 @@ const at = class at {
|
|
|
634
637
|
});
|
|
635
638
|
}
|
|
636
639
|
addLink(e) {
|
|
637
|
-
t(this, y).push(new
|
|
640
|
+
t(this, y).push(new Ht(e, this));
|
|
638
641
|
}
|
|
639
642
|
addLinks(e) {
|
|
640
643
|
e.forEach((i) => {
|
|
@@ -649,34 +652,34 @@ const at = class at {
|
|
|
649
652
|
}
|
|
650
653
|
findNewLinks(e) {
|
|
651
654
|
const i = [...e.querySelectorAll("a")].filter(
|
|
652
|
-
t(this,
|
|
655
|
+
t(this, ut)
|
|
653
656
|
);
|
|
654
657
|
t(this, y).push(
|
|
655
|
-
...i.map((s) => new
|
|
658
|
+
...i.map((s) => new Ht(s, this))
|
|
656
659
|
);
|
|
657
660
|
}
|
|
658
661
|
findLinks() {
|
|
659
662
|
const e = [
|
|
660
663
|
...document.documentElement.querySelectorAll("a")
|
|
661
|
-
].filter(t(this,
|
|
662
|
-
t(this, y).forEach((i) => i.destroy()), r(this, y, e.map((i) => new
|
|
664
|
+
].filter(t(this, ut));
|
|
665
|
+
t(this, y).forEach((i) => i.destroy()), r(this, y, e.map((i) => new Ht(i, this)));
|
|
663
666
|
}
|
|
664
667
|
};
|
|
665
|
-
R = new WeakMap(), _ = new WeakMap(), y = new WeakMap(), F = new WeakMap(), f = new WeakMap(),
|
|
668
|
+
R = new WeakMap(), _ = new WeakMap(), y = new WeakMap(), F = new WeakMap(), f = new WeakMap(), j = new WeakMap(), O = new WeakMap(), B = new WeakMap(), C = new WeakMap(), lt = new WeakMap(), N = new WeakMap(), $ = new WeakMap(), tt = new WeakMap(), et = new WeakMap(), ht = new WeakMap(), it = new WeakMap(), ct = new WeakMap(), m = new WeakSet(), Rt = function(e) {
|
|
666
669
|
const i = document.createElement("script");
|
|
667
670
|
for (let s = 0; s < e.attributes.length; s++) {
|
|
668
671
|
const h = e.attributes[s];
|
|
669
672
|
i.setAttribute(h.name, h.value);
|
|
670
673
|
}
|
|
671
674
|
return e.hasAttribute("src") || (i.innerHTML = e.innerHTML), i;
|
|
672
|
-
},
|
|
675
|
+
}, ut = new WeakMap(), Lt = function(e) {
|
|
673
676
|
const i = this.normalizePath(e);
|
|
674
677
|
let s = t(this, N).get(i.pathname);
|
|
675
|
-
return s || (s = new
|
|
676
|
-
},
|
|
678
|
+
return s || (s = new $t(this, i.pathname), t(this, N).set(i.pathname, s)), s;
|
|
679
|
+
}, Tt = function(e) {
|
|
677
680
|
const i = [...e.querySelectorAll("[data-morph]")];
|
|
678
681
|
return i.length ? i : [e];
|
|
679
|
-
},
|
|
682
|
+
}, Zt = function(e, i) {
|
|
680
683
|
return e.filter(
|
|
681
684
|
(s) => i.find(
|
|
682
685
|
(h) => h.outerHTML === s.outerHTML
|
|
@@ -688,15 +691,15 @@ R = new WeakMap(), _ = new WeakMap(), y = new WeakMap(), F = new WeakMap(), f =
|
|
|
688
691
|
(h) => h.outerHTML === s.outerHTML
|
|
689
692
|
)
|
|
690
693
|
);
|
|
691
|
-
}, Tt = function(e) {
|
|
692
|
-
return e.tagName === "SCRIPT" || e.tagName === "STYLE" || e.tagName === "LINK" && e.getAttribute("rel") === "stylesheet";
|
|
693
694
|
}, xt = function(e) {
|
|
695
|
+
return e.tagName === "SCRIPT" || e.tagName === "STYLE" || e.tagName === "LINK" && e.getAttribute("rel") === "stylesheet";
|
|
696
|
+
}, Nt = function(e) {
|
|
694
697
|
var i, s;
|
|
695
698
|
(i = t(this, C)) == null || i.removeEventListener(
|
|
696
699
|
"scroll",
|
|
697
700
|
t(this, st)
|
|
698
|
-
), r(this, et, 0), r(this, tt, 0), r(this, C, t(this, R).scrollSelector && e.querySelector(t(this, R).scrollSelector) || window), r(this,
|
|
699
|
-
},
|
|
701
|
+
), r(this, et, 0), r(this, tt, 0), r(this, C, t(this, R).scrollSelector && e.querySelector(t(this, R).scrollSelector) || window), r(this, lt, t(this, C) === window), (s = t(this, C)) == null || s.addEventListener("scroll", t(this, st)), t(this, st).call(this);
|
|
702
|
+
}, Ut = function(e, i) {
|
|
700
703
|
const s = typeof e == "string" ? document.getElementById(e) : e;
|
|
701
704
|
(typeof s == "number" || s) && he(s, {
|
|
702
705
|
scrollElement: t(this, C),
|
|
@@ -704,8 +707,8 @@ R = new WeakMap(), _ = new WeakMap(), y = new WeakMap(), F = new WeakMap(), f =
|
|
|
704
707
|
center: i == null ? void 0 : i.centerScroll,
|
|
705
708
|
offset: i == null ? void 0 : i.offsetScroll
|
|
706
709
|
});
|
|
707
|
-
},
|
|
708
|
-
let
|
|
710
|
+
}, bt = new WeakMap(), st = new WeakMap(), nt.instance = null;
|
|
711
|
+
let Gt = nt;
|
|
709
712
|
export {
|
|
710
|
-
|
|
713
|
+
Gt as Morph
|
|
711
714
|
};
|