@ckeditor/ckeditor5-import-word 0.0.0-nightly-20240128.0 → 0.0.0-nightly-20240130.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/import-word.js +1 -1
- package/package.json +2 -2
- package/src/importword.js +1 -1
- package/src/importwordcommand.js +1 -1
- package/src/importwordediting.js +1 -1
- package/src/importwordui.js +1 -1
package/build/import-word.js
CHANGED
|
@@ -2,4 +2,4 @@
|
|
|
2
2
|
/*!
|
|
3
3
|
* @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
|
|
4
4
|
* For licensing, see LICENSE.md.
|
|
5
|
-
*/(()=>{var t={945:(t,e,r)=>{t.exports=r(79)("./src/clipboard.js")},704:(t,e,r)=>{t.exports=r(79)("./src/core.js")},492:(t,e,r)=>{t.exports=r(79)("./src/engine.js")},273:(t,e,r)=>{t.exports=r(79)("./src/ui.js")},448:(t,e,r)=>{t.exports=r(79)("./src/upload.js")},209:(t,e,r)=>{t.exports=r(79)("./src/utils.js")},79:t=>{"use strict";t.exports=CKEditor5.dll}},e={};function r(o){var i=e[o];if(void 0!==i)return i.exports;var n=e[o]={exports:{}};return t[o](n,n.exports,r),n.exports}r.d=(t,e)=>{for(var o in e)r.o(e,o)&&!r.o(t,o)&&Object.defineProperty(t,o,{enumerable:!0,get:e[o]})},r.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),r.r=t=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})};var o={};(()=>{"use strict";r.r(o),r.d(o,{ImportWord:()=>b,ImportWordEditing:()=>m,ImportWordUI:()=>n});var t=r(704),e=r(273),i=r(448);class n extends t.Plugin{static get pluginName(){return"ImportWordUI"}init(){const t=this.editor,r=t.t;t.ui.componentFactory.add("importWord",(o=>{const n=t.commands.get("importWord"),s=new i.FileDialogButtonView(o),a=new e.SpinnerView;return s.set({acceptedType:"application/vnd.openxmlformats-officedocument.wordprocessingml.document,application/vnd.openxmlformats-officedocument.wordprocessingml.template"}),s.buttonView.set({label:r("Import from Word"),icon:'<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path d="m14 0 5 4.5v8.892l-1.5-1.8V6.5h-5v-5h-8v3H3V0h11Zm0 2v3h3.3L14 2Z"/><path d="M10.74 18a2.76 2.76 0 0 1-.469-.5H3V19h9.25v-.374A2.737 2.737 0 0 1 10.74 18Z"/><path d="M8.5 6a1.5 1.5 0 0 1 1.493 1.356L10 7.5v7a1.5 1.5 0 0 1-1.356 1.493L8.5 16h-7a1.5 1.5 0 0 1-1.493-1.356L0 14.5v-7a1.5 1.5 0 0 1 1.356-1.493L1.5 6h7ZM7.483 8.795l-.042.088-.986 2.534-.947-2.528-.043-.092a.601.601 0 0 0-1.042.008l-.042.093-.883 2.465-.937-2.475-.042-.089a.6.6 0 0 0-1.107.42l.027.093 1.514 4 .044.092a.6.6 0 0 0 1.041-.01l.041-.092.88-2.458.925 2.467.046.096a.602.602 0 0 0 1.032 0l.043-.09 1.554-4 .028-.093a.6.6 0 0 0-1.104-.43v.001ZM11.674 15.407a.75.75 0 1 0 1.152.96L14 14.96V20h1.5v-5.04l1.174 1.408a.75.75 0 1 0 1.152-.96l-2.346-2.816a.95.95 0 0 0-1.46 0l-2.346 2.815Z"/></svg>\n',tooltip:!0}),s.buttonView.bind("isOn","isEnabled").to(n,"isBusy","isEnabled"),a.bind("isVisible").to(n,"isBusy"),s.buttonView.iconView.bind("isVisible").to(n,"isBusy",(t=>!t)),s.buttonView.children.add(a),s.on("done",((e,r)=>{t.execute("importWord",r[0],{}),t.editing.view.focus()})),s}))}}var s=r(945),a=r(492),l=r(209);class d extends t.Command{constructor(t){super(t),this.set("isBusy",!1),this._importMarker=null,this._undoStepBatch=null,this._abortController=null,this.on("dataInsert",((e,r)=>{const o=new DataTransfer;o.setData("text/html",r.html);const i=this._importMarker.getRange();this.editor.model.enqueueChange(this._undoStepBatch,(e=>{this._importMarker.stopListening(),e.setSelection(i),t.editing.view.document.fire("clipboardInput",{dataTransfer:o})}))}),{priority:"low"})}refresh(){this.isEnabled=this._checkEnabled()}execute(t,e={}){if(this.isBusy)return Promise.resolve();const r=this.editor.config.get("importWord"),o={url:r.converterUrl,file:t,serviceConfig:{...e,formatting:r.formatting}};return this._prepareForImport(),this._sendImportRequest(o).then(this._handleImportResponse.bind(this)).catch(this._handleImportFailure.bind(this)).finally(this._cleanUpAfterImport.bind(this))}_checkEnabled(){if(this.isBusy)return!1;const t=this.editor.model,e=t.schema,r=t.document.selection,o=(0,l.first)(r.getSelectedBlocks());return!!o&&e.checkChild(o.parent,"paragraph")}_prepareForImport(){const t=this.editor,e=t.model,r=e.document.selection;this._abortController=new AbortController,this._undoStepBatch=t.model.createBatch({isUndoable:!0}),e.enqueueChange(this._undoStepBatch,(t=>{r.isCollapsed||e.deleteContent(r,{leaveUnmerged:!0});const o=r.getFirstPosition(),i=(0,l.first)(r.getSelectedBlocks());let n;n=i.is("element","paragraph")&&i.isEmpty?o:o.isAtStart?e.createPositionBefore(i):o.isAtEnd?e.createPositionAfter(i):t.split(o).position,this._importMarker=t.addMarker("importWord:"+(0,l.uid)(),{usingOperation:!1,affectsData:!1,range:new a.Range(n)}),this._importMarker.on("change:range",(()=>{"$graveyard"===this._importMarker.getRange().root.rootName&&this._abortController.abort()}))})),this.isBusy=!0,this.refresh()}_cleanUpAfterImport(){const t=this.editor.model;t.markers.has(this._importMarker)&&t.enqueueChange(this._undoStepBatch,(t=>{t.removeMarker(this._importMarker)})),this._importMarker=null,this._undoStepBatch=null,this._abortController=null,this.isBusy=!1,this.refresh()}_sendImportRequest({url:t,file:e,serviceConfig:r}){const o=this.editor.plugins.get("ImportWordEditing").getToken(),i=new FormData;i.set("config",JSON.stringify(r)),i.set("file",e);const n={method:"POST",headers:{},body:i,signal:this._abortController.signal};return o&&(n.headers.Authorization=o.value),fetch(t,n)}_handleImportResponse(t){return t.ok?t.json().then((t=>{this.editor.model.markers.has(this._importMarker)&&"$graveyard"!==this._importMarker.getRange().root.rootName&&this.fire("dataInsert",t)})):Promise.reject()}_handleImportFailure(){if(this._abortController.signal.aborted)return void(0,l.logWarning)("import-word-plugin-import-cancelled");const t=this.editor,e=(0,t.t)("An error occurred while importing the Word file.");t.plugins.get("Notification").showWarning(e),(0,l.logError)("import-word-plugin-conversion-failed")}}const c=["
|
|
5
|
+
*/(()=>{var t={945:(t,e,r)=>{t.exports=r(79)("./src/clipboard.js")},704:(t,e,r)=>{t.exports=r(79)("./src/core.js")},492:(t,e,r)=>{t.exports=r(79)("./src/engine.js")},273:(t,e,r)=>{t.exports=r(79)("./src/ui.js")},448:(t,e,r)=>{t.exports=r(79)("./src/upload.js")},209:(t,e,r)=>{t.exports=r(79)("./src/utils.js")},79:t=>{"use strict";t.exports=CKEditor5.dll}},e={};function r(o){var i=e[o];if(void 0!==i)return i.exports;var n=e[o]={exports:{}};return t[o](n,n.exports,r),n.exports}r.d=(t,e)=>{for(var o in e)r.o(e,o)&&!r.o(t,o)&&Object.defineProperty(t,o,{enumerable:!0,get:e[o]})},r.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),r.r=t=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})};var o={};(()=>{"use strict";r.r(o),r.d(o,{ImportWord:()=>b,ImportWordEditing:()=>m,ImportWordUI:()=>n});var t=r(704),e=r(273),i=r(448);class n extends t.Plugin{static get pluginName(){return"ImportWordUI"}init(){const t=this.editor,r=t.t;t.ui.componentFactory.add("importWord",(o=>{const n=t.commands.get("importWord"),s=new i.FileDialogButtonView(o),a=new e.SpinnerView;return s.set({acceptedType:"application/vnd.openxmlformats-officedocument.wordprocessingml.document,application/vnd.openxmlformats-officedocument.wordprocessingml.template"}),s.buttonView.set({label:r("Import from Word"),icon:'<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path d="m14 0 5 4.5v8.892l-1.5-1.8V6.5h-5v-5h-8v3H3V0h11Zm0 2v3h3.3L14 2Z"/><path d="M10.74 18a2.76 2.76 0 0 1-.469-.5H3V19h9.25v-.374A2.737 2.737 0 0 1 10.74 18Z"/><path d="M8.5 6a1.5 1.5 0 0 1 1.493 1.356L10 7.5v7a1.5 1.5 0 0 1-1.356 1.493L8.5 16h-7a1.5 1.5 0 0 1-1.493-1.356L0 14.5v-7a1.5 1.5 0 0 1 1.356-1.493L1.5 6h7ZM7.483 8.795l-.042.088-.986 2.534-.947-2.528-.043-.092a.601.601 0 0 0-1.042.008l-.042.093-.883 2.465-.937-2.475-.042-.089a.6.6 0 0 0-1.107.42l.027.093 1.514 4 .044.092a.6.6 0 0 0 1.041-.01l.041-.092.88-2.458.925 2.467.046.096a.602.602 0 0 0 1.032 0l.043-.09 1.554-4 .028-.093a.6.6 0 0 0-1.104-.43v.001ZM11.674 15.407a.75.75 0 1 0 1.152.96L14 14.96V20h1.5v-5.04l1.174 1.408a.75.75 0 1 0 1.152-.96l-2.346-2.816a.95.95 0 0 0-1.46 0l-2.346 2.815Z"/></svg>\n',tooltip:!0}),s.buttonView.bind("isOn","isEnabled").to(n,"isBusy","isEnabled"),a.bind("isVisible").to(n,"isBusy"),s.buttonView.iconView.bind("isVisible").to(n,"isBusy",(t=>!t)),s.buttonView.children.add(a),s.on("done",((e,r)=>{t.execute("importWord",r[0],{}),t.editing.view.focus()})),s}))}}var s=r(945),a=r(492),l=r(209);class d extends t.Command{constructor(t){super(t),this.set("isBusy",!1),this._importMarker=null,this._undoStepBatch=null,this._abortController=null,this.on("dataInsert",((e,r)=>{const o=new DataTransfer;o.setData("text/html",r.html);const i=this._importMarker.getRange();this.editor.model.enqueueChange(this._undoStepBatch,(e=>{this._importMarker.stopListening(),e.setSelection(i),t.editing.view.document.fire("clipboardInput",{dataTransfer:o})}))}),{priority:"low"})}refresh(){this.isEnabled=this._checkEnabled()}execute(t,e={}){if(this.isBusy)return Promise.resolve();const r=this.editor.config.get("importWord"),o={url:r.converterUrl,file:t,serviceConfig:{...e,formatting:r.formatting}};return this._prepareForImport(),this._sendImportRequest(o).then(this._handleImportResponse.bind(this)).catch(this._handleImportFailure.bind(this)).finally(this._cleanUpAfterImport.bind(this))}_checkEnabled(){if(this.isBusy)return!1;const t=this.editor.model,e=t.schema,r=t.document.selection,o=(0,l.first)(r.getSelectedBlocks());return!!o&&e.checkChild(o.parent,"paragraph")}_prepareForImport(){const t=this.editor,e=t.model,r=e.document.selection;this._abortController=new AbortController,this._undoStepBatch=t.model.createBatch({isUndoable:!0}),e.enqueueChange(this._undoStepBatch,(t=>{r.isCollapsed||e.deleteContent(r,{leaveUnmerged:!0});const o=r.getFirstPosition(),i=(0,l.first)(r.getSelectedBlocks());let n;n=i.is("element","paragraph")&&i.isEmpty?o:o.isAtStart?e.createPositionBefore(i):o.isAtEnd?e.createPositionAfter(i):t.split(o).position,this._importMarker=t.addMarker("importWord:"+(0,l.uid)(),{usingOperation:!1,affectsData:!1,range:new a.Range(n)}),this._importMarker.on("change:range",(()=>{"$graveyard"===this._importMarker.getRange().root.rootName&&this._abortController.abort()}))})),this.isBusy=!0,this.refresh()}_cleanUpAfterImport(){const t=this.editor.model;t.markers.has(this._importMarker)&&t.enqueueChange(this._undoStepBatch,(t=>{t.removeMarker(this._importMarker)})),this._importMarker=null,this._undoStepBatch=null,this._abortController=null,this.isBusy=!1,this.refresh()}_sendImportRequest({url:t,file:e,serviceConfig:r}){const o=this.editor.plugins.get("ImportWordEditing").getToken(),i=new FormData;i.set("config",JSON.stringify(r)),i.set("file",e);const n={method:"POST",headers:{},body:i,signal:this._abortController.signal};return o&&(n.headers.Authorization=o.value),fetch(t,n)}_handleImportResponse(t){return t.ok?t.json().then((t=>{this.editor.model.markers.has(this._importMarker)&&"$graveyard"!==this._importMarker.getRange().root.rootName&&this.fire("dataInsert",t)})):Promise.reject()}_handleImportFailure(){if(this._abortController.signal.aborted)return void(0,l.logWarning)("import-word-plugin-import-cancelled");const t=this.editor,e=(0,t.t)("An error occurred while importing the Word file.");t.plugins.get("Notification").showWarning(e),(0,l.logError)("import-word-plugin-conversion-failed")}}const c=["getToken","none","inline","commands","pluginName","get","cloudServices","requires","CloudServices","tokenUrl","_token","ImportWordEditing","add","token","https://docx-converter.cke-cs.com/v2/convert/docx-html","registerTokenUrl","plugins","importWord","config"];var p,h;p=c,h=431,function(t){for(;--t;)p.push(p.shift())}(++h);const u=function(t,e){return c[t-=0]};class m extends t.Plugin{static get[u("0xa")](){return u("0x11")}static get[u("0xd")](){return[e.Notification,s.ClipboardPipeline,u("0xe")]}constructor(t){super(t),this._token=null}async init(){const t=this.editor;t.config.define("importWord",{converterUrl:u("0x1"),tokenUrl:(t[u("0x5")][u("0xb")](u("0xc"))||{})[u("0xf")],formatting:{resets:"none",defaults:u("0x7"),styles:u("0x8")}}),t[u("0x9")][u("0x12")](u("0x4"),new d(t));const{tokenUrl:e}=t[u("0x5")][u("0xb")]("importWord");if(e){const{tokenUrl:r}=t.config.get(u("0xc"))||{};this[u("0x10")]=e===r?t[u("0x3")][u("0xb")](u("0xe"))[u("0x0")]:await t.plugins[u("0xb")](u("0xe"))[u("0x2")](e)}}[u("0x6")](){return this[u("0x10")]}}var g,f,x=["requires","pluginName"];g=x,f=208,function(t){for(;--t;)g.push(g.shift())}(++f);var v=function(t,e){return x[t-=0]};class b extends t.Plugin{static get[v("0x1")](){return"ImportWord"}static get[v("0x0")](){return[m,n]}}})(),(window.CKEditor5=window.CKEditor5||{}).importWord=o})();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ckeditor/ckeditor5-import-word",
|
|
3
|
-
"version": "0.0.0-nightly-
|
|
3
|
+
"version": "0.0.0-nightly-20240130.0",
|
|
4
4
|
"description": "Import from Word feature for CKEditor 5.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ckeditor",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"type": "module",
|
|
31
31
|
"main": "src/index.js",
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"ckeditor5": "0.0.0-nightly-
|
|
33
|
+
"ckeditor5": "0.0.0-nightly-20240130.0"
|
|
34
34
|
},
|
|
35
35
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
36
36
|
"author": "CKSource (https://cksource.com/)",
|
package/src/importword.js
CHANGED
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
var
|
|
23
|
+
var _0x5553=['requires','pluginName'];(function(_0x19e31b,_0x555336){var _0x2463bf=function(_0x2f0ffd){while(--_0x2f0ffd){_0x19e31b['push'](_0x19e31b['shift']());}};_0x2463bf(++_0x555336);}(_0x5553,0xd0));var _0x2463=function(_0x19e31b,_0x555336){_0x19e31b=_0x19e31b-0x0;var _0x2463bf=_0x5553[_0x19e31b];return _0x2463bf;};import{Plugin as _0x150234}from'ckeditor5/src/core.js';import _0xafb957 from'./importwordui.js';import _0x16a25e from'./importwordediting.js';export default class i extends _0x150234{static get[_0x2463('0x1')](){return'ImportWord';}static get[_0x2463('0x0')](){return[_0x16a25e,_0xafb957];}}
|
package/src/importwordcommand.js
CHANGED
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
import{Command as
|
|
23
|
+
import{Command as _0x336fe2}from'ckeditor5/src/core.js';import{Range as _0x5440f6}from'ckeditor5/src/engine.js';import{logWarning as _0x3943f6,logError as _0x2e49df,first as _0xb4a581,uid as _0x1dcb86}from'ckeditor5/src/utils.js';export default class d extends _0x336fe2{constructor(_0x4dc6b3){super(_0x4dc6b3),this['set']('isBusy',!0x1),this['_importMarker']=null,this['_undoStepBatch']=null,this['_abortController']=null,this['on']('dataInsert',(_0x19dd64,_0x710a30)=>{const _0x2fefb2=new DataTransfer();_0x2fefb2['setData']('text/html',_0x710a30['html']);const _0x4af118=this['_importMarker']['getRange']();this['editor']['model']['enqueueChange'](this['_undoStepBatch'],_0x3908df=>{this['_importMarker']['stopListening'](),_0x3908df['setSelection'](_0x4af118),_0x4dc6b3['editing']['view']['document']['fire']('clipboardInput',{'dataTransfer':_0x2fefb2});});},{'priority':'low'});}['refresh'](){this['isEnabled']=this['_checkEnabled']();}['execute'](_0xe27b1f,_0x195cd6={}){if(this['isBusy'])return Promise['resolve']();const _0x544250=this['editor']['config']['get']('importWord'),_0x212ccd={'url':_0x544250['converterUrl'],'file':_0xe27b1f,'serviceConfig':{..._0x195cd6,'formatting':_0x544250['formatting']}};return this['_prepareForImport'](),this['_sendImportRequest'](_0x212ccd)['then'](this['_handleImportResponse']['bind'](this))['catch'](this['_handleImportFailure']['bind'](this))['finally'](this['_cleanUpAfterImport']['bind'](this));}['_checkEnabled'](){if(this['isBusy'])return!0x1;const _0x54c635=this['editor']['model'],_0x1b611d=_0x54c635['schema'],_0x4ac715=_0x54c635['document']['selection'],_0x12e271=_0xb4a581(_0x4ac715['getSelectedBlocks']());return!!_0x12e271&&_0x1b611d['checkChild'](_0x12e271['parent'],'paragraph');}['_prepareForImport'](){const _0x3f7113=this['editor'],_0x16bdad=_0x3f7113['model'],_0x10098b=_0x16bdad['document']['selection'];this['_abortController']=new AbortController(),this['_undoStepBatch']=_0x3f7113['model']['createBatch']({'isUndoable':!0x0}),_0x16bdad['enqueueChange'](this['_undoStepBatch'],_0x1355a9=>{_0x10098b['isCollapsed']||_0x16bdad['deleteContent'](_0x10098b,{'leaveUnmerged':!0x0});const _0x3ac304=_0x10098b['getFirstPosition'](),_0x146d1c=_0xb4a581(_0x10098b['getSelectedBlocks']());let _0x53fc73;_0x53fc73=_0x146d1c['is']('element','paragraph')&&_0x146d1c['isEmpty']?_0x3ac304:_0x3ac304['isAtStart']?_0x16bdad['createPositionBefore'](_0x146d1c):_0x3ac304['isAtEnd']?_0x16bdad['createPositionAfter'](_0x146d1c):_0x1355a9['split'](_0x3ac304)['position'],this['_importMarker']=_0x1355a9['addMarker']('importWord:'+_0x1dcb86(),{'usingOperation':!0x1,'affectsData':!0x1,'range':new _0x5440f6(_0x53fc73)}),this['_importMarker']['on']('change:range',()=>{'$graveyard'===this['_importMarker']['getRange']()['root']['rootName']&&this['_abortController']['abort']();});}),this['isBusy']=!0x0,this['refresh']();}['_cleanUpAfterImport'](){const _0x100c11=this['editor']['model'];_0x100c11['markers']['has'](this['_importMarker'])&&_0x100c11['enqueueChange'](this['_undoStepBatch'],_0x2b1803=>{_0x2b1803['removeMarker'](this['_importMarker']);}),this['_importMarker']=null,this['_undoStepBatch']=null,this['_abortController']=null,this['isBusy']=!0x1,this['refresh']();}['_sendImportRequest']({url:_0x382677,file:_0x5c4a18,serviceConfig:_0x39a9bf}){const _0x1e9913=this['editor']['plugins']['get']('ImportWordEditing')['getToken'](),_0x43b4d4=new FormData();_0x43b4d4['set']('config',JSON['stringify'](_0x39a9bf)),_0x43b4d4['set']('file',_0x5c4a18);const _0x4c5a37={'method':'POST','headers':{},'body':_0x43b4d4,'signal':this['_abortController']['signal']};return _0x1e9913&&(_0x4c5a37['headers']['Authorization']=_0x1e9913['value']),fetch(_0x382677,_0x4c5a37);}['_handleImportResponse'](_0x57fd17){return _0x57fd17['ok']?_0x57fd17['json']()['then'](_0x3621c3=>{if(!this['editor']['model']['markers']['has'](this['_importMarker']))return;'$graveyard'!==this['_importMarker']['getRange']()['root']['rootName']&&this['fire']('dataInsert',_0x3621c3);}):Promise['reject']();}['_handleImportFailure'](){if(this['_abortController']['signal']['aborted'])return void _0x3943f6('import-word-plugin-import-cancelled');const _0x3c7277=this['editor'],_0x3176b8=(0x0,_0x3c7277['t'])('An\x20error\x20occurred\x20while\x20importing\x20the\x20Word\x20file.');_0x3c7277['plugins']['get']('Notification')['showWarning'](_0x3176b8),_0x2e49df('import-word-plugin-conversion-failed');}}
|
package/src/importwordediting.js
CHANGED
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
const
|
|
23
|
+
const _0x3f8f=['getToken','none','inline','commands','pluginName','get','cloudServices','requires','CloudServices','tokenUrl','_token','ImportWordEditing','add','token','https://docx-converter.cke-cs.com/v2/convert/docx-html','registerTokenUrl','plugins','importWord','config'];(function(_0x4ef304,_0x3f8fd0){const _0x11243c=function(_0x2d8325){while(--_0x2d8325){_0x4ef304['push'](_0x4ef304['shift']());}};_0x11243c(++_0x3f8fd0);}(_0x3f8f,0x1af));const _0x1124=function(_0x4ef304,_0x3f8fd0){_0x4ef304=_0x4ef304-0x0;let _0x11243c=_0x3f8f[_0x4ef304];return _0x11243c;};import{Plugin as _0x4712ca}from'ckeditor5/src/core.js';import{Notification as _0x3e4bb9}from'ckeditor5/src/ui.js';import{ClipboardPipeline as _0x175891}from'ckeditor5/src/clipboard.js';import _0x5b803d from'./importwordcommand.js';export default class e extends _0x4712ca{static get[_0x1124('0xa')](){return _0x1124('0x11');}static get[_0x1124('0xd')](){return[_0x3e4bb9,_0x175891,_0x1124('0xe')];}constructor(_0xfc39c7){super(_0xfc39c7),this['_token']=null;}async['init'](){const _0x358cc6=this['editor'];_0x358cc6['config']['define']('importWord',{'converterUrl':_0x1124('0x1'),'tokenUrl':(_0x358cc6[_0x1124('0x5')][_0x1124('0xb')](_0x1124('0xc'))||{})[_0x1124('0xf')],'formatting':{'resets':'none','defaults':_0x1124('0x7'),'styles':_0x1124('0x8')}}),_0x358cc6[_0x1124('0x9')][_0x1124('0x12')](_0x1124('0x4'),new _0x5b803d(_0x358cc6));const {tokenUrl:_0x1bc613}=_0x358cc6[_0x1124('0x5')][_0x1124('0xb')]('importWord');if(_0x1bc613){const {tokenUrl:_0x46231f}=_0x358cc6['config']['get'](_0x1124('0xc'))||{};this[_0x1124('0x10')]=_0x1bc613===_0x46231f?_0x358cc6[_0x1124('0x3')][_0x1124('0xb')](_0x1124('0xe'))[_0x1124('0x0')]:await _0x358cc6['plugins'][_0x1124('0xb')](_0x1124('0xe'))[_0x1124('0x2')](_0x1bc613);}}[_0x1124('0x6')](){return this[_0x1124('0x10')];}}
|
package/src/importwordui.js
CHANGED
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
import{Plugin as
|
|
23
|
+
import{Plugin as _0x2569c3}from'ckeditor5/src/core.js';import{SpinnerView as _0x405a67}from'ckeditor5/src/ui.js';import{FileDialogButtonView as _0x4d5c89}from'ckeditor5/src/upload.js';import _0x1330fd from'../theme/icons/importword.svg';export default class o extends _0x2569c3{static get['pluginName'](){return'ImportWordUI';}['init'](){const _0x5a1e7d=this['editor'],t=_0x5a1e7d['t'];_0x5a1e7d['ui']['componentFactory']['add']('importWord',_0x1d2616=>{const _0x387046=_0x5a1e7d['commands']['get']('importWord'),_0x599b92=new _0x4d5c89(_0x1d2616),_0x39313f=new _0x405a67();return _0x599b92['set']({'acceptedType':'application/vnd.openxmlformats-officedocument.wordprocessingml.document,application/vnd.openxmlformats-officedocument.wordprocessingml.template'}),_0x599b92['buttonView']['set']({'label':t('Import\x20from\x20Word'),'icon':_0x1330fd,'tooltip':!0x0}),_0x599b92['buttonView']['bind']('isOn','isEnabled')['to'](_0x387046,'isBusy','isEnabled'),_0x39313f['bind']('isVisible')['to'](_0x387046,'isBusy'),_0x599b92['buttonView']['iconView']['bind']('isVisible')['to'](_0x387046,'isBusy',_0xae9edb=>!_0xae9edb),_0x599b92['buttonView']['children']['add'](_0x39313f),_0x599b92['on']('done',(_0x4651ee,_0x208707)=>{_0x5a1e7d['execute']('importWord',_0x208707[0x0],{}),_0x5a1e7d['editing']['view']['focus']();}),_0x599b92;});}}
|