@ckeditor/ckeditor5-uploadcare 0.0.0-nightly-next-20251229.0 → 0.0.0-nightly-next-20251230.0
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/build/uploadcare.js +1 -1
- package/dist/index.js +3 -3
- package/package.json +9 -9
- package/src/ui/uploadcarecontroller.js +2 -2
- package/src/ui/uploadcareformview.js +1 -1
- package/src/uploadcareediting.js +1 -1
- package/src/uploadcareimageedit/ui/uploadcareimageeditcontroller.js +2 -2
- package/src/uploadcareimageedit/ui/uploadcareimageeditformeditingview.js +1 -1
- package/src/uploadcareimageedit/ui/uploadcareimageeditformerrorview.js +1 -1
- package/src/uploadcareimageedit/ui/uploadcareimageeditformloadingview.js +1 -1
- package/src/uploadcareimageedit/ui/uploadcareimageeditformview.js +1 -1
- package/src/uploadcareimageedit/uploadcareimageeditcommand.js +1 -1
- package/src/uploadcareimageedit/uploadcareimageeditediting.js +1 -1
- package/src/uploadcareimageedit/uploadcareimageeditui.js +1 -1
- package/src/utils/dialogfocusmanagerview.js +1 -1
- package/src/utils/editingutils.js +1 -1
|
@@ -20,5 +20,5 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
import{global as
|
|
24
|
-
|
|
23
|
+
import{global as _0x44ae7a,ObservableMixin as _0x545daa}from'ckeditor5/src/utils.js';import{DialogViewPosition as _0x4f7b14}from'ckeditor5/src/ui.js';import{IconUploadcareImageEdit as _0x9c82f5}from'ckeditor5/src/icons.js';import{UploadcareImageEditFormView as _0x4116fa}from'./uploadcareimageeditformview.js';import{UploadUtils as _0x23f619}from'../../utils/uploadutils.js';import{getImageUrls as _0x3da9db,getImageDimension as _0x3d0b40}from'../../utils/editingutils.js';import{isAncestor as _0x359310}from'../../utils/isancestor.js';export class UploadcareImageEditController extends/* #__PURE__ -- @preserve */
|
|
24
|
+
_0x545daa(){['_editor'];['_dialog'];['_imageElement'];['_imageCache'];['_controller'];['_attributes'];constructor(_0x35dbc5,_0x273156,_0x5405a2){super(),this['_editor']=_0x35dbc5,this['_dialog']=_0x273156,this['_imageElement']=_0x5405a2,this['_imageCache']=this['_editor']['plugins']['get']('UploadcareImageEditUI')['imageCache'],this['_attributes']=this['_editor']['config']['get']('uploadcare.editor')||{},this['set']({'isActive':!0x0,'imageStatus':'ready','imageErrorType':null,'imageId':null,'imageSrc':null,'imageDimension':null,'imageUploadProgress':null}),this['_prepareImage'](),this['_showDialog']();}['destroy'](){this['isActive']=!0x1,this['stopListening'](),this['stopDelegating'](),'uploading'===this['imageStatus']&&this['_controller']&&this['_controller']['abort']();}async['_prepareImage'](){const _0x27a99d=this['_imageElement'],_0x50d857=_0x27a99d['getAttribute']('uploadcareImageId'),_0x13909f=_0x27a99d['getAttribute']('src');if(_0x50d857)await this['_loadImageInfo'](_0x50d857,_0x13909f);else{if(this['_imageCache']['has'](_0x13909f)){const _0x1f1f27=this['_imageCache']['get'](_0x13909f);this['imageStatus']='ready',this['imageErrorType']=null,this['imageSrc']=_0x1f1f27['url'],this['imageDimension']=_0x1f1f27['dimension'],this['imageId']=_0x1f1f27['id'];}else this['imageStatus']='uploading',this['imageUploadProgress']=0x0,this['_controller']=new AbortController(),await this['_uploadImage'](this['_imageElement'],this['_controller']);}}['_showDialog'](){const {locale:_0x15f25a}=this['_editor'],t=_0x15f25a['t'],_0xe6cdb8=new _0x4116fa(_0x15f25a,this['imageStatus'],this['_attributes']);_0xe6cdb8['bind']('status')['to'](this,'imageStatus'),_0xe6cdb8['_loadingView']['bind']('imageUploadProgress')['to'](this,'imageUploadProgress'),_0xe6cdb8['_editingView']['bind']('imageSrc')['to'](this,'imageSrc'),_0xe6cdb8['_errorView']['bind']('errorType')['to'](this,'imageErrorType'),this['_addEditViewListeners'](_0xe6cdb8,this['_imageElement']),this['_dialog']['show']({'id':'uploadcareImageEdit','icon':_0x9c82f5,'title':t({'id':'Edit\x20Image\x20(Uploadcare)','string':'Edit\x20image'}),'content':_0xe6cdb8,'position':_0x4f7b14['EDITOR_TOP_CENTER'],'isModal':!0x0,'onShow':()=>{_0xe6cdb8['focus']();},'onHide':()=>{_0xe6cdb8['destroy'](),this['destroy']();},'keystrokeHandlerOptions':{'filter':_0x20ccec=>!_0x359310(_0x20ccec,_0xe6cdb8['element'])}});}['_loadImageInfo'](_0x381163,_0x2d3cbc){return _0x23f619['getInfo'](_0x381163,{'publicKey':this['_editor']['config']['get']('uploadcare.pubkey'),'baseURL':this['_editor']['config']['get']('uploadcare.uploader.baseUrl')})['then'](_0xb7bf33=>{const {width:_0xde07e0,height:_0x14c713}=_0xb7bf33['imageInfo'];this['imageStatus']='ready',this['imageErrorType']=null,this['imageSrc']=_0x2d3cbc,this['imageDimension']={'width':_0xde07e0,'height':_0x14c713},this['imageId']=_0x381163;})['catch'](_0x38ad06=>{this['imageStatus']='error',this['imageErrorType']='FileNotFoundError'===_0x38ad06['code']?'NotFound':'Network',this['imageSrc']=null,this['imageDimension']=null,this['imageId']=null,this['imageUploadProgress']=null;});}['_uploadImage'](_0x590ec6,_0x112c24){return this['_getImageAsFile'](_0x590ec6)['then'](_0x15f739=>_0x23f619['upload']({'publicKey':this['_editor']['config']['get']('uploadcare.pubkey'),'baseURL':this['_editor']['config']['get']('uploadcare.uploader.baseUrl'),'baseCDN':this['_editor']['config']['get']('uploadcare.uploader.cdnCname'),'signal':_0x112c24['signal'],'file':_0x15f739,'onProgress':_0x574b25=>{_0x574b25&&_0x574b25['isComputable']&&(this['imageUploadProgress']=Math['ceil'](0x64*_0x574b25['value']));}}))['then'](_0x3e62af=>{const {width:_0x1bc53e,height:_0x465ca3}=_0x3e62af['imageInfo'];this['imageStatus']='ready',this['imageErrorType']=null,this['imageSrc']=_0x3e62af['cdnUrl'],this['imageDimension']={'width':_0x1bc53e,'height':_0x465ca3},this['imageId']=_0x3e62af['uuid'],this['imageUploadProgress']=null;const _0xd6d230=_0x590ec6['getAttribute']('src');this['_imageCache']['set'](_0xd6d230,{'id':_0x3e62af['uuid'],'url':_0x3e62af['cdnUrl'],'dimension':this['imageDimension']});})['catch'](_0x85a320=>{this['imageStatus']='error',this['imageErrorType']='FileNotFoundError'===_0x85a320['code']?'NotFound':'Network',this['imageSrc']=null,this['imageDimension']=null,this['imageId']=null,this['imageUploadProgress']=null;});}['_addEditViewListeners'](_0x28172c,_0x20b012){_0x28172c['on']('apply',(_0xffbeb1,_0x27cf95)=>{this['_replaceImage'](_0x20b012,_0x27cf95['imageSrc'],this['imageId']),this['_dialog']['hide']();}),_0x28172c['on']('retry',()=>{this['imageStatus']='uploading',this['imageUploadProgress']=0x0,this['_controller']=new AbortController(),this['_uploadImage'](this['_imageElement'],this['_controller']);}),_0x28172c['on']('cancel',()=>{this['_dialog']['hide']();});}['_replaceImage'](_0x5eec5a,_0xa94fdf,_0x1afbf3){const _0x14370c=this['_editor'],{width:_0x5d2857,height:_0x5747df}=_0x3d0b40(_0xa94fdf,this['imageDimension']['width'],this['imageDimension']['height']),{imageFallbackUrl:_0x44dfdf,imageSources:_0x10dcac}=_0x3da9db(_0xa94fdf,_0x5d2857);_0x14370c['model']['change'](_0x21ace0=>{if('$graveyard'===_0x5eec5a['root']['rootName']){_0x14370c['execute']('insertImage',{'imageType':_0x5eec5a['is']('element','imageInline')?'imageInline':null,'source':{...Object['fromEntries'](_0x5eec5a['getAttributes']()),'uploadcareImageId':_0x1afbf3,'src':_0x44dfdf,'sources':_0x10dcac,'width':_0x5d2857,'height':_0x5747df}});const _0x42a6a4=_0x5eec5a['getChildren']();_0x5eec5a=_0x14370c['model']['document']['selection']['getSelectedElement']();for(const _0x11fbc9 of _0x42a6a4)_0x21ace0['append'](_0x21ace0['cloneElement'](_0x11fbc9),_0x5eec5a);}else _0x21ace0['setSelection'](_0x5eec5a,'on'),_0x14370c['execute']('uploadcareImageReplace',{...Object['fromEntries'](_0x5eec5a['getAttributes']()),'uploadcareImageId':_0x1afbf3,'src':_0x44dfdf,'sources':_0x10dcac,'width':_0x5d2857,'height':_0x5747df},_0x5eec5a);_0x21ace0['setSelection'](_0x5eec5a,'on');});}async['_getImageAsFile'](_0x3e473d){const _0x293dbc=_0x44ae7a['window'],_0x16490b=_0x44ae7a['document']['location']['href'],_0xd1091e=new _0x293dbc['URL'](_0x3e473d['getAttribute']('src'),_0x16490b);if('data:'===_0xd1091e['protocol']){const _0x4ef9e1=_0xd1091e['href']['split'](','),_0x370d78=_0x4ef9e1[0x0]['match'](/:(.*?);/)[0x1],_0x578a67=_0x370d78['split']('/')[0x1],_0x250459=_0x293dbc['atob'](_0x4ef9e1[_0x4ef9e1['length']-0x1]);let _0x4592c8=_0x250459['length'];const _0x278621=new _0x293dbc['Uint8Array'](_0x4592c8);for(;_0x4592c8--;)_0x278621[_0x4592c8]=_0x250459['charCodeAt'](_0x4592c8);return new _0x293dbc['File']([_0x278621],'image.'+_0x578a67,{'type':_0x370d78});}const _0x2b3291=_0xd1091e['href']['split']('/'),_0x48dfd3=_0x2b3291[_0x2b3291['length']-0x1],_0x350ce6=_0x48dfd3['split']('.')[0x1];return _0x293dbc['fetch'](_0xd1091e['href'])['then'](_0x542dee=>_0x542dee['clone']()['blob']())['then'](_0x3422ac=>new _0x293dbc['File']([_0x3422ac],_0x48dfd3,{'type':'image/'+_0x350ce6}));}}
|
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
|
|
23
|
+
(function(_0xe0af57,_0x4431a6){const _0x565045=_0x24c6,_0x51026e=_0xe0af57();while(!![]){try{const _0x5f0d1f=-parseInt(_0x565045(0x1d9))/0x1*(parseInt(_0x565045(0x1df))/0x2)+parseInt(_0x565045(0x1ea))/0x3*(-parseInt(_0x565045(0x1e5))/0x4)+-parseInt(_0x565045(0x1e8))/0x5+-parseInt(_0x565045(0x1e1))/0x6+-parseInt(_0x565045(0x1e7))/0x7*(parseInt(_0x565045(0x1de))/0x8)+parseInt(_0x565045(0x1e4))/0x9+parseInt(_0x565045(0x1dc))/0xa*(parseInt(_0x565045(0x1e9))/0xb);if(_0x5f0d1f===_0x4431a6)break;else _0x51026e['push'](_0x51026e['shift']());}catch(_0x2ac619){_0x51026e['push'](_0x51026e['shift']());}}}(_0x23f1,0xcdbda));import{View as _0x45f8e4}from'ckeditor5/src/ui.js';function _0x24c6(_0x423f46,_0x24c105){const _0x23f1c8=_0x23f1();return _0x24c6=function(_0x24c64d,_0xc002b6){_0x24c64d=_0x24c64d-0x1d8;let _0x32506d=_0x23f1c8[_0x24c64d];return _0x32506d;},_0x24c6(_0x423f46,_0x24c105);}function _0x23f1(){const _0x2e9e6a=['2407650bnEUNu','uc-cloud-image-editor','98168nkliTm','17462BZSaiv','imageSrc','4640154AKwTMG','setTemplate','set','5241402nNjETa','10776FLSOrV','ck-uploadcare-theme','497IWlUre','4897450IlBSYN','165wnUciG','411lursyG','image-edit','41PrRsxL','bindTemplate','uc-light'];_0x23f1=function(){return _0x2e9e6a;};return _0x23f1();}export class UploadcareImageEditFormEditingView extends _0x45f8e4{constructor(_0x120a00,_0x4b7923){const _0x41673d=_0x24c6;super(_0x120a00);const _0x9c2875=this[_0x41673d(0x1da)];this[_0x41673d(0x1e3)](_0x41673d(0x1e0),''),this[_0x41673d(0x1e2)]({'tag':_0x41673d(0x1dd),'attributes':{..._0x4b7923,'class':[_0x41673d(0x1db),_0x41673d(0x1e6)],'ctx-name':_0x41673d(0x1d8),'cdn-url':_0x9c2875['to'](_0x41673d(0x1e0))}});}}
|
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
import{IconError as
|
|
23
|
+
import{IconError as _0x2e910c}from'ckeditor5/src/icons.js';import{ButtonView as _0x14903d,IconView as _0x3ac606,View as _0x505401}from'ckeditor5/src/ui.js';export class UploadcareImageEditFormErrorView extends _0x505401{constructor(_0x5b1f9a){super(_0x5b1f9a);const t=_0x5b1f9a['t'];this['set']('errorType',null);const _0x209db7=new _0x14903d(_0x5b1f9a);_0x209db7['label']=t({'id':'Try\x20again\x20(Uploadcare)','string':'Try\x20again'}),_0x209db7['withText']=!0x0,_0x209db7['class']='ck-button-action',_0x209db7['on']('execute',()=>{this['fire']('retry');}),_0x209db7['bind']('isVisible')['to'](this,'errorType',_0x330219=>'NotFound'!==_0x330219);const _0x55441c=new _0x3ac606();_0x55441c['content']=_0x2e910c,_0x55441c['extendTemplate']({'attributes':{'style':{'width':'50px','height':'50px'}}});const _0xd31131=this['bindTemplate'];this['setTemplate']({'tag':'div','attributes':{'class':['ck-uploadcare-form__error'],'tabindex':'-1'},'children':[{'tag':'div','attributes':{'class':['ck-uploadcare-form__error-contents']},'children':[_0x55441c,{'tag':'h3','attributes':{'style':{'fontWeight':'bold'}},'children':[{'text':t('Unable\x20to\x20load')}]},{'text':_0xd31131['to']('errorType',_0x4f25a8=>t('NotFound'!==_0x4f25a8?'We\x20were\x20unable\x20to\x20load\x20the\x20image\x20due\x20to\x20network\x20connection\x20issues.':'The\x20image\x20was\x20not\x20found.\x20Its\x20source\x20may\x20have\x20been\x20removed.'))},_0x209db7]},{'tag':'div','attributes':{'class':['ck-uploadcare-form__skeleton']},'children':[{'tag':'div','children':[{'tag':'span'},{'tag':'span'},{'tag':'span'}]},{'tag':'div','children':[{'tag':'span'},{'tag':'span'},{'tag':'span'},{'tag':'span'},{'tag':'span'}]}]}]});}}
|
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
import{SpinnerView as
|
|
23
|
+
import{SpinnerView as _0x28b1ee,View as _0x18c7a7}from'ckeditor5/src/ui.js';export class UploadcareImageEditFormLoadingView extends _0x18c7a7{constructor(_0xe671c2){super(_0xe671c2);const t=_0xe671c2['t'],_0x5764a8=this['bindTemplate'],_0x4734f7=new _0x28b1ee();_0x4734f7['isVisible']=!0x0,this['setTemplate']({'tag':'div','attributes':{'class':['ck-uploadcare-form__loading'],'tabindex':'-1'},'children':[{'tag':'div','attributes':{'class':['ck-uploadcare-form__loading-spinner']},'children':[_0x4734f7,{'text':_0x5764a8['to']('imageUploadProgress',_0xaa8851=>t('Loading\x20image...')+'\x20('+(_0xaa8851||0x0)+'%)')}]},{'tag':'div','attributes':{'class':['ck-uploadcare-form__skeleton']},'children':[{'tag':'div','children':[{'tag':'span'},{'tag':'span'},{'tag':'span'}]},{'tag':'div','children':[{'tag':'span'},{'tag':'span'},{'tag':'span'},{'tag':'span'},{'tag':'span'}]}]}]});}}
|
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
|
|
23
|
+
const _0x47c48c=_0x5695;(function(_0x6e3198,_0x11f351){const _0x52ace8=_0x5695,_0x3f5a75=_0x6e3198();while(!![]){try{const _0x37eae6=parseInt(_0x52ace8(0xf6))/0x1*(parseInt(_0x52ace8(0xfa))/0x2)+parseInt(_0x52ace8(0xe2))/0x3*(-parseInt(_0x52ace8(0xe5))/0x4)+parseInt(_0x52ace8(0xec))/0x5+parseInt(_0x52ace8(0xe3))/0x6+-parseInt(_0x52ace8(0xe4))/0x7*(parseInt(_0x52ace8(0x102))/0x8)+-parseInt(_0x52ace8(0x106))/0x9*(-parseInt(_0x52ace8(0xeb))/0xa)+-parseInt(_0x52ace8(0x115))/0xb*(parseInt(_0x52ace8(0x114))/0xc);if(_0x37eae6===_0x11f351)break;else _0x3f5a75['push'](_0x3f5a75['shift']());}catch(_0x3b18e2){_0x3f5a75['push'](_0x3f5a75['shift']());}}}(_0x3530,0x22f14));import{View as _0x2235a5}from'ckeditor5/src/ui.js';import{UploadcareImageEditFormLoadingView as _0x52ca0e}from'./uploadcareimageeditformloadingview.js';import{UploadcareImageEditFormErrorView as _0x3efc05}from'./uploadcareimageeditformerrorview.js';function _0x5695(_0x87dda6,_0x7e243b){const _0x35304d=_0x3530();return _0x5695=function(_0x5695ad,_0x4a9b43){_0x5695ad=_0x5695ad-0xe1;let _0x22540a=_0x35304d[_0x5695ad];return _0x22540a;},_0x5695(_0x87dda6,_0x7e243b);}function _0x3530(){const _0x32f3fe=['1458264pffGRP','11ExUnqt','setTemplate','toLowerCase','focus','addEventListener','_focusableView','279987rOnvNZ','1676304BSuzZa','42LynzaP','8GZZCuy','_waitForImageEditorComponent','retry','_addErrorViewListeners','length','detail','1046410maTSoy','628070ZNulax','cdnUrl','nodeName','_editingView','_addUploadcareImageEditorListeners','ready','add','disconnect','change:status','cancel','3CGdURd','div','createCollection','uc-cloud-image-editor','70974dREUaS','_loadingView','_items','set','clear','ck-uploadcare-form','observe','querySelector','219728LNPJGt','element','getFocusableElement','filter','9bgkkkv','addMany','ck-reset_all-excluded','addedNodes','error','apply','target','fire','_setView','once','render','status','_errorView','uploading'];_0x3530=function(){return _0x32f3fe;};return _0x3530();}import{UploadcareImageEditFormEditingView as _0x565749}from'./uploadcareimageeditformeditingview.js';import{DialogFocusManagerView as _0x200d01}from'../../utils/dialogfocusmanagerview.js';import'../../../theme/uploadcare-form.css';export class UploadcareImageEditFormView extends _0x200d01{[_0x47c48c(0xfc)];[_0x47c48c(0xfb)];[_0x47c48c(0x112)];[_0x47c48c(0xef)];[_0x47c48c(0xe1)];constructor(_0x4f5185,_0x3a71e9,_0x4df1f7){const _0x48717d=_0x47c48c;super(_0x4f5185),this[_0x48717d(0xfc)]=this[_0x48717d(0xf8)](),this[_0x48717d(0xfb)]=new _0x52ca0e(_0x4f5185),this[_0x48717d(0x112)]=new _0x3efc05(_0x4f5185),this[_0x48717d(0xef)]=new _0x565749(_0x4f5185,_0x4df1f7),this[_0x48717d(0xe1)]=new _0x2235a5(_0x4f5185),this[_0x48717d(0xe1)][_0x48717d(0x116)](this[_0x48717d(0x104)]()),this[_0x48717d(0xfd)](_0x48717d(0x111),_0x3a71e9),this[_0x48717d(0x116)]({'tag':_0x48717d(0xf7),'attributes':{'class':['ck',_0x48717d(0x108),_0x48717d(0xff)],'tabindex':'-1'},'children':this[_0x48717d(0xfc)]}),this[_0x48717d(0x10e)](),this[_0x48717d(0x10f)](_0x48717d(0x110),()=>{const _0x30f23d=_0x48717d;this[_0x30f23d(0xe6)](this[_0x30f23d(0x103)],_0x6c256e=>{const _0x3558ed=_0x30f23d;this[_0x3558ed(0xf0)](_0x6c256e);});}),this['on'](_0x48717d(0xf4),()=>{const _0x574d06=_0x48717d;this[_0x574d06(0x10e)]();}),this[_0x48717d(0xe8)]();}[_0x47c48c(0x118)](){const _0x33df98=_0x47c48c;this[_0x33df98(0x103)][_0x33df98(0x118)]();}[_0x47c48c(0x10e)](){const _0x2e94f6=_0x47c48c;switch(this[_0x2e94f6(0xfc)][_0x2e94f6(0xfe)](),this[_0x2e94f6(0x111)]){case _0x2e94f6(0x113):this[_0x2e94f6(0xfc)][_0x2e94f6(0xf2)](this[_0x2e94f6(0xfb)]);break;case _0x2e94f6(0x10a):this[_0x2e94f6(0xfc)][_0x2e94f6(0xf2)](this[_0x2e94f6(0x112)]);break;case _0x2e94f6(0xf1):this[_0x2e94f6(0xfc)][_0x2e94f6(0x107)]([this[_0x2e94f6(0xef)],this[_0x2e94f6(0xe1)]]);}}[_0x47c48c(0xe6)](_0x1b72aa,_0x4418d6){const _0x553351=_0x47c48c,_0x4bfd51=_0x553351(0xf9),_0x4b0b7c=_0x1b72aa[_0x553351(0x101)](_0x4bfd51);if(_0x4b0b7c)return _0x4418d6(_0x4b0b7c);const _0x5ed17e=new MutationObserver(_0x5acffd=>{const _0x4eabb4=_0x553351,_0x35106d=_0x5acffd[_0x4eabb4(0x105)](_0x48d888=>_0x48d888[_0x4eabb4(0x10c)]===_0x1b72aa&&_0x48d888[_0x4eabb4(0x109)][_0x4eabb4(0xe9)]>0x0&&_0x48d888[_0x4eabb4(0x109)][0x0][_0x4eabb4(0xee)][_0x4eabb4(0x117)]()===_0x4bfd51);_0x35106d[_0x4eabb4(0xe9)]&&(_0x5ed17e[_0x4eabb4(0xf3)](),_0x4418d6(_0x35106d[0x0][_0x4eabb4(0x109)][0x0]));});_0x5ed17e[_0x553351(0x100)](_0x1b72aa,{'childList':!0x0,'subtree':!0x0});}[_0x47c48c(0xf0)](_0x3182bf){const _0x378e4d=_0x47c48c;_0x3182bf[_0x378e4d(0x119)](_0x378e4d(0x10b),_0x4649e6=>{const _0x421704=_0x378e4d;this[_0x421704(0x10d)](_0x421704(0x10b),{'imageSrc':_0x4649e6[_0x421704(0xea)][_0x421704(0xed)]});}),_0x3182bf[_0x378e4d(0x119)](_0x378e4d(0xf5),()=>{const _0x904e73=_0x378e4d;this[_0x904e73(0x10d)](_0x904e73(0xf5));});}[_0x47c48c(0xe8)](){const _0x3547f9=_0x47c48c;this[_0x3547f9(0x112)]['on'](_0x3547f9(0xe7),()=>{const _0x1bd5c2=_0x3547f9;this[_0x1bd5c2(0x10d)](_0x1bd5c2(0xe7));});}}
|
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
|
|
23
|
+
const _0x4e1648=_0x2b75;(function(_0x5a1541,_0x3b2264){const _0x53fa82=_0x2b75,_0x12aa5a=_0x5a1541();while(!![]){try{const _0x31f95f=parseInt(_0x53fa82(0x14a))/0x1*(-parseInt(_0x53fa82(0x14c))/0x2)+parseInt(_0x53fa82(0x166))/0x3*(parseInt(_0x53fa82(0x15d))/0x4)+parseInt(_0x53fa82(0x150))/0x5*(parseInt(_0x53fa82(0x169))/0x6)+parseInt(_0x53fa82(0x152))/0x7*(-parseInt(_0x53fa82(0x162))/0x8)+-parseInt(_0x53fa82(0x165))/0x9+-parseInt(_0x53fa82(0x161))/0xa+parseInt(_0x53fa82(0x160))/0xb*(parseInt(_0x53fa82(0x157))/0xc);if(_0x31f95f===_0x3b2264)break;else _0x12aa5a['push'](_0x12aa5a['shift']());}catch(_0x53dabd){_0x12aa5a['push'](_0x12aa5a['shift']());}}}(_0x3617,0x2dbae));import{Command as _0x3c4286}from'ckeditor5/src/core.js';function _0x2b75(_0x573355,_0x4cf50a){const _0x361755=_0x3617();return _0x2b75=function(_0x2b7588,_0x17620d){_0x2b7588=_0x2b7588-0x14a;let _0x5ef7a6=_0x361755[_0x2b7588];return _0x5ef7a6;},_0x2b75(_0x573355,_0x4cf50a);}import{Dialog as _0x341a43}from'ckeditor5/src/ui.js';function _0x3617(){const _0x25398c=['editor','16049UNwrNo','1120960kCehDd','8uuIjHT','plugins','model','1097730bvxdod','9087LACEla','execute','refresh','129588yyqWaG','isActive','document','1FJCvLA','requires','555670HNaaIQ','_isEditable','set','config','40OgrPyt','imageInline','1221353zHYbmc','selection','isEnabled','uploadcare.allowExternalImagesEditing','element','3996YncxtK','unbind','get','imageBlock','bind','imageEditController','284CiJnkh','getSelectedElement'];_0x3617=function(){return _0x25398c;};return _0x3617();}import{UploadcareImageEditController as _0x36ea1e}from'./ui/uploadcareimageeditcontroller.js';import{createEditabilityChecker as _0x2e1cc0}from'../utils/editingutils.js';export class UploadcareImageEditCommand extends _0x3c4286{[_0x4e1648(0x15c)];static get[_0x4e1648(0x14b)](){return[_0x341a43];}[_0x4e1648(0x14d)];constructor(_0xe7a162){const _0x2d9f9e=_0x4e1648;super(_0xe7a162),this[_0x2d9f9e(0x15c)]=void 0x0,this[_0x2d9f9e(0x14d)]=_0x2e1cc0(_0xe7a162[_0x2d9f9e(0x14f)][_0x2d9f9e(0x159)](_0x2d9f9e(0x155))||[]),this[_0x2d9f9e(0x14e)]({'isActive':!0x1});}[_0x4e1648(0x168)](){const _0x5b2299=_0x4e1648,_0x3238c4=this[_0x5b2299(0x15f)][_0x5b2299(0x164)][_0x5b2299(0x16b)][_0x5b2299(0x153)][_0x5b2299(0x15e)]();this[_0x5b2299(0x154)]=this[_0x5b2299(0x14d)](_0x3238c4);}[_0x4e1648(0x167)](){const _0x32cad5=_0x4e1648;this[_0x32cad5(0x15c)]&&(this[_0x32cad5(0x158)](_0x32cad5(0x16a)),this[_0x32cad5(0x15c)]=void 0x0);const _0x594015=this[_0x32cad5(0x15f)][_0x32cad5(0x164)][_0x32cad5(0x16b)][_0x32cad5(0x153)][_0x32cad5(0x15e)]();_0x594015&&(_0x594015['is'](_0x32cad5(0x156),_0x32cad5(0x15a))||_0x594015['is'](_0x32cad5(0x156),_0x32cad5(0x151)))&&(this[_0x32cad5(0x15c)]=new _0x36ea1e(this[_0x32cad5(0x15f)],this[_0x32cad5(0x15f)][_0x32cad5(0x163)][_0x32cad5(0x159)](_0x341a43),_0x594015),this[_0x32cad5(0x15b)](_0x32cad5(0x16a))['to'](this[_0x32cad5(0x15c)],_0x32cad5(0x16a)));}}
|
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
|
|
23
|
+
const _0x593bf2=_0x3754;(function(_0x41ddd4,_0x20e3bd){const _0x491cce=_0x3754,_0x2093e8=_0x41ddd4();while(!![]){try{const _0x13db49=-parseInt(_0x491cce(0x17d))/0x1*(-parseInt(_0x491cce(0x17a))/0x2)+parseInt(_0x491cce(0x16d))/0x3+-parseInt(_0x491cce(0x179))/0x4*(parseInt(_0x491cce(0x181))/0x5)+parseInt(_0x491cce(0x171))/0x6+-parseInt(_0x491cce(0x176))/0x7+parseInt(_0x491cce(0x173))/0x8+parseInt(_0x491cce(0x17f))/0x9;if(_0x13db49===_0x20e3bd)break;else _0x2093e8['push'](_0x2093e8['shift']());}catch(_0x1daefb){_0x2093e8['push'](_0x2093e8['shift']());}}}(_0x17c3,0x659f7));import{Plugin as _0x56e64e}from'ckeditor5/src/core.js';function _0x3754(_0x4b8fc1,_0x926e9a){const _0x17c34c=_0x17c3();return _0x3754=function(_0x3754a1,_0x2027ca){_0x3754a1=_0x3754a1-0x16d;let _0x5f4cad=_0x17c34c[_0x3754a1];return _0x5f4cad;},_0x3754(_0x4b8fc1,_0x926e9a);}import{Notification as _0x440d7a}from'ckeditor5/src/ui.js';import{UploadcareImageEditCommand as _0xf1ae5}from'./uploadcareimageeditcommand.js';function _0x17c3(){const _0x5a48b8=['isOfficialPlugin','1358520egRgbu','705189KGJhcc','ImageUtils','add','uploadcareImageReplace','235566PryqKy','pluginName','2133128aFnpbG','ImageEditing','UploadcareImageEditEditing','4020863sumDeb','isPremiumPlugin','commands','12BPgQOO','1596390NOWhUn','init','uploadcareImageEdit','1SMCSHC','requires','4199472FaAvyY'];_0x17c3=function(){return _0x5a48b8;};return _0x17c3();}import{UploadcareImageReplaceCommand as _0x3878c0}from'./uploadcareimagereplacecommand.js';import{UploadcareEditing as _0x18e343}from'../uploadcareediting.js';export class UploadcareImageEditEditing extends _0x56e64e{static get[_0x593bf2(0x172)](){const _0x49e412=_0x593bf2;return _0x49e412(0x175);}static get[_0x593bf2(0x17e)](){const _0x190b0e=_0x593bf2;return[_0x18e343,_0x440d7a,_0x190b0e(0x16e),_0x190b0e(0x174)];}static get[_0x593bf2(0x180)](){return!0x0;}static get[_0x593bf2(0x177)](){return!0x0;}[_0x593bf2(0x17b)](){const _0x434ff2=_0x593bf2,{editor:_0x41b1de}=this;_0x41b1de[_0x434ff2(0x178)][_0x434ff2(0x16f)](_0x434ff2(0x17c),new _0xf1ae5(_0x41b1de)),_0x41b1de[_0x434ff2(0x178)][_0x434ff2(0x16f)](_0x434ff2(0x170),new _0x3878c0(_0x41b1de));}}
|
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
import{Plugin as
|
|
23
|
+
import{Plugin as _0x5a416b}from'ckeditor5/src/core.js';import{ButtonView as _0x578fcb}from'ckeditor5/src/ui.js';import{IconUploadcareImageEdit as _0x28eaac}from'ckeditor5/src/icons.js';import{createElement as _0x30b9fb}from'ckeditor5/src/utils.js';import'@uploadcare/file-uploader/web/uc-cloud-image-editor.min.css';import'../../theme/uploadcare-theme.css';export class UploadcareImageEditUI extends _0x5a416b{['_imageCache']=new Map();static get['pluginName'](){return'UploadcareImageEditUI';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}get['imageCache'](){return this['_imageCache'];}['init'](){const _0x2834f6=this['editor'];_0x2834f6['ui']['componentFactory']['add']('uploadcareImageEdit',_0x41eb69=>{const _0x21ae20=_0x2834f6['commands']['get']('uploadcareImageEdit'),_0x5242c6=new _0x578fcb(_0x41eb69),t=_0x41eb69['t'];return _0x5242c6['set']({'icon':_0x28eaac,'tooltip':!0x0,'label':t({'id':'Edit\x20Image\x20(Uploadcare)','string':'Edit\x20image'})}),_0x5242c6['bind']('isEnabled')['to'](_0x21ae20),_0x5242c6['bind']('isOn')['to'](_0x21ae20,'isActive'),this['listenTo'](_0x5242c6,'execute',()=>{_0x2834f6['execute']('uploadcareImageEdit'),_0x2834f6['editing']['view']['focus']();}),_0x5242c6;}),this['_initConfig']();}['_initConfig'](){const _0x1f5e19=_0x30b9fb(document,'uc-config',{'ctx-name':'image-edit','removeCopyright':'true','localeName':this['editor']['locale']['contentLanguage']});document['body']['appendChild'](_0x1f5e19),this['listenTo'](this['editor'],'destroy',()=>{_0x1f5e19['remove']();});}}
|
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
function
|
|
23
|
+
function _0x25de(_0x2b8a7c,_0x5d2018){var _0x463763=_0x4637();return _0x25de=function(_0x25de57,_0x5005aa){_0x25de57=_0x25de57-0x98;var _0xd0a565=_0x463763[_0x25de57];return _0xd0a565;},_0x25de(_0x2b8a7c,_0x5d2018);}var _0x567e94=_0x25de;(function(_0x5472ae,_0x494af6){var _0x6d516a=_0x25de,_0x449c40=_0x5472ae();while(!![]){try{var _0x8c87f5=parseInt(_0x6d516a(0xab))/0x1*(parseInt(_0x6d516a(0xa5))/0x2)+-parseInt(_0x6d516a(0xa6))/0x3+parseInt(_0x6d516a(0xa8))/0x4*(-parseInt(_0x6d516a(0x9c))/0x5)+-parseInt(_0x6d516a(0xa9))/0x6*(-parseInt(_0x6d516a(0x9d))/0x7)+parseInt(_0x6d516a(0xa2))/0x8+parseInt(_0x6d516a(0x98))/0x9*(parseInt(_0x6d516a(0xaa))/0xa)+-parseInt(_0x6d516a(0xa0))/0xb;if(_0x8c87f5===_0x494af6)break;else _0x449c40['push'](_0x449c40['shift']());}catch(_0x26a357){_0x449c40['push'](_0x449c40['shift']());}}}(_0x4637,0x2d78d));import{FocusTracker as _0x1f5383}from'ckeditor5/src/utils.js';import{View as _0x252859,FocusCycler as _0x41132f}from'ckeditor5/src/ui.js';import'../../theme/uploadcare-form.css';function _0x4637(){var _0x1e6cae=['true','createCollection','1451285fsUuwU','746599UojWll','bindTemplate','div','4610804eljDuR','focusTracker','2014336DXvWHC','getFocusableElement','focusCycler','639978ZbJIPD','64053ypiQKo','fire','4supPFW','12fpvxid','16700VvzzoS','1DoAScm','711uHzZma','forwardCycle'];_0x4637=function(){return _0x1e6cae;};return _0x4637();}export class DialogFocusManagerView extends _0x252859{[_0x567e94(0xa1)];[_0x567e94(0xa4)];constructor(_0x257a7a){var _0x131a45=_0x567e94;super(_0x257a7a),this[_0x131a45(0xa1)]=new _0x1f5383(),this[_0x131a45(0xa4)]=new _0x41132f({'focusables':this[_0x131a45(0x9b)](),'focusTracker':this[_0x131a45(0xa1)]});}[_0x567e94(0xa3)](){var _0x485a14=_0x567e94;return{'tag':_0x485a14(0x9f),'attributes':{'aria-hidden':_0x485a14(0x9a),'tabindex':'0'},'on':{'focus':this[_0x485a14(0x9e)]['to'](()=>{var _0xe24f0b=_0x485a14;this[_0xe24f0b(0xa4)][_0xe24f0b(0xa7)](_0xe24f0b(0x99));})}};}}
|
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
|
|
23
|
+
(function(_0x363766,_0xea9a80){const _0x1fb4fa=_0x5358,_0x3d7c2c=_0x363766();while(!![]){try{const _0x5f5d7=parseInt(_0x1fb4fa(0x15c))/0x1*(-parseInt(_0x1fb4fa(0x17e))/0x2)+-parseInt(_0x1fb4fa(0x15f))/0x3*(parseInt(_0x1fb4fa(0x159))/0x4)+-parseInt(_0x1fb4fa(0x184))/0x5*(parseInt(_0x1fb4fa(0x16a))/0x6)+-parseInt(_0x1fb4fa(0x154))/0x7+-parseInt(_0x1fb4fa(0x151))/0x8+-parseInt(_0x1fb4fa(0x165))/0x9+parseInt(_0x1fb4fa(0x17a))/0xa*(parseInt(_0x1fb4fa(0x14d))/0xb);if(_0x5f5d7===_0xea9a80)break;else _0x3d7c2c['push'](_0x3d7c2c['shift']());}catch(_0x269248){_0x3d7c2c['push'](_0x3d7c2c['shift']());}}}(_0x1767,0x8aca3));import{global as _0x568571,DomEmitterMixin as _0x50f9bf}from'ckeditor5/src/utils.js';export function createEditabilityChecker(_0x34db46){const _0x5b2bc1=_0x5358,_0x5724b2=G(_0x34db46);return _0x4c8ae0=>!(!_0x4c8ae0||!_0x4c8ae0['is'](_0x5b2bc1(0x17d),_0x5b2bc1(0x170))&&!_0x4c8ae0['is'](_0x5b2bc1(0x17d),_0x5b2bc1(0x15b)))&&(!!_0x4c8ae0[_0x5b2bc1(0x155)](_0x5b2bc1(0x14f))||!!_0x4c8ae0[_0x5b2bc1(0x155)](_0x5b2bc1(0x166))&&_0x5724b2(_0x4c8ae0[_0x5b2bc1(0x169)](_0x5b2bc1(0x166))));}function _0x1767(){const _0x56a72d=['change','baseURI','toViewElement','aspect-ratio','imageBlock','get','location','origin','(max-width:\x20','map','x/\x20','editing','listenTo','view','400AOrQLt','isArray','plugins','element','2OjiifB','setStyle','domConverter','ImageUtils','image/webp','mapper','16855UyFafv','width','removeStyle','958705KTJbEJ','filter','uploadcareImageId','load','5978584nTJHZU','match','document','2410366NozKOM','hasAttribute','viewToDom','removeClass','findViewImgElement','24AusRfi','px)\x20100vw,\x20','imageInline','192886sdiuns','function','image-processing','242409qJBLaq','/-/resize/','height','replace','stopListening','window','7665336nqQNPs','src','some','join','getAttribute','528nszKZA','addClass'];_0x1767=function(){return _0x56a72d;};return _0x1767();}function _0x5358(_0x5c21a5,_0x5788ca){const _0x176730=_0x1767();return _0x5358=function(_0x5358ad,_0x2bee87){_0x5358ad=_0x5358ad-0x14c;let _0x5c353e=_0x176730[_0x5358ad];return _0x5c353e;},_0x5358(_0x5c21a5,_0x5788ca);}export function getImageUrls(_0x4bda28,_0x548c35){const _0x14d9c6=_0x5358,_0x41d2ef=[0x140,0x1e0,0x300,0x400,0x4b0,0x640,0x780,0x960][_0x14d9c6(0x14e)](_0x523c2a=>_0x523c2a<=_0x548c35)[_0x14d9c6(0x175)](_0x36f893=>_0x4bda28[_0x14d9c6(0x162)](/\/$/,'')+_0x14d9c6(0x160)+_0x36f893+_0x14d9c6(0x176)+_0x36f893+'w');return{'imageFallbackUrl':_0x4bda28,'imageSources':[{'srcset':_0x41d2ef[_0x14d9c6(0x168)](',\x20'),'sizes':_0x14d9c6(0x174)+_0x548c35+_0x14d9c6(0x15a)+_0x548c35+'px','type':_0x14d9c6(0x182)}]};}export function getImageDimension(_0x3c2353,_0x2437af,_0x45fe6e){const _0x16e504=_0x5358,_0x308cdb=_0x3c2353[_0x16e504(0x152)](/\/crop\/(\d+)x(\d+)\//);return{'width':_0x308cdb?parseInt(_0x308cdb[0x1],0xa):_0x2437af,'height':_0x308cdb?parseInt(_0x308cdb[0x2],0xa):_0x45fe6e};}export function showImageProcessingIndicator(_0x2dceeb,_0x354bd3){const _0x554c08=_0x5358,_0x53ece3=new(_0x50f9bf())(),_0x3ae676=_0x2dceeb[_0x554c08(0x17c)][_0x554c08(0x171)](_0x554c08(0x181)),_0x5ea005=_0x2dceeb[_0x554c08(0x177)][_0x554c08(0x183)][_0x554c08(0x16e)](_0x354bd3),_0x1def08=_0x3ae676[_0x554c08(0x158)](_0x5ea005),_0x551294=_0x2dceeb[_0x554c08(0x177)][_0x554c08(0x179)][_0x554c08(0x180)][_0x554c08(0x156)](_0x1def08),_0x49aa9d=_0x354bd3[_0x554c08(0x169)](_0x554c08(0x185)),_0x2ca6bc=_0x354bd3[_0x554c08(0x169)](_0x554c08(0x161)),_0x5cd703=_0x554c08(0x15e);_0x2dceeb[_0x554c08(0x177)][_0x554c08(0x179)][_0x554c08(0x16c)](_0x2617bd=>{const _0x7b01bc=_0x554c08;_0x2617bd[_0x7b01bc(0x16b)](_0x5cd703,_0x5ea005),_0x2617bd[_0x7b01bc(0x17f)](_0x7b01bc(0x16f),_0x49aa9d+'/'+_0x2ca6bc,_0x1def08);}),_0x53ece3[_0x554c08(0x178)](_0x551294,_0x554c08(0x150),()=>{const _0x3cefd8=_0x554c08;_0x53ece3[_0x3cefd8(0x163)](_0x551294,_0x3cefd8(0x150)),_0x2dceeb[_0x3cefd8(0x177)][_0x3cefd8(0x179)][_0x3cefd8(0x16c)](_0x489d74=>{const _0x4b181e=_0x3cefd8;_0x489d74[_0x4b181e(0x157)](_0x5cd703,_0x5ea005),_0x489d74[_0x4b181e(0x14c)](_0x4b181e(0x16f),_0x1def08);});});}function G(_0x16b4fd){const _0x34f355=_0x5358;if(Array[_0x34f355(0x17b)](_0x16b4fd)){const _0xea4303=_0x16b4fd[_0x34f355(0x175)](G);return _0x532ae0=>_0xea4303[_0x34f355(0x167)](_0x321711=>_0x321711(_0x532ae0));}if(_0x34f355(0x173)==_0x16b4fd){const _0x13fc2f=_0x568571[_0x34f355(0x164)][_0x34f355(0x172)][_0x34f355(0x173)];return _0x23fee4=>new URL(_0x23fee4,_0x568571[_0x34f355(0x153)][_0x34f355(0x16d)])[_0x34f355(0x173)]==_0x13fc2f;}return _0x34f355(0x15d)==typeof _0x16b4fd?_0x16b4fd:_0x16b4fd instanceof RegExp?_0x50fd83=>!(!_0x50fd83[_0x34f355(0x152)](_0x16b4fd)&&!_0x50fd83[_0x34f355(0x162)](/^https?:\/\//,'')[_0x34f355(0x152)](_0x16b4fd)):()=>!0x1;}
|