@jsenv/core 40.8.4 → 40.9.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/dist/build/browserslist_index/browserslist_index.js +43 -18
- package/dist/build/build.js +76 -28
- package/dist/build/jsenv_core_packages.js +31 -11
- package/dist/client/directory_listing/css/directory_listing.css +10 -3
- package/dist/client/directory_listing/js/directory_listing.js +42 -20
- package/dist/client/directory_listing/jsenv_core_node_modules.js +4 -4
- package/dist/js/drop_to_open.js +51 -0
- package/dist/js/import_meta_css.js +6 -1
- package/dist/start_dev_server/jsenv_core_packages.js +57 -41
- package/dist/start_dev_server/start_dev_server.js +78 -28
- package/package.json +21 -21
- package/src/dev/start_dev_server.js +2 -0
- package/src/kitchen/kitchen.js +5 -0
- package/src/plugins/drop_to_open/client/drop_to_open.js +49 -0
- package/src/plugins/drop_to_open/jsenv_plugin_drop_to_open.js +43 -0
- package/src/plugins/import_meta_css/client/import_meta_css.js +4 -1
- package/src/plugins/plugins.js +2 -0
- package/src/plugins/protocol_file/client/directory_listing.css +10 -3
- package/src/plugins/protocol_file/client/directory_listing.jsx +32 -15
- package/src/plugins/protocol_file/jsenv_plugin_directory_listing.js +1 -1
- package/src/plugins/protocol_file/jsenv_plugin_protocol_file.js +1 -1
- /package/src/{plugins/protocol_file → kitchen}/file_and_server_urls_converter.js +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { G, u, C, k } from "../jsenv_core_node_modules.js";
|
|
2
2
|
|
|
3
3
|
const directoryIconUrl = new URL("../other/dir.png", import.meta.url).href;
|
|
4
4
|
const fileIconUrl = new URL("../other/file.png", import.meta.url).href;
|
|
@@ -53,15 +53,17 @@ const ErrorMessage = () => {
|
|
|
53
53
|
errorText = u(k, {
|
|
54
54
|
children: [u("strong", {
|
|
55
55
|
children: "File not found:"
|
|
56
|
-
}), "\xA0", u(
|
|
57
|
-
children: [u("
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
56
|
+
}), "\xA0", u(Overflow, {
|
|
57
|
+
children: [u("code", {
|
|
58
|
+
children: [u("span", {
|
|
59
|
+
className: "file_path_good",
|
|
60
|
+
children: filePathExisting
|
|
61
|
+
}), u("span", {
|
|
62
|
+
className: "file_path_bad",
|
|
63
|
+
children: filePathNotFound
|
|
64
|
+
})]
|
|
65
|
+
}), " ", "does not exist on the server."]
|
|
66
|
+
})]
|
|
65
67
|
});
|
|
66
68
|
errorSuggestion = u(k, {
|
|
67
69
|
children: [u("span", {
|
|
@@ -84,6 +86,21 @@ const ErrorMessage = () => {
|
|
|
84
86
|
})]
|
|
85
87
|
});
|
|
86
88
|
};
|
|
89
|
+
const Overflow = ({
|
|
90
|
+
children,
|
|
91
|
+
afterContent
|
|
92
|
+
}) => {
|
|
93
|
+
return u("div", {
|
|
94
|
+
style: "display: flex; flex-wrap: wrap; overflow: hidden; width: 100%; box-sizing: border-box; white-space: nowrap; text-overflow: ellipsis;",
|
|
95
|
+
children: u("div", {
|
|
96
|
+
style: "display: flex; flex-grow: 1; width: 0;",
|
|
97
|
+
children: [u("div", {
|
|
98
|
+
style: "overflow: hidden; max-width: 100%; text-overflow: ellipsis;",
|
|
99
|
+
children: children
|
|
100
|
+
}), afterContent]
|
|
101
|
+
})
|
|
102
|
+
});
|
|
103
|
+
};
|
|
87
104
|
const Breadcrumb = ({
|
|
88
105
|
items
|
|
89
106
|
}) => {
|
|
@@ -163,7 +180,7 @@ const DirectoryContent = ({
|
|
|
163
180
|
url: directoryItem.urlRelativeToServer,
|
|
164
181
|
isDirectory: directoryItem.url.endsWith("/"),
|
|
165
182
|
isMainFile: directoryItem.isMainFile,
|
|
166
|
-
children: directoryItem.urlRelativeToCurrentDirectory
|
|
183
|
+
children: decodeURI(directoryItem.urlRelativeToCurrentDirectory)
|
|
167
184
|
}, directoryItem.url);
|
|
168
185
|
})
|
|
169
186
|
});
|
|
@@ -189,14 +206,19 @@ const DirectoryContentItem = ({
|
|
|
189
206
|
children: u(Icon, {
|
|
190
207
|
url: isMainFile ? homeIconUrl : isDirectory ? directoryIconUrl : fileIconUrl
|
|
191
208
|
})
|
|
192
|
-
}),
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
children: u(
|
|
198
|
-
|
|
199
|
-
|
|
209
|
+
}), u("span", {
|
|
210
|
+
className: "directory_content_item_text",
|
|
211
|
+
children: [u(Overflow, {
|
|
212
|
+
children: children
|
|
213
|
+
}), isDirectory ? u(k, {
|
|
214
|
+
children: [u("span", {
|
|
215
|
+
style: "flex:1"
|
|
216
|
+
}), u("span", {
|
|
217
|
+
className: "directory_content_item_arrow",
|
|
218
|
+
children: u(RightArrowSvg, {})
|
|
219
|
+
})]
|
|
220
|
+
}) : null]
|
|
221
|
+
})]
|
|
200
222
|
})
|
|
201
223
|
});
|
|
202
224
|
};
|
|
@@ -253,4 +275,4 @@ if (autoreload) {
|
|
|
253
275
|
}
|
|
254
276
|
};
|
|
255
277
|
}
|
|
256
|
-
|
|
278
|
+
G(u(DirectoryListing, {}), document.querySelector("#root"));
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
var n,l$1,u$2,i$1,r$1,o$1,e$1,f$2,c$1,s$1,a$1,p$1={},y$1=[],v$1=/acit|ex(?:s|g|n|p|$)|rph|grid|ows|mnc|ntw|ine[ch]|zoo|^ord|itera/i,w$1=Array.isArray;function d$1(n,l){for(var u in l)n[u]=l[u];return n}function g$1(n){n&&n.parentNode&&n.parentNode.removeChild(n);}function _$1(l,u,t){var i,r,o,e={};for(o in u)"key"==o?i=u[o]:"ref"==o?r=u[o]:e[o]=u[o];if(arguments.length>2&&(e.children=arguments.length>3?n.call(arguments,2):t),"function"==typeof l&&null!=l.defaultProps)for(o in l.defaultProps)null==e[o]&&(e[o]=l.defaultProps[o]);return m$1(l,e,i,r,null)}function m$1(n,t,i,r,o){var e={type:n,props:t,key:i,ref:r,__k:null,__:null,__b:0,__e:null,__c:null,constructor:void 0,__v:null==o?++u$2:o,__i:-1,__u:0};return null==o&&null!=l$1.vnode&&l$1.vnode(e),e}function k$1(n){return n.children}function x$1(n,l){this.props=n,this.context=l;}function S(n,l){if(null==l)return n.__?S(n.__,n.__i+1):null;for(var u;l<n.__k.length;l++)if(null!=(u=n.__k[l])&&null!=u.__e)return u.__e;return "function"==typeof n.type?S(n):null}function C$2(n){var l,u;if(null!=(n=n.__)&&null!=n.__c){for(n.__e=n.__c.base=null,l=0;l<n.__k.length;l++)if(null!=(u=n.__k[l])&&null!=u.__e){n.__e=n.__c.base=u.__e;break}return C$2(n)}}function M(n){(!n.__d&&(n.__d=true)&&i$1.push(n)&&!$.__r++||r$1!=l$1.debounceRendering)&&((r$1=l$1.debounceRendering)||o$1)($);}function $(){for(var n,u,t,r,o,f,c,s=1;i$1.length;)i$1.length>s&&i$1.sort(e$1),n=i$1.shift(),s=i$1.length,n.__d&&(t=void 0,o=(r=(u=n).__v).__e,f=[],c=[],u.__P&&((t=d$1({},r)).__v=r.__v+1,l$1.vnode&&l$1.vnode(t),O(u.__P,t,r,u.__n,u.__P.namespaceURI,32&r.__u?[o]:null,f,null==o?S(r):o,!!(32&r.__u),c),t.__v=r.__v,t.__.__k[t.__i]=t,z$1(f,t,c),t.__e!=o&&C$2(t)));$.__r=0;}function I(n,l,u,t,i,r,o,e,f,c,s){var a,h,v,w,d,g,_=t&&t.__k||y$1,m=l.length;for(f=P$1(u,l,_,f,m),a=0;a<m;a++)null!=(v=u.__k[a])&&(h=-1==v.__i?p$1:_[v.__i]||p$1,v.__i=a,g=O(n,v,h,i,r,o,e,f,c,s),w=v.__e,v.ref&&h.ref!=v.ref&&(h.ref&&q$1(h.ref,null,v),s.push(v.ref,v.__c||w,v)),null==d&&null!=w&&(d=w),4&v.__u||h.__k===v.__k?f=A(v,f,n):"function"==typeof v.type&&void 0!==g?f=g:w&&(f=w.nextSibling),v.__u&=-7);return u.__e=d,f}function P$1(n,l,u,t,i){var r,o,e,f,c,s=u.length,a=s,h=0;for(n.__k=new Array(i),r=0;r<i;r++)null!=(o=l[r])&&"boolean"!=typeof o&&"function"!=typeof o?(f=r+h,(o=n.__k[r]="string"==typeof o||"number"==typeof o||"bigint"==typeof o||o.constructor==String?m$1(null,o,null,null,null):w$1(o)?m$1(k$1,{children:o},null,null,null):null==o.constructor&&o.__b>0?m$1(o.type,o.props,o.key,o.ref?o.ref:null,o.__v):o).__=n,o.__b=n.__b+1,e=null,-1!=(c=o.__i=L(o,u,f,a))&&(a--,(e=u[c])&&(e.__u|=2)),null==e||null==e.__v?(-1==c&&(i>s?h--:i<s&&h++),"function"!=typeof o.type&&(o.__u|=4)):c!=f&&(c==f-1?h--:c==f+1?h++:(c>f?h--:h++,o.__u|=4))):n.__k[r]=null;if(a)for(r=0;r<s;r++)null!=(e=u[r])&&0==(2&e.__u)&&(e.__e==t&&(t=S(e)),B$2(e,e));return t}function A(n,l,u){var t,i;if("function"==typeof n.type){for(t=n.__k,i=0;t&&i<t.length;i++)t[i]&&(t[i].__=n,l=A(t[i],l,u));return l}n.__e!=l&&(l&&n.type&&!u.contains(l)&&(l=S(n)),u.insertBefore(n.__e,l||null),l=n.__e);do{l=l&&l.nextSibling;}while(null!=l&&8==l.nodeType);return l}function H$1(n,l){return l=l||[],null==n||"boolean"==typeof n||(w$1(n)?n.some(function(n){H$1(n,l);}):l.push(n)),l}function L(n,l,u,t){var i,r,o=n.key,e=n.type,f=l[u];if(null===f&&null==n.key||f&&o==f.key&&e==f.type&&0==(2&f.__u))return u;if(t>(null!=f&&0==(2&f.__u)?1:0))for(i=u-1,r=u+1;i>=0||r<l.length;){if(i>=0){if((f=l[i])&&0==(2&f.__u)&&o==f.key&&e==f.type)return i;i--;}if(r<l.length){if((f=l[r])&&0==(2&f.__u)&&o==f.key&&e==f.type)return r;r++;}}return -1}function T$1(n,l,u){"-"==l[0]?n.setProperty(l,null==u?"":u):n[l]=null==u?"":"number"!=typeof u||v$1.test(l)?u:u+"px";}function j$2(n,l,u,t,i){var r;n:if("style"==l)if("string"==typeof u)n.style.cssText=u;else {if("string"==typeof t&&(n.style.cssText=t=""),t)for(l in t)u&&l in u||T$1(n.style,l,"");if(u)for(l in u)t&&u[l]==t[l]||T$1(n.style,l,u[l]);}else if("o"==l[0]&&"n"==l[1])r=l!=(l=l.replace(f$2,"$1")),l=l.toLowerCase()in n||"onFocusOut"==l||"onFocusIn"==l?l.toLowerCase().slice(2):l.slice(2),n.l||(n.l={}),n.l[l+r]=u,u?t?u.u=t.u:(u.u=c$1,n.addEventListener(l,r?a$1:s$1,r)):n.removeEventListener(l,r?a$1:s$1,r);else {if("http://www.w3.org/2000/svg"==i)l=l.replace(/xlink(H|:h)/,"h").replace(/sName$/,"s");else if("width"!=l&&"height"!=l&&"href"!=l&&"list"!=l&&"form"!=l&&"tabIndex"!=l&&"download"!=l&&"rowSpan"!=l&&"colSpan"!=l&&"role"!=l&&"popover"!=l&&l in n)try{n[l]=null==u?"":u;break n}catch(n){}"function"==typeof u||(null==u||false===u&&"-"!=l[4]?n.removeAttribute(l):n.setAttribute(l,"popover"==l&&1==u?"":u));}}function F$1(n){return function(u){if(this.l){var t=this.l[u.type+n];if(null==u.t)u.t=c$1++;else if(u.t<t.u)return;return t(l$1.event?l$1.event(u):u)}}}function O(n,u,t,i,r,o,e,f,c,s){var a,h,p,y,v,_,m,b,S,C,M,$,P,A,H,L,T,j=u.type;if(null!=u.constructor)return null;128&t.__u&&(c=!!(32&t.__u),o=[f=u.__e=t.__e]),(a=l$1.__b)&&a(u);n:if("function"==typeof j)try{if(b=u.props,S="prototype"in j&&j.prototype.render,C=(a=j.contextType)&&i[a.__c],M=a?C?C.props.value:a.__:i,t.__c?m=(h=u.__c=t.__c).__=h.__E:(S?u.__c=h=new j(b,M):(u.__c=h=new x$1(b,M),h.constructor=j,h.render=D$1),C&&C.sub(h),h.props=b,h.state||(h.state={}),h.context=M,h.__n=i,p=h.__d=!0,h.__h=[],h._sb=[]),S&&null==h.__s&&(h.__s=h.state),S&&null!=j.getDerivedStateFromProps&&(h.__s==h.state&&(h.__s=d$1({},h.__s)),d$1(h.__s,j.getDerivedStateFromProps(b,h.__s))),y=h.props,v=h.state,h.__v=u,p)S&&null==j.getDerivedStateFromProps&&null!=h.componentWillMount&&h.componentWillMount(),S&&null!=h.componentDidMount&&h.__h.push(h.componentDidMount);else {if(S&&null==j.getDerivedStateFromProps&&b!==y&&null!=h.componentWillReceiveProps&&h.componentWillReceiveProps(b,M),!h.__e&&null!=h.shouldComponentUpdate&&!1===h.shouldComponentUpdate(b,h.__s,M)||u.__v==t.__v){for(u.__v!=t.__v&&(h.props=b,h.state=h.__s,h.__d=!1),u.__e=t.__e,u.__k=t.__k,u.__k.some(function(n){n&&(n.__=u);}),$=0;$<h._sb.length;$++)h.__h.push(h._sb[$]);h._sb=[],h.__h.length&&e.push(h);break n}null!=h.componentWillUpdate&&h.componentWillUpdate(b,h.__s,M),S&&null!=h.componentDidUpdate&&h.__h.push(function(){h.componentDidUpdate(y,v,_);});}if(h.context=M,h.props=b,h.__P=n,h.__e=!1,P=l$1.__r,A=0,S){for(h.state=h.__s,h.__d=!1,P&&P(u),a=h.render(h.props,h.state,h.context),H=0;H<h._sb.length;H++)h.__h.push(h._sb[H]);h._sb=[];}else do{h.__d=!1,P&&P(u),a=h.render(h.props,h.state,h.context),h.state=h.__s;}while(h.__d&&++A<25);h.state=h.__s,null!=h.getChildContext&&(i=d$1(d$1({},i),h.getChildContext())),S&&!p&&null!=h.getSnapshotBeforeUpdate&&(_=h.getSnapshotBeforeUpdate(y,v)),L=a,null!=a&&a.type===k$1&&null==a.key&&(L=N$1(a.props.children)),f=I(n,w$1(L)?L:[L],u,t,i,r,o,e,f,c,s),h.base=u.__e,u.__u&=-161,h.__h.length&&e.push(h),m&&(h.__E=h.__=null);}catch(n){if(u.__v=null,c||null!=o)if(n.then){for(u.__u|=c?160:128;f&&8==f.nodeType&&f.nextSibling;)f=f.nextSibling;o[o.indexOf(f)]=null,u.__e=f;}else for(T=o.length;T--;)g$1(o[T]);else u.__e=t.__e,u.__k=t.__k;l$1.__e(n,u,t);}else null==o&&u.__v==t.__v?(u.__k=t.__k,u.__e=t.__e):f=u.__e=V$1(t.__e,u,t,i,r,o,e,c,s);return (a=l$1.diffed)&&a(u),128&u.__u?void 0:f}function z$1(n,u,t){for(var i=0;i<t.length;i++)q$1(t[i],t[++i],t[++i]);l$1.__c&&l$1.__c(u,n),n.some(function(u){try{n=u.__h,u.__h=[],n.some(function(n){n.call(u);});}catch(n){l$1.__e(n,u.__v);}});}function N$1(n){return "object"!=typeof n||null==n||n.__b&&n.__b>0?n:w$1(n)?n.map(N$1):d$1({},n)}function V$1(u,t,i,r,o,e,f,c,s){var a,h,y,v,d,_,m,b=i.props,k=t.props,x=t.type;if("svg"==x?o="http://www.w3.org/2000/svg":"math"==x?o="http://www.w3.org/1998/Math/MathML":o||(o="http://www.w3.org/1999/xhtml"),null!=e)for(a=0;a<e.length;a++)if((d=e[a])&&"setAttribute"in d==!!x&&(x?d.localName==x:3==d.nodeType)){u=d,e[a]=null;break}if(null==u){if(null==x)return document.createTextNode(k);u=document.createElementNS(o,x,k.is&&k),c&&(l$1.__m&&l$1.__m(t,e),c=false),e=null;}if(null==x)b===k||c&&u.data==k||(u.data=k);else {if(e=e&&n.call(u.childNodes),b=i.props||p$1,!c&&null!=e)for(b={},a=0;a<u.attributes.length;a++)b[(d=u.attributes[a]).name]=d.value;for(a in b)if(d=b[a],"children"==a);else if("dangerouslySetInnerHTML"==a)y=d;else if(!(a in k)){if("value"==a&&"defaultValue"in k||"checked"==a&&"defaultChecked"in k)continue;j$2(u,a,null,d,o);}for(a in k)d=k[a],"children"==a?v=d:"dangerouslySetInnerHTML"==a?h=d:"value"==a?_=d:"checked"==a?m=d:c&&"function"!=typeof d||b[a]===d||j$2(u,a,d,b[a],o);if(h)c||y&&(h.__html==y.__html||h.__html==u.innerHTML)||(u.innerHTML=h.__html),t.__k=[];else if(y&&(u.innerHTML=""),I("template"==t.type?u.content:u,w$1(v)?v:[v],t,i,r,"foreignObject"==x?"http://www.w3.org/1999/xhtml":o,e,f,e?e[0]:i.__k&&S(i,0),c,s),null!=e)for(a=e.length;a--;)g$1(e[a]);c||(a="value","progress"==x&&null==_?u.removeAttribute("value"):null!=_&&(_!==u[a]||"progress"==x&&!_||"option"==x&&_!=b[a])&&j$2(u,a,_,b[a],o),a="checked",null!=m&&m!=u[a]&&j$2(u,a,m,b[a],o));}return u}function q$1(n,u,t){try{if("function"==typeof n){var i="function"==typeof n.__u;i&&n.__u(),i&&null==u||(n.__u=n(u));}else n.current=u;}catch(n){l$1.__e(n,t);}}function B$2(n,u,t){var i,r;if(l$1.unmount&&l$1.unmount(n),(i=n.ref)&&(i.current&&i.current!=n.__e||q$1(i,null,u)),null!=(i=n.__c)){if(i.componentWillUnmount)try{i.componentWillUnmount();}catch(n){l$1.__e(n,u);}i.base=i.__P=null;}if(i=n.__k)for(r=0;r<i.length;r++)i[r]&&B$2(i[r],u,t||"function"!=typeof n.type);t||g$1(n.__e),n.__c=n.__=n.__e=void 0;}function D$1(n,l,u){return this.constructor(n,u)}function E$1(u,t,i){var r,o,e,f;t==document&&(t=document.documentElement),l$1.__&&l$1.__(u,t),o=(r="function"=="undefined")?null:t.__k,e=[],f=[],O(t,u=(t).__k=_$1(k$1,null,[u]),o||p$1,p$1,t.namespaceURI,o?null:t.firstChild?n.call(t.childNodes):null,e,o?o.__e:t.firstChild,r,f),z$1(e,u,f);}n=y$1.slice,l$1={__e:function(n,l,u,t){for(var i,r,o;l=l.__;)if((i=l.__c)&&!i.__)try{if((r=i.constructor)&&null!=r.getDerivedStateFromError&&(i.setState(r.getDerivedStateFromError(n)),o=i.__d),null!=i.componentDidCatch&&(i.componentDidCatch(n,t||{}),o=i.__d),o)return i.__E=i}catch(l){n=l;}throw n}},u$2=0,x$1.prototype.setState=function(n,l){var u;u=null!=this.__s&&this.__s!=this.state?this.__s:this.__s=d$1({},this.state),"function"==typeof n&&(n=n(d$1({},u),this.props)),n&&d$1(u,n),null!=n&&this.__v&&(l&&this._sb.push(l),M(this));},x$1.prototype.forceUpdate=function(n){this.__v&&(this.__e=true,n&&this.__h.push(n),M(this));},x$1.prototype.render=k$1,i$1=[],o$1="function"==typeof Promise?Promise.prototype.then.bind(Promise.resolve()):setTimeout,e$1=function(n,l){return n.__v.__b-l.__v.__b},$.__r=0,f$2=/(PointerCapture)$|Capture$/i,c$1=0,s$1=F$1(false),a$1=F$1(true);
|
|
1
|
+
var n,l$1,u$2,i$1,r$1,o$1,e$1,f$2,c$1,s$1,a$1,p$1={},v$1=[],y$1=/acit|ex(?:s|g|n|p|$)|rph|grid|ows|mnc|ntw|ine[ch]|zoo|^ord|itera/i,w$1=Array.isArray;function d$1(n,l){for(var u in l)n[u]=l[u];return n}function g$1(n){n&&n.parentNode&&n.parentNode.removeChild(n);}function _$1(l,u,t){var i,r,o,e={};for(o in u)"key"==o?i=u[o]:"ref"==o?r=u[o]:e[o]=u[o];if(arguments.length>2&&(e.children=arguments.length>3?n.call(arguments,2):t),"function"==typeof l&&null!=l.defaultProps)for(o in l.defaultProps) void 0===e[o]&&(e[o]=l.defaultProps[o]);return m$1(l,e,i,r,null)}function m$1(n,t,i,r,o){var e={type:n,props:t,key:i,ref:r,__k:null,__:null,__b:0,__e:null,__c:null,constructor:void 0,__v:null==o?++u$2:o,__i:-1,__u:0};return null==o&&null!=l$1.vnode&&l$1.vnode(e),e}function k$1(n){return n.children}function x$1(n,l){this.props=n,this.context=l;}function S(n,l){if(null==l)return n.__?S(n.__,n.__i+1):null;for(var u;l<n.__k.length;l++)if(null!=(u=n.__k[l])&&null!=u.__e)return u.__e;return "function"==typeof n.type?S(n):null}function C$2(n){var l,u;if(null!=(n=n.__)&&null!=n.__c){for(n.__e=n.__c.base=null,l=0;l<n.__k.length;l++)if(null!=(u=n.__k[l])&&null!=u.__e){n.__e=n.__c.base=u.__e;break}return C$2(n)}}function M(n){(!n.__d&&(n.__d=true)&&i$1.push(n)&&!$.__r++||r$1!=l$1.debounceRendering)&&((r$1=l$1.debounceRendering)||o$1)($);}function $(){for(var n,u,t,r,o,f,c,s=1;i$1.length;)i$1.length>s&&i$1.sort(e$1),n=i$1.shift(),s=i$1.length,n.__d&&(t=void 0,o=(r=(u=n).__v).__e,f=[],c=[],u.__P&&((t=d$1({},r)).__v=r.__v+1,l$1.vnode&&l$1.vnode(t),O(u.__P,t,r,u.__n,u.__P.namespaceURI,32&r.__u?[o]:null,f,null==o?S(r):o,!!(32&r.__u),c),t.__v=r.__v,t.__.__k[t.__i]=t,N$1(f,t,c),t.__e!=o&&C$2(t)));$.__r=0;}function I(n,l,u,t,i,r,o,e,f,c,s){var a,h,y,w,d,g,_=t&&t.__k||v$1,m=l.length;for(f=P$1(u,l,_,f,m),a=0;a<m;a++)null!=(y=u.__k[a])&&(h=-1==y.__i?p$1:_[y.__i]||p$1,y.__i=a,g=O(n,y,h,i,r,o,e,f,c,s),w=y.__e,y.ref&&h.ref!=y.ref&&(h.ref&&B$2(h.ref,null,y),s.push(y.ref,y.__c||w,y)),null==d&&null!=w&&(d=w),4&y.__u||h.__k===y.__k?f=A(y,f,n):"function"==typeof y.type&&void 0!==g?f=g:w&&(f=w.nextSibling),y.__u&=-7);return u.__e=d,f}function P$1(n,l,u,t,i){var r,o,e,f,c,s=u.length,a=s,h=0;for(n.__k=new Array(i),r=0;r<i;r++)null!=(o=l[r])&&"boolean"!=typeof o&&"function"!=typeof o?(f=r+h,(o=n.__k[r]="string"==typeof o||"number"==typeof o||"bigint"==typeof o||o.constructor==String?m$1(null,o,null,null,null):w$1(o)?m$1(k$1,{children:o},null,null,null):null==o.constructor&&o.__b>0?m$1(o.type,o.props,o.key,o.ref?o.ref:null,o.__v):o).__=n,o.__b=n.__b+1,e=null,-1!=(c=o.__i=L(o,u,f,a))&&(a--,(e=u[c])&&(e.__u|=2)),null==e||null==e.__v?(-1==c&&(i>s?h--:i<s&&h++),"function"!=typeof o.type&&(o.__u|=4)):c!=f&&(c==f-1?h--:c==f+1?h++:(c>f?h--:h++,o.__u|=4))):n.__k[r]=null;if(a)for(r=0;r<s;r++)null!=(e=u[r])&&0==(2&e.__u)&&(e.__e==t&&(t=S(e)),D$1(e,e));return t}function A(n,l,u){var t,i;if("function"==typeof n.type){for(t=n.__k,i=0;t&&i<t.length;i++)t[i]&&(t[i].__=n,l=A(t[i],l,u));return l}n.__e!=l&&(l&&n.type&&!u.contains(l)&&(l=S(n)),u.insertBefore(n.__e,l||null),l=n.__e);do{l=l&&l.nextSibling;}while(null!=l&&8==l.nodeType);return l}function H$1(n,l){return l=l||[],null==n||"boolean"==typeof n||(w$1(n)?n.some(function(n){H$1(n,l);}):l.push(n)),l}function L(n,l,u,t){var i,r,o,e=n.key,f=n.type,c=l[u],s=null!=c&&0==(2&c.__u);if(null===c&&null==n.key||s&&e==c.key&&f==c.type)return u;if(t>(s?1:0))for(i=u-1,r=u+1;i>=0||r<l.length;)if(null!=(c=l[o=i>=0?i--:r++])&&0==(2&c.__u)&&e==c.key&&f==c.type)return o;return -1}function T$1(n,l,u){"-"==l[0]?n.setProperty(l,null==u?"":u):n[l]=null==u?"":"number"!=typeof u||y$1.test(l)?u:u+"px";}function j$2(n,l,u,t,i){var r,o;n:if("style"==l)if("string"==typeof u)n.style.cssText=u;else {if("string"==typeof t&&(n.style.cssText=t=""),t)for(l in t)u&&l in u||T$1(n.style,l,"");if(u)for(l in u)t&&u[l]==t[l]||T$1(n.style,l,u[l]);}else if("o"==l[0]&&"n"==l[1])r=l!=(l=l.replace(f$2,"$1")),o=l.toLowerCase(),l=o in n||"onFocusOut"==l||"onFocusIn"==l?o.slice(2):l.slice(2),n.l||(n.l={}),n.l[l+r]=u,u?t?u.u=t.u:(u.u=c$1,n.addEventListener(l,r?a$1:s$1,r)):n.removeEventListener(l,r?a$1:s$1,r);else {if("http://www.w3.org/2000/svg"==i)l=l.replace(/xlink(H|:h)/,"h").replace(/sName$/,"s");else if("width"!=l&&"height"!=l&&"href"!=l&&"list"!=l&&"form"!=l&&"tabIndex"!=l&&"download"!=l&&"rowSpan"!=l&&"colSpan"!=l&&"role"!=l&&"popover"!=l&&l in n)try{n[l]=null==u?"":u;break n}catch(n){}"function"==typeof u||(null==u||false===u&&"-"!=l[4]?n.removeAttribute(l):n.setAttribute(l,"popover"==l&&1==u?"":u));}}function F$1(n){return function(u){if(this.l){var t=this.l[u.type+n];if(null==u.t)u.t=c$1++;else if(u.t<t.u)return;return t(l$1.event?l$1.event(u):u)}}}function O(n,u,t,i,r,o,e,f,c,s){var a,h,p,v,y,_,m,b,S,C,M,$,P,A,H,L,T,j=u.type;if(null!=u.constructor)return null;128&t.__u&&(c=!!(32&t.__u),o=[f=u.__e=t.__e]),(a=l$1.__b)&&a(u);n:if("function"==typeof j)try{if(b=u.props,S="prototype"in j&&j.prototype.render,C=(a=j.contextType)&&i[a.__c],M=a?C?C.props.value:a.__:i,t.__c?m=(h=u.__c=t.__c).__=h.__E:(S?u.__c=h=new j(b,M):(u.__c=h=new x$1(b,M),h.constructor=j,h.render=E$1),C&&C.sub(h),h.props=b,h.state||(h.state={}),h.context=M,h.__n=i,p=h.__d=!0,h.__h=[],h._sb=[]),S&&null==h.__s&&(h.__s=h.state),S&&null!=j.getDerivedStateFromProps&&(h.__s==h.state&&(h.__s=d$1({},h.__s)),d$1(h.__s,j.getDerivedStateFromProps(b,h.__s))),v=h.props,y=h.state,h.__v=u,p)S&&null==j.getDerivedStateFromProps&&null!=h.componentWillMount&&h.componentWillMount(),S&&null!=h.componentDidMount&&h.__h.push(h.componentDidMount);else {if(S&&null==j.getDerivedStateFromProps&&b!==v&&null!=h.componentWillReceiveProps&&h.componentWillReceiveProps(b,M),!h.__e&&null!=h.shouldComponentUpdate&&!1===h.shouldComponentUpdate(b,h.__s,M)||u.__v==t.__v){for(u.__v!=t.__v&&(h.props=b,h.state=h.__s,h.__d=!1),u.__e=t.__e,u.__k=t.__k,u.__k.some(function(n){n&&(n.__=u);}),$=0;$<h._sb.length;$++)h.__h.push(h._sb[$]);h._sb=[],h.__h.length&&e.push(h);break n}null!=h.componentWillUpdate&&h.componentWillUpdate(b,h.__s,M),S&&null!=h.componentDidUpdate&&h.__h.push(function(){h.componentDidUpdate(v,y,_);});}if(h.context=M,h.props=b,h.__P=n,h.__e=!1,P=l$1.__r,A=0,S){for(h.state=h.__s,h.__d=!1,P&&P(u),a=h.render(h.props,h.state,h.context),H=0;H<h._sb.length;H++)h.__h.push(h._sb[H]);h._sb=[];}else do{h.__d=!1,P&&P(u),a=h.render(h.props,h.state,h.context),h.state=h.__s;}while(h.__d&&++A<25);h.state=h.__s,null!=h.getChildContext&&(i=d$1(d$1({},i),h.getChildContext())),S&&!p&&null!=h.getSnapshotBeforeUpdate&&(_=h.getSnapshotBeforeUpdate(v,y)),L=a,null!=a&&a.type===k$1&&null==a.key&&(L=V$1(a.props.children)),f=I(n,w$1(L)?L:[L],u,t,i,r,o,e,f,c,s),h.base=u.__e,u.__u&=-161,h.__h.length&&e.push(h),m&&(h.__E=h.__=null);}catch(n){if(u.__v=null,c||null!=o)if(n.then){for(u.__u|=c?160:128;f&&8==f.nodeType&&f.nextSibling;)f=f.nextSibling;o[o.indexOf(f)]=null,u.__e=f;}else {for(T=o.length;T--;)g$1(o[T]);z$1(u);}else u.__e=t.__e,u.__k=t.__k,n.then||z$1(u);l$1.__e(n,u,t);}else null==o&&u.__v==t.__v?(u.__k=t.__k,u.__e=t.__e):f=u.__e=q$1(t.__e,u,t,i,r,o,e,c,s);return (a=l$1.diffed)&&a(u),128&u.__u?void 0:f}function z$1(n){n&&n.__c&&(n.__c.__e=true),n&&n.__k&&n.__k.forEach(z$1);}function N$1(n,u,t){for(var i=0;i<t.length;i++)B$2(t[i],t[++i],t[++i]);l$1.__c&&l$1.__c(u,n),n.some(function(u){try{n=u.__h,u.__h=[],n.some(function(n){n.call(u);});}catch(n){l$1.__e(n,u.__v);}});}function V$1(n){return "object"!=typeof n||null==n||n.__b&&n.__b>0?n:w$1(n)?n.map(V$1):d$1({},n)}function q$1(u,t,i,r,o,e,f,c,s){var a,h,v,y,d,_,m,b=i.props,k=t.props,x=t.type;if("svg"==x?o="http://www.w3.org/2000/svg":"math"==x?o="http://www.w3.org/1998/Math/MathML":o||(o="http://www.w3.org/1999/xhtml"),null!=e)for(a=0;a<e.length;a++)if((d=e[a])&&"setAttribute"in d==!!x&&(x?d.localName==x:3==d.nodeType)){u=d,e[a]=null;break}if(null==u){if(null==x)return document.createTextNode(k);u=document.createElementNS(o,x,k.is&&k),c&&(l$1.__m&&l$1.__m(t,e),c=false),e=null;}if(null==x)b===k||c&&u.data==k||(u.data=k);else {if(e=e&&n.call(u.childNodes),b=i.props||p$1,!c&&null!=e)for(b={},a=0;a<u.attributes.length;a++)b[(d=u.attributes[a]).name]=d.value;for(a in b)if(d=b[a],"children"==a);else if("dangerouslySetInnerHTML"==a)v=d;else if(!(a in k)){if("value"==a&&"defaultValue"in k||"checked"==a&&"defaultChecked"in k)continue;j$2(u,a,null,d,o);}for(a in k)d=k[a],"children"==a?y=d:"dangerouslySetInnerHTML"==a?h=d:"value"==a?_=d:"checked"==a?m=d:c&&"function"!=typeof d||b[a]===d||j$2(u,a,d,b[a],o);if(h)c||v&&(h.__html==v.__html||h.__html==u.innerHTML)||(u.innerHTML=h.__html),t.__k=[];else if(v&&(u.innerHTML=""),I("template"==t.type?u.content:u,w$1(y)?y:[y],t,i,r,"foreignObject"==x?"http://www.w3.org/1999/xhtml":o,e,f,e?e[0]:i.__k&&S(i,0),c,s),null!=e)for(a=e.length;a--;)g$1(e[a]);c||(a="value","progress"==x&&null==_?u.removeAttribute("value"):null!=_&&(_!==u[a]||"progress"==x&&!_||"option"==x&&_!=b[a])&&j$2(u,a,_,b[a],o),a="checked",null!=m&&m!=u[a]&&j$2(u,a,m,b[a],o));}return u}function B$2(n,u,t){try{if("function"==typeof n){var i="function"==typeof n.__u;i&&n.__u(),i&&null==u||(n.__u=n(u));}else n.current=u;}catch(n){l$1.__e(n,t);}}function D$1(n,u,t){var i,r;if(l$1.unmount&&l$1.unmount(n),(i=n.ref)&&(i.current&&i.current!=n.__e||B$2(i,null,u)),null!=(i=n.__c)){if(i.componentWillUnmount)try{i.componentWillUnmount();}catch(n){l$1.__e(n,u);}i.base=i.__P=null;}if(i=n.__k)for(r=0;r<i.length;r++)i[r]&&D$1(i[r],u,t||"function"!=typeof n.type);t||g$1(n.__e),n.__c=n.__=n.__e=void 0;}function E$1(n,l,u){return this.constructor(n,u)}function G$1(u,t,i){var r,o,e,f;t==document&&(t=document.documentElement),l$1.__&&l$1.__(u,t),o=(r="function"=="undefined")?null:t.__k,e=[],f=[],O(t,u=(t).__k=_$1(k$1,null,[u]),o||p$1,p$1,t.namespaceURI,o?null:t.firstChild?n.call(t.childNodes):null,e,o?o.__e:t.firstChild,r,f),N$1(e,u,f);}n=v$1.slice,l$1={__e:function(n,l,u,t){for(var i,r,o;l=l.__;)if((i=l.__c)&&!i.__)try{if((r=i.constructor)&&null!=r.getDerivedStateFromError&&(i.setState(r.getDerivedStateFromError(n)),o=i.__d),null!=i.componentDidCatch&&(i.componentDidCatch(n,t||{}),o=i.__d),o)return i.__E=i}catch(l){n=l;}throw n}},u$2=0,x$1.prototype.setState=function(n,l){var u;u=null!=this.__s&&this.__s!=this.state?this.__s:this.__s=d$1({},this.state),"function"==typeof n&&(n=n(d$1({},u),this.props)),n&&d$1(u,n),null!=n&&this.__v&&(l&&this._sb.push(l),M(this));},x$1.prototype.forceUpdate=function(n){this.__v&&(this.__e=true,n&&this.__h.push(n),M(this));},x$1.prototype.render=k$1,i$1=[],o$1="function"==typeof Promise?Promise.prototype.then.bind(Promise.resolve()):setTimeout,e$1=function(n,l){return n.__v.__b-l.__v.__b},$.__r=0,f$2=/(PointerCapture)$|Capture$/i,c$1=0,s$1=F$1(false),a$1=F$1(true);
|
|
2
2
|
|
|
3
|
-
var t,r,u$1,i,o=0,f$1=[],c=l$1,e=c.__b,a=c.__r,v=c.diffed,l=c.__c,m=c.unmount,s=c.__;function p(n,t){c.__h&&c.__h(r,n,o||t),o=0;var u=r.__H||(r.__H={__:[],__h:[]});return n>=u.__.length&&u.__.push({}),u.__[n]}function d(n){return o=1,h(D,n)}function h(n,u,i){var o=p(t++,2);if(o.t=n,!o.__c&&(o.__=[i?i(u):D(void 0,u),function(n){var t=o.__N?o.__N[0]:o.__[0],r=o.t(t,n);t!==r&&(o.__N=[r,o.__[1]],o.__c.setState({}));}],o.__c=r,!r.__f)){var f=function(n,t,r){if(!o.__c.__H)return true;var u=o.__c.__H.__.filter(function(n){return !!n.__c});if(u.every(function(n){return !n.__N}))return !c||c.call(this,n,t,r);var i=o.__c.props!==n;return u.forEach(function(n){if(n.__N){var t=n.__[0];n.__=n.__N,n.__N=void 0,t!==n.__[0]&&(i=true);}}),c&&c.call(this,n,t,r)||i};r.__f=true;var c=r.shouldComponentUpdate,e=r.componentWillUpdate;r.componentWillUpdate=function(n,t,r){if(this.__e){var u=c;c=void 0,f(n,t,r),c=u;}e&&e.call(this,n,t,r);},r.shouldComponentUpdate=f;}return o.__N||o.__}function y(n,u){var i=p(t++,3);!c.__s&&C$1(i.__H,u)&&(i.__=n,i.u=u,r.__H.__h.push(i));}function _(n,u){var i=p(t++,4);!c.__s&&C$1(i.__H,u)&&(i.__=n,i.u=u,r.__h.push(i));}function j$1(){for(var n;n=f$1.shift();)if(n.__P&&n.__H)try{n.__H.__h.forEach(z),n.__H.__h.forEach(B$1),n.__H.__h=[];}catch(t){n.__H.__h=[],c.__e(t,n.__v);}}c.__b=function(n){r=null,e&&e(n);},c.__=function(n,t){n&&t.__k&&t.__k.__m&&(n.__m=t.__k.__m),s&&s(n,t);},c.__r=function(n){a&&a(n),t=0;var i=(r=n.__c).__H;i&&(u$1===r?(i.__h=[],r.__h=[],i.__.forEach(function(n){n.__N&&(n.__=n.__N),n.u=n.__N=void 0;})):(i.__h.forEach(z),i.__h.forEach(B$1),i.__h=[],t=0)),u$1=r;},c.diffed=function(n){v&&v(n);var t=n.__c;t&&t.__H&&(t.__H.__h.length&&(1!==f$1.push(t)&&i===c.requestAnimationFrame||((i=c.requestAnimationFrame)||w)(j$1)),t.__H.__.forEach(function(n){n.u&&(n.__H=n.u),n.u=void 0;})),u$1=r=null;},c.__c=function(n,t){t.some(function(n){try{n.__h.forEach(z),n.__h=n.__h.filter(function(n){return !n.__||B$1(n)});}catch(r){t.some(function(n){n.__h&&(n.__h=[]);}),t=[],c.__e(r,n.__v);}}),l&&l(n,t);},c.unmount=function(n){m&&m(n);var t,r=n.__c;r&&r.__H&&(r.__H.__.forEach(function(n){try{z(n);}catch(n){t=n;}}),r.__H=void 0,t&&c.__e(t,r.__v));};var k="function"==typeof requestAnimationFrame;function w(n){var t,r=function(){clearTimeout(u),k&&cancelAnimationFrame(t),setTimeout(n);},u=setTimeout(r,
|
|
3
|
+
var t,r,u$1,i,o=0,f$1=[],c=l$1,e=c.__b,a=c.__r,v=c.diffed,l=c.__c,m=c.unmount,s=c.__;function p(n,t){c.__h&&c.__h(r,n,o||t),o=0;var u=r.__H||(r.__H={__:[],__h:[]});return n>=u.__.length&&u.__.push({}),u.__[n]}function d(n){return o=1,h(D,n)}function h(n,u,i){var o=p(t++,2);if(o.t=n,!o.__c&&(o.__=[i?i(u):D(void 0,u),function(n){var t=o.__N?o.__N[0]:o.__[0],r=o.t(t,n);t!==r&&(o.__N=[r,o.__[1]],o.__c.setState({}));}],o.__c=r,!r.__f)){var f=function(n,t,r){if(!o.__c.__H)return true;var u=o.__c.__H.__.filter(function(n){return !!n.__c});if(u.every(function(n){return !n.__N}))return !c||c.call(this,n,t,r);var i=o.__c.props!==n;return u.forEach(function(n){if(n.__N){var t=n.__[0];n.__=n.__N,n.__N=void 0,t!==n.__[0]&&(i=true);}}),c&&c.call(this,n,t,r)||i};r.__f=true;var c=r.shouldComponentUpdate,e=r.componentWillUpdate;r.componentWillUpdate=function(n,t,r){if(this.__e){var u=c;c=void 0,f(n,t,r),c=u;}e&&e.call(this,n,t,r);},r.shouldComponentUpdate=f;}return o.__N||o.__}function y(n,u){var i=p(t++,3);!c.__s&&C$1(i.__H,u)&&(i.__=n,i.u=u,r.__H.__h.push(i));}function _(n,u){var i=p(t++,4);!c.__s&&C$1(i.__H,u)&&(i.__=n,i.u=u,r.__h.push(i));}function j$1(){for(var n;n=f$1.shift();)if(n.__P&&n.__H)try{n.__H.__h.forEach(z),n.__H.__h.forEach(B$1),n.__H.__h=[];}catch(t){n.__H.__h=[],c.__e(t,n.__v);}}c.__b=function(n){r=null,e&&e(n);},c.__=function(n,t){n&&t.__k&&t.__k.__m&&(n.__m=t.__k.__m),s&&s(n,t);},c.__r=function(n){a&&a(n),t=0;var i=(r=n.__c).__H;i&&(u$1===r?(i.__h=[],r.__h=[],i.__.forEach(function(n){n.__N&&(n.__=n.__N),n.u=n.__N=void 0;})):(i.__h.forEach(z),i.__h.forEach(B$1),i.__h=[],t=0)),u$1=r;},c.diffed=function(n){v&&v(n);var t=n.__c;t&&t.__H&&(t.__H.__h.length&&(1!==f$1.push(t)&&i===c.requestAnimationFrame||((i=c.requestAnimationFrame)||w)(j$1)),t.__H.__.forEach(function(n){n.u&&(n.__H=n.u),n.u=void 0;})),u$1=r=null;},c.__c=function(n,t){t.some(function(n){try{n.__h.forEach(z),n.__h=n.__h.filter(function(n){return !n.__||B$1(n)});}catch(r){t.some(function(n){n.__h&&(n.__h=[]);}),t=[],c.__e(r,n.__v);}}),l&&l(n,t);},c.unmount=function(n){m&&m(n);var t,r=n.__c;r&&r.__H&&(r.__H.__.forEach(function(n){try{z(n);}catch(n){t=n;}}),r.__H=void 0,t&&c.__e(t,r.__v));};var k="function"==typeof requestAnimationFrame;function w(n){var t,r=function(){clearTimeout(u),k&&cancelAnimationFrame(t),setTimeout(n);},u=setTimeout(r,35);k&&(t=requestAnimationFrame(r));}function z(n){var t=r,u=n.__c;"function"==typeof u&&(n.__c=void 0,u()),r=t;}function B$1(n){var t=r;n.__c=n.__(),r=t;}function C$1(n,t){return !n||n.length!==t.length||t.some(function(t,r){return t!==n[r]})}function D(n,t){return "function"==typeof t?t(n):t}
|
|
4
4
|
|
|
5
|
-
function g(n,t){for(var e in t)n[e]=t[e];return n}function E(n,t){for(var e in n)if("__source"!==e&&!(e in t))return true;for(var r in t)if("__source"!==r&&n[r]!==t[r])return true;return false}function C(n,t){var e=t(),r=d({t:{__:e,u:t}}),u=r[0].t,o=r[1];return _(function(){u.__=e,u.u=t,x(u)&&o({t:u});},[n,e,t]),y(function(){return x(u)&&o({t:u}),n(function(){x(u)&&o({t:u});})},[n]),e}function x(n){var t,e,r=n.u,u=n.__;try{var o=r();return !((t=u)===(e=o)&&(0!==t||1/t==1/e)||t!=t&&e!=e)}catch(n){return true}}function N(n,t){this.props=n,this.context=t;}(N.prototype=new x$1).isPureReactComponent=true,N.prototype.shouldComponentUpdate=function(n,t){return E(this.props,n)||E(this.state,t)};var T=l$1.__b;l$1.__b=function(n){n.type&&n.type.__f&&n.ref&&(n.props.ref=n.ref,n.ref=null),T&&T(n);};var F=l$1.__e;l$1.__e=function(n,t,e,r){if(n.then)for(var u,o=t;o=o.__;)if((u=o.__c)&&u.__c)return null==t.__e&&(t.__e=e.__e,t.__k=e.__k),u.__c(n,t);F(n,t,e,r);};var U=l$1.unmount;function V(n,t,e){return n&&(n.__c&&n.__c.__H&&(n.__c.__H.__.forEach(function(n){"function"==typeof n.__c&&n.__c();}),n.__c.__H=null),null!=(n=g({},n)).__c&&(n.__c.__P===e&&(n.__c.__P=t),n.__c.__e=true,n.__c=null),n.__k=n.__k&&n.__k.map(function(n){return V(n,t,e)})),n}function W(n,t,e){return n&&e&&(n.__v=null,n.__k=n.__k&&n.__k.map(function(n){return W(n,t,e)}),n.__c&&n.__c.__P===t&&(n.__e&&e.appendChild(n.__e),n.__c.__e=true,n.__c.__P=e)),n}function P(){this.__u=0,this.o=null,this.__b=null;}function j(n){var t=n.__.__c;return t&&t.__a&&t.__a(n)}function B(){this.i=null,this.l=null;}l$1.unmount=function(n){var t=n.__c;t&&t.__R&&t.__R(),t&&32&n.__u&&(n.type=null),U&&U(n);},(P.prototype=new x$1).__c=function(n,t){var e=t.__c,r=this;null==r.o&&(r.o=[]),r.o.push(e);var u=j(r.__v),o=false,i=function(){o||(o=true,e.__R=null,u?u(
|
|
5
|
+
function g(n,t){for(var e in t)n[e]=t[e];return n}function E(n,t){for(var e in n)if("__source"!==e&&!(e in t))return true;for(var r in t)if("__source"!==r&&n[r]!==t[r])return true;return false}function C(n,t){var e=t(),r=d({t:{__:e,u:t}}),u=r[0].t,o=r[1];return _(function(){u.__=e,u.u=t,x(u)&&o({t:u});},[n,e,t]),y(function(){return x(u)&&o({t:u}),n(function(){x(u)&&o({t:u});})},[n]),e}function x(n){var t,e,r=n.u,u=n.__;try{var o=r();return !((t=u)===(e=o)&&(0!==t||1/t==1/e)||t!=t&&e!=e)}catch(n){return true}}function N(n,t){this.props=n,this.context=t;}(N.prototype=new x$1).isPureReactComponent=true,N.prototype.shouldComponentUpdate=function(n,t){return E(this.props,n)||E(this.state,t)};var T=l$1.__b;l$1.__b=function(n){n.type&&n.type.__f&&n.ref&&(n.props.ref=n.ref,n.ref=null),T&&T(n);};var F=l$1.__e;l$1.__e=function(n,t,e,r){if(n.then)for(var u,o=t;o=o.__;)if((u=o.__c)&&u.__c)return null==t.__e&&(t.__e=e.__e,t.__k=e.__k),u.__c(n,t);F(n,t,e,r);};var U=l$1.unmount;function V(n,t,e){return n&&(n.__c&&n.__c.__H&&(n.__c.__H.__.forEach(function(n){"function"==typeof n.__c&&n.__c();}),n.__c.__H=null),null!=(n=g({},n)).__c&&(n.__c.__P===e&&(n.__c.__P=t),n.__c.__e=true,n.__c=null),n.__k=n.__k&&n.__k.map(function(n){return V(n,t,e)})),n}function W(n,t,e){return n&&e&&(n.__v=null,n.__k=n.__k&&n.__k.map(function(n){return W(n,t,e)}),n.__c&&n.__c.__P===t&&(n.__e&&e.appendChild(n.__e),n.__c.__e=true,n.__c.__P=e)),n}function P(){this.__u=0,this.o=null,this.__b=null;}function j(n){var t=n.__.__c;return t&&t.__a&&t.__a(n)}function B(){this.i=null,this.l=null;}l$1.unmount=function(n){var t=n.__c;t&&t.__R&&t.__R(),t&&32&n.__u&&(n.type=null),U&&U(n);},(P.prototype=new x$1).__c=function(n,t){var e=t.__c,r=this;null==r.o&&(r.o=[]),r.o.push(e);var u=j(r.__v),o=false,i=function(){o||(o=true,e.__R=null,u?u(l):l());};e.__R=i;var l=function(){if(!--r.__u){if(r.state.__a){var n=r.state.__a;r.__v.__k[0]=W(n,n.__c.__P,n.__c.__O);}var t;for(r.setState({__a:r.__b=null});t=r.o.pop();)t.forceUpdate();}};r.__u++||32&t.__u||r.setState({__a:r.__b=r.__v.__k[0]}),n.then(i,i);},P.prototype.componentWillUnmount=function(){this.o=[];},P.prototype.render=function(n,e){if(this.__b){if(this.__v.__k){var r=document.createElement("div"),o=this.__v.__k[0].__c;this.__v.__k[0]=V(this.__b,r,o.__O=o.__P);}this.__b=null;}var i=e.__a&&_$1(k$1,null,n.fallback);return i&&(i.__u&=-33),[_$1(k$1,null,e.__a?null:n.children),i]};var H=function(n,t,e){if(++e[1]===e[0]&&n.l.delete(t),n.props.revealOrder&&("t"!==n.props.revealOrder[0]||!n.l.size))for(e=n.i;e;){for(;e.length>3;)e.pop()();if(e[1]<e[0])break;n.i=e=e[2];}};(B.prototype=new x$1).__a=function(n){var t=this,e=j(t.__v),r=t.l.get(n);return r[0]++,function(u){var o=function(){t.props.revealOrder?(r.push(u),H(t,n,r)):u();};e?e(o):o();}},B.prototype.render=function(n){this.i=null,this.l=new Map;var t=H$1(n.children);n.revealOrder&&"b"===n.revealOrder[0]&&t.reverse();for(var e=t.length;e--;)this.l.set(t[e],this.i=[1,0,this.i]);return n.children},B.prototype.componentDidUpdate=B.prototype.componentDidMount=function(){var n=this;this.l.forEach(function(t,e){H(n,e,t);});};var q="undefined"!=typeof Symbol&&Symbol.for&&Symbol.for("react.element")||60103,G=/^(?:accent|alignment|arabic|baseline|cap|clip(?!PathU)|color|dominant|fill|flood|font|glyph(?!R)|horiz|image(!S)|letter|lighting|marker(?!H|W|U)|overline|paint|pointer|shape|stop|strikethrough|stroke|text(?!L)|transform|underline|unicode|units|v|vector|vert|word|writing|x(?!C))[A-Z]/,J=/^on(Ani|Tra|Tou|BeforeInp|Compo)/,K=/[A-Z0-9]/g,Q="undefined"!=typeof document,X=function(n){return ("undefined"!=typeof Symbol&&"symbol"==typeof Symbol()?/fil|che|rad/:/fil|che|ra/).test(n)};x$1.prototype.isReactComponent={},["componentWillMount","componentWillReceiveProps","componentWillUpdate"].forEach(function(t){Object.defineProperty(x$1.prototype,t,{configurable:true,get:function(){return this["UNSAFE_"+t]},set:function(n){Object.defineProperty(this,t,{configurable:true,writable:true,value:n});}});});var en=l$1.event;function rn(){}function un(){return this.cancelBubble}function on(){return this.defaultPrevented}l$1.event=function(n){return en&&(n=en(n)),n.persist=rn,n.isPropagationStopped=un,n.isDefaultPrevented=on,n.nativeEvent=n};var cn={enumerable:false,configurable:true,get:function(){return this.class}},fn=l$1.vnode;l$1.vnode=function(n){"string"==typeof n.type&&function(n){var t=n.props,e=n.type,u={},o=-1===e.indexOf("-");for(var i in t){var l=t[i];if(!("value"===i&&"defaultValue"in t&&null==l||Q&&"children"===i&&"noscript"===e||"class"===i||"className"===i)){var c=i.toLowerCase();"defaultValue"===i&&"value"in t&&null==t.value?i="value":"download"===i&&true===l?l="":"translate"===c&&"no"===l?l=false:"o"===c[0]&&"n"===c[1]?"ondoubleclick"===c?i="ondblclick":"onchange"!==c||"input"!==e&&"textarea"!==e||X(t.type)?"onfocus"===c?i="onfocusin":"onblur"===c?i="onfocusout":J.test(i)&&(i=c):c=i="oninput":o&&G.test(i)?i=i.replace(K,"-$&").toLowerCase():null===l&&(l=void 0),"oninput"===c&&u[i=c]&&(i="oninputCapture"),u[i]=l;}}"select"==e&&u.multiple&&Array.isArray(u.value)&&(u.value=H$1(t.children).forEach(function(n){n.props.selected=-1!=u.value.indexOf(n.props.value);})),"select"==e&&null!=u.defaultValue&&(u.value=H$1(t.children).forEach(function(n){n.props.selected=u.multiple?-1!=u.defaultValue.indexOf(n.props.value):u.defaultValue==n.props.value;})),t.class&&!t.className?(u.class=t.class,Object.defineProperty(u,"className",cn)):(t.className&&!t.class||t.class&&t.className)&&(u.class=u.className=t.className),n.props=u;}(n),n.$$typeof=q,fn&&fn(n);};var an=l$1.__r;l$1.__r=function(n){an&&an(n),n.__c;};var sn=l$1.diffed;l$1.diffed=function(n){sn&&sn(n);var t=n.props,e=n.__e;null!=e&&"textarea"===n.type&&"value"in t&&t.value!==e.value&&(e.value=null==t.value?"":t.value);};
|
|
6
6
|
|
|
7
7
|
var f=0;function u(e,t,n,o,i,u){t||(t={});var a,c,p=t;if("ref"in p)for(c in p={},t)"ref"==c?a=t[c]:p[c]=t[c];var l={type:e,props:p,key:n,ref:a,__k:null,__:null,__b:0,__e:null,__c:null,constructor:void 0,__v:--f,__i:-1,__u:0,__source:i,__self:u};if("function"==typeof e&&(a=e.defaultProps))for(c in a) void 0===p[c]&&(p[c]=a[c]);return l$1.vnode&&l$1.vnode(l),l}
|
|
8
8
|
|
|
9
|
-
export { C,
|
|
9
|
+
export { C, G$1 as G, k$1 as k, u };
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
const initDropToOpen = ({ rootDirectoryUrl }) => {
|
|
2
|
+
const dataTransferCandidates = [
|
|
3
|
+
(dataTransfer) => {
|
|
4
|
+
if (!dataTransfer.types.includes("resourceurls")) {
|
|
5
|
+
return null;
|
|
6
|
+
}
|
|
7
|
+
return () => {
|
|
8
|
+
const data = dataTransfer.getData("resourceurls");
|
|
9
|
+
const urls = JSON.parse(data);
|
|
10
|
+
if (!Array.isArray(urls) || urls.length === 0) {
|
|
11
|
+
return;
|
|
12
|
+
}
|
|
13
|
+
const [url] = urls;
|
|
14
|
+
const fileUrl = new URL(url).href;
|
|
15
|
+
let serverUrl;
|
|
16
|
+
|
|
17
|
+
if (fileUrl.startsWith(rootDirectoryUrl)) {
|
|
18
|
+
const serverRelativeUrl = fileUrl.slice(rootDirectoryUrl.length);
|
|
19
|
+
serverUrl = `/${serverRelativeUrl}`;
|
|
20
|
+
} else {
|
|
21
|
+
serverUrl = `/@fs/${fileUrl}`;
|
|
22
|
+
}
|
|
23
|
+
window.location.href = serverUrl;
|
|
24
|
+
};
|
|
25
|
+
},
|
|
26
|
+
];
|
|
27
|
+
|
|
28
|
+
document.addEventListener("dragover", (event) => {
|
|
29
|
+
for (const candidate of dataTransferCandidates) {
|
|
30
|
+
const dataTransferHandler = candidate(event.dataTransfer);
|
|
31
|
+
if (dataTransferHandler) {
|
|
32
|
+
event.preventDefault();
|
|
33
|
+
return;
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
});
|
|
37
|
+
document.addEventListener("drop", (event) => {
|
|
38
|
+
let handler;
|
|
39
|
+
for (const candidate of dataTransferCandidates) {
|
|
40
|
+
const dataTransferHandler = candidate(event.dataTransfer);
|
|
41
|
+
if (dataTransferHandler) {
|
|
42
|
+
handler = dataTransferHandler;
|
|
43
|
+
break;
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
event.preventDefault();
|
|
47
|
+
handler();
|
|
48
|
+
});
|
|
49
|
+
};
|
|
50
|
+
|
|
51
|
+
export { initDropToOpen };
|
|
@@ -2,12 +2,17 @@ import "file:///Users/dmail/Documents/dev/jsenv/core/packages/internal/plugin-tr
|
|
|
2
2
|
|
|
3
3
|
const installImportMetaCss = importMeta => {
|
|
4
4
|
let cssText = "";
|
|
5
|
-
let stylesheet = new CSSStyleSheet(
|
|
5
|
+
let stylesheet = new CSSStyleSheet({
|
|
6
|
+
baseUrl: importMeta.url
|
|
7
|
+
});
|
|
6
8
|
let adopted = false;
|
|
7
9
|
const css = {
|
|
8
10
|
toString: () => cssText,
|
|
9
11
|
update: value => {
|
|
10
12
|
cssText = value;
|
|
13
|
+
cssText += `
|
|
14
|
+
/* sourceURL=${importMeta.url} */
|
|
15
|
+
/* inlined from ${importMeta.url} */`;
|
|
11
16
|
stylesheet.replaceSync(cssText);
|
|
12
17
|
},
|
|
13
18
|
inject: () => {
|
|
@@ -267,6 +267,31 @@ const UNICODE = createUnicode({
|
|
|
267
267
|
ANSI,
|
|
268
268
|
});
|
|
269
269
|
|
|
270
|
+
const prefixFirstAndIndentRemainingLines = (
|
|
271
|
+
text,
|
|
272
|
+
{ prefix, indentation, trimLines, trimLastLine },
|
|
273
|
+
) => {
|
|
274
|
+
const lines = text.split(/\r?\n/);
|
|
275
|
+
const firstLine = lines.shift();
|
|
276
|
+
if (indentation === undefined) {
|
|
277
|
+
{
|
|
278
|
+
indentation = " "; // prefix + space
|
|
279
|
+
}
|
|
280
|
+
}
|
|
281
|
+
let result = `${prefix} ${firstLine}` ;
|
|
282
|
+
let i = 0;
|
|
283
|
+
while (i < lines.length) {
|
|
284
|
+
const line = trimLines ? lines[i].trim() : lines[i];
|
|
285
|
+
i++;
|
|
286
|
+
result += line.length
|
|
287
|
+
? `\n${indentation}${line}`
|
|
288
|
+
: trimLastLine && i === lines.length
|
|
289
|
+
? ""
|
|
290
|
+
: `\n`;
|
|
291
|
+
}
|
|
292
|
+
return result;
|
|
293
|
+
};
|
|
294
|
+
|
|
270
295
|
const setRoundedPrecision = (
|
|
271
296
|
number,
|
|
272
297
|
{ decimals = 1, decimalsWhenSmall = decimals } = {},
|
|
@@ -643,10 +668,9 @@ const formatError = (error) => {
|
|
|
643
668
|
const { cause } = error;
|
|
644
669
|
if (cause) {
|
|
645
670
|
const formatCause = (cause, depth) => {
|
|
646
|
-
let causeText = prefixFirstAndIndentRemainingLines({
|
|
671
|
+
let causeText = prefixFirstAndIndentRemainingLines(cause.stack, {
|
|
647
672
|
prefix: " [cause]:",
|
|
648
673
|
indentation: " ".repeat(depth + 1),
|
|
649
|
-
text: cause.stack,
|
|
650
674
|
});
|
|
651
675
|
const nestedCause = cause.cause;
|
|
652
676
|
if (nestedCause) {
|
|
@@ -661,34 +685,6 @@ const formatError = (error) => {
|
|
|
661
685
|
return text;
|
|
662
686
|
};
|
|
663
687
|
|
|
664
|
-
const prefixFirstAndIndentRemainingLines = ({
|
|
665
|
-
prefix,
|
|
666
|
-
indentation,
|
|
667
|
-
text,
|
|
668
|
-
trimLines,
|
|
669
|
-
trimLastLine,
|
|
670
|
-
}) => {
|
|
671
|
-
const lines = text.split(/\r?\n/);
|
|
672
|
-
const firstLine = lines.shift();
|
|
673
|
-
if (indentation === undefined) {
|
|
674
|
-
{
|
|
675
|
-
indentation = " "; // prefix + space
|
|
676
|
-
}
|
|
677
|
-
}
|
|
678
|
-
let result = `${prefix} ${firstLine}` ;
|
|
679
|
-
let i = 0;
|
|
680
|
-
while (i < lines.length) {
|
|
681
|
-
const line = trimLines ? lines[i].trim() : lines[i];
|
|
682
|
-
i++;
|
|
683
|
-
result += line.length
|
|
684
|
-
? `\n${indentation}${line}`
|
|
685
|
-
: trimLastLine && i === lines.length
|
|
686
|
-
? ""
|
|
687
|
-
: `\n`;
|
|
688
|
-
}
|
|
689
|
-
return result;
|
|
690
|
-
};
|
|
691
|
-
|
|
692
688
|
const LOG_LEVEL_OFF = "off";
|
|
693
689
|
|
|
694
690
|
const LOG_LEVEL_DEBUG = "debug";
|
|
@@ -1958,15 +1954,24 @@ const lookupPackageDirectory = (currentUrl) => {
|
|
|
1958
1954
|
};
|
|
1959
1955
|
|
|
1960
1956
|
const readPackageAtOrNull = (packageDirectoryUrl) => {
|
|
1957
|
+
const packageJsonFileUrl = new URL("./package.json", packageDirectoryUrl);
|
|
1958
|
+
let packageJsonFileContentBuffer;
|
|
1959
|
+
try {
|
|
1960
|
+
packageJsonFileContentBuffer = readFileSync(packageJsonFileUrl, "utf8");
|
|
1961
|
+
} catch (e) {
|
|
1962
|
+
if (e.code === "ENOENT") {
|
|
1963
|
+
return null;
|
|
1964
|
+
}
|
|
1965
|
+
throw e;
|
|
1966
|
+
}
|
|
1967
|
+
const packageJsonFileContentString = String(packageJsonFileContentBuffer);
|
|
1961
1968
|
try {
|
|
1962
|
-
const
|
|
1963
|
-
|
|
1964
|
-
"utf8",
|
|
1969
|
+
const packageJsonFileContentObject = JSON.parse(
|
|
1970
|
+
packageJsonFileContentString,
|
|
1965
1971
|
);
|
|
1966
|
-
|
|
1967
|
-
return packageJSON;
|
|
1972
|
+
return packageJsonFileContentObject;
|
|
1968
1973
|
} catch {
|
|
1969
|
-
|
|
1974
|
+
throw new Error(`Invalid package configuration at ${packageJsonFileUrl}`);
|
|
1970
1975
|
}
|
|
1971
1976
|
};
|
|
1972
1977
|
|
|
@@ -3878,13 +3883,24 @@ const defaultLookupPackageScope = (url) => {
|
|
|
3878
3883
|
};
|
|
3879
3884
|
|
|
3880
3885
|
const defaultReadPackageJson = (packageUrl) => {
|
|
3881
|
-
const
|
|
3882
|
-
|
|
3883
|
-
const string = String(buffer);
|
|
3886
|
+
const packageJsonFileUrl = new URL("./package.json", packageUrl);
|
|
3887
|
+
let packageJsonFileContentBuffer;
|
|
3884
3888
|
try {
|
|
3885
|
-
|
|
3889
|
+
packageJsonFileContentBuffer = readFileSync(packageJsonFileUrl, "utf8");
|
|
3890
|
+
} catch (e) {
|
|
3891
|
+
if (e.code === "ENOENT") {
|
|
3892
|
+
return null;
|
|
3893
|
+
}
|
|
3894
|
+
throw e;
|
|
3895
|
+
}
|
|
3896
|
+
const packageJsonFileContentString = String(packageJsonFileContentBuffer);
|
|
3897
|
+
try {
|
|
3898
|
+
const packageJsonFileContentObject = JSON.parse(
|
|
3899
|
+
packageJsonFileContentString,
|
|
3900
|
+
);
|
|
3901
|
+
return packageJsonFileContentObject;
|
|
3886
3902
|
} catch {
|
|
3887
|
-
throw new Error(`Invalid package configuration`);
|
|
3903
|
+
throw new Error(`Invalid package configuration at ${packageJsonFileUrl}`);
|
|
3888
3904
|
}
|
|
3889
3905
|
};
|
|
3890
3906
|
|
|
@@ -586,6 +586,34 @@ const assertFetchedContentCompliance = ({ urlInfo, content }) => {
|
|
|
586
586
|
}
|
|
587
587
|
};
|
|
588
588
|
|
|
589
|
+
const FILE_AND_SERVER_URLS_CONVERTER = {
|
|
590
|
+
asServerUrl: (fileUrl, serverRootDirectoryUrl) => {
|
|
591
|
+
if (urlIsOrIsInsideOf(fileUrl, serverRootDirectoryUrl)) {
|
|
592
|
+
const urlRelativeToServer = urlToRelativeUrl(
|
|
593
|
+
fileUrl,
|
|
594
|
+
serverRootDirectoryUrl,
|
|
595
|
+
);
|
|
596
|
+
return `/${urlRelativeToServer}`;
|
|
597
|
+
}
|
|
598
|
+
const urlRelativeToFilesystemRoot = String(fileUrl).slice(
|
|
599
|
+
"file:///".length,
|
|
600
|
+
);
|
|
601
|
+
return `/@fs/${urlRelativeToFilesystemRoot}`;
|
|
602
|
+
},
|
|
603
|
+
asFileUrl: (urlRelativeToServer, serverRootDirectoryUrl) => {
|
|
604
|
+
if (urlRelativeToServer.startsWith("/@fs/")) {
|
|
605
|
+
const urlRelativeToFilesystemRoot = urlRelativeToServer.slice(
|
|
606
|
+
"/@fs/".length,
|
|
607
|
+
);
|
|
608
|
+
return `file:///${urlRelativeToFilesystemRoot}`;
|
|
609
|
+
}
|
|
610
|
+
if (urlRelativeToServer[0] === "/") {
|
|
611
|
+
return new URL(urlRelativeToServer.slice(1), serverRootDirectoryUrl).href;
|
|
612
|
+
}
|
|
613
|
+
return new URL(urlRelativeToServer, serverRootDirectoryUrl).href;
|
|
614
|
+
},
|
|
615
|
+
};
|
|
616
|
+
|
|
589
617
|
const determineFileUrlForOutDirectory = (urlInfo) => {
|
|
590
618
|
let { url, filenameHint } = urlInfo;
|
|
591
619
|
const { rootDirectoryUrl, outDirectoryUrl } = urlInfo.context;
|
|
@@ -2992,6 +3020,10 @@ const createKitchen = ({
|
|
|
2992
3020
|
isSupportedOnCurrentClients: memoizeIsSupported(clientRuntimeCompat),
|
|
2993
3021
|
isSupportedOnFutureClients: memoizeIsSupported(runtimeCompat),
|
|
2994
3022
|
isPlaceholderInjection,
|
|
3023
|
+
asServerUrl: (fileUrl) =>
|
|
3024
|
+
FILE_AND_SERVER_URLS_CONVERTER.asServerUrl(fileUrl, rootDirectoryUrl),
|
|
3025
|
+
asFileUrl: (serverUrl) =>
|
|
3026
|
+
FILE_AND_SERVER_URLS_CONVERTER.asFileUrl(serverUrl, rootDirectoryUrl),
|
|
2995
3027
|
INJECTIONS,
|
|
2996
3028
|
getPluginMeta: null,
|
|
2997
3029
|
sourcemaps,
|
|
@@ -6191,34 +6223,6 @@ const jsenvPluginVersionSearchParam = () => {
|
|
|
6191
6223
|
};
|
|
6192
6224
|
};
|
|
6193
6225
|
|
|
6194
|
-
const FILE_AND_SERVER_URLS_CONVERTER = {
|
|
6195
|
-
asServerUrl: (fileUrl, serverRootDirectoryUrl) => {
|
|
6196
|
-
if (urlIsOrIsInsideOf(fileUrl, serverRootDirectoryUrl)) {
|
|
6197
|
-
const urlRelativeToServer = urlToRelativeUrl(
|
|
6198
|
-
fileUrl,
|
|
6199
|
-
serverRootDirectoryUrl,
|
|
6200
|
-
);
|
|
6201
|
-
return `/${urlRelativeToServer}`;
|
|
6202
|
-
}
|
|
6203
|
-
const urlRelativeToFilesystemRoot = String(fileUrl).slice(
|
|
6204
|
-
"file:///".length,
|
|
6205
|
-
);
|
|
6206
|
-
return `/@fs/${urlRelativeToFilesystemRoot}`;
|
|
6207
|
-
},
|
|
6208
|
-
asFileUrl: (urlRelativeToServer, serverRootDirectoryUrl) => {
|
|
6209
|
-
if (urlRelativeToServer.startsWith("/@fs/")) {
|
|
6210
|
-
const urlRelativeToFilesystemRoot = urlRelativeToServer.slice(
|
|
6211
|
-
"/@fs/".length,
|
|
6212
|
-
);
|
|
6213
|
-
return `file:///${urlRelativeToFilesystemRoot}`;
|
|
6214
|
-
}
|
|
6215
|
-
if (urlRelativeToServer[0] === "/") {
|
|
6216
|
-
return new URL(urlRelativeToServer.slice(1), serverRootDirectoryUrl).href;
|
|
6217
|
-
}
|
|
6218
|
-
return new URL(urlRelativeToServer, serverRootDirectoryUrl).href;
|
|
6219
|
-
},
|
|
6220
|
-
};
|
|
6221
|
-
|
|
6222
6226
|
/*
|
|
6223
6227
|
* NICE TO HAVE:
|
|
6224
6228
|
*
|
|
@@ -8858,6 +8862,49 @@ const jsenvPluginRibbon = ({
|
|
|
8858
8862
|
};
|
|
8859
8863
|
};
|
|
8860
8864
|
|
|
8865
|
+
/**
|
|
8866
|
+
* HTML page server by jsenv dev server will listen for drop events
|
|
8867
|
+
* and redirect the browser to the dropped file location.
|
|
8868
|
+
*
|
|
8869
|
+
* Works only for VSCode right now (because it sets "resourceurls" dataTransfer type).
|
|
8870
|
+
*
|
|
8871
|
+
*/
|
|
8872
|
+
|
|
8873
|
+
|
|
8874
|
+
const jsenvPluginDropToOpen = () => {
|
|
8875
|
+
const clientFileUrl = import.meta.resolve("../js/drop_to_open.js");
|
|
8876
|
+
return {
|
|
8877
|
+
name: "jsenv:drop_to_open",
|
|
8878
|
+
appliesDuring: "dev",
|
|
8879
|
+
transformUrlContent: {
|
|
8880
|
+
html: (urlInfo) => {
|
|
8881
|
+
const htmlAst = parseHtml({
|
|
8882
|
+
html: urlInfo.content,
|
|
8883
|
+
url: urlInfo.url,
|
|
8884
|
+
});
|
|
8885
|
+
const clientFileReference = urlInfo.dependencies.inject({
|
|
8886
|
+
type: "script",
|
|
8887
|
+
subtype: "js_module",
|
|
8888
|
+
expectedType: "js_module",
|
|
8889
|
+
specifier: clientFileUrl,
|
|
8890
|
+
});
|
|
8891
|
+
injectJsenvScript(htmlAst, {
|
|
8892
|
+
type: "module",
|
|
8893
|
+
src: clientFileReference.generatedSpecifier,
|
|
8894
|
+
initCall: {
|
|
8895
|
+
callee: "initDropToOpen",
|
|
8896
|
+
params: {
|
|
8897
|
+
rootDirectoryUrl: urlInfo.context.rootDirectoryUrl,
|
|
8898
|
+
},
|
|
8899
|
+
},
|
|
8900
|
+
pluginName: "jsenv:drop_to_open",
|
|
8901
|
+
});
|
|
8902
|
+
return stringifyHtmlAst(htmlAst);
|
|
8903
|
+
},
|
|
8904
|
+
},
|
|
8905
|
+
};
|
|
8906
|
+
};
|
|
8907
|
+
|
|
8861
8908
|
const jsenvPluginCleanHTML = () => {
|
|
8862
8909
|
return {
|
|
8863
8910
|
name: "jsenv:cleanup_html_during_dev",
|
|
@@ -9238,6 +9285,7 @@ const getCorePlugins = ({
|
|
|
9238
9285
|
: []),
|
|
9239
9286
|
...(cacheControl ? [jsenvPluginCacheControl(cacheControl)] : []),
|
|
9240
9287
|
...(ribbon ? [jsenvPluginRibbon({ rootDirectoryUrl, ...ribbon })] : []),
|
|
9288
|
+
jsenvPluginDropToOpen(),
|
|
9241
9289
|
jsenvPluginCleanHTML(),
|
|
9242
9290
|
jsenvPluginChromeDevtoolsJson(),
|
|
9243
9291
|
...(packageSideEffects
|
|
@@ -9405,6 +9453,7 @@ const startDevServer = async ({
|
|
|
9405
9453
|
http2 = false,
|
|
9406
9454
|
logLevel = EXECUTED_BY_TEST_PLAN ? "warn" : "info",
|
|
9407
9455
|
serverLogLevel = "warn",
|
|
9456
|
+
serverRouterLogLevel = "warn",
|
|
9408
9457
|
services = [],
|
|
9409
9458
|
|
|
9410
9459
|
signal = new AbortController().signal,
|
|
@@ -10011,6 +10060,7 @@ const startDevServer = async ({
|
|
|
10011
10060
|
stopOnInternalError: false,
|
|
10012
10061
|
keepProcessAlive,
|
|
10013
10062
|
logLevel: serverLogLevel,
|
|
10063
|
+
routerLogLevel: serverRouterLogLevel,
|
|
10014
10064
|
startLog: false,
|
|
10015
10065
|
|
|
10016
10066
|
https,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jsenv/core",
|
|
3
|
-
"version": "40.
|
|
3
|
+
"version": "40.9.1",
|
|
4
4
|
"description": "Tool to develop, test and build js projects",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -75,13 +75,13 @@
|
|
|
75
75
|
},
|
|
76
76
|
"dependencies": {
|
|
77
77
|
"@financial-times/polyfill-useragent-normaliser": "1.10.2",
|
|
78
|
-
"@jsenv/ast": "6.7.
|
|
79
|
-
"@jsenv/js-module-fallback": "1.4.
|
|
80
|
-
"@jsenv/plugin-bundling": "2.9.
|
|
81
|
-
"@jsenv/plugin-minification": "1.7.
|
|
82
|
-
"@jsenv/plugin-supervisor": "1.7.
|
|
83
|
-
"@jsenv/plugin-transpilation": "1.5.
|
|
84
|
-
"@jsenv/server": "16.
|
|
78
|
+
"@jsenv/ast": "6.7.13",
|
|
79
|
+
"@jsenv/js-module-fallback": "1.4.21",
|
|
80
|
+
"@jsenv/plugin-bundling": "2.9.12",
|
|
81
|
+
"@jsenv/plugin-minification": "1.7.2",
|
|
82
|
+
"@jsenv/plugin-supervisor": "1.7.6",
|
|
83
|
+
"@jsenv/plugin-transpilation": "1.5.59",
|
|
84
|
+
"@jsenv/server": "16.3.1",
|
|
85
85
|
"@jsenv/sourcemap": "1.3.10",
|
|
86
86
|
"react-table": "7.8.0"
|
|
87
87
|
},
|
|
@@ -102,12 +102,12 @@
|
|
|
102
102
|
"@jsenv/integrity": "workspace:*",
|
|
103
103
|
"@jsenv/md-up": "workspace:*",
|
|
104
104
|
"@jsenv/monorepo": "workspace:*",
|
|
105
|
+
"@jsenv/navi": "workspace:*",
|
|
105
106
|
"@jsenv/node-esm-resolution": "workspace:*",
|
|
106
107
|
"@jsenv/os-metrics": "workspace:*",
|
|
107
108
|
"@jsenv/performance-impact": "workspace:*",
|
|
108
109
|
"@jsenv/plugin-as-js-classic": "workspace:*",
|
|
109
110
|
"@jsenv/plugin-database-manager": "workspace:*",
|
|
110
|
-
"@jsenv/router": "workspace:*",
|
|
111
111
|
"@jsenv/runtime-compat": "workspace:*",
|
|
112
112
|
"@jsenv/snapshot": "workspace:*",
|
|
113
113
|
"@jsenv/terminal-table": "workspace:*",
|
|
@@ -115,20 +115,20 @@
|
|
|
115
115
|
"@jsenv/url-meta": "workspace:*",
|
|
116
116
|
"@jsenv/urls": "workspace:*",
|
|
117
117
|
"@jsenv/utils": "workspace:*",
|
|
118
|
-
"@playwright/browser-chromium": "1.
|
|
119
|
-
"@playwright/browser-firefox": "1.
|
|
120
|
-
"@playwright/browser-webkit": "1.
|
|
118
|
+
"@playwright/browser-chromium": "1.54.1",
|
|
119
|
+
"@playwright/browser-firefox": "1.54.1",
|
|
120
|
+
"@playwright/browser-webkit": "1.54.1",
|
|
121
121
|
"babel-plugin-transform-async-to-promises": "0.8.18",
|
|
122
|
-
"eslint": "9.
|
|
123
|
-
"open": "10.
|
|
124
|
-
"playwright": "1.
|
|
125
|
-
"preact": "10.
|
|
126
|
-
"preact-iso": "2.9.
|
|
127
|
-
"prettier": "3.
|
|
122
|
+
"eslint": "9.32.0",
|
|
123
|
+
"open": "10.2.0",
|
|
124
|
+
"playwright": "1.54.1",
|
|
125
|
+
"preact": "10.27.0",
|
|
126
|
+
"preact-iso": "2.9.2",
|
|
127
|
+
"prettier": "3.6.2",
|
|
128
128
|
"prettier-plugin-embed": "0.5.0",
|
|
129
|
-
"prettier-plugin-organize-imports": "4.
|
|
130
|
-
"prettier-plugin-packagejson": "2.5.
|
|
131
|
-
"prettier-plugin-sql": "0.19.
|
|
129
|
+
"prettier-plugin-organize-imports": "4.2.0",
|
|
130
|
+
"prettier-plugin-packagejson": "2.5.19",
|
|
131
|
+
"prettier-plugin-sql": "0.19.2",
|
|
132
132
|
"strip-ansi": "7.1.0"
|
|
133
133
|
},
|
|
134
134
|
"packageManager": "npm@11.3.0",
|