@ckeditor/ckeditor5-uploadcare 0.0.0-nightly-20260106.0 → 0.0.0-nightly-20260107.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 _0x1db50c,ObservableMixin as _0x45f95f}from'ckeditor5/src/utils.js';import{DialogViewPosition as _0x3453e4}from'ckeditor5/src/ui.js';import{IconUploadcareImageEdit as _0x42fb45}from'ckeditor5/src/icons.js';import{UploadcareImageEditFormView as _0x2fade0}from'./uploadcareimageeditformview.js';import{UploadUtils as _0x2bacf2}from'../../utils/uploadutils.js';import{getImageUrls as _0x835e86,getImageDimension as _0x3905f9}from'../../utils/editingutils.js';import{isAncestor as _0x5726c4}from'../../utils/isancestor.js';export class UploadcareImageEditController extends/* #__PURE__ -- @preserve */
|
|
24
|
+
_0x45f95f(){['_editor'];['_dialog'];['_imageElement'];['_imageCache'];['_controller'];['_attributes'];constructor(_0x14944b,_0x36f6da,_0x1141fd){super(),this['_editor']=_0x14944b,this['_dialog']=_0x36f6da,this['_imageElement']=_0x1141fd,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 _0x135da8=this['_imageElement'],_0xbe52b5=_0x135da8['getAttribute']('uploadcareImageId'),_0x17856b=_0x135da8['getAttribute']('src');if(_0xbe52b5)await this['_loadImageInfo'](_0xbe52b5,_0x17856b);else{if(this['_imageCache']['has'](_0x17856b)){const _0x13062d=this['_imageCache']['get'](_0x17856b);this['imageStatus']='ready',this['imageErrorType']=null,this['imageSrc']=_0x13062d['url'],this['imageDimension']=_0x13062d['dimension'],this['imageId']=_0x13062d['id'];}else this['imageStatus']='uploading',this['imageUploadProgress']=0x0,this['_controller']=new AbortController(),await this['_uploadImage'](this['_imageElement'],this['_controller']);}}['_showDialog'](){const {locale:_0x478d91}=this['_editor'],t=_0x478d91['t'],_0x2feca5=new _0x2fade0(_0x478d91,this['imageStatus'],this['_attributes']);_0x2feca5['bind']('status')['to'](this,'imageStatus'),_0x2feca5['_loadingView']['bind']('imageUploadProgress')['to'](this,'imageUploadProgress'),_0x2feca5['_editingView']['bind']('imageSrc')['to'](this,'imageSrc'),_0x2feca5['_errorView']['bind']('errorType')['to'](this,'imageErrorType'),this['_addEditViewListeners'](_0x2feca5,this['_imageElement']),this['_dialog']['show']({'id':'uploadcareImageEdit','icon':_0x42fb45,'title':t({'id':'Edit\x20Image\x20(Uploadcare)','string':'Edit\x20image'}),'content':_0x2feca5,'position':_0x3453e4['EDITOR_TOP_CENTER'],'isModal':!0x0,'onShow':()=>{_0x2feca5['focus']();},'onHide':()=>{_0x2feca5['destroy'](),this['destroy']();},'keystrokeHandlerOptions':{'filter':_0x187f28=>!_0x5726c4(_0x187f28,_0x2feca5['element'])}});}['_loadImageInfo'](_0x2ad621,_0x3c2ca1){return _0x2bacf2['getInfo'](_0x2ad621,{'publicKey':this['_editor']['config']['get']('uploadcare.pubkey'),'baseURL':this['_editor']['config']['get']('uploadcare.uploader.baseUrl')})['then'](_0x175d0b=>{const {width:_0x1c61c3,height:_0x12eda1}=_0x175d0b['imageInfo'];this['imageStatus']='ready',this['imageErrorType']=null,this['imageSrc']=_0x3c2ca1,this['imageDimension']={'width':_0x1c61c3,'height':_0x12eda1},this['imageId']=_0x2ad621;})['catch'](_0x1bf04f=>{this['imageStatus']='error',this['imageErrorType']='FileNotFoundError'===_0x1bf04f['code']?'NotFound':'Network',this['imageSrc']=null,this['imageDimension']=null,this['imageId']=null,this['imageUploadProgress']=null;});}['_uploadImage'](_0x1f6d5b,_0x37ab11){return this['_getImageAsFile'](_0x1f6d5b)['then'](_0x326454=>_0x2bacf2['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':_0x37ab11['signal'],'file':_0x326454,'onProgress':_0x14a087=>{_0x14a087&&_0x14a087['isComputable']&&(this['imageUploadProgress']=Math['ceil'](0x64*_0x14a087['value']));}}))['then'](_0x205123=>{const {width:_0x557a8c,height:_0x3c1a4d}=_0x205123['imageInfo'];this['imageStatus']='ready',this['imageErrorType']=null,this['imageSrc']=_0x205123['cdnUrl'],this['imageDimension']={'width':_0x557a8c,'height':_0x3c1a4d},this['imageId']=_0x205123['uuid'],this['imageUploadProgress']=null;const _0x231b0c=_0x1f6d5b['getAttribute']('src');this['_imageCache']['set'](_0x231b0c,{'id':_0x205123['uuid'],'url':_0x205123['cdnUrl'],'dimension':this['imageDimension']});})['catch'](_0x79516f=>{this['imageStatus']='error',this['imageErrorType']='FileNotFoundError'===_0x79516f['code']?'NotFound':'Network',this['imageSrc']=null,this['imageDimension']=null,this['imageId']=null,this['imageUploadProgress']=null;});}['_addEditViewListeners'](_0x58878c,_0x19437a){_0x58878c['on']('apply',(_0x516bd3,_0x1d027c)=>{this['_replaceImage'](_0x19437a,_0x1d027c['imageSrc'],this['imageId']),this['_dialog']['hide']();}),_0x58878c['on']('retry',()=>{this['imageStatus']='uploading',this['imageUploadProgress']=0x0,this['_controller']=new AbortController(),this['_uploadImage'](this['_imageElement'],this['_controller']);}),_0x58878c['on']('cancel',()=>{this['_dialog']['hide']();});}['_replaceImage'](_0x560a5d,_0x4b4764,_0x258c70){const _0xd58617=this['_editor'],{width:_0x4092b5,height:_0x496e4b}=_0x3905f9(_0x4b4764,this['imageDimension']['width'],this['imageDimension']['height']),{imageFallbackUrl:_0x54e24e,imageSources:_0x8a9bf}=_0x835e86(_0x4b4764,_0x4092b5);_0xd58617['model']['change'](_0x9a5e06=>{if('$graveyard'===_0x560a5d['root']['rootName']){_0xd58617['execute']('insertImage',{'imageType':_0x560a5d['is']('element','imageInline')?'imageInline':null,'source':{...Object['fromEntries'](_0x560a5d['getAttributes']()),'uploadcareImageId':_0x258c70,'src':_0x54e24e,'sources':_0x8a9bf,'width':_0x4092b5,'height':_0x496e4b}});const _0x113f55=_0x560a5d['getChildren']();_0x560a5d=_0xd58617['model']['document']['selection']['getSelectedElement']();for(const _0x4c0865 of _0x113f55)_0x9a5e06['append'](_0x9a5e06['cloneElement'](_0x4c0865),_0x560a5d);}else _0x9a5e06['setSelection'](_0x560a5d,'on'),_0xd58617['execute']('uploadcareImageReplace',{...Object['fromEntries'](_0x560a5d['getAttributes']()),'uploadcareImageId':_0x258c70,'src':_0x54e24e,'sources':_0x8a9bf,'width':_0x4092b5,'height':_0x496e4b},_0x560a5d);_0x9a5e06['setSelection'](_0x560a5d,'on');});}async['_getImageAsFile'](_0x19e96c){const _0x1d4d72=_0x1db50c['window'],_0x21cdbc=_0x1db50c['document']['location']['href'],_0x1a8b08=new _0x1d4d72['URL'](_0x19e96c['getAttribute']('src'),_0x21cdbc);if('data:'===_0x1a8b08['protocol']){const _0x284023=_0x1a8b08['href']['split'](','),_0x545dab=_0x284023[0x0]['match'](/:(.*?);/)[0x1],_0x37031f=_0x545dab['split']('/')[0x1],_0x22d484=_0x1d4d72['atob'](_0x284023[_0x284023['length']-0x1]);let _0x781da0=_0x22d484['length'];const _0x3bf4ba=new _0x1d4d72['Uint8Array'](_0x781da0);for(;_0x781da0--;)_0x3bf4ba[_0x781da0]=_0x22d484['charCodeAt'](_0x781da0);return new _0x1d4d72['File']([_0x3bf4ba],'image.'+_0x37031f,{'type':_0x545dab});}const _0x3b7585=_0x1a8b08['href']['split']('/'),_0x58e0ec=_0x3b7585[_0x3b7585['length']-0x1],_0x5d2c4b=_0x58e0ec['split']('.')[0x1];return _0x1d4d72['fetch'](_0x1a8b08['href'])['then'](_0x597228=>_0x597228['clone']()['blob']())['then'](_0xd56608=>new _0x1d4d72['File']([_0xd56608],_0x58e0ec,{'type':'image/'+_0x5d2c4b}));}}
|
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
|
|
23
|
+
(function(_0x14f874,_0x1f99a2){const _0x9e0f40=_0xa2e2,_0x35d46f=_0x14f874();while(!![]){try{const _0x5becbe=parseInt(_0x9e0f40(0xde))/0x1+parseInt(_0x9e0f40(0xdc))/0x2+parseInt(_0x9e0f40(0xd8))/0x3*(parseInt(_0x9e0f40(0xd5))/0x4)+parseInt(_0x9e0f40(0xd7))/0x5*(parseInt(_0x9e0f40(0xd2))/0x6)+-parseInt(_0x9e0f40(0xd3))/0x7*(-parseInt(_0x9e0f40(0xd1))/0x8)+parseInt(_0x9e0f40(0xdb))/0x9*(-parseInt(_0x9e0f40(0xe0))/0xa)+-parseInt(_0x9e0f40(0xdf))/0xb;if(_0x5becbe===_0x1f99a2)break;else _0x35d46f['push'](_0x35d46f['shift']());}catch(_0x5ca980){_0x35d46f['push'](_0x35d46f['shift']());}}}(_0x307d,0x1c38a));import{View as _0x5a7c8a}from'ckeditor5/src/ui.js';function _0xa2e2(_0x4855e5,_0x34ad67){const _0x307df7=_0x307d();return _0xa2e2=function(_0xa2e28d,_0x4065c7){_0xa2e28d=_0xa2e28d-0xcf;let _0x55175c=_0x307df7[_0xa2e28d];return _0x55175c;},_0xa2e2(_0x4855e5,_0x34ad67);}export class UploadcareImageEditFormEditingView extends _0x5a7c8a{constructor(_0x496b4e,_0x1ff9c7){const _0x3f9d30=_0xa2e2;super(_0x496b4e);const _0x54972c=this[_0x3f9d30(0xdd)];this[_0x3f9d30(0xd4)](_0x3f9d30(0xcf),''),this[_0x3f9d30(0xd6)]({'tag':_0x3f9d30(0xd0),'attributes':{..._0x1ff9c7,'class':[_0x3f9d30(0xe1),_0x3f9d30(0xd9)],'ctx-name':_0x3f9d30(0xda),'cdn-url':_0x54972c['to'](_0x3f9d30(0xcf))}});}}function _0x307d(){const _0x587421=['24LCvtIF','13074PDCaMb','52024TKdhCn','set','627076BiXXcC','setTemplate','110zQaOEj','3wFFmht','ck-uploadcare-theme','image-edit','45xRVIpW','449310aRIIRz','bindTemplate','16168tINybp','1849947oEdhBV','368110gMYvDq','uc-light','imageSrc','uc-cloud-image-editor'];_0x307d=function(){return _0x587421;};return _0x307d();}
|
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
import{IconError as
|
|
23
|
+
import{IconError as _0x48de4b}from'ckeditor5/src/icons.js';import{ButtonView as _0x44f3d6,IconView as _0x11d681,View as _0x5cd180}from'ckeditor5/src/ui.js';export class UploadcareImageEditFormErrorView extends _0x5cd180{constructor(_0x3097d5){super(_0x3097d5);const t=_0x3097d5['t'];this['set']('errorType',null);const _0x322a40=new _0x44f3d6(_0x3097d5);_0x322a40['label']=t({'id':'Try\x20again\x20(Uploadcare)','string':'Try\x20again'}),_0x322a40['withText']=!0x0,_0x322a40['class']='ck-button-action',_0x322a40['on']('execute',()=>{this['fire']('retry');}),_0x322a40['bind']('isVisible')['to'](this,'errorType',_0x109b79=>'NotFound'!==_0x109b79);const _0x1b2824=new _0x11d681();_0x1b2824['content']=_0x48de4b,_0x1b2824['extendTemplate']({'attributes':{'style':{'width':'50px','height':'50px'}}});const _0x5c5f5a=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':[_0x1b2824,{'tag':'h3','attributes':{'style':{'fontWeight':'bold'}},'children':[{'text':t('Unable\x20to\x20load')}]},{'text':_0x5c5f5a['to']('errorType',_0x32726e=>t('NotFound'!==_0x32726e?'We\x20were\x20unable\x20to\x20load\x20the\x20image\x20due\x20to\x20network\x20connection\x20issues.':'The\x20image\x20was\x20not\x20found.\x20Its\x20source\x20may\x20have\x20been\x20removed.'))},_0x322a40]},{'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 _0x4ee0b5,View as _0x1a822a}from'ckeditor5/src/ui.js';export class UploadcareImageEditFormLoadingView extends _0x1a822a{constructor(_0x478330){super(_0x478330);const t=_0x478330['t'],_0x17fc73=this['bindTemplate'],_0xd1ad7=new _0x4ee0b5();_0xd1ad7['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':[_0xd1ad7,{'text':_0x17fc73['to']('imageUploadProgress',_0x1b6587=>t('Loading\x20image...')+'\x20('+(_0x1b6587||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 _0x1533e9=_0x3ab5;(function(_0x35c114,_0x158d79){const _0xac25a2=_0x3ab5,_0x3b7462=_0x35c114();while(!![]){try{const _0x2f3591=-parseInt(_0xac25a2(0x17c))/0x1+parseInt(_0xac25a2(0x16c))/0x2*(-parseInt(_0xac25a2(0x188))/0x3)+-parseInt(_0xac25a2(0x179))/0x4*(-parseInt(_0xac25a2(0x171))/0x5)+parseInt(_0xac25a2(0x196))/0x6*(-parseInt(_0xac25a2(0x168))/0x7)+parseInt(_0xac25a2(0x198))/0x8+parseInt(_0xac25a2(0x16f))/0x9*(parseInt(_0xac25a2(0x190))/0xa)+parseInt(_0xac25a2(0x16b))/0xb;if(_0x2f3591===_0x158d79)break;else _0x3b7462['push'](_0x3b7462['shift']());}catch(_0x4921e9){_0x3b7462['push'](_0x3b7462['shift']());}}}(_0x4222,0xc8911));import{View as _0x3faf54}from'ckeditor5/src/ui.js';import{UploadcareImageEditFormLoadingView as _0x4a1b9a}from'./uploadcareimageeditformloadingview.js';function _0x3ab5(_0x7baba2,_0x5f2b5d){const _0x4222e=_0x4222();return _0x3ab5=function(_0x3ab52d,_0x211e71){_0x3ab52d=_0x3ab52d-0x164;let _0x2293b6=_0x4222e[_0x3ab52d];return _0x2293b6;},_0x3ab5(_0x7baba2,_0x5f2b5d);}import{UploadcareImageEditFormErrorView as _0xa88d4d}from'./uploadcareimageeditformerrorview.js';function _0x4222(){const _0x3b0cab=['once','nodeName','set','getFocusableElement','_items','error','3476718nQSoRp','createCollection','render','6894173qRECsU','5722HjpAqD','addEventListener','ck-uploadcare-form','521568CMCZBo','_editingView','195395SpZooW','add','element','clear','querySelector','retry','addMany','addedNodes','140kDgJys','filter','_addUploadcareImageEditorListeners','1443103ianeEE','uploading','target','div','_addErrorViewListeners','_errorView','uc-cloud-image-editor','setTemplate','length','change:status','_loadingView','fire','477glZAMm','disconnect','cdnUrl','_waitForImageEditorComponent','detail','toLowerCase','observe','apply','20xnGrYK','ck-reset_all-excluded','_focusableView','_setView','focus','ready','6OloJME','status','8846280FRyjNs','cancel'];_0x4222=function(){return _0x3b0cab;};return _0x4222();}import{UploadcareImageEditFormEditingView as _0x57b38c}from'./uploadcareimageeditformeditingview.js';import{DialogFocusManagerView as _0x3dd2d6}from'../../utils/dialogfocusmanagerview.js';import'../../../theme/uploadcare-form.css';export class UploadcareImageEditFormView extends _0x3dd2d6{[_0x1533e9(0x166)];[_0x1533e9(0x186)];[_0x1533e9(0x181)];[_0x1533e9(0x170)];[_0x1533e9(0x192)];constructor(_0x458539,_0x1956b6,_0x33f916){const _0x3c4256=_0x1533e9;super(_0x458539),this[_0x3c4256(0x166)]=this[_0x3c4256(0x169)](),this[_0x3c4256(0x186)]=new _0x4a1b9a(_0x458539),this[_0x3c4256(0x181)]=new _0xa88d4d(_0x458539),this[_0x3c4256(0x170)]=new _0x57b38c(_0x458539,_0x33f916),this[_0x3c4256(0x192)]=new _0x3faf54(_0x458539),this[_0x3c4256(0x192)][_0x3c4256(0x183)](this[_0x3c4256(0x165)]()),this[_0x3c4256(0x164)](_0x3c4256(0x197),_0x1956b6),this[_0x3c4256(0x183)]({'tag':_0x3c4256(0x17f),'attributes':{'class':['ck',_0x3c4256(0x191),_0x3c4256(0x16e)],'tabindex':'-1'},'children':this[_0x3c4256(0x166)]}),this[_0x3c4256(0x193)](),this[_0x3c4256(0x19a)](_0x3c4256(0x16a),()=>{const _0x595a47=_0x3c4256;this[_0x595a47(0x18b)](this[_0x595a47(0x173)],_0x196771=>{const _0x3c7885=_0x595a47;this[_0x3c7885(0x17b)](_0x196771);});}),this['on'](_0x3c4256(0x185),()=>{const _0x4ab2bf=_0x3c4256;this[_0x4ab2bf(0x193)]();}),this[_0x3c4256(0x180)]();}[_0x1533e9(0x194)](){const _0xaca009=_0x1533e9;this[_0xaca009(0x173)][_0xaca009(0x194)]();}[_0x1533e9(0x193)](){const _0x49113a=_0x1533e9;switch(this[_0x49113a(0x166)][_0x49113a(0x174)](),this[_0x49113a(0x197)]){case _0x49113a(0x17d):this[_0x49113a(0x166)][_0x49113a(0x172)](this[_0x49113a(0x186)]);break;case _0x49113a(0x167):this[_0x49113a(0x166)][_0x49113a(0x172)](this[_0x49113a(0x181)]);break;case _0x49113a(0x195):this[_0x49113a(0x166)][_0x49113a(0x177)]([this[_0x49113a(0x170)],this[_0x49113a(0x192)]]);}}[_0x1533e9(0x18b)](_0x47a43b,_0x54dd86){const _0x349e8b=_0x1533e9,_0x172b42=_0x349e8b(0x182),_0x481be4=_0x47a43b[_0x349e8b(0x175)](_0x172b42);if(_0x481be4)return _0x54dd86(_0x481be4);const _0x5a2485=new MutationObserver(_0x2e4700=>{const _0x34b1b4=_0x349e8b,_0x10ae20=_0x2e4700[_0x34b1b4(0x17a)](_0x4da2d6=>_0x4da2d6[_0x34b1b4(0x17e)]===_0x47a43b&&_0x4da2d6[_0x34b1b4(0x178)][_0x34b1b4(0x184)]>0x0&&_0x4da2d6[_0x34b1b4(0x178)][0x0][_0x34b1b4(0x19b)][_0x34b1b4(0x18d)]()===_0x172b42);_0x10ae20[_0x34b1b4(0x184)]&&(_0x5a2485[_0x34b1b4(0x189)](),_0x54dd86(_0x10ae20[0x0][_0x34b1b4(0x178)][0x0]));});_0x5a2485[_0x349e8b(0x18e)](_0x47a43b,{'childList':!0x0,'subtree':!0x0});}[_0x1533e9(0x17b)](_0x2229fc){const _0x4c9633=_0x1533e9;_0x2229fc[_0x4c9633(0x16d)](_0x4c9633(0x18f),_0x1cbe07=>{const _0x5d9fc9=_0x4c9633;this[_0x5d9fc9(0x187)](_0x5d9fc9(0x18f),{'imageSrc':_0x1cbe07[_0x5d9fc9(0x18c)][_0x5d9fc9(0x18a)]});}),_0x2229fc[_0x4c9633(0x16d)](_0x4c9633(0x199),()=>{const _0x3130b2=_0x4c9633;this[_0x3130b2(0x187)](_0x3130b2(0x199));});}[_0x1533e9(0x180)](){const _0xd14de5=_0x1533e9;this[_0xd14de5(0x181)]['on'](_0xd14de5(0x176),()=>{const _0x2351aa=_0xd14de5;this[_0x2351aa(0x187)](_0x2351aa(0x176));});}}
|
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
const
|
|
23
|
+
const _0x19424f=_0x2a3d;(function(_0x477c6f,_0x5ac9a3){const _0x15c9ed=_0x2a3d,_0x130fd7=_0x477c6f();while(!![]){try{const _0x48d334=parseInt(_0x15c9ed(0x18a))/0x1+parseInt(_0x15c9ed(0x182))/0x2*(-parseInt(_0x15c9ed(0x179))/0x3)+parseInt(_0x15c9ed(0x181))/0x4+parseInt(_0x15c9ed(0x173))/0x5*(-parseInt(_0x15c9ed(0x17e))/0x6)+-parseInt(_0x15c9ed(0x17a))/0x7+parseInt(_0x15c9ed(0x17b))/0x8+-parseInt(_0x15c9ed(0x18d))/0x9*(parseInt(_0x15c9ed(0x171))/0xa);if(_0x48d334===_0x5ac9a3)break;else _0x130fd7['push'](_0x130fd7['shift']());}catch(_0x549a7){_0x130fd7['push'](_0x130fd7['shift']());}}}(_0x32eb,0x7041e));import{Command as _0x28204a}from'ckeditor5/src/core.js';import{Dialog as _0xa6f7e3}from'ckeditor5/src/ui.js';function _0x32eb(){const _0x348878=['isActive','execute','679299WJHeMT','4529QRzQXf','1066448bYqheG','refresh','imageEditController','66nnDmwO','element','model','3582952VGdgmA','2tjaNFX','getSelectedElement','_isEditable','plugins','editor','bind','isEnabled','get','663791MDQlns','unbind','requires','8759511uJgLgb','set','uploadcare.allowExternalImagesEditing','config','10ndrkjb','imageInline','14850rbPUTg','imageBlock','document','selection'];_0x32eb=function(){return _0x348878;};return _0x32eb();}import{UploadcareImageEditController as _0x40eb16}from'./ui/uploadcareimageeditcontroller.js';function _0x2a3d(_0x16a30b,_0x29aac5){const _0x32eb9e=_0x32eb();return _0x2a3d=function(_0x2a3d32,_0x5efd00){_0x2a3d32=_0x2a3d32-0x170;let _0x5443ff=_0x32eb9e[_0x2a3d32];return _0x5443ff;},_0x2a3d(_0x16a30b,_0x29aac5);}import{createEditabilityChecker as _0xf8de8a}from'../utils/editingutils.js';export class UploadcareImageEditCommand extends _0x28204a{[_0x19424f(0x17d)];static get[_0x19424f(0x18c)](){return[_0xa6f7e3];}[_0x19424f(0x184)];constructor(_0x330cb8){const _0xb2c4cc=_0x19424f;super(_0x330cb8),this[_0xb2c4cc(0x17d)]=void 0x0,this[_0xb2c4cc(0x184)]=_0xf8de8a(_0x330cb8[_0xb2c4cc(0x170)][_0xb2c4cc(0x189)](_0xb2c4cc(0x18f))||[]),this[_0xb2c4cc(0x18e)]({'isActive':!0x1});}[_0x19424f(0x17c)](){const _0x6ea99=_0x19424f,_0x237f16=this[_0x6ea99(0x186)][_0x6ea99(0x180)][_0x6ea99(0x175)][_0x6ea99(0x176)][_0x6ea99(0x183)]();this[_0x6ea99(0x188)]=this[_0x6ea99(0x184)](_0x237f16);}[_0x19424f(0x178)](){const _0x52cea5=_0x19424f;this[_0x52cea5(0x17d)]&&(this[_0x52cea5(0x18b)](_0x52cea5(0x177)),this[_0x52cea5(0x17d)]=void 0x0);const _0x465fe0=this[_0x52cea5(0x186)][_0x52cea5(0x180)][_0x52cea5(0x175)][_0x52cea5(0x176)][_0x52cea5(0x183)]();_0x465fe0&&(_0x465fe0['is'](_0x52cea5(0x17f),_0x52cea5(0x174))||_0x465fe0['is'](_0x52cea5(0x17f),_0x52cea5(0x172)))&&(this[_0x52cea5(0x17d)]=new _0x40eb16(this[_0x52cea5(0x186)],this[_0x52cea5(0x186)][_0x52cea5(0x185)][_0x52cea5(0x189)](_0xa6f7e3),_0x465fe0),this[_0x52cea5(0x187)](_0x52cea5(0x177))['to'](this[_0x52cea5(0x17d)],_0x52cea5(0x177)));}}
|
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
|
|
23
|
+
function _0x5060(_0x3b91d5,_0x3d8173){const _0x269384=_0x2693();return _0x5060=function(_0x506043,_0x66fd5c){_0x506043=_0x506043-0x1cb;let _0x42e5de=_0x269384[_0x506043];return _0x42e5de;},_0x5060(_0x3b91d5,_0x3d8173);}const _0xd0107e=_0x5060;(function(_0x4b4ca0,_0x372599){const _0x82125a=_0x5060,_0x2885bb=_0x4b4ca0();while(!![]){try{const _0x13ff28=parseInt(_0x82125a(0x1e0))/0x1*(-parseInt(_0x82125a(0x1d4))/0x2)+parseInt(_0x82125a(0x1db))/0x3+parseInt(_0x82125a(0x1cc))/0x4*(parseInt(_0x82125a(0x1da))/0x5)+-parseInt(_0x82125a(0x1ce))/0x6+parseInt(_0x82125a(0x1de))/0x7*(-parseInt(_0x82125a(0x1dc))/0x8)+-parseInt(_0x82125a(0x1e1))/0x9*(parseInt(_0x82125a(0x1d6))/0xa)+parseInt(_0x82125a(0x1df))/0xb;if(_0x13ff28===_0x372599)break;else _0x2885bb['push'](_0x2885bb['shift']());}catch(_0x116598){_0x2885bb['push'](_0x2885bb['shift']());}}}(_0x2693,0xb82c7));import{Plugin as _0x3c4b8a}from'ckeditor5/src/core.js';function _0x2693(){const _0x415f84=['ImageEditing','UploadcareImageEditEditing','commands','16202WxAKRI','isOfficialPlugin','27930mMOfOY','isPremiumPlugin','add','init','2451615DZYzSZ','58938LfrMHd','2792qWVxUL','requires','1652BGXRHl','18033037zsooEb','154DFofem','1134whueej','ImageUtils','12xliyhg','uploadcareImageEdit','4162626iOOzqt','uploadcareImageReplace','pluginName'];_0x2693=function(){return _0x415f84;};return _0x2693();}import{Notification as _0x2394c2}from'ckeditor5/src/ui.js';import{UploadcareImageEditCommand as _0x59dadd}from'./uploadcareimageeditcommand.js';import{UploadcareImageReplaceCommand as _0x1ec2ee}from'./uploadcareimagereplacecommand.js';import{UploadcareEditing as _0x1c0d7c}from'../uploadcareediting.js';export class UploadcareImageEditEditing extends _0x3c4b8a{static get[_0xd0107e(0x1d0)](){const _0x1159ad=_0xd0107e;return _0x1159ad(0x1d2);}static get[_0xd0107e(0x1dd)](){const _0x1d18f8=_0xd0107e;return[_0x1c0d7c,_0x2394c2,_0x1d18f8(0x1cb),_0x1d18f8(0x1d1)];}static get[_0xd0107e(0x1d5)](){return!0x0;}static get[_0xd0107e(0x1d7)](){return!0x0;}[_0xd0107e(0x1d9)](){const _0x397795=_0xd0107e,{editor:_0x1aca45}=this;_0x1aca45[_0x397795(0x1d3)][_0x397795(0x1d8)](_0x397795(0x1cd),new _0x59dadd(_0x1aca45)),_0x1aca45[_0x397795(0x1d3)][_0x397795(0x1d8)](_0x397795(0x1cf),new _0x1ec2ee(_0x1aca45));}}
|
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
import{Plugin as
|
|
23
|
+
import{Plugin as _0x4411bc}from'ckeditor5/src/core.js';import{ButtonView as _0x1ff5c1}from'ckeditor5/src/ui.js';import{IconUploadcareImageEdit as _0xe75ae5}from'ckeditor5/src/icons.js';import{createElement as _0x43c600}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 _0x4411bc{['_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 _0x4753d1=this['editor'];_0x4753d1['ui']['componentFactory']['add']('uploadcareImageEdit',_0x3b7e4e=>{const _0x43e3d3=_0x4753d1['commands']['get']('uploadcareImageEdit'),_0x52cacd=new _0x1ff5c1(_0x3b7e4e),t=_0x3b7e4e['t'];return _0x52cacd['set']({'icon':_0xe75ae5,'tooltip':!0x0,'label':t({'id':'Edit\x20Image\x20(Uploadcare)','string':'Edit\x20image'})}),_0x52cacd['bind']('isEnabled')['to'](_0x43e3d3),_0x52cacd['bind']('isOn')['to'](_0x43e3d3,'isActive'),this['listenTo'](_0x52cacd,'execute',()=>{_0x4753d1['execute']('uploadcareImageEdit'),_0x4753d1['editing']['view']['focus']();}),_0x52cacd;}),this['_initConfig']();}['_initConfig'](){const _0x3960e4=_0x43c600(document,'uc-config',{'ctx-name':'image-edit','removeCopyright':'true','localeName':this['editor']['locale']['contentLanguage']});document['body']['appendChild'](_0x3960e4),this['listenTo'](this['editor'],'destroy',()=>{_0x3960e4['remove']();});}}
|
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
var
|
|
23
|
+
var _0xae2d38=_0x1899;(function(_0x7623c4,_0xa675b4){var _0x2b7228=_0x1899,_0x13af78=_0x7623c4();while(!![]){try{var _0x25a2c3=-parseInt(_0x2b7228(0x1f2))/0x1*(parseInt(_0x2b7228(0x1ed))/0x2)+parseInt(_0x2b7228(0x1f4))/0x3*(parseInt(_0x2b7228(0x1f5))/0x4)+parseInt(_0x2b7228(0x1fa))/0x5*(-parseInt(_0x2b7228(0x1fb))/0x6)+parseInt(_0x2b7228(0x1f8))/0x7+parseInt(_0x2b7228(0x1f0))/0x8*(-parseInt(_0x2b7228(0x1fc))/0x9)+-parseInt(_0x2b7228(0x1ff))/0xa*(parseInt(_0x2b7228(0x1ef))/0xb)+parseInt(_0x2b7228(0x1f9))/0xc;if(_0x25a2c3===_0xa675b4)break;else _0x13af78['push'](_0x13af78['shift']());}catch(_0x106e44){_0x13af78['push'](_0x13af78['shift']());}}}(_0x1219,0x4c118));import{FocusTracker as _0x45d7fd}from'ckeditor5/src/utils.js';import{View as _0x4657c1,FocusCycler as _0x11ce3e}from'ckeditor5/src/ui.js';import'../../theme/uploadcare-form.css';export class DialogFocusManagerView extends _0x4657c1{[_0xae2d38(0x1ee)];[_0xae2d38(0x1f3)];constructor(_0x23c96f){var _0x3e0f74=_0xae2d38;super(_0x23c96f),this[_0x3e0f74(0x1ee)]=new _0x45d7fd(),this[_0x3e0f74(0x1f3)]=new _0x11ce3e({'focusables':this[_0x3e0f74(0x200)](),'focusTracker':this[_0x3e0f74(0x1ee)]});}[_0xae2d38(0x1f6)](){var _0x1d82dd=_0xae2d38;return{'tag':_0x1d82dd(0x1f7),'attributes':{'aria-hidden':_0x1d82dd(0x1f1),'tabindex':'0'},'on':{'focus':this[_0x1d82dd(0x1ec)]['to'](()=>{var _0x1f5744=_0x1d82dd;this[_0x1f5744(0x1f3)][_0x1f5744(0x1fd)](_0x1f5744(0x1fe));})}};}}function _0x1899(_0x2849e3,_0x1d2a05){var _0x121943=_0x1219();return _0x1899=function(_0x189960,_0x37556f){_0x189960=_0x189960-0x1ec;var _0x3eea27=_0x121943[_0x189960];return _0x3eea27;},_0x1899(_0x2849e3,_0x1d2a05);}function _0x1219(){var _0x1b8ce1=['112543QGiZHf','focusCycler','21spADDO','62332rJsRPA','getFocusableElement','div','4226320ZdseTz','13450392aEXoLY','5UAyeTA','3062706TLgJje','1262763ytFWBU','fire','forwardCycle','10nsYyPr','createCollection','bindTemplate','6cpJouH','focusTracker','2784430lvZXfm','24kViLBn','true'];_0x1219=function(){return _0x1b8ce1;};return _0x1219();}
|
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
(function(
|
|
23
|
+
(function(_0x2cb7ca,_0x4b1c9c){const _0x200f09=_0x40d1,_0xfc1572=_0x2cb7ca();while(!![]){try{const _0x2c0cdc=-parseInt(_0x200f09(0x113))/0x1+-parseInt(_0x200f09(0x10f))/0x2+-parseInt(_0x200f09(0x120))/0x3*(-parseInt(_0x200f09(0xed))/0x4)+-parseInt(_0x200f09(0xf5))/0x5+parseInt(_0x200f09(0x116))/0x6+parseInt(_0x200f09(0xf0))/0x7*(parseInt(_0x200f09(0x115))/0x8)+parseInt(_0x200f09(0x100))/0x9;if(_0x2c0cdc===_0x4b1c9c)break;else _0xfc1572['push'](_0xfc1572['shift']());}catch(_0x19d7b0){_0xfc1572['push'](_0xfc1572['shift']());}}}(_0x1150,0x68fbc));import{global as _0x1c2a21,DomEmitterMixin as _0x3d4654}from'ckeditor5/src/utils.js';export function createEditabilityChecker(_0x2d3528){const _0x4ff8b6=_0x40d1,_0x2ded10=G(_0x2d3528);return _0x5f1beb=>!(!_0x5f1beb||!_0x5f1beb['is'](_0x4ff8b6(0x11d),_0x4ff8b6(0x11b))&&!_0x5f1beb['is'](_0x4ff8b6(0x11d),_0x4ff8b6(0xef)))&&(!!_0x5f1beb[_0x4ff8b6(0x110)](_0x4ff8b6(0x10b))||!!_0x5f1beb[_0x4ff8b6(0x110)](_0x4ff8b6(0xfc))&&_0x2ded10(_0x5f1beb[_0x4ff8b6(0x10e)](_0x4ff8b6(0xfc))));}export function getImageUrls(_0x4239af,_0x36838a){const _0x1f6f44=_0x40d1,_0x573af0=[0x140,0x1e0,0x300,0x400,0x4b0,0x640,0x780,0x960][_0x1f6f44(0x103)](_0x40d21d=>_0x40d21d<=_0x36838a)[_0x1f6f44(0x106)](_0x45bd39=>_0x4239af[_0x1f6f44(0x122)](/\/$/,'')+_0x1f6f44(0x11c)+_0x45bd39+_0x1f6f44(0xf3)+_0x45bd39+'w');return{'imageFallbackUrl':_0x4239af,'imageSources':[{'srcset':_0x573af0[_0x1f6f44(0x104)](',\x20'),'sizes':_0x1f6f44(0x10a)+_0x36838a+_0x1f6f44(0xff)+_0x36838a+'px','type':_0x1f6f44(0xfe)}]};}function _0x1150(){const _0x322438=['/-/resize/','element','setStyle','mapper','3AUFIjV','aspect-ratio','replace','plugins','view','2873588hZKRWQ','domConverter','imageInline','28ztmoxf','match','image-processing','x/\x20','listenTo','1099865ejvohv','ImageUtils','baseURI','document','change','origin','findViewImgElement','src','isArray','image/webp','px)\x20100vw,\x20','3142215XZHcWs','window','addClass','filter','join','get','map','function','toViewElement','viewToDom','(max-width:\x20','uploadcareImageId','load','stopListening','getAttribute','1362968mfeeTm','hasAttribute','editing','width','508904eakNuR','location','1467096BrtMpf','235758WAsbny','height','removeClass','some','removeStyle','imageBlock'];_0x1150=function(){return _0x322438;};return _0x1150();}function _0x40d1(_0x24ce58,_0x268909){const _0x1150db=_0x1150();return _0x40d1=function(_0x40d1ef,_0x56c90d){_0x40d1ef=_0x40d1ef-0xec;let _0x597987=_0x1150db[_0x40d1ef];return _0x597987;},_0x40d1(_0x24ce58,_0x268909);}export function getImageDimension(_0x206c69,_0x2ad769,_0x1a35ba){const _0x1cf51e=_0x40d1,_0x46e3ff=_0x206c69[_0x1cf51e(0xf1)](/\/crop\/(\d+)x(\d+)\//);return{'width':_0x46e3ff?parseInt(_0x46e3ff[0x1],0xa):_0x2ad769,'height':_0x46e3ff?parseInt(_0x46e3ff[0x2],0xa):_0x1a35ba};}export function showImageProcessingIndicator(_0x7eb6df,_0x341253){const _0x1eb0bb=_0x40d1,_0x216672=new(_0x3d4654())(),_0x424847=_0x7eb6df[_0x1eb0bb(0x123)][_0x1eb0bb(0x105)](_0x1eb0bb(0xf6)),_0x1bf4aa=_0x7eb6df[_0x1eb0bb(0x111)][_0x1eb0bb(0x11f)][_0x1eb0bb(0x108)](_0x341253),_0x5cc3a8=_0x424847[_0x1eb0bb(0xfb)](_0x1bf4aa),_0x3e5563=_0x7eb6df[_0x1eb0bb(0x111)][_0x1eb0bb(0xec)][_0x1eb0bb(0xee)][_0x1eb0bb(0x109)](_0x5cc3a8),_0x13cfee=_0x341253[_0x1eb0bb(0x10e)](_0x1eb0bb(0x112)),_0x556a32=_0x341253[_0x1eb0bb(0x10e)](_0x1eb0bb(0x117)),_0x20caec=_0x1eb0bb(0xf2);_0x7eb6df[_0x1eb0bb(0x111)][_0x1eb0bb(0xec)][_0x1eb0bb(0xf9)](_0x4df448=>{const _0x516088=_0x1eb0bb;_0x4df448[_0x516088(0x102)](_0x20caec,_0x1bf4aa),_0x4df448[_0x516088(0x11e)](_0x516088(0x121),_0x13cfee+'/'+_0x556a32,_0x5cc3a8);}),_0x216672[_0x1eb0bb(0xf4)](_0x3e5563,_0x1eb0bb(0x10c),()=>{const _0x23fae5=_0x1eb0bb;_0x216672[_0x23fae5(0x10d)](_0x3e5563,_0x23fae5(0x10c)),_0x7eb6df[_0x23fae5(0x111)][_0x23fae5(0xec)][_0x23fae5(0xf9)](_0x106625=>{const _0x2072fe=_0x23fae5;_0x106625[_0x2072fe(0x118)](_0x20caec,_0x1bf4aa),_0x106625[_0x2072fe(0x11a)](_0x2072fe(0x121),_0x5cc3a8);});});}function G(_0x32c6d2){const _0x13104f=_0x40d1;if(Array[_0x13104f(0xfd)](_0x32c6d2)){const _0x2d8421=_0x32c6d2[_0x13104f(0x106)](G);return _0x1ba774=>_0x2d8421[_0x13104f(0x119)](_0x334b98=>_0x334b98(_0x1ba774));}if(_0x13104f(0xfa)==_0x32c6d2){const _0x10e0b7=_0x1c2a21[_0x13104f(0x101)][_0x13104f(0x114)][_0x13104f(0xfa)];return _0xc8269d=>new URL(_0xc8269d,_0x1c2a21[_0x13104f(0xf8)][_0x13104f(0xf7)])[_0x13104f(0xfa)]==_0x10e0b7;}return _0x13104f(0x107)==typeof _0x32c6d2?_0x32c6d2:_0x32c6d2 instanceof RegExp?_0x35216e=>!(!_0x35216e[_0x13104f(0xf1)](_0x32c6d2)&&!_0x35216e[_0x13104f(0x122)](/^https?:\/\//,'')[_0x13104f(0xf1)](_0x32c6d2)):()=>!0x1;}
|