@mux/mux-uploader
Advanced tools
Comparing version 0.1.0-canary.10-8eff156 to 0.1.0-canary.10-b1efffb
@@ -1,4 +0,4 @@ | ||
(()=>{var Ot=Object.create;var st=Object.defineProperty;var Bt=Object.getOwnPropertyDescriptor;var Dt=Object.getOwnPropertyNames;var It=Object.getPrototypeOf,jt=Object.prototype.hasOwnProperty;var _t=f=>st(f,"__esModule",{value:!0});var Ut=(f,o)=>()=>(o||f((o={exports:{}}).exports,o),o.exports);var Ft=(f,o,a)=>{if(o&&typeof o=="object"||typeof o=="function")for(let r of Dt(o))!jt.call(f,r)&&r!=="default"&&st(f,r,{get:()=>o[r],enumerable:!(a=Bt(o,r))||a.enumerable});return f},Ht=f=>Ft(_t(st(f!=null?Ot(It(f)):{},"default",f&&f.__esModule&&"default"in f?{get:()=>f.default,enumerable:!0}:{value:f,enumerable:!0})),f);var xt=Ut((Y,it)=>{(function(f,o){typeof Y=="object"&&typeof it=="object"?it.exports=o():typeof define=="function"&&define.amd?define([],o):typeof Y=="object"?Y.UpChunk=o():f.UpChunk=o()})(Y,function(){return function(f){var o={};function a(r){if(o[r])return o[r].exports;var i=o[r]={i:r,l:!1,exports:{}};return f[r].call(i.exports,i,i.exports,a),i.l=!0,i.exports}return a.m=f,a.c=o,a.d=function(r,i,h){a.o(r,i)||Object.defineProperty(r,i,{enumerable:!0,get:h})},a.r=function(r){typeof Symbol!="undefined"&&Symbol.toStringTag&&Object.defineProperty(r,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(r,"__esModule",{value:!0})},a.t=function(r,i){if(1&i&&(r=a(r)),8&i||4&i&&typeof r=="object"&&r&&r.__esModule)return r;var h=Object.create(null);if(a.r(h),Object.defineProperty(h,"default",{enumerable:!0,value:r}),2&i&&typeof r!="string")for(var b in r)a.d(h,b,function(w){return r[w]}.bind(null,b));return h},a.n=function(r){var i=r&&r.__esModule?function(){return r.default}:function(){return r};return a.d(i,"a",i),i},a.o=function(r,i){return Object.prototype.hasOwnProperty.call(r,i)},a.p="",a(a.s=1)}([function(f,o){var a;a=function(){return this}();try{a=a||new Function("return this")()}catch{typeof window=="object"&&(a=window)}f.exports=a},function(f,o,a){"use strict";var r=this&&this.__assign||function(){return(r=Object.assign||function(d){for(var t,u=1,v=arguments.length;u<v;u++)for(var T in t=arguments[u])Object.prototype.hasOwnProperty.call(t,T)&&(d[T]=t[T]);return d}).apply(this,arguments)};o.__esModule=!0,o.createUpload=o.UpChunk=void 0;var i=a(2),h=a(4),b=[200,201,202,204,308],w=[408,502,503,504],y=function(){function d(t){var u=this;this.endpoint=t.endpoint,this.file=t.file,this.headers=t.headers||{},this.method=t.method||"PUT",this.chunkSize=t.chunkSize||30720,this.attempts=t.attempts||5,this.delayBeforeAttempt=t.delayBeforeAttempt||1,this.maxFileBytes=1024*(t.maxFileSize||0),this.chunkCount=0,this.chunkByteSize=1024*this.chunkSize,this.totalChunks=Math.ceil(this.file.size/this.chunkByteSize),this.attemptCount=0,this.offline=!1,this.paused=!1,this.success=!1,this.reader=new FileReader,this.eventTarget=new i.EventTarget,this.validateOptions(),this.getEndpoint().then(function(){return u.sendChunks()}),typeof window!="undefined"&&(window.addEventListener("online",function(){u.offline&&(u.offline=!1,u.dispatch("online"),u.sendChunks())}),window.addEventListener("offline",function(){u.offline=!0,u.dispatch("offline")}))}return d.prototype.on=function(t,u){this.eventTarget.addEventListener(t,u)},d.prototype.abort=function(){var t;this.pause(),(t=this.currentXhr)===null||t===void 0||t.abort()},d.prototype.pause=function(){this.paused=!0},d.prototype.resume=function(){this.paused&&(this.paused=!1,this.sendChunks())},d.prototype.dispatch=function(t,u){var v=new CustomEvent(t,{detail:u});this.eventTarget.dispatchEvent(v)},d.prototype.validateOptions=function(){if(!this.endpoint||typeof this.endpoint!="function"&&typeof this.endpoint!="string")throw new TypeError("endpoint must be defined as a string or a function that returns a promise");if(!(this.file instanceof File))throw new TypeError("file must be a File object");if(this.headers&&typeof this.headers!="object")throw new TypeError("headers must be null or an object");if(this.chunkSize&&(typeof this.chunkSize!="number"||this.chunkSize<=0||this.chunkSize%256!=0))throw new TypeError("chunkSize must be a positive number in multiples of 256");if(this.maxFileBytes>0&&this.maxFileBytes<this.file.size)throw new Error("file size exceeds maximum (".concat(this.file.size," > ").concat(this.maxFileBytes,")"));if(this.attempts&&(typeof this.attempts!="number"||this.attempts<=0))throw new TypeError("retries must be a positive number");if(this.delayBeforeAttempt&&(typeof this.delayBeforeAttempt!="number"||this.delayBeforeAttempt<0))throw new TypeError("delayBeforeAttempt must be a positive number")},d.prototype.getEndpoint=function(){var t=this;return typeof this.endpoint=="string"?(this.endpointValue=this.endpoint,Promise.resolve(this.endpoint)):this.endpoint(this.file).then(function(u){return t.endpointValue=u,t.endpointValue})},d.prototype.getChunk=function(){var t=this;return new Promise(function(u){var v=t.totalChunks===1?t.file.size:t.chunkByteSize,T=v*t.chunkCount;t.reader.onload=function(){t.reader.result!==null&&(t.chunk=new Blob([t.reader.result],{type:"application/octet-stream"})),u()},t.reader.readAsArrayBuffer(t.file.slice(T,T+v))})},d.prototype.xhrPromise=function(t){var u=this,v=function(T){T.upload.onprogress=function(O){var k,E=100/u.totalChunks,A=E*u.file.size,c=E*u.chunkCount,_=O.loaded/((k=O.total)!==null&&k!==void 0?k:A)*E;u.dispatch("progress",Math.min(c+_,100))}};return new Promise(function(T,O){u.currentXhr=(0,h.default)(r(r({},t),{beforeSend:v}),function(k,E){return u.currentXhr=void 0,k?O(k):T(E)})})},d.prototype.sendChunk=function(){var t=this.chunkCount*this.chunkByteSize,u=t+this.chunk.size-1,v=r(r({},this.headers),{"Content-Type":this.file.type,"Content-Range":"bytes ".concat(t,"-").concat(u,"/").concat(this.file.size)});return this.dispatch("attempt",{chunkNumber:this.chunkCount,chunkSize:this.chunk.size}),this.xhrPromise({headers:v,url:this.endpointValue,method:this.method,body:this.chunk})},d.prototype.manageRetries=function(){var t=this;if(this.attemptCount<this.attempts)return setTimeout(function(){return t.sendChunks()},1e3*this.delayBeforeAttempt),void this.dispatch("attemptFailure",{message:"An error occured uploading chunk ".concat(this.chunkCount,". ").concat(this.attempts-this.attemptCount," retries left."),chunkNumber:this.chunkCount,attemptsLeft:this.attempts-this.attemptCount});this.dispatch("error",{message:"An error occured uploading chunk ".concat(this.chunkCount,". No more retries, stopping upload"),chunk:this.chunkCount,attempts:this.attemptCount})},d.prototype.sendChunks=function(){var t=this;this.paused||this.offline||this.success||this.getChunk().then(function(){return t.attemptCount=t.attemptCount+1,t.sendChunk()}).then(function(u){if(b.includes(u.statusCode)){t.dispatch("chunkSuccess",{chunk:t.chunkCount,attempts:t.attemptCount,response:u}),t.attemptCount=0,t.chunkCount=t.chunkCount+1,t.chunkCount<t.totalChunks?t.sendChunks():(t.success=!0,t.dispatch("success"));var v=100*(t.chunkCount/t.totalChunks*t.file.size)/t.file.size;t.dispatch("progress",v)}else if(w.includes(u.statusCode)){if(t.paused||t.offline)return;t.manageRetries()}else{if(t.paused||t.offline)return;t.dispatch("error",{message:"Server responded with ".concat(u.statusCode,". Stopping upload."),chunkNumber:t.chunkCount,attempts:t.attemptCount})}}).catch(function(u){t.paused||t.offline||t.manageRetries()})},d}();o.UpChunk=y,o.createUpload=function(d){return new y(d)}},function(f,o,a){"use strict";(function(r,i){function h(e,n,...s){if(!e)throw new TypeError(b(n,s))}function b(e,n){let s=0;return e.replace(/%[os]/gu,()=>w(n[s++]))}function w(e){return typeof e!="object"||e===null?String(e):Object.prototype.toString.call(e)}let y;Object.defineProperty(o,"__esModule",{value:!0});let d=typeof window!="undefined"?window:typeof self!="undefined"?self:i!==void 0?i:typeof globalThis!="undefined"?globalThis:void 0,t;class u{constructor(n,s){this.code=n,this.message=s}warn(...n){var s;try{if(t)return void t({...this,args:n});let l=((s=new Error().stack)!==null&&s!==void 0?s:"").replace(/^(?:.+?\n){2}/gu,` | ||
`);console.warn(this.message,...n,l)}catch{}}}let v=new u("W01","Unable to initialize event under dispatching."),T=new u("W02","Assigning any falsy value to 'cancelBubble' property has no effect."),O=new u("W03","Assigning any truthy value to 'returnValue' property has no effect."),k=new u("W04","Unable to preventDefault on non-cancelable events."),E=new u("W05","Unable to preventDefault inside passive event listener invocation."),A=new u("W06","An event listener wasn't added because it has been added already: %o, %o"),c=new u("W07","The %o option value was abandoned because the event listener wasn't added as duplicated."),_=new u("W08","The 'callback' argument must be a function or an object that has 'handleEvent' method: %o"),z=new u("W09","Event attribute handler must be a function: %o");class S{static get NONE(){return q}static get CAPTURING_PHASE(){return B}static get AT_TARGET(){return V}static get BUBBLING_PHASE(){return J}constructor(n,s){Object.defineProperty(this,"isTrusted",{value:!1,enumerable:!0});let l=s!=null?s:{};X.set(this,{type:String(n),bubbles:Boolean(l.bubbles),cancelable:Boolean(l.cancelable),composed:Boolean(l.composed),target:null,currentTarget:null,stopPropagationFlag:!1,stopImmediatePropagationFlag:!1,canceledFlag:!1,inPassiveListenerFlag:!1,dispatchFlag:!1,timeStamp:Date.now()})}get type(){return g(this).type}get target(){return g(this).target}get srcElement(){return g(this).target}get currentTarget(){return g(this).currentTarget}composedPath(){let n=g(this).currentTarget;return n?[n]:[]}get NONE(){return q}get CAPTURING_PHASE(){return B}get AT_TARGET(){return V}get BUBBLING_PHASE(){return J}get eventPhase(){return g(this).dispatchFlag?2:0}stopPropagation(){g(this).stopPropagationFlag=!0}get cancelBubble(){return g(this).stopPropagationFlag}set cancelBubble(n){n?g(this).stopPropagationFlag=!0:T.warn()}stopImmediatePropagation(){let n=g(this);n.stopPropagationFlag=n.stopImmediatePropagationFlag=!0}get bubbles(){return g(this).bubbles}get cancelable(){return g(this).cancelable}get returnValue(){return!g(this).canceledFlag}set returnValue(n){n?O.warn():x(g(this))}preventDefault(){x(g(this))}get defaultPrevented(){return g(this).canceledFlag}get composed(){return g(this).composed}get isTrusted(){return!1}get timeStamp(){return g(this).timeStamp}initEvent(n,s=!1,l=!1){let p=g(this);p.dispatchFlag?v.warn():X.set(this,{...p,type:String(n),bubbles:Boolean(s),cancelable:Boolean(l),target:null,currentTarget:null,stopPropagationFlag:!1,stopImmediatePropagationFlag:!1,canceledFlag:!1})}}let q=0,B=1,V=2,J=3,X=new WeakMap;function g(e,n="this"){let s=X.get(e);return h(s!=null,"'%s' must be an object that Event constructor created, but got another one: %o",n,e),s}function x(e){e.inPassiveListenerFlag?E.warn():e.cancelable?e.canceledFlag=!0:k.warn()}Object.defineProperty(S,"NONE",{enumerable:!0}),Object.defineProperty(S,"CAPTURING_PHASE",{enumerable:!0}),Object.defineProperty(S,"AT_TARGET",{enumerable:!0}),Object.defineProperty(S,"BUBBLING_PHASE",{enumerable:!0});let D=Object.getOwnPropertyNames(S.prototype);for(let e=0;e<D.length;++e)D[e]!=="constructor"&&Object.defineProperty(S.prototype,D[e],{enumerable:!0});let H;d!==void 0&&d.Event!==void 0&&Object.setPrototypeOf(S.prototype,d.Event.prototype);let ut={INDEX_SIZE_ERR:1,DOMSTRING_SIZE_ERR:2,HIERARCHY_REQUEST_ERR:3,WRONG_DOCUMENT_ERR:4,INVALID_CHARACTER_ERR:5,NO_DATA_ALLOWED_ERR:6,NO_MODIFICATION_ALLOWED_ERR:7,NOT_FOUND_ERR:8,NOT_SUPPORTED_ERR:9,INUSE_ATTRIBUTE_ERR:10,INVALID_STATE_ERR:11,SYNTAX_ERR:12,INVALID_MODIFICATION_ERR:13,NAMESPACE_ERR:14,INVALID_ACCESS_ERR:15,VALIDATION_ERR:16,TYPE_MISMATCH_ERR:17,SECURITY_ERR:18,NETWORK_ERR:19,ABORT_ERR:20,URL_MISMATCH_ERR:21,QUOTA_EXCEEDED_ERR:22,TIMEOUT_ERR:23,INVALID_NODE_TYPE_ERR:24,DATA_CLONE_ERR:25};function lt(e){let n=Object.keys(ut);for(let s=0;s<n.length;++s){let l=n[s],p=ut[l];Object.defineProperty(e,l,{get:()=>p,configurable:!0,enumerable:!0})}}class K extends S{static wrap(n){return new(function s(l){let p=Object.getPrototypeOf(l);if(p==null)return K;let m=Z.get(p);return m==null&&(m=function(C,P){class L extends C{}let R=Object.keys(P);for(let M=0;M<R.length;++M)Object.defineProperty(L.prototype,R[M],pt(P,R[M]));return L}(s(p),p),Z.set(p,m)),m}(n))(n)}constructor(n){super(n.type,{bubbles:n.bubbles,cancelable:n.cancelable,composed:n.composed}),n.cancelBubble&&super.stopPropagation(),n.defaultPrevented&&super.preventDefault(),ct.set(this,{original:n});let s=Object.keys(n);for(let l=0;l<s.length;++l){let p=s[l];p in this||Object.defineProperty(this,p,pt(n,p))}}stopPropagation(){super.stopPropagation();let{original:n}=F(this);"stopPropagation"in n&&n.stopPropagation()}get cancelBubble(){return super.cancelBubble}set cancelBubble(n){super.cancelBubble=n;let{original:s}=F(this);"cancelBubble"in s&&(s.cancelBubble=n)}stopImmediatePropagation(){super.stopImmediatePropagation();let{original:n}=F(this);"stopImmediatePropagation"in n&&n.stopImmediatePropagation()}get returnValue(){return super.returnValue}set returnValue(n){super.returnValue=n;let{original:s}=F(this);"returnValue"in s&&(s.returnValue=n)}preventDefault(){super.preventDefault();let{original:n}=F(this);"preventDefault"in n&&n.preventDefault()}get timeStamp(){let{original:n}=F(this);return"timeStamp"in n?n.timeStamp:super.timeStamp}}let ct=new WeakMap;function F(e){let n=ct.get(e);return h(n!=null,"'this' is expected an Event object, but got",e),n}let Z=new WeakMap;function pt(e,n){let s=Object.getOwnPropertyDescriptor(e,n);return{get(){let l=F(this).original,p=l[n];return typeof p=="function"?p.bind(l):p},set(l){F(this).original[n]=l},configurable:s.configurable,enumerable:s.enumerable}}function dt(e){return(1&e.flags)==1}function ht(e){return(2&e.flags)==2}function ft(e){return(4&e.flags)==4}function St(e){return(8&e.flags)==8}function Mt({callback:e},n,s){try{typeof e=="function"?e.call(n,s):typeof e.handleEvent=="function"&&e.handleEvent(s)}catch(l){(function(p){try{let m=p instanceof Error?p:new Error(w(p));if(y)return void y(m);if(typeof dispatchEvent=="function"&&typeof ErrorEvent=="function")dispatchEvent(new ErrorEvent("error",{error:m,message:m.message}));else if(r!==void 0&&typeof r.emit=="function")return void r.emit("uncaughtException",m);console.error(m)}catch{}})(l)}}function gt({listeners:e},n,s){for(let l=0;l<e.length;++l)if(e[l].callback===n&&dt(e[l])===s)return l;return-1}function bt(e,n,s,l,p,m){let C;m&&(C=rt.bind(null,e,n,s),m.addEventListener("abort",C));let P=function(L,R,M,I,tt,j){return{callback:L,flags:(R?1:0)|(M?2:0)|(I?4:0),signal:tt,signalListener:j}}(n,s,l,p,m,C);return e.cow?(e.cow=!1,e.listeners=[...e.listeners,P]):e.listeners.push(P),P}function rt(e,n,s){let l=gt(e,n,s);return l!==-1&&mt(e,l)}function mt(e,n,s=!1){let l=e.listeners[n];return function(p){p.flags|=8}(l),l.signal&&l.signal.removeEventListener("abort",l.signalListener),e.cow&&!s?(e.cow=!1,e.listeners=e.listeners.filter((p,m)=>m!==n),!1):(e.listeners.splice(n,1),!0)}function yt(e,n){var s;return(s=e[n])!==null&&s!==void 0?s:e[n]={attrCallback:void 0,attrListener:void 0,cow:!1,listeners:[]}}Z.set(Object.prototype,K),d!==void 0&&d.Event!==void 0&&Z.set(d.Event.prototype,K);class G{constructor(){vt.set(this,Object.create(null))}addEventListener(n,s,l){let p=W(this),{callback:m,capture:C,once:P,passive:L,signal:R,type:M}=function(j,N,U){var Q;return Et(N),typeof U=="object"&&U!==null?{type:String(j),callback:N!=null?N:void 0,capture:Boolean(U.capture),passive:Boolean(U.passive),once:Boolean(U.once),signal:(Q=U.signal)!==null&&Q!==void 0?Q:void 0}:{type:String(j),callback:N!=null?N:void 0,capture:Boolean(U),passive:!1,once:!1,signal:void 0}}(n,s,l);if(m==null||(R==null?void 0:R.aborted))return;let I=yt(p,M),tt=gt(I,m,C);tt===-1?bt(I,m,C,L,P,R):function(j,N,U,Q){A.warn(dt(j)?"capture":"bubble",j.callback),ht(j)!==N&&c.warn("passive"),ft(j)!==U&&c.warn("once"),j.signal!==Q&&c.warn("signal")}(I.listeners[tt],L,P,R)}removeEventListener(n,s,l){let p=W(this),{callback:m,capture:C,type:P}=function(R,M,I){return Et(M),typeof I=="object"&&I!==null?{type:String(R),callback:M!=null?M:void 0,capture:Boolean(I.capture)}:{type:String(R),callback:M!=null?M:void 0,capture:Boolean(I)}}(n,s,l),L=p[P];m!=null&&L&&rt(L,m,C)}dispatchEvent(n){let s=W(this)[String(n.type)];if(s==null)return!0;let l=n instanceof S?n:K.wrap(n),p=g(l,"event");if(p.dispatchFlag)throw m="This event has been in dispatching.",d.DOMException?new d.DOMException(m,"InvalidStateError"):(H==null&&(H=class Rt extends Error{constructor(P){super(P),Error.captureStackTrace&&Error.captureStackTrace(this,Rt)}get code(){return 11}get name(){return"InvalidStateError"}},Object.defineProperties(H.prototype,{code:{enumerable:!0},name:{enumerable:!0}}),lt(H),lt(H.prototype)),new H(m));var m;if(p.dispatchFlag=!0,p.target=p.currentTarget=this,!p.stopPropagationFlag){let{cow:C,listeners:P}=s;s.cow=!0;for(let L=0;L<P.length;++L){let R=P[L];if(!St(R)&&(ft(R)&&mt(s,L,!C)&&(L-=1),p.inPassiveListenerFlag=ht(R),Mt(R,this,l),p.inPassiveListenerFlag=!1,p.stopImmediatePropagationFlag))break}C||(s.cow=!1)}return p.target=null,p.currentTarget=null,p.stopImmediatePropagationFlag=!1,p.stopPropagationFlag=!1,p.dispatchFlag=!1,!p.canceledFlag}}let vt=new WeakMap;function W(e,n="this"){let s=vt.get(e);return h(s!=null,"'%s' must be an object that EventTarget constructor created, but got another one: %o",n,e),s}function Et(e){if(typeof e!="function"&&(typeof e!="object"||e===null||typeof e.handleEvent!="function")){if(e!=null&&typeof e!="object")throw new TypeError(b(_.message,[e]));_.warn(e)}}let ot=Object.getOwnPropertyNames(G.prototype);for(let e=0;e<ot.length;++e)ot[e]!=="constructor"&&Object.defineProperty(G.prototype,ot[e],{enumerable:!0});function wt(e,n){var s,l;return(l=(s=W(e,"target")[n])===null||s===void 0?void 0:s.attrCallback)!==null&&l!==void 0?l:null}function Tt(e,n,s){s!=null&&typeof s!="function"&&z.warn(s),typeof s=="function"||typeof s=="object"&&s!==null?function(l,p,m){let C=yt(W(l,"target"),String(p));C.attrCallback=m,C.attrListener==null&&(C.attrListener=bt(C,function(P){return function(L){let R=P.attrCallback;typeof R=="function"&&R.call(this,L)}}(C),!1,!1,!1,void 0))}(e,n,s):function(l,p){let m=W(l,"target")[String(p)];m&&m.attrListener&&(rt(m,m.attrListener.callback,!1),m.attrCallback=m.attrListener=void 0)}(e,n)}function kt(e,n,s){Object.defineProperty(e,"on"+n,{get(){return wt(this,n)},set(l){Tt(this,n,l)},configurable:!0,enumerable:!0})}d!==void 0&&d.EventTarget!==void 0&&Object.setPrototypeOf(G.prototype,d.EventTarget.prototype),o.Event=S,o.EventTarget=G,o.default=G,o.defineCustomEventTarget=function(...e){class n extends G{}for(let s=0;s<e.length;++s)kt(n.prototype,e[s]);return n},o.defineEventAttribute=kt,o.getEventAttributeValue=wt,o.setErrorHandler=function(e){h(typeof e=="function"||e===void 0,"The error handler must be a function or undefined, but got %o.",e),y=e},o.setEventAttributeValue=Tt,o.setWarningHandler=function(e){h(typeof e=="function"||e===void 0,"The warning handler must be a function or undefined, but got %o.",e),t=e}}).call(this,a(3),a(0))},function(f,o){var a,r,i=f.exports={};function h(){throw new Error("setTimeout has not been defined")}function b(){throw new Error("clearTimeout has not been defined")}function w(E){if(a===setTimeout)return setTimeout(E,0);if((a===h||!a)&&setTimeout)return a=setTimeout,setTimeout(E,0);try{return a(E,0)}catch{try{return a.call(null,E,0)}catch{return a.call(this,E,0)}}}(function(){try{a=typeof setTimeout=="function"?setTimeout:h}catch{a=h}try{r=typeof clearTimeout=="function"?clearTimeout:b}catch{r=b}})();var y,d=[],t=!1,u=-1;function v(){t&&y&&(t=!1,y.length?d=y.concat(d):u=-1,d.length&&T())}function T(){if(!t){var E=w(v);t=!0;for(var A=d.length;A;){for(y=d,d=[];++u<A;)y&&y[u].run();u=-1,A=d.length}y=null,t=!1,function(c){if(r===clearTimeout)return clearTimeout(c);if((r===b||!r)&&clearTimeout)return r=clearTimeout,clearTimeout(c);try{r(c)}catch{try{return r.call(null,c)}catch{return r.call(this,c)}}}(E)}}function O(E,A){this.fun=E,this.array=A}function k(){}i.nextTick=function(E){var A=new Array(arguments.length-1);if(arguments.length>1)for(var c=1;c<arguments.length;c++)A[c-1]=arguments[c];d.push(new O(E,A)),d.length!==1||t||w(T)},O.prototype.run=function(){this.fun.apply(null,this.array)},i.title="browser",i.browser=!0,i.env={},i.argv=[],i.version="",i.versions={},i.on=k,i.addListener=k,i.once=k,i.off=k,i.removeListener=k,i.removeAllListeners=k,i.emit=k,i.prependListener=k,i.prependOnceListener=k,i.listeners=function(E){return[]},i.binding=function(E){throw new Error("process.binding is not supported")},i.cwd=function(){return"/"},i.chdir=function(E){throw new Error("process.chdir is not supported")},i.umask=function(){return 0}},function(f,o,a){"use strict";var r=a(5),i=a(6),h=a(7),b=a(8);function w(t,u,v){var T=t;return i(u)?(v=u,typeof t=="string"&&(T={uri:t})):T=b(u,{uri:t}),T.callback=v,T}function y(t,u,v){return d(u=w(t,u,v))}function d(t){if(t.callback===void 0)throw new Error("callback argument missing");var u=!1,v=function(g,x,D){u||(u=!0,t.callback(g,x,D))};function T(){var g=void 0;if(g=c.response?c.response:c.responseText||function(x){try{if(x.responseType==="document")return x.responseXML;var D=x.responseXML&&x.responseXML.documentElement.nodeName==="parsererror";if(x.responseType===""&&!D)return x.responseXML}catch{}return null}(c),J)try{g=JSON.parse(g)}catch{}return g}function O(g){return clearTimeout(_),g instanceof Error||(g=new Error(""+(g||"Unknown XMLHttpRequest Error"))),g.statusCode=0,v(g,X)}function k(){if(!A){var g;clearTimeout(_),g=t.useXDR&&c.status===void 0?200:c.status===1223?204:c.status;var x=X,D=null;return g!==0?(x={body:T(),statusCode:g,method:S,headers:{},url:z,rawRequest:c},c.getAllResponseHeaders&&(x.headers=h(c.getAllResponseHeaders()))):D=new Error("Internal XMLHttpRequest Error"),v(D,x,x.body)}}var E,A,c=t.xhr||null;c||(c=t.cors||t.useXDR?new y.XDomainRequest:new y.XMLHttpRequest);var _,z=c.url=t.uri||t.url,S=c.method=t.method||"GET",q=t.body||t.data,B=c.headers=t.headers||{},V=!!t.sync,J=!1,X={body:void 0,headers:{},statusCode:0,method:S,url:z,rawRequest:c};if("json"in t&&t.json!==!1&&(J=!0,B.accept||B.Accept||(B.Accept="application/json"),S!=="GET"&&S!=="HEAD"&&(B["content-type"]||B["Content-Type"]||(B["Content-Type"]="application/json"),q=JSON.stringify(t.json===!0?q:t.json))),c.onreadystatechange=function(){c.readyState===4&&setTimeout(k,0)},c.onload=k,c.onerror=O,c.onprogress=function(){},c.onabort=function(){A=!0},c.ontimeout=O,c.open(S,z,!V,t.username,t.password),V||(c.withCredentials=!!t.withCredentials),!V&&t.timeout>0&&(_=setTimeout(function(){if(!A){A=!0,c.abort("timeout");var g=new Error("XMLHttpRequest timeout");g.code="ETIMEDOUT",O(g)}},t.timeout)),c.setRequestHeader)for(E in B)B.hasOwnProperty(E)&&c.setRequestHeader(E,B[E]);else if(t.headers&&!function(g){for(var x in g)if(g.hasOwnProperty(x))return!1;return!0}(t.headers))throw new Error("Headers cannot be set on an XDomainRequest object");return"responseType"in t&&(c.responseType=t.responseType),"beforeSend"in t&&typeof t.beforeSend=="function"&&t.beforeSend(c),c.send(q||null),c}f.exports=y,f.exports.default=y,y.XMLHttpRequest=r.XMLHttpRequest||function(){},y.XDomainRequest="withCredentials"in new y.XMLHttpRequest?y.XMLHttpRequest:r.XDomainRequest,function(t,u){for(var v=0;v<t.length;v++)u(t[v])}(["get","put","post","patch","head","delete"],function(t){y[t==="delete"?"del":t]=function(u,v,T){return(v=w(u,v,T)).method=t.toUpperCase(),d(v)}})},function(f,o,a){(function(r){var i;i=typeof window!="undefined"?window:r!==void 0?r:typeof self!="undefined"?self:{},f.exports=i}).call(this,a(0))},function(f,o){f.exports=function(r){if(!r)return!1;var i=a.call(r);return i==="[object Function]"||typeof r=="function"&&i!=="[object RegExp]"||typeof window!="undefined"&&(r===window.setTimeout||r===window.alert||r===window.confirm||r===window.prompt)};var a=Object.prototype.toString},function(f,o){var a=function(r){return r.replace(/^\s+|\s+$/g,"")};f.exports=function(r){if(!r)return{};for(var i,h={},b=a(r).split(` | ||
`),w=0;w<b.length;w++){var y=b[w],d=y.indexOf(":"),t=a(y.slice(0,d)).toLowerCase(),u=a(y.slice(d+1));h[t]===void 0?h[t]=u:(i=h[t],Object.prototype.toString.call(i)==="[object Array]"?h[t].push(u):h[t]=[h[t],u])}return h}},function(f,o){f.exports=function(){for(var r={},i=0;i<arguments.length;i++){var h=arguments[i];for(var b in h)a.call(h,b)&&(r[b]=h[b])}return r};var a=Object.prototype.hasOwnProperty}])})});var At=Ht(xt());var Ct=document.createElement("template");Ct.innerHTML=` | ||
(()=>{var Ft=Object.create;var it=Object.defineProperty;var Ut=Object.getOwnPropertyDescriptor;var Nt=Object.getOwnPropertyNames;var zt=Object.getPrototypeOf,Vt=Object.prototype.hasOwnProperty;var qt=u=>it(u,"__esModule",{value:!0});var Xt=(u,e)=>()=>(e||u((e={exports:{}}).exports,e),e.exports);var Gt=(u,e,s)=>{if(e&&typeof e=="object"||typeof e=="function")for(let n of Nt(e))!Vt.call(u,n)&&n!=="default"&&it(u,n,{get:()=>e[n],enumerable:!(s=Ut(e,n))||s.enumerable});return u},Wt=u=>Gt(qt(it(u!=null?Ft(zt(u)):{},"default",u&&u.__esModule&&"default"in u?{get:()=>u.default,enumerable:!0}:{value:u,enumerable:!0})),u);var xt=(u,e,s)=>{if(!e.has(u))throw TypeError("Cannot "+s)};var At=(u,e,s)=>(xt(u,e,"read from private field"),s?s.call(u):e.get(u)),Ct=(u,e,s)=>{if(e.has(u))throw TypeError("Cannot add the same private member more than once");e instanceof WeakSet?e.add(u):e.set(u,s)},Lt=(u,e,s,n)=>(xt(u,e,"write to private field"),n?n.call(u,s):e.set(u,s),s);var Ot=Xt(($,at)=>{(function(u,e){typeof $=="object"&&typeof at=="object"?at.exports=e():typeof define=="function"&&define.amd?define([],e):typeof $=="object"?$.UpChunk=e():u.UpChunk=e()})($,function(){return function(u){var e={};function s(n){if(e[n])return e[n].exports;var a=e[n]={i:n,l:!1,exports:{}};return u[n].call(a.exports,a,a.exports,s),a.l=!0,a.exports}return s.m=u,s.c=e,s.d=function(n,a,h){s.o(n,a)||Object.defineProperty(n,a,{enumerable:!0,get:h})},s.r=function(n){typeof Symbol!="undefined"&&Symbol.toStringTag&&Object.defineProperty(n,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(n,"__esModule",{value:!0})},s.t=function(n,a){if(1&a&&(n=s(n)),8&a||4&a&&typeof n=="object"&&n&&n.__esModule)return n;var h=Object.create(null);if(s.r(h),Object.defineProperty(h,"default",{enumerable:!0,value:n}),2&a&&typeof n!="string")for(var m in n)s.d(h,m,function(T){return n[T]}.bind(null,m));return h},s.n=function(n){var a=n&&n.__esModule?function(){return n.default}:function(){return n};return s.d(a,"a",a),a},s.o=function(n,a){return Object.prototype.hasOwnProperty.call(n,a)},s.p="",s(s.s=1)}([function(u,e){var s;s=function(){return this}();try{s=s||new Function("return this")()}catch{typeof window=="object"&&(s=window)}u.exports=s},function(u,e,s){"use strict";var n=this&&this.__assign||function(){return(n=Object.assign||function(f){for(var t,l=1,v=arguments.length;l<v;l++)for(var w in t=arguments[l])Object.prototype.hasOwnProperty.call(t,w)&&(f[w]=t[w]);return f}).apply(this,arguments)};e.__esModule=!0,e.createUpload=e.UpChunk=void 0;var a=s(2),h=s(4),m=[200,201,202,204,308],T=[408,502,503,504],y=function(){function f(t){var l=this;this.endpoint=t.endpoint,this.file=t.file,this.headers=t.headers||{},this.method=t.method||"PUT",this.chunkSize=t.chunkSize||30720,this.attempts=t.attempts||5,this.delayBeforeAttempt=t.delayBeforeAttempt||1,this.maxFileBytes=1024*(t.maxFileSize||0),this.chunkCount=0,this.chunkByteSize=1024*this.chunkSize,this.totalChunks=Math.ceil(this.file.size/this.chunkByteSize),this.attemptCount=0,this.offline=!1,this.paused=!1,this.success=!1,this.reader=new FileReader,this.eventTarget=new a.EventTarget,this.validateOptions(),this.getEndpoint().then(function(){return l.sendChunks()}),typeof window!="undefined"&&(window.addEventListener("online",function(){l.offline&&(l.offline=!1,l.dispatch("online"),l.sendChunks())}),window.addEventListener("offline",function(){l.offline=!0,l.dispatch("offline")}))}return f.prototype.on=function(t,l){this.eventTarget.addEventListener(t,l)},f.prototype.abort=function(){var t;this.pause(),(t=this.currentXhr)===null||t===void 0||t.abort()},f.prototype.pause=function(){this.paused=!0},f.prototype.resume=function(){this.paused&&(this.paused=!1,this.sendChunks())},f.prototype.dispatch=function(t,l){var v=new CustomEvent(t,{detail:l});this.eventTarget.dispatchEvent(v)},f.prototype.validateOptions=function(){if(!this.endpoint||typeof this.endpoint!="function"&&typeof this.endpoint!="string")throw new TypeError("endpoint must be defined as a string or a function that returns a promise");if(!(this.file instanceof File))throw new TypeError("file must be a File object");if(this.headers&&typeof this.headers!="object")throw new TypeError("headers must be null or an object");if(this.chunkSize&&(typeof this.chunkSize!="number"||this.chunkSize<=0||this.chunkSize%256!=0))throw new TypeError("chunkSize must be a positive number in multiples of 256");if(this.maxFileBytes>0&&this.maxFileBytes<this.file.size)throw new Error("file size exceeds maximum (".concat(this.file.size," > ").concat(this.maxFileBytes,")"));if(this.attempts&&(typeof this.attempts!="number"||this.attempts<=0))throw new TypeError("retries must be a positive number");if(this.delayBeforeAttempt&&(typeof this.delayBeforeAttempt!="number"||this.delayBeforeAttempt<0))throw new TypeError("delayBeforeAttempt must be a positive number")},f.prototype.getEndpoint=function(){var t=this;return typeof this.endpoint=="string"?(this.endpointValue=this.endpoint,Promise.resolve(this.endpoint)):this.endpoint(this.file).then(function(l){return t.endpointValue=l,t.endpointValue})},f.prototype.getChunk=function(){var t=this;return new Promise(function(l){var v=t.totalChunks===1?t.file.size:t.chunkByteSize,w=v*t.chunkCount;t.reader.onload=function(){t.reader.result!==null&&(t.chunk=new Blob([t.reader.result],{type:"application/octet-stream"})),l()},t.reader.readAsArrayBuffer(t.file.slice(w,w+v))})},f.prototype.xhrPromise=function(t){var l=this,v=function(w){w.upload.onprogress=function(O){var k,E=100/l.totalChunks,C=E*l.file.size,p=E*l.chunkCount,I=O.loaded/((k=O.total)!==null&&k!==void 0?k:C)*E;l.dispatch("progress",Math.min(p+I,100))}};return new Promise(function(w,O){l.currentXhr=(0,h.default)(n(n({},t),{beforeSend:v}),function(k,E){return l.currentXhr=void 0,k?O(k):w(E)})})},f.prototype.sendChunk=function(){var t=this.chunkCount*this.chunkByteSize,l=t+this.chunk.size-1,v=n(n({},this.headers),{"Content-Type":this.file.type,"Content-Range":"bytes ".concat(t,"-").concat(l,"/").concat(this.file.size)});return this.dispatch("attempt",{chunkNumber:this.chunkCount,chunkSize:this.chunk.size}),this.xhrPromise({headers:v,url:this.endpointValue,method:this.method,body:this.chunk})},f.prototype.manageRetries=function(){var t=this;if(this.attemptCount<this.attempts)return setTimeout(function(){return t.sendChunks()},1e3*this.delayBeforeAttempt),void this.dispatch("attemptFailure",{message:"An error occured uploading chunk ".concat(this.chunkCount,". ").concat(this.attempts-this.attemptCount," retries left."),chunkNumber:this.chunkCount,attemptsLeft:this.attempts-this.attemptCount});this.dispatch("error",{message:"An error occured uploading chunk ".concat(this.chunkCount,". No more retries, stopping upload"),chunk:this.chunkCount,attempts:this.attemptCount})},f.prototype.sendChunks=function(){var t=this;this.paused||this.offline||this.success||this.getChunk().then(function(){return t.attemptCount=t.attemptCount+1,t.sendChunk()}).then(function(l){if(m.includes(l.statusCode)){t.dispatch("chunkSuccess",{chunk:t.chunkCount,attempts:t.attemptCount,response:l}),t.attemptCount=0,t.chunkCount=t.chunkCount+1,t.chunkCount<t.totalChunks?t.sendChunks():(t.success=!0,t.dispatch("success"));var v=100*(t.chunkCount/t.totalChunks*t.file.size)/t.file.size;t.dispatch("progress",v)}else if(T.includes(l.statusCode)){if(t.paused||t.offline)return;t.manageRetries()}else{if(t.paused||t.offline)return;t.dispatch("error",{message:"Server responded with ".concat(l.statusCode,". Stopping upload."),chunkNumber:t.chunkCount,attempts:t.attemptCount})}}).catch(function(l){t.paused||t.offline||t.manageRetries()})},f}();e.UpChunk=y,e.createUpload=function(f){return new y(f)}},function(u,e,s){"use strict";(function(n,a){function h(r,o,...i){if(!r)throw new TypeError(m(o,i))}function m(r,o){let i=0;return r.replace(/%[os]/gu,()=>T(o[i++]))}function T(r){return typeof r!="object"||r===null?String(r):Object.prototype.toString.call(r)}let y;Object.defineProperty(e,"__esModule",{value:!0});let f=typeof window!="undefined"?window:typeof self!="undefined"?self:a!==void 0?a:typeof globalThis!="undefined"?globalThis:void 0,t;class l{constructor(o,i){this.code=o,this.message=i}warn(...o){var i;try{if(t)return void t({...this,args:o});let c=((i=new Error().stack)!==null&&i!==void 0?i:"").replace(/^(?:.+?\n){2}/gu,` | ||
`);console.warn(this.message,...o,c)}catch{}}}let v=new l("W01","Unable to initialize event under dispatching."),w=new l("W02","Assigning any falsy value to 'cancelBubble' property has no effect."),O=new l("W03","Assigning any truthy value to 'returnValue' property has no effect."),k=new l("W04","Unable to preventDefault on non-cancelable events."),E=new l("W05","Unable to preventDefault inside passive event listener invocation."),C=new l("W06","An event listener wasn't added because it has been added already: %o, %o"),p=new l("W07","The %o option value was abandoned because the event listener wasn't added as duplicated."),I=new l("W08","The 'callback' argument must be a function or an object that has 'handleEvent' method: %o"),z=new l("W09","Event attribute handler must be a function: %o");class M{static get NONE(){return V}static get CAPTURING_PHASE(){return B}static get AT_TARGET(){return q}static get BUBBLING_PHASE(){return J}constructor(o,i){Object.defineProperty(this,"isTrusted",{value:!1,enumerable:!0});let c=i!=null?i:{};X.set(this,{type:String(o),bubbles:Boolean(c.bubbles),cancelable:Boolean(c.cancelable),composed:Boolean(c.composed),target:null,currentTarget:null,stopPropagationFlag:!1,stopImmediatePropagationFlag:!1,canceledFlag:!1,inPassiveListenerFlag:!1,dispatchFlag:!1,timeStamp:Date.now()})}get type(){return g(this).type}get target(){return g(this).target}get srcElement(){return g(this).target}get currentTarget(){return g(this).currentTarget}composedPath(){let o=g(this).currentTarget;return o?[o]:[]}get NONE(){return V}get CAPTURING_PHASE(){return B}get AT_TARGET(){return q}get BUBBLING_PHASE(){return J}get eventPhase(){return g(this).dispatchFlag?2:0}stopPropagation(){g(this).stopPropagationFlag=!0}get cancelBubble(){return g(this).stopPropagationFlag}set cancelBubble(o){o?g(this).stopPropagationFlag=!0:w.warn()}stopImmediatePropagation(){let o=g(this);o.stopPropagationFlag=o.stopImmediatePropagationFlag=!0}get bubbles(){return g(this).bubbles}get cancelable(){return g(this).cancelable}get returnValue(){return!g(this).canceledFlag}set returnValue(o){o?O.warn():x(g(this))}preventDefault(){x(g(this))}get defaultPrevented(){return g(this).canceledFlag}get composed(){return g(this).composed}get isTrusted(){return!1}get timeStamp(){return g(this).timeStamp}initEvent(o,i=!1,c=!1){let d=g(this);d.dispatchFlag?v.warn():X.set(this,{...d,type:String(o),bubbles:Boolean(i),cancelable:Boolean(c),target:null,currentTarget:null,stopPropagationFlag:!1,stopImmediatePropagationFlag:!1,canceledFlag:!1})}}let V=0,B=1,q=2,J=3,X=new WeakMap;function g(r,o="this"){let i=X.get(r);return h(i!=null,"'%s' must be an object that Event constructor created, but got another one: %o",o,r),i}function x(r){r.inPassiveListenerFlag?E.warn():r.cancelable?r.canceledFlag=!0:k.warn()}Object.defineProperty(M,"NONE",{enumerable:!0}),Object.defineProperty(M,"CAPTURING_PHASE",{enumerable:!0}),Object.defineProperty(M,"AT_TARGET",{enumerable:!0}),Object.defineProperty(M,"BUBBLING_PHASE",{enumerable:!0});let _=Object.getOwnPropertyNames(M.prototype);for(let r=0;r<_.length;++r)_[r]!=="constructor"&&Object.defineProperty(M.prototype,_[r],{enumerable:!0});let U;f!==void 0&&f.Event!==void 0&&Object.setPrototypeOf(M.prototype,f.Event.prototype);let lt={INDEX_SIZE_ERR:1,DOMSTRING_SIZE_ERR:2,HIERARCHY_REQUEST_ERR:3,WRONG_DOCUMENT_ERR:4,INVALID_CHARACTER_ERR:5,NO_DATA_ALLOWED_ERR:6,NO_MODIFICATION_ALLOWED_ERR:7,NOT_FOUND_ERR:8,NOT_SUPPORTED_ERR:9,INUSE_ATTRIBUTE_ERR:10,INVALID_STATE_ERR:11,SYNTAX_ERR:12,INVALID_MODIFICATION_ERR:13,NAMESPACE_ERR:14,INVALID_ACCESS_ERR:15,VALIDATION_ERR:16,TYPE_MISMATCH_ERR:17,SECURITY_ERR:18,NETWORK_ERR:19,ABORT_ERR:20,URL_MISMATCH_ERR:21,QUOTA_EXCEEDED_ERR:22,TIMEOUT_ERR:23,INVALID_NODE_TYPE_ERR:24,DATA_CLONE_ERR:25};function ct(r){let o=Object.keys(lt);for(let i=0;i<o.length;++i){let c=o[i],d=lt[c];Object.defineProperty(r,c,{get:()=>d,configurable:!0,enumerable:!0})}}class K extends M{static wrap(o){return new(function i(c){let d=Object.getPrototypeOf(c);if(d==null)return K;let b=tt.get(d);return b==null&&(b=function(A,L){class P extends A{}let R=Object.keys(L);for(let S=0;S<R.length;++S)Object.defineProperty(P.prototype,R[S],dt(L,R[S]));return P}(i(d),d),tt.set(d,b)),b}(o))(o)}constructor(o){super(o.type,{bubbles:o.bubbles,cancelable:o.cancelable,composed:o.composed}),o.cancelBubble&&super.stopPropagation(),o.defaultPrevented&&super.preventDefault(),pt.set(this,{original:o});let i=Object.keys(o);for(let c=0;c<i.length;++c){let d=i[c];d in this||Object.defineProperty(this,d,dt(o,d))}}stopPropagation(){super.stopPropagation();let{original:o}=F(this);"stopPropagation"in o&&o.stopPropagation()}get cancelBubble(){return super.cancelBubble}set cancelBubble(o){super.cancelBubble=o;let{original:i}=F(this);"cancelBubble"in i&&(i.cancelBubble=o)}stopImmediatePropagation(){super.stopImmediatePropagation();let{original:o}=F(this);"stopImmediatePropagation"in o&&o.stopImmediatePropagation()}get returnValue(){return super.returnValue}set returnValue(o){super.returnValue=o;let{original:i}=F(this);"returnValue"in i&&(i.returnValue=o)}preventDefault(){super.preventDefault();let{original:o}=F(this);"preventDefault"in o&&o.preventDefault()}get timeStamp(){let{original:o}=F(this);return"timeStamp"in o?o.timeStamp:super.timeStamp}}let pt=new WeakMap;function F(r){let o=pt.get(r);return h(o!=null,"'this' is expected an Event object, but got",r),o}let tt=new WeakMap;function dt(r,o){let i=Object.getOwnPropertyDescriptor(r,o);return{get(){let c=F(this).original,d=c[o];return typeof d=="function"?d.bind(c):d},set(c){F(this).original[o]=c},configurable:i.configurable,enumerable:i.enumerable}}function ht(r){return(1&r.flags)==1}function ft(r){return(2&r.flags)==2}function gt(r){return(4&r.flags)==4}function It(r){return(8&r.flags)==8}function Ht({callback:r},o,i){try{typeof r=="function"?r.call(o,i):typeof r.handleEvent=="function"&&r.handleEvent(i)}catch(c){(function(d){try{let b=d instanceof Error?d:new Error(T(d));if(y)return void y(b);if(typeof dispatchEvent=="function"&&typeof ErrorEvent=="function")dispatchEvent(new ErrorEvent("error",{error:b,message:b.message}));else if(n!==void 0&&typeof n.emit=="function")return void n.emit("uncaughtException",b);console.error(b)}catch{}})(c)}}function mt({listeners:r},o,i){for(let c=0;c<r.length;++c)if(r[c].callback===o&&ht(r[c])===i)return c;return-1}function bt(r,o,i,c,d,b){let A;b&&(A=ot.bind(null,r,o,i),b.addEventListener("abort",A));let L=function(P,R,S,D,et,j){return{callback:P,flags:(R?1:0)|(S?2:0)|(D?4:0),signal:et,signalListener:j}}(o,i,c,d,b,A);return r.cow?(r.cow=!1,r.listeners=[...r.listeners,L]):r.listeners.push(L),L}function ot(r,o,i){let c=mt(r,o,i);return c!==-1&&yt(r,c)}function yt(r,o,i=!1){let c=r.listeners[o];return function(d){d.flags|=8}(c),c.signal&&c.signal.removeEventListener("abort",c.signalListener),r.cow&&!i?(r.cow=!1,r.listeners=r.listeners.filter((d,b)=>b!==o),!1):(r.listeners.splice(o,1),!0)}function vt(r,o){var i;return(i=r[o])!==null&&i!==void 0?i:r[o]={attrCallback:void 0,attrListener:void 0,cow:!1,listeners:[]}}tt.set(Object.prototype,K),f!==void 0&&f.Event!==void 0&&tt.set(f.Event.prototype,K);class G{constructor(){Et.set(this,Object.create(null))}addEventListener(o,i,c){let d=W(this),{callback:b,capture:A,once:L,passive:P,signal:R,type:S}=function(j,N,H){var Q;return Tt(N),typeof H=="object"&&H!==null?{type:String(j),callback:N!=null?N:void 0,capture:Boolean(H.capture),passive:Boolean(H.passive),once:Boolean(H.once),signal:(Q=H.signal)!==null&&Q!==void 0?Q:void 0}:{type:String(j),callback:N!=null?N:void 0,capture:Boolean(H),passive:!1,once:!1,signal:void 0}}(o,i,c);if(b==null||(R==null?void 0:R.aborted))return;let D=vt(d,S),et=mt(D,b,A);et===-1?bt(D,b,A,P,L,R):function(j,N,H,Q){C.warn(ht(j)?"capture":"bubble",j.callback),ft(j)!==N&&p.warn("passive"),gt(j)!==H&&p.warn("once"),j.signal!==Q&&p.warn("signal")}(D.listeners[et],P,L,R)}removeEventListener(o,i,c){let d=W(this),{callback:b,capture:A,type:L}=function(R,S,D){return Tt(S),typeof D=="object"&&D!==null?{type:String(R),callback:S!=null?S:void 0,capture:Boolean(D.capture)}:{type:String(R),callback:S!=null?S:void 0,capture:Boolean(D)}}(o,i,c),P=d[L];b!=null&&P&&ot(P,b,A)}dispatchEvent(o){let i=W(this)[String(o.type)];if(i==null)return!0;let c=o instanceof M?o:K.wrap(o),d=g(c,"event");if(d.dispatchFlag)throw b="This event has been in dispatching.",f.DOMException?new f.DOMException(b,"InvalidStateError"):(U==null&&(U=class St extends Error{constructor(L){super(L),Error.captureStackTrace&&Error.captureStackTrace(this,St)}get code(){return 11}get name(){return"InvalidStateError"}},Object.defineProperties(U.prototype,{code:{enumerable:!0},name:{enumerable:!0}}),ct(U),ct(U.prototype)),new U(b));var b;if(d.dispatchFlag=!0,d.target=d.currentTarget=this,!d.stopPropagationFlag){let{cow:A,listeners:L}=i;i.cow=!0;for(let P=0;P<L.length;++P){let R=L[P];if(!It(R)&&(gt(R)&&yt(i,P,!A)&&(P-=1),d.inPassiveListenerFlag=ft(R),Ht(R,this,c),d.inPassiveListenerFlag=!1,d.stopImmediatePropagationFlag))break}A||(i.cow=!1)}return d.target=null,d.currentTarget=null,d.stopImmediatePropagationFlag=!1,d.stopPropagationFlag=!1,d.dispatchFlag=!1,!d.canceledFlag}}let Et=new WeakMap;function W(r,o="this"){let i=Et.get(r);return h(i!=null,"'%s' must be an object that EventTarget constructor created, but got another one: %o",o,r),i}function Tt(r){if(typeof r!="function"&&(typeof r!="object"||r===null||typeof r.handleEvent!="function")){if(r!=null&&typeof r!="object")throw new TypeError(m(I.message,[r]));I.warn(r)}}let st=Object.getOwnPropertyNames(G.prototype);for(let r=0;r<st.length;++r)st[r]!=="constructor"&&Object.defineProperty(G.prototype,st[r],{enumerable:!0});function wt(r,o){var i,c;return(c=(i=W(r,"target")[o])===null||i===void 0?void 0:i.attrCallback)!==null&&c!==void 0?c:null}function kt(r,o,i){i!=null&&typeof i!="function"&&z.warn(i),typeof i=="function"||typeof i=="object"&&i!==null?function(c,d,b){let A=vt(W(c,"target"),String(d));A.attrCallback=b,A.attrListener==null&&(A.attrListener=bt(A,function(L){return function(P){let R=L.attrCallback;typeof R=="function"&&R.call(this,P)}}(A),!1,!1,!1,void 0))}(r,o,i):function(c,d){let b=W(c,"target")[String(d)];b&&b.attrListener&&(ot(b,b.attrListener.callback,!1),b.attrCallback=b.attrListener=void 0)}(r,o)}function Rt(r,o,i){Object.defineProperty(r,"on"+o,{get(){return wt(this,o)},set(c){kt(this,o,c)},configurable:!0,enumerable:!0})}f!==void 0&&f.EventTarget!==void 0&&Object.setPrototypeOf(G.prototype,f.EventTarget.prototype),e.Event=M,e.EventTarget=G,e.default=G,e.defineCustomEventTarget=function(...r){class o extends G{}for(let i=0;i<r.length;++i)Rt(o.prototype,r[i]);return o},e.defineEventAttribute=Rt,e.getEventAttributeValue=wt,e.setErrorHandler=function(r){h(typeof r=="function"||r===void 0,"The error handler must be a function or undefined, but got %o.",r),y=r},e.setEventAttributeValue=kt,e.setWarningHandler=function(r){h(typeof r=="function"||r===void 0,"The warning handler must be a function or undefined, but got %o.",r),t=r}}).call(this,s(3),s(0))},function(u,e){var s,n,a=u.exports={};function h(){throw new Error("setTimeout has not been defined")}function m(){throw new Error("clearTimeout has not been defined")}function T(E){if(s===setTimeout)return setTimeout(E,0);if((s===h||!s)&&setTimeout)return s=setTimeout,setTimeout(E,0);try{return s(E,0)}catch{try{return s.call(null,E,0)}catch{return s.call(this,E,0)}}}(function(){try{s=typeof setTimeout=="function"?setTimeout:h}catch{s=h}try{n=typeof clearTimeout=="function"?clearTimeout:m}catch{n=m}})();var y,f=[],t=!1,l=-1;function v(){t&&y&&(t=!1,y.length?f=y.concat(f):l=-1,f.length&&w())}function w(){if(!t){var E=T(v);t=!0;for(var C=f.length;C;){for(y=f,f=[];++l<C;)y&&y[l].run();l=-1,C=f.length}y=null,t=!1,function(p){if(n===clearTimeout)return clearTimeout(p);if((n===m||!n)&&clearTimeout)return n=clearTimeout,clearTimeout(p);try{n(p)}catch{try{return n.call(null,p)}catch{return n.call(this,p)}}}(E)}}function O(E,C){this.fun=E,this.array=C}function k(){}a.nextTick=function(E){var C=new Array(arguments.length-1);if(arguments.length>1)for(var p=1;p<arguments.length;p++)C[p-1]=arguments[p];f.push(new O(E,C)),f.length!==1||t||T(w)},O.prototype.run=function(){this.fun.apply(null,this.array)},a.title="browser",a.browser=!0,a.env={},a.argv=[],a.version="",a.versions={},a.on=k,a.addListener=k,a.once=k,a.off=k,a.removeListener=k,a.removeAllListeners=k,a.emit=k,a.prependListener=k,a.prependOnceListener=k,a.listeners=function(E){return[]},a.binding=function(E){throw new Error("process.binding is not supported")},a.cwd=function(){return"/"},a.chdir=function(E){throw new Error("process.chdir is not supported")},a.umask=function(){return 0}},function(u,e,s){"use strict";var n=s(5),a=s(6),h=s(7),m=s(8);function T(t,l,v){var w=t;return a(l)?(v=l,typeof t=="string"&&(w={uri:t})):w=m(l,{uri:t}),w.callback=v,w}function y(t,l,v){return f(l=T(t,l,v))}function f(t){if(t.callback===void 0)throw new Error("callback argument missing");var l=!1,v=function(g,x,_){l||(l=!0,t.callback(g,x,_))};function w(){var g=void 0;if(g=p.response?p.response:p.responseText||function(x){try{if(x.responseType==="document")return x.responseXML;var _=x.responseXML&&x.responseXML.documentElement.nodeName==="parsererror";if(x.responseType===""&&!_)return x.responseXML}catch{}return null}(p),J)try{g=JSON.parse(g)}catch{}return g}function O(g){return clearTimeout(I),g instanceof Error||(g=new Error(""+(g||"Unknown XMLHttpRequest Error"))),g.statusCode=0,v(g,X)}function k(){if(!C){var g;clearTimeout(I),g=t.useXDR&&p.status===void 0?200:p.status===1223?204:p.status;var x=X,_=null;return g!==0?(x={body:w(),statusCode:g,method:M,headers:{},url:z,rawRequest:p},p.getAllResponseHeaders&&(x.headers=h(p.getAllResponseHeaders()))):_=new Error("Internal XMLHttpRequest Error"),v(_,x,x.body)}}var E,C,p=t.xhr||null;p||(p=t.cors||t.useXDR?new y.XDomainRequest:new y.XMLHttpRequest);var I,z=p.url=t.uri||t.url,M=p.method=t.method||"GET",V=t.body||t.data,B=p.headers=t.headers||{},q=!!t.sync,J=!1,X={body:void 0,headers:{},statusCode:0,method:M,url:z,rawRequest:p};if("json"in t&&t.json!==!1&&(J=!0,B.accept||B.Accept||(B.Accept="application/json"),M!=="GET"&&M!=="HEAD"&&(B["content-type"]||B["Content-Type"]||(B["Content-Type"]="application/json"),V=JSON.stringify(t.json===!0?V:t.json))),p.onreadystatechange=function(){p.readyState===4&&setTimeout(k,0)},p.onload=k,p.onerror=O,p.onprogress=function(){},p.onabort=function(){C=!0},p.ontimeout=O,p.open(M,z,!q,t.username,t.password),q||(p.withCredentials=!!t.withCredentials),!q&&t.timeout>0&&(I=setTimeout(function(){if(!C){C=!0,p.abort("timeout");var g=new Error("XMLHttpRequest timeout");g.code="ETIMEDOUT",O(g)}},t.timeout)),p.setRequestHeader)for(E in B)B.hasOwnProperty(E)&&p.setRequestHeader(E,B[E]);else if(t.headers&&!function(g){for(var x in g)if(g.hasOwnProperty(x))return!1;return!0}(t.headers))throw new Error("Headers cannot be set on an XDomainRequest object");return"responseType"in t&&(p.responseType=t.responseType),"beforeSend"in t&&typeof t.beforeSend=="function"&&t.beforeSend(p),p.send(V||null),p}u.exports=y,u.exports.default=y,y.XMLHttpRequest=n.XMLHttpRequest||function(){},y.XDomainRequest="withCredentials"in new y.XMLHttpRequest?y.XMLHttpRequest:n.XDomainRequest,function(t,l){for(var v=0;v<t.length;v++)l(t[v])}(["get","put","post","patch","head","delete"],function(t){y[t==="delete"?"del":t]=function(l,v,w){return(v=T(l,v,w)).method=t.toUpperCase(),f(v)}})},function(u,e,s){(function(n){var a;a=typeof window!="undefined"?window:n!==void 0?n:typeof self!="undefined"?self:{},u.exports=a}).call(this,s(0))},function(u,e){u.exports=function(n){if(!n)return!1;var a=s.call(n);return a==="[object Function]"||typeof n=="function"&&a!=="[object RegExp]"||typeof window!="undefined"&&(n===window.setTimeout||n===window.alert||n===window.confirm||n===window.prompt)};var s=Object.prototype.toString},function(u,e){var s=function(n){return n.replace(/^\s+|\s+$/g,"")};u.exports=function(n){if(!n)return{};for(var a,h={},m=s(n).split(` | ||
`),T=0;T<m.length;T++){var y=m[T],f=y.indexOf(":"),t=s(y.slice(0,f)).toLowerCase(),l=s(y.slice(f+1));h[t]===void 0?h[t]=l:(a=h[t],Object.prototype.toString.call(a)==="[object Array]"?h[t].push(l):h[t]=[h[t],l])}return h}},function(u,e){u.exports=function(){for(var n={},a=0;a<arguments.length;a++){var h=arguments[a];for(var m in h)s.call(h,m)&&(n[m]=h[m])}return n};var s=Object.prototype.hasOwnProperty}])})});if(typeof DocumentFragment=="undefined"){class u{}globalThis.DocumentFragment=u}globalThis.customElements||(globalThis.customElements={get(u){},define(u,e,s){},upgrade(u){},whenDefined(u){return Promise.resolve(globalThis.HTMLElement)}});var Y;if(!globalThis.CustomEvent){class u{constructor(s,n={}){Ct(this,Y,void 0);Lt(this,Y,n==null?void 0:n.detail)}get detail(){At(this,Y)}initCustomEvent(s,n,a,h){}}Y=new WeakMap,globalThis.CustomEvent=u}if(!globalThis.EventTarget){class u{addEventListener(){}removeEventListener(){}dispatchEvent(s){return!0}}globalThis.EventTarget=u}if(!globalThis.HTMLElement){class u extends EventTarget{}globalThis.HTMLElement=u}if(!globalThis.HTMLVideoElement){class u extends EventTarget{}globalThis.HTMLVideoElement=u}var Pt,Mt;if(!((Pt=globalThis.document)==null?void 0:Pt.createElement)){let u=(Mt=globalThis.document)!=null?Mt:{};u.createElement=function(s,n){return new HTMLElement},globalThis.document=u}var _t=Wt(Ot());var Bt=document.createElement("template");Bt.innerHTML=` | ||
<style> | ||
@@ -74,3 +74,3 @@ /* These styles simulate a user passing these via props. Until | ||
</div> | ||
`;var at=class extends HTMLElement{constructor(){super();let o=this.attachShadow({mode:"open"});o.appendChild(Ct.content.cloneNode(!0)),this.overlay=o.getElementById("overlay"),this.overlayText=o.getElementById("overlay-text")}connectedCallback(){this.setupDragEvents()}attributeChangedCallback(){this.shadowRoot.getElementById("overlay-text").innerHTML=this.getAttribute("text")}static get observedAttributes(){return["text","mux-uploader"]}get muxUploader(){let o=this.getAttribute("mux-uploader");return o?document.getElementById(o):null}setupDragEvents(){this.addEventListener("dragenter",o=>{o.preventDefault(),o.stopPropagation(),this.setAttribute("active","")}),this.addEventListener("dragleave",o=>{this.removeAttribute("active")}),this.addEventListener("dragover",o=>{o.preventDefault(),o.stopPropagation()}),this.addEventListener("drop",o=>{var b;o.preventDefault(),o.stopPropagation();let{dataTransfer:a}=o,{files:r}=a,i=r[0];((b=this.muxUploader)!=null?b:this).dispatchEvent(new CustomEvent("file-ready",{composed:!0,bubbles:!0,detail:i})),this.removeAttribute("active")})}};globalThis.customElements.get("mux-uploader-drop")||(globalThis.customElements.define("mux-uploader-drop",at),globalThis.MuxUploaderDropElement=at);var Nt=` | ||
`;var ut=class extends HTMLElement{constructor(){super();let e=this.attachShadow({mode:"open"});e.appendChild(Bt.content.cloneNode(!0)),this.overlay=e.getElementById("overlay"),this.overlayText=e.getElementById("overlay-text")}connectedCallback(){this.setupDragEvents()}attributeChangedCallback(){this.shadowRoot.getElementById("overlay-text").innerHTML=this.getAttribute("text")}static get observedAttributes(){return["text","mux-uploader"]}get muxUploader(){let e=this.getAttribute("mux-uploader");return e?document.getElementById(e):null}setupDragEvents(){this.addEventListener("dragenter",e=>{e.preventDefault(),e.stopPropagation(),this.setAttribute("active","")}),this.addEventListener("dragleave",e=>{this.removeAttribute("active")}),this.addEventListener("dragover",e=>{e.preventDefault(),e.stopPropagation()}),this.addEventListener("drop",e=>{var m;e.preventDefault(),e.stopPropagation();let{dataTransfer:s}=e,{files:n}=s,a=n[0];((m=this.muxUploader)!=null?m:this).dispatchEvent(new CustomEvent("file-ready",{composed:!0,bubbles:!0,detail:a})),this.removeAttribute("active")})}};globalThis.customElements.get("mux-uploader-drop")||(globalThis.customElements.define("mux-uploader-drop",ut),globalThis.MuxUploaderDropElement=ut);var Jt=` | ||
:host { | ||
@@ -240,5 +240,5 @@ font-family: var(--uploader-font-family, Arial); | ||
} | ||
`,Pt=document.createElement("template");Pt.innerHTML=` | ||
`,Dt=document.createElement("template");Dt.innerHTML=` | ||
<style> | ||
${Nt} | ||
${Jt} | ||
</style> | ||
@@ -280,3 +280,3 @@ | ||
</slot> | ||
`;var et={BAR:"bar",RADIAL:"radial"},zt=f=>{var o;return Number((o=f.svgCircle)==null?void 0:o.getAttribute("r"))},$=f=>zt(f)*2*Math.PI,qt="Media upload progress bar",Lt=["Enter"," "],nt=class extends HTMLElement{constructor(){super();var r,i,h,b,w,y,d,t,u;let o=this.attachShadow({mode:"open"}),a=Pt.content.cloneNode(!0);o.appendChild(a),this.hiddenFileInput=(r=this.shadowRoot)==null?void 0:r.querySelector('input[type="file"]'),this.filePickerButton=(i=this.shadowRoot)==null?void 0:i.querySelector("button"),this.svgCircle=(h=this.shadowRoot)==null?void 0:h.querySelector("circle"),this.progressBar=(b=this.shadowRoot)==null?void 0:b.getElementById("progress-bar"),this.uploadPercentage=(w=this.shadowRoot)==null?void 0:w.getElementById("upload-status"),this.statusMessage=(y=this.shadowRoot)==null?void 0:y.getElementById("status-message"),this.retryButton=(d=this.shadowRoot)==null?void 0:d.getElementById("retry-button"),this.srOnlyText=(t=this.shadowRoot)==null?void 0:t.getElementById("sr-only"),(u=this.progressBar)==null||u.setAttribute("aria-description",qt)}connectedCallback(){var o;if(this.setDefaultType(),this.setupFilePickerButton(),this.setupRetry(),this.setupDropHandler(),this.hasAttribute("disable-drop")){let a=(o=this.shadowRoot)==null?void 0:o.querySelector("mux-uploader-drop");a==null||a.setAttribute("disable-drop","")}}disconnectedCallback(){this.removeEventListener("file-ready",this.handleUpload,!1)}get url(){return this.getAttribute("url")}set url(o){this.setAttribute("url",o)}setDefaultType(){let o=this.getAttribute("type");o||this.setAttribute("type",et.BAR),o===et.RADIAL&&this.svgCircle&&(this.svgCircle.style.strokeDasharray=`${$(this)} ${$(this)}`,this.svgCircle.style.strokeDashoffset=`${$(this)}`)}setupRetry(){var a;(a=this.retryButton)==null||a.addEventListener("click",()=>{this.resetState()});let o=r=>{let{key:i}=r;if(!Lt.includes(i)){this.removeEventListener("keyup",o);return}this.resetState()};this.addEventListener("keydown",r=>{let{metaKey:i,altKey:h,key:b}=r;if(i||h||!Lt.includes(b)){this.removeEventListener("keyup",o);return}this.addEventListener("keyup",o)})}setupDropHandler(){this.addEventListener("file-ready",this.handleUpload)}resetState(){this.removeAttribute("upload-error"),this.removeAttribute("upload-in-progress"),this.statusMessage&&(this.statusMessage.innerHTML=""),this.uploadPercentage&&(this.uploadPercentage.innerHTML="")}setupFilePickerButton(){var o,a,r,i;(a=(o=this.shadowRoot)==null?void 0:o.querySelector("slot[name=custom-button]"))==null||a.addEventListener("slotchange",()=>{var h;this.filePickerButton=(h=this.shadowRoot)==null?void 0:h.querySelector("slot[name=custom-button]")}),(r=this.filePickerButton)==null||r.addEventListener("click",()=>{var h;(h=this.hiddenFileInput)==null||h.click()}),(i=this.hiddenFileInput)==null||i.addEventListener("change",h=>{var w,y;let b=(y=(w=this.hiddenFileInput)==null?void 0:w.files)==null?void 0:y[0];b&&this.dispatchEvent(new CustomEvent("file-ready",{composed:!0,bubbles:!0,detail:b}))})}setProgress(o){var a;switch(this.uploadPercentage&&(this.uploadPercentage.innerHTML=`${Math.floor(o)}%`),(a=this.progressBar)==null||a.setAttribute("aria-valuenow",`${Math.floor(o)}`),this.getAttribute("type")){case et.BAR:this.progressBar&&(this.progressBar.style.width=`${o}%`);case et.RADIAL:if(this.svgCircle){let r=$(this)-o/100*$(this);this.svgCircle.style.strokeDashoffset=r.toString()}}}handleUpload(o){var h;let a=this.url,r="No url attribute specified -- cannot handleUpload";a?this.statusMessage&&(this.statusMessage.innerHTML=""):(this.statusMessage&&(this.statusMessage.innerHTML=r),console.error(r)),this.statusMessage&&(this.removeAttribute("upload-error"),this.statusMessage.innerHTML=""),this.setAttribute("upload-in-progress",""),(h=this.progressBar)==null||h.focus();let i=At.createUpload({endpoint:a||"https://storage.googleapis.com/video-storage-us-east1-uploads/B6vYEZ9utvayi7tJlcwjG4ckho8W5100QHse5OEIyOqg?Expires=1654714562&GoogleAccessId=direct-uploads-writer-prod%40mux-cloud.iam.gserviceaccount.com&Signature=ZQLdkP8u432oNZ5WtQwPB22qR%2B03BWd0DOdEFohak0dNG2fzJpE9RLCyAb8uJo3N8YH62UecxJs%2FefKFETicJd978Dldh3E4yTJQLWFR%2B%2FpCrYdS6EQRG7D08Vb9yz82jRJRgJ37cnJgNCzUFUx8AFX%2FG0o8BA3Wcm2AkdcLRWhvt2tj5wTzbxm8ZBflhYckJs7kNaiKEfIXk0UzNBPRJPGzyjzKUyyU1Keu0rERepH7BM8wJeGiw7KrD1TkqeMcA2NSpht4COKXYp3aNrryLGYfx%2B362U3KR0TaRalskKdqODbhBtTlLbFRALog3mGFq3CVJ2CG5Vztq6rXa00VRQ%3D%3D&upload_id=ADPycdsGqgIsU8tBAiu2k4Gt5hPa4QUaURD71neXpjQMfoQUeFGVDvE3qyAN7kzAVUcbSfK6tDhHwpSNiQMSvW41tPiTxw",file:o.detail});i.on("error",b=>{let w="An error has occurred";this.setAttribute("upload-error",""),this.statusMessage&&(this.statusMessage.innerHTML=w),console.error(b.detail.message)}),i.on("progress",b=>{this.setProgress(b.detail)}),i.on("success",()=>{let b="Upload complete!";this.statusMessage&&(this.statusMessage.innerHTML=b),this.srOnlyText&&(this.srOnlyText.innerHTML=b),console.info(b)})}};globalThis.customElements.get("mux-uploader")||(globalThis.customElements.define("mux-uploader",nt),globalThis.MuxUploaderElement=nt);var Wt=nt;})(); | ||
`;var nt={BAR:"bar",RADIAL:"radial"},Kt=u=>{var e;return Number((e=u.svgCircle)==null?void 0:e.getAttribute("r"))},Z=u=>Kt(u)*2*Math.PI,Qt="Media upload progress bar",jt=["Enter"," "],rt=class extends HTMLElement{constructor(){super();var n,a,h,m,T,y,f,t,l;let e=this.attachShadow({mode:"open"}),s=Dt.content.cloneNode(!0);e.appendChild(s),this.hiddenFileInput=(n=this.shadowRoot)==null?void 0:n.querySelector('input[type="file"]'),this.filePickerButton=(a=this.shadowRoot)==null?void 0:a.querySelector("button"),this.svgCircle=(h=this.shadowRoot)==null?void 0:h.querySelector("circle"),this.progressBar=(m=this.shadowRoot)==null?void 0:m.getElementById("progress-bar"),this.uploadPercentage=(T=this.shadowRoot)==null?void 0:T.getElementById("upload-status"),this.statusMessage=(y=this.shadowRoot)==null?void 0:y.getElementById("status-message"),this.retryButton=(f=this.shadowRoot)==null?void 0:f.getElementById("retry-button"),this.srOnlyText=(t=this.shadowRoot)==null?void 0:t.getElementById("sr-only"),(l=this.progressBar)==null||l.setAttribute("aria-description",Qt)}connectedCallback(){var e;if(this.setDefaultType(),this.setupFilePickerButton(),this.setupRetry(),this.setupDropHandler(),this.hasAttribute("disable-drop")){let s=(e=this.shadowRoot)==null?void 0:e.querySelector("mux-uploader-drop");s==null||s.setAttribute("disable-drop","")}}disconnectedCallback(){this.removeEventListener("file-ready",this.handleUpload,!1)}get url(){return this.getAttribute("url")}set url(e){this.setAttribute("url",e)}setDefaultType(){let e=this.getAttribute("type");e||this.setAttribute("type",nt.BAR),e===nt.RADIAL&&this.svgCircle&&(this.svgCircle.style.strokeDasharray=`${Z(this)} ${Z(this)}`,this.svgCircle.style.strokeDashoffset=`${Z(this)}`)}setupRetry(){var s;(s=this.retryButton)==null||s.addEventListener("click",()=>{this.resetState()});let e=n=>{let{key:a}=n;if(!jt.includes(a)){this.removeEventListener("keyup",e);return}this.resetState()};this.addEventListener("keydown",n=>{let{metaKey:a,altKey:h,key:m}=n;if(a||h||!jt.includes(m)){this.removeEventListener("keyup",e);return}this.addEventListener("keyup",e)})}setupDropHandler(){this.addEventListener("file-ready",this.handleUpload)}resetState(){this.removeAttribute("upload-error"),this.removeAttribute("upload-in-progress"),this.statusMessage&&(this.statusMessage.innerHTML=""),this.uploadPercentage&&(this.uploadPercentage.innerHTML="")}setupFilePickerButton(){var e,s,n,a;(s=(e=this.shadowRoot)==null?void 0:e.querySelector("slot[name=custom-button]"))==null||s.addEventListener("slotchange",()=>{var h;this.filePickerButton=(h=this.shadowRoot)==null?void 0:h.querySelector("slot[name=custom-button]")}),(n=this.filePickerButton)==null||n.addEventListener("click",()=>{var h;(h=this.hiddenFileInput)==null||h.click()}),(a=this.hiddenFileInput)==null||a.addEventListener("change",h=>{var T,y;let m=(y=(T=this.hiddenFileInput)==null?void 0:T.files)==null?void 0:y[0];m&&this.dispatchEvent(new CustomEvent("file-ready",{composed:!0,bubbles:!0,detail:m}))})}setProgress(e){var s;switch(this.uploadPercentage&&(this.uploadPercentage.innerHTML=`${Math.floor(e)}%`),(s=this.progressBar)==null||s.setAttribute("aria-valuenow",`${Math.floor(e)}`),this.getAttribute("type")){case nt.BAR:this.progressBar&&(this.progressBar.style.width=`${e}%`);case nt.RADIAL:if(this.svgCircle){let n=Z(this)-e/100*Z(this);this.svgCircle.style.strokeDashoffset=n.toString()}}}handleUpload(e){var h;let s=this.url,n="No url attribute specified -- cannot handleUpload";s?this.statusMessage&&(this.statusMessage.innerHTML=""):(this.statusMessage&&(this.statusMessage.innerHTML=n),console.error(n)),this.statusMessage&&(this.removeAttribute("upload-error"),this.statusMessage.innerHTML=""),this.setAttribute("upload-in-progress",""),(h=this.progressBar)==null||h.focus();let a=_t.createUpload({endpoint:s||"https://storage.googleapis.com/video-storage-us-east1-uploads/B6vYEZ9utvayi7tJlcwjG4ckho8W5100QHse5OEIyOqg?Expires=1654714562&GoogleAccessId=direct-uploads-writer-prod%40mux-cloud.iam.gserviceaccount.com&Signature=ZQLdkP8u432oNZ5WtQwPB22qR%2B03BWd0DOdEFohak0dNG2fzJpE9RLCyAb8uJo3N8YH62UecxJs%2FefKFETicJd978Dldh3E4yTJQLWFR%2B%2FpCrYdS6EQRG7D08Vb9yz82jRJRgJ37cnJgNCzUFUx8AFX%2FG0o8BA3Wcm2AkdcLRWhvt2tj5wTzbxm8ZBflhYckJs7kNaiKEfIXk0UzNBPRJPGzyjzKUyyU1Keu0rERepH7BM8wJeGiw7KrD1TkqeMcA2NSpht4COKXYp3aNrryLGYfx%2B362U3KR0TaRalskKdqODbhBtTlLbFRALog3mGFq3CVJ2CG5Vztq6rXa00VRQ%3D%3D&upload_id=ADPycdsGqgIsU8tBAiu2k4Gt5hPa4QUaURD71neXpjQMfoQUeFGVDvE3qyAN7kzAVUcbSfK6tDhHwpSNiQMSvW41tPiTxw",file:e.detail});a.on("error",m=>{let T="An error has occurred";this.setAttribute("upload-error",""),this.statusMessage&&(this.statusMessage.innerHTML=T),console.error(m.detail.message)}),a.on("progress",m=>{this.setProgress(m.detail)}),a.on("success",()=>{let m="Upload complete!";this.statusMessage&&(this.statusMessage.innerHTML=m),this.srOnlyText&&(this.srOnlyText.innerHTML=m),console.info(m)})}};globalThis.customElements.get("mux-uploader")||(globalThis.customElements.define("mux-uploader",rt),globalThis.MuxUploaderElement=rt);var oe=rt;})(); | ||
//# sourceMappingURL=mux-uploader.js.map |
@@ -0,1 +1,2 @@ | ||
import '@mux/polyfills'; | ||
import './mux-uploader-drop'; | ||
@@ -2,0 +3,0 @@ declare class MuxUploaderElement extends HTMLElement { |
@@ -0,1 +1,2 @@ | ||
import '@mux/polyfills'; | ||
import './mux-uploader-drop'; | ||
@@ -2,0 +3,0 @@ declare class MuxUploaderElement extends HTMLElement { |
{ | ||
"name": "@mux/mux-uploader", | ||
"version": "0.1.0-canary.10-8eff156", | ||
"version": "0.1.0-canary.10-b1efffb", | ||
"description": "An uploader elements to be used with Mux Direct Uploads", | ||
@@ -5,0 +5,0 @@ "main": "./dist/index.cjs", |
@@ -0,1 +1,2 @@ | ||
import '@mux/polyfills'; | ||
import * as UpChunk from '@mux/upchunk'; | ||
@@ -2,0 +3,0 @@ import './mux-uploader-drop'; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
433321
1872