lexical 0.0.2 → 0.1.3
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/AutoLinkNode.js +1 -0
- package/CodeHighlightNode.js +3 -0
- package/CodeNode.js +5 -0
- package/HashtagNode.js +3 -0
- package/HeadingNode.js +3 -0
- package/LICENSE +14 -13
- package/Lexical.js +140 -0
- package/LinkNode.js +3 -0
- package/ListItemNode.js +8 -0
- package/ListNode.js +5 -0
- package/ParagraphNode.js +3 -0
- package/QuoteNode.js +3 -0
- package/README.md +3 -37
- package/TableCellNode.js +3 -0
- package/TableNode.js +7 -0
- package/TableRowNode.js +2 -0
- package/package.json +18 -20
- package/.npmignore +0 -3
- package/.travis.yml +0 -4
- package/HISTORY +0 -0
- package/Makefile +0 -28
- package/bin/lexical +0 -18
- package/index.js +0 -1
- package/lib/lexical.js +0 -68
- package/test/lexical.test.js +0 -19
- package/test/mocha.opt +0 -1
package/AutoLinkNode.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
'use strict';var b=require("lexical/LinkNode"),c=require("lexical");class e extends b.LinkNode{static getType(){return"autolink"}static clone(a){return new e(a.__url,a.__key)}insertNewAfter(a){a=this.getParentOrThrow().insertNewAfter(a);if(c.$isElementNode(a)){const d=f(this.__url);a.append(d);return d}return null}canInsertTextAfter(){return!0}}function f(a){return new e(a)}exports.$createAutoLinkNode=f;exports.$isAutoLinkNode=function(a){return a instanceof e};exports.AutoLinkNode=e;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
'use strict';var d=require("lexical");function e(a,...b){b.forEach(c=>{null!=c&&"string"===typeof c&&a.classList.add(...c.split(" "))})}function f(a,...b){b.forEach(c=>{a.classList.remove(...c.split(" "))})}
|
|
2
|
+
class g extends d.TextNode{constructor(a,b,c){super(a,c);this.__highlightType=b}static getType(){return"code-highlight"}static clone(a){return new g(a.__text,a.__highlightType||void 0,a.__key)}createDOM(a){const b=super.createDOM(a);a=h(a.theme,this.__highlightType);e(b,a);return b}updateDOM(a,b,c){const k=super.updateDOM(a,b,c);a=h(c.theme,a.__highlightType);c=h(c.theme,this.__highlightType);a!==c&&(a&&f(b,a),c&&e(b,c));return k}setFormat(){return this.getWritable()}}
|
|
3
|
+
function h(a,b){return b&&a&&a.codeHighlight&&a.codeHighlight[b]}exports.$createCodeHighlightNode=function(a,b){return new g(a,b)};exports.$isCodeHighlightNode=function(a){return a instanceof g};exports.CodeHighlightNode=g;
|
package/CodeNode.js
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
'use strict';var e=require("lexical"),f=require("lexical/ParagraphNode"),g=require("lexical/CodeHighlightNode");function h(a,...c){c.forEach(b=>{null!=b&&"string"===typeof b&&a.classList.add(...b.split(" "))})}
|
|
2
|
+
class k extends e.ElementNode{static getType(){return"code"}static clone(a){return new k(a.__language,a.__key)}constructor(a,c){super(c);this.__language=a}createDOM(a){const c=document.createElement("code");h(c,a.theme.code);c.setAttribute("spellcheck","false");return c}updateDOM(){return!1}insertNewAfter(a){var c=this.getChildren(),b=c.length;if(2<=b&&"\n"===c[b-1].getTextContent()&&"\n"===c[b-2].getTextContent()&&a.isCollapsed()&&a.anchor.key===this.__key&&a.anchor.offset===b)return c[b-1].remove(),
|
|
3
|
+
c[b-2].remove(),a=f.$createParagraphNode(),this.insertAfter(a),a;c=a.anchor.getNode();var d=l(c);if(null!=d){b=0;for(d=d.getTextContent();b<d.length&&/[\t ]/.test(d[b]);)b+=1;if(0<b)return b=d.substring(0,b),b=g.$createCodeHighlightNode(b),c.insertAfter(b),a.insertNodes([e.$createLineBreakNode()]),b.select(),b}return null}canInsertTab(){return!0}collapseAtStart(){const a=f.$createParagraphNode();this.getChildren().forEach(c=>a.append(c));this.replace(a);return!0}setLanguage(a){this.getWritable().__language=
|
|
4
|
+
a}getLanguage(){return this.getLatest().__language}}function l(a){let c=null;const b=a.getPreviousSiblings();for(b.push(a);0<b.length&&(a=b.pop(),g.$isCodeHighlightNode(a)&&(c=a),!e.$isLineBreakNode(a)););return c}exports.$createCodeNode=function(a){return new k(a)};exports.$isCodeNode=function(a){return a instanceof k};exports.CodeNode=k;exports.getFirstCodeHighlightNodeOfLine=l;
|
|
5
|
+
exports.getLastCodeHighlightNodeOfLine=function(a){let c=null;const b=a.getNextSiblings();for(b.unshift(a);0<b.length&&(a=b.shift(),g.$isCodeHighlightNode(a)&&(c=a),!e.$isLineBreakNode(a)););return c};
|
package/HashtagNode.js
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
'use strict';var c=require("lexical");function d(b,...a){a.forEach(f=>{null!=f&&"string"===typeof f&&b.classList.add(...f.split(" "))})}
|
|
2
|
+
class e extends c.TextNode{static getType(){return"hashtag"}static clone(b){return new e(b.__text,b.__key)}constructor(b,a){super(b,a)}createDOM(b){const a=super.createDOM(b);d(a,b.theme.hashtag);return a}setTextContent(b){let a=super.setTextContent(b);return null===a.getParent()||a.isComposing()?this:(b=b.indexOf("#"),-1===b||"#"===a.getTextContent()?a=g(a):0<b&&([a]=a.splitText(b),a=g(a)),c.$isTextNode(a)&&a.isAttached()&&(b=a.getTextContent().slice(1).search(/[\s.,\\\/#!$%\^&\*;:{}=\-`~()@]/),
|
|
3
|
+
0===b?a=g(a):0<b&&([a]=a.splitText(b+1),a=g(a))),a)}canInsertTextBefore(){return!1}canInsertTextAfter(){return!0}}function g(b){var a=b.getTextContent();a=h(b)?c.$createTextNode(a):k(a);b.replace(a);return a}function k(b=""){return new e(b)}function h(b){return b instanceof e}exports.$createHashtagNode=k;exports.$isHashtagNode=h;exports.$toggleHashtag=g;exports.HashtagNode=e;
|
package/HeadingNode.js
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
'use strict';var d=require("lexical"),e=require("lexical/ParagraphNode");function f(a,...b){b.forEach(c=>{null!=c&&"string"===typeof c&&a.classList.add(...c.split(" "))})}
|
|
2
|
+
class g extends d.ElementNode{static getType(){return"heading"}static clone(a){return new g(a.__tag,a.__key)}constructor(a,b){super(b);this.__tag=a}getTag(){return this.__tag}createDOM(a){const b=this.__tag,c=document.createElement(b);a=a.theme.heading;void 0!==a&&f(c,a[b]);return c}updateDOM(){return!1}insertNewAfter(){const a=e.$createParagraphNode(),b=this.getDirection();a.setDirection(b);this.insertAfter(a);return a}collapseAtStart(){const a=e.$createParagraphNode();this.getChildren().forEach(b=>
|
|
3
|
+
a.append(b));this.replace(a);return!0}}exports.$createHeadingNode=function(a){return new g(a)};exports.$isHeadingNode=function(a){return a instanceof g};exports.HeadingNode=g;
|
package/LICENSE
CHANGED
|
@@ -1,20 +1,21 @@
|
|
|
1
|
-
|
|
1
|
+
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c)
|
|
3
|
+
Copyright (c) 2020 Dominic Gannaway
|
|
4
4
|
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
the Software without restriction, including without limitation the rights
|
|
8
|
-
use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
the Software, and to permit persons to whom the Software is
|
|
10
|
-
subject to the following conditions:
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
11
|
|
|
12
12
|
The above copyright notice and this permission notice shall be included in all
|
|
13
13
|
copies or substantial portions of the Software.
|
|
14
14
|
|
|
15
15
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/Lexical.js
ADDED
|
@@ -0,0 +1,140 @@
|
|
|
1
|
+
'use strict';const aa=/^[^A-Za-z\u00c0-\u00d6\u00d8-\u00f6\u00f8-\u02b8\u0300-\u0590\u0800-\u1fff\u200e\u2c00-\ufb1c\ufe00-\ufe6f\ufefd-\uffff]*[\u0591-\u07ff\ufb1d-\ufdfd\ufe70-\ufefc]/,ba=/^[^\u0591-\u07ff\ufb1d-\ufdfd\ufe70-\ufefc]*[A-Za-z\u00c0-\u00d6\u00d8-\u00f6\u00f8-\u02b8\u0300-\u0590\u0800-\u1fff\u200e\u2c00-\ufb1c\ufe00-\ufe6f\ufefd-\uffff]/,ca={bold:1,underline:8,strikethrough:4,italic:2,code:16,subscript:32,superscript:64},da={left:1,right:3,center:2,justify:4},ea={normal:0,token:1,segmented:2,
|
|
2
|
+
inert:3};function p(a){throw Error(`Minified Lexical error #${a}; see codes.json for the full message or `+"use the non-minified dev environment for full errors and additional helpful warnings.");}let fa=!1,ha=0;function ia(a){ha=a.timeStamp}function ja(a){return a.getEditorState().read(()=>{const b=q();return null!==b?b.clone():null})}
|
|
3
|
+
function ka(a,b,c){fa=!0;const d=100<performance.now()-ha;try{la(a,()=>{t("onMutation");var e=new Map,f=a.getRootElement(),g=a._editorState,h=!1;for(var l=0;l<b.length;l++){var k=b[l],m=k.type,n=k.target,r=ma(n,g);if(!y(r))if("characterData"===m){if(d&&3===n.nodeType&&A(r)&&r.isAttached()){k=window.getSelection();var u=m=null;null!==k&&k.anchorNode===n&&(m=k.anchorOffset,u=k.focusOffset);pa(r,n.nodeValue,m,u,!1)}}else if("childList"===m){h=!0;m=k.addedNodes;for(u=0;u<m.length;u++){var z=m[u],v=qa(z);
|
|
4
|
+
const x=z.parentNode;null!=x&&null===v&&x.removeChild(z)}k=k.removedNodes;m=k.length;if(0<m){u=0;for(z=0;z<m;z++)v=k[z],"BR"!==v.nodeName||n.__lexicalLineBreak!==v&&void 0===v["__lexicalKey_"+a._key]||(n.appendChild(v),u++);m!==u&&(n===f&&(r=ra(g)),e.set(n,r))}}}if(0<e.size)for(e=Array.from(e.entries()),f=0;f<e.length;f++){const [x,w]=e[f];if(B(w))for(g=w.__children,l=x.firstChild,r=0;r<g.length;r++)n=a.getElementByKey(g[r]),null!==n&&(null==l?(x.appendChild(n),l=n):l!==n&&x.replaceChild(n,l),l=l.nextSibling);
|
|
5
|
+
else A(w)&&w.markDirty()}e=c.takeRecords();if(0<e.length){for(f=0;f<e.length;f++)for(l=e[f],g=l.addedNodes,l=l.target,r=0;r<g.length;r++)n=g[r],k=n.parentNode,null!=k&&"BR"===n.nodeName&&l.__lexicalLineBreak!==n&&void 0===n["__lexicalKey_"+a._key]&&k.removeChild(n);c.takeRecords()}h&&(h=q()||ja(a),null!==h&&(h.dirty=!0,sa(h)))},!0)}finally{fa=!1}}function ta(a){const b=a._observer;if(null!==b){const c=b.takeRecords();ka(a,c,b)}}
|
|
6
|
+
function ua(a){0===ha&&window.addEventListener("textInput",ia,!0);a._observer=new MutationObserver((b,c)=>{ka(a,b,c)})}
|
|
7
|
+
const va="undefined"!==typeof window&&"undefined"!==typeof window.document&&"undefined"!==typeof window.document.createElement,wa=va&&"documentMode"in document?document.documentMode:null,C=va&&/Mac|iPod|iPhone|iPad/.test(navigator.platform),xa=va&&/^(?!.*Seamonkey)(?=.*Firefox).*/i.test(navigator.userAgent),ya=va&&"InputEvent"in window&&!wa?"getTargetRanges"in new window.InputEvent("input"):!1;let za=0;const Aa=window.Promise,Ba="function"===typeof queueMicrotask?queueMicrotask:a=>Aa.resolve().then(a);
|
|
8
|
+
function Fa(a,b,c){a=a.getRootElement();try{return null!==a&&a.contains(b)&&a.contains(c)&&null!=b&&!y(ma(b))}catch(d){return!1}}function D(a){return a.isToken()||a.isInert()}function Ga(a){for(;null!=a;){if(3===a.nodeType)return a;a=a.firstChild}return null}function Ha(a,b,c){b=ca[b];return a&b&&(null===c||0===(c&b))?a^b:null===c||c&b?a|b:a}function Ia(a){return A(a)||Ja(a)||y(a)}
|
|
9
|
+
function Ka(a){99<La&&p(26);var b=a.getLatest(),c=b.__parent,d=E();const e=F(),f=d._nodeMap;d=e._dirtyElements;if(null!==c)a:for(;null!==c;){if(d.has(c))break a;const g=f.get(c);if(void 0===g)break;d.set(c,!1);c=g.__parent}b=b.__key;e._dirtyType=1;B(a)?d.set(b,!0):e._dirtyLeaves.add(b)}function G(a){const b=a.getPreviousSibling();a=a.getNextSibling();null!==b&&Ka(b);null!==a&&Ka(a)}
|
|
10
|
+
function H(a){I();var b=F();const c=b._compositionKey;b._compositionKey=a;null!==c&&(b=J(c),null!==b&&b.getWritable());null!==a&&(a=J(a),null!==a&&a.getWritable())}function K(){return F()._compositionKey}function J(a,b){a=(b||E())._nodeMap.get(a);return void 0===a?null:a}function qa(a,b){const c=F();a=a["__lexicalKey_"+c._key];return void 0!==a?J(a,b):null}function ma(a,b){for(;null!=a;){const c=qa(a,b);if(null!==c)return c;a=a.parentNode}return null}
|
|
11
|
+
function Ma(a){const b=Object.assign({},a._decorators);return a._pendingDecorators=b}function t(a){F()._log.push(a)}function Na(a){return a.read(()=>ra().getTextContent())}function Oa(a,b){la(a,()=>{var c=E();if(!c.isEmpty())if("root"===b)ra().markDirty();else{c=Array.from(c._nodeMap);for(let d=0;d<c.length;d++)c[d][1].markDirty()}},!0,null===a._pendingEditorState?{tag:"without-history"}:void 0)}function ra(a){return(a||E())._nodeMap.get("root")}function sa(a){E()._selection=a}
|
|
12
|
+
function Pa(a){var b=F(),c;a:{for(c=a;null!=c;){const d=c["__lexicalKey_"+b._key];if(void 0!==d){c=d;break a}c=c.parentNode}c=null}return null===c?(b=b.getRootElement(),a===b?J("root"):null):J(c)}function Qa(a){const b=[];for(;null!==a;)b.push(a),a=a._parentEditor;return b}function Ra(){return Math.random().toString(36).replace(/[^a-z]+/g,"").substr(0,5)}
|
|
13
|
+
function Sa(a,b){a=window.getSelection();if(null!==a){var {anchorNode:c,anchorOffset:d,focusOffset:e}=a;null!==c&&3===c.nodeType&&(a=ma(c),A(a)&&pa(a,c.nodeValue,d,e,b))}}
|
|
14
|
+
function pa(a,b,c,d,e){if(a.isAttached()&&(e||!a.isDirty())){var f=a.isComposing();let g=b;(f||e)&&"\u00a0"===b[b.length-1]&&(g=b.slice(0,-1));b=a.getTextContent();if(e||g!==b)""===g?(f&&H(null),a.remove()):(e=a.getParent(),b=Ta(),D(a)||null!==K()&&!f||null!==e&&null!==b&&!e.canInsertTextBefore()&&0===b.anchor.offset?a.markDirty():(f=q(),null!==f&&null!==c&&null!==d&&(f.setTextNodeRange(a,c,a,d),a.isSegmented()&&(c=a.getTextContent(),c=L(c),a.replace(c),a=c)),a.setTextContent(g)))}}
|
|
15
|
+
function Ua(a,b,c){var d=a.anchor;const e=a.focus;var f=d.getNode();(b=d.key!==e.key||d.offset!==e.offset&&!f.isComposing()||(c||f.isDirty())&&1<b.length||!A(f)||f.getFormat()!==a.format)||(f.isSegmented()?b=!0:a.isCollapsed()?(b=a.anchor.offset,c=f.getParentOrThrow(),d=f.isToken(),a=0===b&&(!f.canInsertTextBefore()||!c.canInsertTextBefore()||d),f=f.getTextContentSize()===b&&(!f.canInsertTextBefore()||!c.canInsertTextBefore()||d),b=a||f):b=!1);return b}
|
|
16
|
+
class Va{constructor(a,b,c){this.key=a;this.offset=b;this.type=c}is(a){return this.key===a.key&&this.offset===a.offset&&this.type===a.type}isBefore(a){let b=this.getNode(),c=a.getNode();const d=this.offset;a=a.offset;B(b)&&(b=b.getDescendantByIndex(d));B(c)&&(c=c.getDescendantByIndex(a));return b===c?d<a:b.isBefore(c)}getCharacterOffset(){return"text"===this.type?this.offset:0}getNode(){const a=J(this.key);null===a&&p(5);return a}set(a,b,c){const d=q(),e=this.key;this.key=a;this.offset=b;this.type=
|
|
17
|
+
c;M||(K()===e&&H(a),null===d||d.anchor!==this&&d.focus!==this||(d.dirty=!0))}}function P(a,b,c){return new Va(a,b,c)}function Wa(a,b){const c=b.getKey();let d=a.offset,e="element";A(b)&&(e="text",b=b.getTextContentSize(),d>b&&(d=b));a.set(c,d,e)}function Xa(a,b){if(B(b)){const c=b.getLastDescendant();B(c)||A(c)?Wa(a,c):Wa(a,b)}else A(b)&&Wa(a,b)}
|
|
18
|
+
function Ya(a,b,c){b=a.getNode();const d=b.getChildAtIndex(a.offset),e=L();e.setFormat(c);null===d?b.append(e):d.insertBefore(e);a.set(e.getKey(),0,"text")}function Q(a,b,c,d){a.key=b;a.offset=c;a.type=d}
|
|
19
|
+
class Za{constructor(a,b,c){this.anchor=a;this.focus=b;this.dirty=!1;this.format=c}is(a){return null===a?!1:this.anchor.is(a.anchor)&&this.focus.is(a.focus)}isBackward(){return this.focus.isBefore(this.anchor)}isCollapsed(){return this.anchor.is(this.focus)}getNodes(){const a=this.anchor,b=this.focus;let c=a.getNode(),d=b.getNode();B(c)&&(c=c.getDescendantByIndex(a.offset));B(d)&&(d=d.getDescendantByIndex(b.offset));return c.is(d)?B(c)?[]:[c]:c.getNodesBetween(d)}setTextNodeRange(a,b,c,d){Q(this.anchor,
|
|
20
|
+
a.__key,b,"text");Q(this.focus,c.__key,d,"text");this.dirty=!0}getTextContent(){const a=this.getNodes();if(0===a.length)return"";const b=a[0],c=a[a.length-1];var d=this.anchor,e=this.focus;const f=d.isBefore(e);d=d.getCharacterOffset();e=e.getCharacterOffset();let g="",h=!0;for(let l=0;l<a.length;l++){const k=a[l];if(B(k))h||(g+="\n"),h=k.isEmpty()?!1:!0;else if(h=!1,A(k)){let m=k.getTextContent();k===b?m=k===c?d<e?m.slice(d,e):m.slice(e,d):f?m.slice(d):m.slice(e):k===c&&(m=f?m.slice(0,e):m.slice(0,
|
|
21
|
+
d));g+=m}else!y(k)&&!Ja(k)||k===c&&this.isCollapsed()||(g+=k.getTextContent())}return g}applyDOMRange(a){const b=F();a=$a(a.startContainer,a.startOffset,a.endContainer,a.endOffset,b);if(null!==a){var [c,d]=a;Q(this.anchor,c.key,c.offset,c.type);Q(this.focus,d.key,d.offset,d.type)}}clone(){const a=this.anchor,b=this.focus;return new Za(P(a.key,a.offset,a.type),P(b.key,b.offset,b.type),this.format)}toggleFormatType(a){this.format=Ha(this.format,a,null);this.dirty=!0}hasFormat(a){return 0!==(this.format&
|
|
22
|
+
ca[a])}insertRawText(a){const b=a.split(/\r?\n/);if(1===b.length)this.insertText(a);else{a=[];const c=b.length;for(let d=0;d<c;d++){const e=b[d];""!==e&&a.push(L(e));d!==c-1&&a.push(ab())}this.insertNodes(a)}}insertText(a){var b=this.anchor,c=this.focus,d=this.isCollapsed()||b.isBefore(c),e=this.format;d&&"element"===b.type?Ya(b,c,e):d||"element"!==c.type||Ya(c,b,e);var f=this.getNodes(),g=f.length,h=d?c:b;b=(d?b:c).offset;var l=h.offset;c=f[0];A(c)||p(6);d=c.getTextContent().length;var k=c.getParentOrThrow();
|
|
23
|
+
if(!this.isCollapsed()||b!==d||!c.isSegmented()&&!c.isToken()&&c.canInsertTextAfter()&&k.canInsertTextAfter())if(!this.isCollapsed()||0!==b||!c.isSegmented()&&!c.isToken()&&c.canInsertTextBefore()&&k.canInsertTextBefore())c.isSegmented()&&b!==d&&(k=L(c.getTextContent()),c.replace(k),c=k);else{m=c.getPreviousSibling();if(!A(m)||D(m)||m.isSegmented())m=L(),k.canInsertTextBefore()?c.insertBefore(m):k.insertBefore(m);m.select();c=m;if(""!==a){this.insertText(a);return}}else{var m=c.getNextSibling();if(!A(m)||
|
|
24
|
+
D(m)||m.isSegmented())m=L(),k.canInsertTextAfter()?c.insertAfter(m):k.insertAfter(m);m.select(0,0);c=m;if(""!==a){this.insertText(a);return}}if(1===g)if(D(c))c.remove();else{f=c.getFormat();if(b===l&&f!==e)if(""===c.getTextContent())c.setFormat(e);else{f=L(a);f.setFormat(e);f.select();0===b?c.insertBefore(f):([g]=c.splitText(b),g.insertAfter(f));return}c=c.spliceText(b,l-b,a,!0);""===c.getTextContent()?c.remove():c.isComposing()&&"text"===this.anchor.type&&(this.anchor.offset-=a.length)}else{k=f[g-
|
|
25
|
+
1];e=new Set([...c.getParentKeys(),...k.getParentKeys()]);var n=B(c)?c:c.getParentOrThrow();m=B(k)?k:k.getParentOrThrow();"text"===h.type&&(0!==l||""===k.getTextContent())||"element"===h.type&&k.getIndexWithinParent()<l?A(k)&&!D(k)&&l!==k.getTextContentSize()?(k.isSegmented()&&(h=L(k.getTextContent()),k.replace(h),k=h),k=k.spliceText(0,l,""),e.add(k.getKey())):k.remove():e.add(k.getKey());h=m.getChildren();l=new Set(f);const r=n.is(m);if(m.canBeEmpty()||n===m){for(n=h.length-1;0<=n;n--){const u=h[n];
|
|
26
|
+
if(u.is(c)||B(u)&&u.isParentOf(c))break;u.isAttached()&&(!l.has(u)||u.is(k)?r||c.insertAfter(u):u.remove())}if(!r)for(h=m,l=null;null!==h;){k=h.getChildren();m=k.length;if(0===m||k[m-1].is(l))e.delete(h.getKey()),l=h;h=h.getParent()}}else n.append(m);D(c)?b===d?c.select():c.remove():(c=c.spliceText(b,d-b,a,!0),""===c.getTextContent()?c.remove():c.isComposing()&&"text"===this.anchor.type&&(this.anchor.offset-=a.length));for(a=1;a<g;a++)b=f[a],c=b.getKey(),e.has(c)||B(b)&&!b.canSelectionRemove()||b.remove()}}removeText(){this.insertText("")}formatText(a){const b=
|
|
27
|
+
this.getNodes(),c=b.length-1;let d=b[0],e=b[c];if(this.isCollapsed())this.toggleFormatType(a);else{var f=this.anchor,g=this.focus,h=d.getTextContent().length,l=g.offset,k=0;for(var m=0;m<b.length;m++){var n=b[m];if(A(n)){k=n.getFormatFlags(a,null);break}}var r=f.offset;n=(m=f.isBefore(g))?r:l;m=m?l:r;if(n===d.getTextContentSize()){const u=d.getNextSibling();A(u)&&(n=r=0,d=u,k=d.getFormatFlags(a,null))}if(d.is(e))A(d)&&("element"===f.type&&"element"===g.type?(d.setFormat(k),d.select(n,m),this.format=
|
|
28
|
+
k):(n=r>l?l:r,m=r>l?r:l,n!==m&&(0===n&&m===h?(d.setFormat(k),d.select(n,m)):(a=d.splitText(n,m),a=0===n?a[0]:a[1],a.setFormat(k),a.select(0,m-n)),this.format=k)));else for(A(d)&&(0!==n&&([,d]=d.splitText(n)),d.setFormat(k)),f=k,A(e)&&(f=e.getFormatFlags(a,k),k=e.getTextContent().length,0!==m&&(m!==k&&([e]=e.splitText(m)),e.setFormat(f))),k=1;k<c;k++)m=b[k],g=m.getKey(),A(m)&&g!==d.getKey()&&g!==e.getKey()&&!m.isToken()&&(g=m.getFormatFlags(a,f),m.setFormat(g))}}insertNodes(a,b){this.isCollapsed()||
|
|
29
|
+
this.removeText();var c=this.anchor,d=c.offset,e=c.getNode(),f=e;"element"===c.type&&(f=c.getNode(),c=f.getChildAtIndex(d-1),f=null===c?f:c);c=[];var g=e.getNextSiblings(),h=e.getTopLevelElementOrThrow();if(A(e))if(f=e.getTextContent().length,0===d&&0!==f)f=e.getPreviousSibling(),f=null!==f?f:e.getParentOrThrow(),c.push(e);else if(d===f)f=e;else{if(D(e))return!1;[f,e]=e.splitText(d);c.push(e)}e=f;c.push(...g);d=a[0];var l=!1;for(g=0;g<a.length;g++){const n=a[g];if(B(n)){if(n.is(d)){if(B(f)&&f.isEmpty()&&
|
|
30
|
+
f.canReplaceWith(n)){f.replace(n);f=n;l=!0;continue}var k=n.getFirstDescendant();if(Ia(k)){k=k.getParentOrThrow();l=k.getChildren();var m=l.length;if(B(f))for(let r=0;r<m;r++)f.append(l[r]);else{for(--m;0<=m;m--)f.insertAfter(l[m]);f=f.getParentOrThrow()}k.remove();l=!0;if(k.is(n))continue}}A(f)&&(f=h)}else l&&R(f.getParent())&&p(7);l=!1;if(B(f))if(B(n)){if(n.canBeEmpty()||!n.isEmpty())f=f.insertAfter(n)}else k=f.getFirstChild(),null!==k?k.insertBefore(n):f.append(n),f=n;else B(n)?(f=n.getParentOrThrow(),
|
|
31
|
+
g--):f=f.insertAfter(n)}b&&(A(e)?e.select():(a=f.getPreviousSibling(),A(a)?a.select():(a=f.getIndexWithinParent(),f.getParentOrThrow().select(a,a))));if(B(f)){if(a=f.getLastDescendant(),b||(null===a?f.select():A(a)?a.select():a.selectNext()),0!==c.length)for(b=c.length-1;0<=b;b--)a=c[b],h=a.getParentOrThrow(),B(f)&&!B(a)?(f.append(a),f=a):B(a)&&!a.canInsertAfter(f)?(e=h.constructor.clone(h),B(e)||p(8),e.append(a),f.insertAfter(e)):f.insertAfter(a),h.isEmpty()&&!h.canBeEmpty()&&h.remove()}else b||
|
|
32
|
+
(A(f)?f.select():(c=f.getParentOrThrow(),f=f.getIndexWithinParent()+1,c.select(f,f)));return!0}insertParagraph(){this.isCollapsed()||this.removeText();var a=this.anchor,b=a.offset;if("text"===a.type){var c=a.getNode(),d=c.getTextContent().length;a=c.getNextSiblings().reverse();var e=c.getParentOrThrow();0===b?a.push(c):b!==d&&([,b]=c.splitText(b),a.push(b))}else e=a.getNode(),a=e.getChildren().slice(b).reverse();b=e.insertNewAfter(this);if(null===b)this.insertLineBreak();else if(B(b)){e=a.length;
|
|
33
|
+
c=null;if(0!==e)for(d=0;d<e;d++){const f=a[d];null===c?b.append(f):c.insertBefore(f);c=f}b.canBeEmpty()||0!==b.getChildrenSize()?b.selectStart():(b.selectPrevious(),b.remove())}}insertLineBreak(a){const b=ab();a?this.insertNodes([b],!0):this.insertNodes([b])&&b.selectNext(0,0)}extract(){var a=this.getNodes(),b=a.length,c=b-1,d=this.anchor;const e=this.focus;var f=a[0];let g=a[c];var h=d.getCharacterOffset();const l=e.getCharacterOffset();if(0===b)return[];if(1===b)return A(f)?(a=h>l?l:h,c=f.splitText(a,
|
|
34
|
+
h>l?h:l),a=0===a?c[0]:c[1],null!=a?[a]:[]):[f];b=d.isBefore(e);A(f)&&(d=b?h:l,d===f.getTextContentSize()?a.shift():0!==d&&([,f]=f.splitText(d),a[0]=f));A(g)&&(f=g.getTextContent().length,h=b?l:h,0===h?a.pop():h!==f&&([g]=g.splitText(h),a[c]=g));return a}modify(a,b,c){var d=this.focus,e=this.anchor,f="move"===a;var g=d.offset;if("element"===d.type)g=d.getNode().getChildAtIndex(b?g-1:g);else{var h=d.getNode();g=b&&0===g||!b&&g===h.getTextContentSize()?b?h.getPreviousSibling():h.getNextSibling():null}if(y(g)&&
|
|
35
|
+
(h=b?g.getPreviousSibling():g.getNextSibling(),!A(h))){a=g.getParentOrThrow().getKey();c=g.getIndexWithinParent();b||c++;d.set(a,c,"element");f&&e.set(a,c,"element");return}d=window.getSelection();d.modify(a,b?"backward":"forward",c);0<d.rangeCount&&(b=d.getRangeAt(0),this.applyDOMRange(b),f||d.anchorNode===b.startContainer&&d.anchorOffset===b.startOffset||(f=this.focus,b=this.anchor,d=b.key,e=b.offset,a=b.type,Q(b,f.key,f.offset,f.type),Q(f,d,e,a)))}deleteCharacter(a){if(this.isCollapsed()){var b=
|
|
36
|
+
this.anchor,c=this.focus,d=b.getNode();if(B(d)&&!d.canSelectionRemove()||!a&&("element"===b.type&&b.offset===d.getChildrenSize()||"text"===b.type&&b.offset===d.getTextContentSize())&&(d=d.getNextSibling()||d.getParentOrThrow().getNextSibling(),B(d)&&!d.canExtractContents()))return;this.modify("extend",a,"character");if(!this.isCollapsed()){var e="text"===c.type?c.getNode():null;d="text"===b.type?b.getNode():null;if(null!==e&&e.isSegmented()){if(b=c.offset,c=e.getTextContentSize(),e.is(d)||a&&b!==
|
|
37
|
+
c||!a&&0!==b){bb(e,a);return}}else if(null!==d&&d.isSegmented()&&(b=b.offset,c=d.getTextContentSize(),d.is(e)||a&&0!==b||!a&&b!==c)){bb(d,a);return}d=this.anchor;e=this.focus;b=d.getNode();c=e.getNode();if(b===c&&"text"===d.type&&"text"===e.type){var f=d.offset,g=e.offset;const h=f<g;c=h?f:g;g=h?g:f;f=g-1;c!==f&&(b=b.getTextContent().slice(c,g),/[\uD800-\uDBFF][\uDC00-\uDFFF]/g.test(b)||(a?e.offset=f:d.offset=f))}}else if(a&&0===b.offset&&("element"===b.type?b.getNode():b.getNode().getParentOrThrow()).collapseAtStart(this))return}this.removeText();
|
|
38
|
+
a=this.anchor;"text"===a.type&&(a=a.getNode(),d=a.getTextContent(),e=this.anchor.offset,0===e&&a.isSimpleText()?(e=a.getPreviousSibling(),A(e)&&"hashtag"===e.getType()&&(e.select(),b=e.getTextContent(),e.setTextContent(b+d),a.remove())):A(a)&&"hashtag"===a.getType()&&e===a.getTextContentSize()&&(e=a.getNextSibling(),A(e)&&e.isSimpleText()&&(b=e.getTextContent(),a.setTextContent(d+b),e.remove())))}deleteLine(a){this.isCollapsed()&&this.modify("extend",a,"lineboundary");this.removeText()}deleteWord(a){this.isCollapsed()&&
|
|
39
|
+
this.modify("extend",a,"word");this.removeText()}}function bb(a,b){var c=a.getTextContent().split(/\s/g);b?c.pop():c.shift();c=c.join(" ");""===c?a.remove():(a=a.setTextContent(c),b?a.select():a.select(0,0))}
|
|
40
|
+
function cb(a,b){if(1===a.nodeType){let e=!1;var c=a.childNodes;var d=c.length;b===d&&(e=!0,b=d-1);c=Pa(c[b]);if(A(c))b=e?c.getTextContentSize():0;else{d=Pa(a);if(null===d)return null;B(d)?(a=d.getChildAtIndex(b),B(a)&&(d=e?a.getLastDescendant():a.getFirstDescendant(),null===d?(d=a,b=0):(a=d,d=a.getParentOrThrow())),A(a)?(c=a,d=null,b=e?c.getTextContentSize():0):a!==d&&e&&b++):(b=d.getIndexWithinParent()+1,d=d.getParentOrThrow());if(R(d))return null;if(B(d))return P(d.__key,b,"element")}}else c=Pa(a);
|
|
41
|
+
return A(c)?P(c.__key,b,"text"):null}
|
|
42
|
+
function $a(a,b,c,d,e){if(null===a||null===c||!Fa(e,a,c))return null;a=cb(a,b);if(null===a)return null;c=cb(c,d);if(null===c)return null;if("text"===a.type&&"text"===c.type){d=a.getNode();const f=c.getNode(),g=d.getTextContentSize(),h=a.offset,l=c.offset;d===f&&h===l?0===b&&(d=d.getPreviousSibling(),A(d)&&!d.isInert()&&(b=d.getTextContentSize(),d=d.__key,a.key=d,c.key=d,a.offset=b,c.offset=b)):h===g&&(b=d.getNextSibling(),A(b)&&!b.isInert()&&(a.key=b.__key,a.offset=0));b=e.getEditorState()._selection;
|
|
43
|
+
e.isComposing()&&e._compositionKey!==a.key&&null!==b&&(e=b.anchor,b=b.focus,Q(a,e.key,e.offset,e.type),Q(c,b.key,b.offset,b.type))}return[a,c]}function db(a,b,c,d,e,f){const g=E();a=new Za(P(a,b,e),P(c,d,f),0);a.dirty=!0;return g._selection=a}
|
|
44
|
+
function eb(a){const b=a.getEditorState()._selection;var c=(c=window.event)&&c.type;c=!fa&&("selectionchange"===c||"beforeinput"===c||"compositionstart"===c||"compositionend"===c||"click"===c&&3===window.event.detail||void 0===c);let d,e;if(null===b||c){var f=window.getSelection();if(null===f)return null;c=f.anchorNode;d=f.focusNode;e=f.anchorOffset;f=f.focusOffset}else return a=b.anchor,c=b.focus,new Za(P(a.key,a.offset,a.type),P(c.key,c.offset,c.type),b.format);a=$a(c,e,d,f,a);if(null===a)return null;
|
|
45
|
+
const [g,h]=a;return new Za(g,h,null===b?0:b.format)}function q(){return E()._selection}function Ta(){return F()._editorState._selection}
|
|
46
|
+
function fb(a,b,c,d=1){var e=a.anchor,f=a.focus,g=e.getNode(),h=f.getNode();if(b.is(g)||b.is(h))if(g=b.getKey(),a.isCollapsed())b=e.offset,c<=b&&(c=Math.max(0,b+d),e.set(g,c,"element"),f.set(g,c,"element"),gb(a));else{var l=a.isBackward();h=l?f:e;var k=h.getNode();e=l?e:f;f=e.getNode();b.is(k)&&(k=h.offset,c<=k&&h.set(g,Math.max(0,k+d),"element"));b.is(f)&&(b=e.offset,c<=b&&e.set(g,Math.max(0,b+d),"element"));gb(a)}}
|
|
47
|
+
function gb(a){var b=a.anchor,c=b.offset;const d=a.focus;var e=d.offset,f=b.getNode(),g=d.getNode();if(a.isCollapsed())B(f)&&(g=f.getChildrenSize(),g=(e=c>=g)?f.getChildAtIndex(g-1):f.getChildAtIndex(c),A(g)&&(c=0,e&&(c=g.getTextContentSize()),b.set(g.getKey(),c,"text"),d.set(g.getKey(),c,"text")));else{if(B(f)){const h=f.getChildrenSize();c=(a=c>=h)?f.getChildAtIndex(h-1):f.getChildAtIndex(c);A(c)&&(f=0,a&&(f=c.getTextContentSize()),b.set(c.getKey(),f,"text"))}B(g)&&(c=g.getChildrenSize(),e=(b=e>=
|
|
48
|
+
c)?g.getChildAtIndex(c-1):g.getChildAtIndex(e),A(e)&&(g=0,b&&(g=e.getTextContentSize()),d.set(e.getKey(),g,"text")))}}function hb(a,b){b=b.getEditorState()._selection;a=a._selection;if(null!==a){var c=a.anchor;const d=a.focus;let e;"text"===c.type&&(e=c.getNode(),e.selectionTransform(b,a));"text"===d.type&&(c=d.getNode(),e!==c&&c.selectionTransform(b,a))}}
|
|
49
|
+
function ib(a,b,c){let d=null,e=0,f=null;var g=b.getPreviousSibling();null!==g?(d=g.__key,A(g)?(e=g.getTextContentSize(),f="text"):B(g)&&(e=g.getChildrenSize(),f="element")):(g=b.getNextSibling(),null!==g&&(d=g.__key,A(g)?f="text":B(g)&&(f="element")));null!==d&&null!==f?a.set(d,e,f):(e=b.getIndexWithinParent(),a.set(c.__key,e,"element"))}function jb(a,b,c,d,e){"text"===a.type?(a.key=c,b||(a.offset+=e)):a.offset>d.getIndexWithinParent()&&--a.offset}
|
|
50
|
+
function kb(a,b){I();var c=a.__key;const d=a.getParent();if(null!==d){var e=q(),f=!1;if(null!==e&&b){var g=e.anchor;const h=e.focus;g.key===c&&(ib(g,a,d),f=!0);h.key===c&&(ib(h,a,d),f=!0)}g=d.getWritable().__children;c=g.indexOf(c);-1===c&&p(16);G(a);g.splice(c,1);a.getWritable().__parent=null;null!==e&&b&&!f&&fb(e,d,c,-1);null===d||R(d)||d.canBeEmpty()||0!==d.getChildrenSize()||kb(d,b)}}
|
|
51
|
+
class lb{static getType(){p(31,this.name)}static clone(){p(32,this.name)}constructor(a){this.__type=this.constructor.getType();if(!a){I();99<La&&p(26);a=F();const b=E(),c=""+za++;b._nodeMap.set(c,this);B(this)?a._dirtyElements.set(c,!0):a._dirtyLeaves.add(c);a._cloneNotNeeded.add(c);a._dirtyType=1;a=c}this.__key=a;this.__parent=null}getType(){return this.__type}isAttached(){for(var a=this.__key;null!==a;){if("root"===a)return!0;a=J(a);if(null===a)break;a=a.__parent}return!1}isSelected(){const a=q();
|
|
52
|
+
if(null==a)return!1;const b=(new Set(a.getNodes().map(c=>c.__key))).has(this.__key);return A(this)?b:"element"===a.anchor.type&&"element"===a.focus.type&&a.anchor.key===a.focus.key&&a.anchor.offset===a.focus.offset?!1:b}getKey(){return this.__key}getIndexWithinParent(){const a=this.getParent();return null===a?-1:a.__children.indexOf(this.__key)}getParent(){const a=this.getLatest().__parent;return null===a?null:J(a)}getParentOrThrow(){const a=this.getParent();null===a&&p(33,this.__key);return a}getTopLevelElement(){let a=
|
|
53
|
+
this;for(;null!==a;){const b=a.getParent();if(R(b)&&B(a))return a;a=b}return null}getTopLevelElementOrThrow(){const a=this.getTopLevelElement();null===a&&p(34,this.__key);return a}getParents(){const a=[];let b=this.getParent();for(;null!==b;)a.push(b),b=b.getParent();return a}getParentKeys(){const a=[];let b=this.getParent();for(;null!==b;)a.push(b.__key),b=b.getParent();return a}getPreviousSibling(){var a=this.getParent();if(null===a)return null;a=a.__children;const b=a.indexOf(this.__key);return 0>=
|
|
54
|
+
b?null:J(a[b-1])}getPreviousSiblings(){var a=this.getParent();if(null===a)return[];a=a.__children;const b=a.indexOf(this.__key);return a.slice(0,b).map(c=>mb(c))}getNextSibling(){var a=this.getParent();if(null===a)return null;a=a.__children;const b=a.length,c=a.indexOf(this.__key);return c>=b-1?null:J(a[c+1])}getNextSiblings(){var a=this.getParent();if(null===a)return[];a=a.__children;const b=a.indexOf(this.__key);return a.slice(b+1).map(c=>mb(c))}getCommonAncestor(a){const b=this.getParents();var c=
|
|
55
|
+
a.getParents();B(this)&&b.unshift(this);B(a)&&c.unshift(a);a=b.length;var d=c.length;if(0===a||0===d||b[a-1]!==c[d-1])return null;c=new Set(c);for(d=0;d<a;d++){const e=b[d];if(c.has(e))return e}return null}is(a){return null==a?!1:this.getKey()===a.getKey()}isBefore(a){if(a.isParentOf(this))return!0;if(this.isParentOf(a))return!1;var b=this.getCommonAncestor(a);let c=this;for(;;){var d=c.getParentOrThrow();if(d===b){d=d.__children.indexOf(c.__key);break}c=d}for(c=a;;){a=c.getParentOrThrow();if(a===
|
|
56
|
+
b){b=a.__children.indexOf(c.__key);break}c=a}return d<b}isParentOf(a){const b=this.__key;if(b===a.__key)return!1;for(;null!==a;){if(a.__key===b)return!0;a=a.getParent()}return!1}getNodesBetween(a){const b=this.isBefore(a),c=[],d=new Set;var e=this;let f=null;for(;;){var g=e.__key;d.has(g)||(d.add(g),c.push(e));if(e===a)break;g=B(e)?b?e.getFirstChild():e.getLastChild():null;if(null!==g)null===f&&(f=e),e=g;else if(g=b?e.getNextSibling():e.getPreviousSibling(),null!==g)e=g;else{g=e.getParentOrThrow();
|
|
57
|
+
d.has(g.__key)||c.push(g);if(g===a)break;e=g;g.is(f)&&(f=null);do null===e&&p(35),g=b?e.getNextSibling():e.getPreviousSibling(),e=e.getParent(),null!==e&&(e.is(f)&&(f=null),null!==g||d.has(e.__key)||c.push(e));while(null===g);e=g}}b||c.reverse();return c}isDirty(){const a=F()._dirtyLeaves;return null!==a&&a.has(this.__key)}isComposing(){return this.__key===K()}getLatest(){const a=J(this.__key);null===a&&p(36);return a}getWritable(){I();var a=E(),b=F();a=a._nodeMap;const c=this.__key,d=this.getLatest(),
|
|
58
|
+
e=d.__parent;b=b._cloneNotNeeded;if(b.has(c))return Ka(d),d;const f=d.constructor.clone(d);f.__parent=e;B(d)&&B(f)?(f.__children=Array.from(d.__children),f.__indent=d.__indent,f.__format=d.__format,f.__dir=d.__dir):A(d)&&A(f)?(f.__format=d.__format,f.__style=d.__style,f.__mode=d.__mode,f.__detail=d.__detail):y(d)&&y(f)&&(f.__state=d.__state);b.add(c);f.__key=c;Ka(f);a.set(c,f);return f}getTextContent(){return""}getTextContentSize(a,b){return this.getTextContent(a,b).length}createDOM(){p(37)}updateDOM(){p(38)}remove(){I();
|
|
59
|
+
kb(this,!0)}replace(a){I();const b=this.__key;a=a.getWritable();var c=a.getParent();if(null!==c){c=c.getWritable().__children;var d=c.indexOf(a.__key);-1===d&&p(16);G(a);c.splice(d,1)}d=this.getParentOrThrow();var e=d.getWritable().__children;const f=e.indexOf(this.__key);c=a.__key;-1===f&&p(16);e.splice(f,0,c);a.__parent=d.__key;kb(this,!1);G(a);e=q();null!==e&&(d=e.anchor,e=e.focus,d.key===b&&Xa(d,a),e.key===b&&Xa(e,a));K()===b&&H(c);return a}insertAfter(a){I();var b=this.getWritable(),c=a.getWritable(),
|
|
60
|
+
d=c.getParent();const e=q();var f=!1,g=!1;if(null!==d){var h=d.getWritable().__children,l=h.indexOf(c.__key);-1===l&&p(16);G(c);if(null!==e){g=d.getKey();d=a.getIndexWithinParent();f=e.anchor;const k=e.focus;f="element"===f.type&&f.key===g&&f.offset===d+1;g="element"===k.type&&k.key===g&&k.offset===d+1}h.splice(l,1)}h=this.getParentOrThrow().getWritable();l=c.__key;c.__parent=b.__parent;d=h.__children;b=d.indexOf(b.__key);-1===b&&p(16);d.splice(b+1,0,l);G(c);null!==e&&(fb(e,h,b+1),c=h.getKey(),f&&
|
|
61
|
+
e.anchor.set(c,b+2,"element"),g&&e.focus.set(c,b+2,"element"));return a}insertBefore(a){I();var b=this.getWritable(),c=a.getWritable(),d=c.getParent();if(null!==d){d=d.getWritable().__children;var e=d.indexOf(c.__key);-1===e&&p(16);G(c);d.splice(e,1)}d=this.getParentOrThrow().getWritable();e=c.__key;c.__parent=b.__parent;const f=d.__children;b=f.indexOf(b.__key);-1===b&&p(16);f.splice(b,0,e);G(c);c=q();null!==c&&fb(c,d,b);return a}selectPrevious(a,b){I();const c=this.getPreviousSibling(),d=this.getParentOrThrow();
|
|
62
|
+
return null===c?d.select(0,0):B(c)?c.select():A(c)?c.select(a,b):(a=c.getIndexWithinParent()+1,d.select(a,a))}selectNext(a,b){I();const c=this.getNextSibling(),d=this.getParentOrThrow();return null===c?d.select():B(c)?c.select(0,0):A(c)?c.select(a,b):(a=c.getIndexWithinParent(),d.select(a,a))}markDirty(){this.getWritable()}}function mb(a){const b=J(a);null===b&&p(39,a);return b}
|
|
63
|
+
class nb extends lb{constructor(a){super(a);this.__children=[];this.__indent=this.__format=0;this.__dir=null}getFormat(){return this.getLatest().__format}getIndent(){return this.getLatest().__indent}getChildren(){const a=this.getLatest().__children,b=[];for(let c=0;c<a.length;c++){const d=J(a[c]);null!==d&&b.push(d)}return b}getChildrenKeys(){return this.getLatest().__children}getChildrenSize(){return this.getLatest().__children.length}isEmpty(){return 0===this.getChildrenSize()}isDirty(){const a=
|
|
64
|
+
F()._dirtyElements;return null!==a&&a.has(this.__key)}getAllTextNodes(a){const b=[],c=this.getLatest().__children;for(let e=0;e<c.length;e++){var d=J(c[e]);!A(d)||!a&&d.isInert()?B(d)&&(d=d.getAllTextNodes(a),b.push(...d)):b.push(d)}return b}getFirstDescendant(){let a=this.getFirstChild();for(;null!==a;){if(B(a)){const b=a.getFirstChild();if(null!==b){a=b;continue}}break}return a}getLastDescendant(){let a=this.getLastChild();for(;null!==a;){if(B(a)){const b=a.getLastChild();if(null!==b){a=b;continue}}break}return a}getDescendantByIndex(a){const b=
|
|
65
|
+
this.getChildren(),c=b.length;if(0===c)return this;if(a>=c)return a=b[c-1],B(a)&&a.getLastDescendant()||a;a=b[a];return B(a)&&a.getFirstDescendant()||a}getFirstChild(){const a=this.getLatest().__children;return 0===a.length?null:J(a[0])}getFirstChildOrThrow(){const a=this.getFirstChild();null===a&&p(15,this.__key);return a}getLastChild(){const a=this.getLatest().__children,b=a.length;return 0===b?null:J(a[b-1])}getChildAtIndex(a){a=this.getLatest().__children[a];return void 0===a?null:J(a)}getTextContent(a,
|
|
66
|
+
b){let c="";const d=this.getChildren(),e=d.length;for(let f=0;f<e;f++){const g=d[f];c+=g.getTextContent(a,b);B(g)&&f!==e-1&&(c+="\n\n")}return c}getDirection(){return this.__dir}hasFormat(a){a=da[a];return 0!==(this.getFormat()&a)}select(a,b){I();const c=q();var d=this.getChildrenSize();void 0===a&&(a=d);void 0===b&&(b=d);d=this.__key;if(null===c)return db(d,a,d,b,"element","element");c.anchor.set(d,a,"element");c.focus.set(d,b,"element");c.dirty=!0;return c}selectStart(){const a=this.getFirstDescendant();
|
|
67
|
+
return B(a)||A(a)?a.select(0,0):null!==a?a.selectPrevious():this.select(0,0)}selectEnd(){const a=this.getLastDescendant();return B(a)||A(a)?a.select():null!==a?a.selectNext():this.select()}clear(){I();const a=this.getWritable();this.getChildren().forEach(b=>b.remove());return a}append(...a){I();const b=this.getWritable(),c=b.__key,d=b.__children,e=a.length;var f=this.getLastChild();null!==f&&Ka(f);for(f=0;f<e;f++){var g=a[f];g.__key===c&&p(49);g=g.getWritable();var h=g.getParent();if(null!==h){h=
|
|
68
|
+
h.getWritable().__children;const l=h.indexOf(g.__key);-1===l&&p(16);h.splice(l,1)}g.__parent=c;d.push(g.__key)}return b}setDirection(a){I();const b=this.getWritable();b.__dir=a;return b}setFormat(a){I();this.getWritable().__format=da[a];return this}setIndent(a){I();this.getWritable().__indent=a;return this}insertNewAfter(){return null}canInsertTab(){return!1}collapseAtStart(){return!1}excludeFromCopy(){return!1}canExtractContents(){return!0}canReplaceWith(){return!0}canInsertAfter(){return!0}canBeEmpty(){return!0}canInsertTextBefore(){return!0}canInsertTextAfter(){return!0}isInline(){return!1}canSelectionRemove(){return!0}canMergeWith(){return!1}}
|
|
69
|
+
function B(a){return a instanceof nb}
|
|
70
|
+
class ob{constructor(a,b){this.id=a||Ra();this.editorState=b||null;this.editor=null}init(a){let b=this.editorState;"string"===typeof b&&(this.editorState=b=a.parseEditorState(b),null!==b&&a.setEditorState(b,{tag:"without-history"}))}set(a){this.editor=a;this.editorState=a.getEditorState()}toJSON(){const a=this.editorState;return{id:this.id,type:"editor",editorState:null===a||"string"===typeof a?a:JSON.stringify(a.toJSON())}}isEmpty(){return null===this.editorState}}
|
|
71
|
+
function pb(a,b){return new ob(a,b)}class qb{constructor(a,b){this._editor=a;this._observers=new Set;this._map=b||new Map}get(a){return this._map.get(a)}has(a){return this._map.has(a)}set(a,b){this._map.set(a,b);const c=Array.from(this._observers);for(let d=0;d<c.length;d++)c[d](a,b)}observe(a){const b=this._observers;b.add(a);return()=>{b.delete(a)}}destroy(){this._observers.clear()}toJSON(){return{type:"map",map:Array.from(this._map.entries())}}}function rb(a,b){return new qb(a,b)}
|
|
72
|
+
class sb extends lb{constructor(a,b){super(b);b=F();this.__state=a||rb(b)}decorate(){p(4)}}function y(a){return a instanceof sb}
|
|
73
|
+
class tb extends nb{static getType(){return"root"}static clone(){return new tb}constructor(){super("root");this.__cachedText=null}getTextContent(a,b){const c=this.__cachedText;return!M&&0!==F()._dirtyType||null===c||a&&!1===b?super.getTextContent(a,b):c}select(){p(9)}remove(){p(10)}replace(){p(11)}insertBefore(){p(12)}insertAfter(){p(13)}updateDOM(){return!1}append(...a){for(let b=0;b<a.length;b++){const c=a[b];B(c)||y(c)||p(46)}return super.append(...a)}canBeEmpty(){return!1}}
|
|
74
|
+
function R(a){return a instanceof tb}function ub(a,b){b=b.getEditorState()._selection;a=a._selection;if(null!==a){if(a.dirty||!a.is(b))return!0}else if(null!==b)return!0;return!1}function vb(){return new wb(new Map([["root",new tb]]))}
|
|
75
|
+
class wb{constructor(a,b){this._nodeMap=a;this._selection=b||null;this._readOnly=this._flushSync=!1}isEmpty(){return 1===this._nodeMap.size&&null===this._selection}read(a){a:{const c=S,d=M,e=T;S=this;M=!0;T=null;try{var b=a();break a}finally{S=c,M=d,T=e}b=void 0}return b}clone(a){a=new wb(this._nodeMap,void 0===a?this._selection:a);a._readOnly=!0;return a}toJSON(){const a=this._selection;return{_nodeMap:Array.from(this._nodeMap.entries()),_selection:null===a?null:{anchor:{key:a.anchor.key,offset:a.anchor.offset,
|
|
76
|
+
type:a.anchor.type},focus:{key:a.focus.key,offset:a.focus.offset,type:a.focus.type}}}}}let U="",V="",W="",xb,X,yb=!1,zb=!1,Ab=null,Bb,Cb,Db,Eb,Fb;function Gb(a,b){const c=Db.get(a);if(null!==b){const d=Hb(a);b.removeChild(d)}Eb.has(a)||X._keyToDOMMap.delete(a);B(c)&&(a=c.__children,Ib(a,0,a.length-1,null))}function Ib(a,b,c,d){for(;b<=c;++b){const e=a[b];void 0!==e&&Gb(e,d)}}function Jb(a,b){a.setProperty("text-align",b)}
|
|
77
|
+
function Kb(a,b){a.style.setProperty("padding-inline-start",0===b?"":40*b+"px")}function Lb(a,b){a=a.style;0===b?Jb(a,""):1===b?Jb(a,"left"):2===b?Jb(a,"center"):3===b?Jb(a,"right"):4===b&&Jb(a,"justify")}
|
|
78
|
+
function Mb(a,b,c){var d=Eb.get(a);void 0===d&&p(42);const e=d.createDOM(xb,X);var f=X._keyToDOMMap;e["__lexicalKey_"+X._key]=a;f.set(a,e);A(d)?e.setAttribute("data-lexical-text","true"):y(d)&&e.setAttribute("data-lexical-decorator","true");if(B(d)){a=d.__indent;0!==a&&Kb(e,a);a=d.__children;var g=a.length;if(0!==g){f=a;--g;const h=V;V="";Nb(f,0,g,e,null);Ob(d,e);V=h}d=d.__format;0!==d&&Lb(e,d);Pb(null,a,e)}else y(d)?(f=d.decorate(X),d=d.getTextContent(),null!==f&&Qb(a,f),e.contentEditable="false",
|
|
79
|
+
U+=d,W+=d):(a=d.getTextContent(),A(d)&&(d.isDirectionless()||(V+=a),d.isInert()&&(d=e.style,d.pointerEvents="none",d.userSelect="none",e.contentEditable="false",d.setProperty("-webkit-user-select","none"))),U+=a,W+=a);null!==b&&(null!=c?b.insertBefore(e,c):(c=b.__lexicalLineBreak,null!=c?b.insertBefore(e,c):b.appendChild(e)));return e}function Nb(a,b,c,d,e){const f=U;for(U="";b<=c;++b)Mb(a[b],d,e);d.__lexicalTextContent=U;U=f+U}function Rb(a,b){a=b.get(a[a.length-1]);return Ja(a)||y(a)}
|
|
80
|
+
function Pb(a,b,c){a=null!==a&&(0===a.length||Rb(a,Db));b=null!==b&&(0===b.length||Rb(b,Eb));a?b||(b=c.__lexicalLineBreak,null!=b&&c.removeChild(b),c.__lexicalLineBreak=null):b&&(b=document.createElement("br"),c.__lexicalLineBreak=b,c.appendChild(b))}
|
|
81
|
+
function Ob(a,b){const c=b.__lexicalDir;if(b.__lexicalDirTextContent!==V||c!==Ab){var d=""===V;if(d)var e=Ab;else e=V,e=aa.test(e)?"rtl":ba.test(e)?"ltr":null;if(e!==c){const f=b.classList,g=xb.theme;null===e||d&&"ltr"===e?(b.removeAttribute("dir"),d=g[c],void 0!==d&&("string"===typeof d&&(d=d.split(" "),d=g[c]=d),f.remove(...d))):null!==e&&(d=g[e],void 0!==d&&("string"===typeof d&&(d=d.split(" "),d=g[c]=d),f.add(...d)),b.dir=e);zb||(a.getWritable().__dir=e)}Ab=e;b.__lexicalDirTextContent=V;b.__lexicalDir=
|
|
82
|
+
e}}
|
|
83
|
+
function Sb(a,b){var c=Db.get(a),d=Eb.get(a);void 0!==c&&void 0!==d||p(43);var e=yb||Cb.has(a)||Bb.has(a);const f=Tb(X,a);if(c===d&&!e)return B(c)?(d=f.__lexicalTextContent,void 0!==d&&(U+=d,W+=d),d=f.__lexicalDirTextContent,void 0!==d&&(V+=d)):y(c)||(d=c.getTextContent(),A(c)&&!c.isDirectionless()&&(V+=d),W+=d,U+=d),f;if(d.updateDOM(c,f,xb))return d=Mb(a,null,null),null===b&&p(44),b.replaceChild(d,f),Gb(a,null),d;if(B(c)&&B(d)){if(a=d.__indent,a!==c.__indent&&Kb(f,a),a=d.__format,a!==c.__format&&Lb(f,
|
|
84
|
+
a),c=c.__children,a=d.__children,c!==a||e){var g=c,h=a;e=d;b=V;V="";const u=U;U="";var l=g.length,k=h.length;if(1===l&&1===k){var m=g[0];h=h[0];if(m===h)Sb(m,f);else{var n=Hb(m);h=Mb(h,null,null);f.replaceChild(h,n);Gb(m,null)}}else if(0===l)0!==k&&Nb(h,0,k-1,f,null);else if(0===k)0!==l&&(m=null==f.__lexicalLineBreak,Ib(g,0,l-1,m?null:f),m&&(f.textContent=""));else{const z=l-1;l=k-1;let v=f.firstChild,x=0;for(k=0;x<=z&&k<=l;){var r=g[x];const w=h[k];if(r===w)v=Sb(w,f).nextSibling,x++,k++;else{void 0===
|
|
85
|
+
m&&(m=new Set(g));void 0===n&&(n=new Set(h));const N=n.has(r),Ca=m.has(w);N?(Ca?(r=Tb(X,w),r===v?v=Sb(w,f).nextSibling:(null!=v?f.insertBefore(r,v):f.appendChild(r),Sb(w,f)),x++):Mb(w,f,v),k++):(v=Hb(r).nextSibling,Gb(r,f),x++)}}m=x>z;n=k>l;m&&!n?(m=h[l+1],m=void 0===m?null:X.getElementByKey(m),Nb(h,k,l,f,m)):n&&!m&&Ib(g,x,z,f)}f.__lexicalTextContent=U;U=u+U;Ob(e,f);V=b;R(d)||Pb(c,a,f)}}else y(d)?(c=d.decorate(X),null!==c&&Qb(a,c)):(c=d.getTextContent(),A(d)&&!d.isDirectionless()&&(V+=c),U+=c,W+=
|
|
86
|
+
c);!zb&&R(d)&&d.__cachedText!==W&&(d=d.getWritable(),d.__cachedText=W);return f}function Qb(a,b){let c=X._pendingDecorators;const d=X._decorators;if(null===c){if(d[a]===b)return;c=Ma(X)}c[a]=b}function Hb(a){a=Fb.get(a);void 0===a&&p(45);return a}function Tb(a,b){a=a._keyToDOMMap.get(b);void 0===a&&p(45);return a}function Ub(a,b,c,d,e){a=a.__children;const f=a.length;for(let g=0;g<f;g++){const h=a[g],l=d.get(h);void 0!==l&&l.__parent===b&&(B(l)&&Ub(l,h,c,d,e),c.has(h)||e.delete(h),d.delete(h))}}
|
|
87
|
+
function Zb(a,b,c,d){var e=Array.from(c),f=e.length;const g=Array.from(d),h=g.length;a=a._nodeMap;b=b._nodeMap;for(let l=0;l<f;l++){const k=e[l],m=b.get(k);void 0===m||m.isAttached()||(a.has(k)||c.delete(k),b.delete(k))}for(c=0;c<h;c++)e=g[c][0],f=b.get(e),void 0===f||f.isAttached()||(B(f)&&Ub(f,e,a,b,d),a.has(e)||d.delete(e),b.delete(e))}
|
|
88
|
+
function $b(a,b){b=b.map;const c=new Map;for(let d=0;d<b.length;d++){const [e,f]=b[d];let g;"string"===typeof f||"number"===typeof f||"boolean"===typeof f||null===f?g=f:"object"===typeof f?g="editor"===f.type?pb(f.id,f.editorState):$b(a,f):p(48);c.set(e,g)}return rb(a,c)}
|
|
89
|
+
function ac(a,b,c,d,e={}){var f=a.__type,g=c._registeredNodes.get(f);void 0===g&&p(24,f);f=g.klass;g=a.__key;a.__key=void 0;f=f.clone(a);a.__key=g;g=f.__key;R(f)&&E()._nodeMap.set("root",f);f.__parent=d;if(B(f)){d=a.__children;for(let l=0;l<d.length;l++){var h=b.get(d[l]);void 0!==h&&(h=ac(h,b,c,g,e).getKey(),f.__children.push(h))}f.__indent=a.__indent;f.__format=a.__format;f.__dir=a.__dir}else A(f)?(f.__format=a.__format,f.__style=a.__style,f.__mode=a.__mode,f.__detail=a.__detail):y(f)&&(f.__state=
|
|
90
|
+
$b(c,a.__state));b=null!=e?e.originalSelection:void 0;null!=b&&(a.__key===b.anchor.key&&(e.remappedSelection=e.remappedSelection||{anchor:{...b.anchor},focus:{...b.focus}},e.remappedSelection.anchor.key=f.__key),a.__key===b.focus.key&&(e.remappedSelection=e.remappedSelection||{anchor:{...b.anchor},focus:{...b.focus}},e.remappedSelection.focus.key=f.__key));return f}
|
|
91
|
+
function bc(a,b){const c=a.__mode,d=a.__format;a=a.__style;const e=b.__mode,f=b.__format;b=b.__style;return(null===c||c===e)&&(null===d||d===f)&&(null===a||a===b)}function cc(a,b){const c=a.mergeWithSibling(b),d=F()._normalizedNodes;d.add(a.__key);d.add(b.__key);return c}
|
|
92
|
+
function dc(a){if(""===a.__text&&a.isSimpleText()&&!a.isUnmergeable())a.remove();else{for(var b;null!==(b=a.getPreviousSibling())&&A(b)&&b.isSimpleText()&&!b.isUnmergeable();)if(""===b.__text)b.remove();else{bc(b,a)&&(a=cc(b,a));break}for(var c;null!==(c=a.getNextSibling())&&A(c)&&c.isSimpleText()&&!c.isUnmergeable();)if(""===c.__text)c.remove();else{bc(a,c)&&cc(a,c);break}}}let S=null,T=null,M=!1,ec=!1,La=0;function I(){M&&p(25)}function E(){null===S&&p(27);return S}
|
|
93
|
+
function F(){null===T&&p(28);return T}function fc(a,b,c){var d=b.__type;const e=a._registeredNodes.get(d);void 0===e&&p(23,d);a=c.get(d);void 0===a&&(a=Array.from(e.transforms),c.set(d,a));c=a.length;for(d=0;d<c&&(a[d](b),b.isAttached());d++);}function gc(a,b){var c=b._dirtyLeaves;a=a._nodeMap;b=c.size;c=Array.from(c);for(let d=0;d<b;d++){const e=a.get(c[d]);A(e)&&e.isSimpleText()&&!e.isUnmergeable()&&dc(e)}}
|
|
94
|
+
function hc(a,b){const c=b._dirtyLeaves,d=b._dirtyElements;a=a._nodeMap;const e=K(),f=new Map;var g=c,h=g.size,l=d;let k=l.size;for(;0<h||0<k;){if(0<h){b._dirtyLeaves=new Set;g=Array.from(g);for(var m=0;m<h;m++){var n=g[m];const r=a.get(n);A(r)&&r.isSimpleText()&&!r.isUnmergeable()&&dc(r);void 0!==r&&void 0!==r&&r.__key!==e&&r.isAttached()&&fc(b,r,f);c.add(n)}g=b._dirtyLeaves;h=g.size;if(0<h){La++;continue}}b._dirtyLeaves=new Set;b._dirtyElements=new Map;h=Array.from(l);for(l=0;l<k;l++)m=h[l],g=m[0],
|
|
95
|
+
m=m[1],"root"!==g&&m&&(m=h[l][1],n=a.get(g),void 0!==n&&void 0!==n&&n.__key!==e&&n.isAttached()&&fc(b,n,f),d.set(g,m));g=b._dirtyLeaves;h=g.size;l=b._dirtyElements;k=l.size;La++}b._dirtyLeaves=c;b._dirtyElements=d}
|
|
96
|
+
function Y(a){var b=a._pendingEditorState,c=a._rootElement;if(null!==c&&null!==b){var d=a._editorState,e=d._selection,f=b._selection,g=0!==a._dirtyType;a._pendingEditorState=null;a._editorState=b;var h=S,l=M,k=T,m=a._updating;T=a;S=b;M=!1;a._updating=!0;try{var n=a._observer;if(g&&null!==n){var r=a._dirtyType,u=a._dirtyElements,z=a._dirtyLeaves;n.disconnect();try{V=W=U="",yb=2===r,Ab=null,X=a,xb=a._config,Bb=u,Cb=z,Db=d._nodeMap,Eb=b._nodeMap,zb=b._readOnly,Fb=new Map(a._keyToDOMMap),Sb("root",null),
|
|
97
|
+
Fb=xb=Eb=Db=Cb=Bb=X=void 0}finally{n.observe(c,{childList:!0,subtree:!0,characterData:!0})}}const Z=window.getSelection();if(null!==Z&&(g||null===f||f.dirty)){n=Z;const Da=n.anchorNode,Vb=n.focusNode,Ac=n.anchorOffset,Bc=n.focusOffset,Ea=document.activeElement,na=a._rootElement;if(!a._updateTags.has("collaboration")||Ea===na)if(null===f)null!==e&&Fa(a,Da,Vb)&&n.removeAllRanges();else{var v=f.anchor,x=f.focus,w=x.key,N=Tb(a,v.key),Ca=Tb(a,w),Wb=v.offset,Xb=x.offset;e=N;w=Ca;"text"===v.type&&(e=Ga(N));
|
|
98
|
+
"text"===x.type&&(w=Ga(Ca));if(null!==e&&null!==w)if(Ac===Wb&&Bc===Xb&&Da===e&&Vb===w)null===na||null!==Ea&&na.contains(Ea)||na.focus({preventScroll:!0});else try{if(n.setBaseAndExtent(e,Wb,w,Xb),f.isCollapsed()&&na===Ea){const oa=3===e.nodeType?e.parentNode:e;if(null!==oa){const Yb=oa.getBoundingClientRect();Yb.bottom>window.innerHeight?oa.scrollIntoView(!1):0>Yb.top&&oa.scrollIntoView()}}}catch(oa){}}}}catch(Z){ic("error",a,!1,Z,Z._log);ec||(jc(a,null,c,b),ua(a),a._dirtyType=2,ec=!0,a._log.push("ReconcileRecover"),
|
|
99
|
+
Y(a),ec=!1);return}finally{a._updating=m,S=h,M=l,T=k}b._readOnly=!0;c=a._dirtyLeaves;f=a._dirtyElements;h=a._normalizedNodes;l=a._updateTags;k=a._log;a._log=[];g&&(a._dirtyType=0,a._cloneNotNeeded.clear(),a._dirtyLeaves=new Set,a._dirtyElements=new Map,a._normalizedNodes=new Set,a._updateTags=new Set);g=a._decorators;m=a._pendingDecorators||g;v=b._nodeMap;for(var O in m)v.has(O)||(m===g&&(m=Ma(a)),delete m[O]);O=a._pendingDecorators;null!==O&&(a._decorators=O,a._pendingDecorators=null,ic("decorator",
|
|
100
|
+
a,!0,O));O=Na(d);g=Na(b);O!==g&&ic("textcontent",a,!0,g);ic("update",a,!0,{tags:l,normalizedNodes:h,prevEditorState:d,editorState:b,dirtyLeaves:c,dirtyElements:f,log:k});b=a._deferred;a._deferred=[];if(0!==b.length){d=a._updating;a._updating=!0;try{for(O=0;O<b.length;O++)b[O]()}finally{a._updating=d}}b=a._updates;if(0!==b.length){const [Z,Da]=b.shift();kc(a,Z,!1,Da)}}}
|
|
101
|
+
function ic(a,b,c,...d){const e=b._updating;b._updating=c;try{const f=Array.from(b._listeners[a]);for(a=0;a<f.length;a++)f[a](...d)}finally{b._updating=e}}function lc(a,b,c){if(!1===a._updating||T!==a){let e=!1;a.update(()=>{e=lc(a,b,c)});return e}const d=Qa(a);for(let e=4;0<=e;e--)for(let f=0;f<d.length;f++){const g=Array.from(d[f]._listeners.command[e]);for(let h=0;h<g.length;h++)if(!0===g[h](b,c,a))return!0}return!1}
|
|
102
|
+
function mc(a,b){for(a=a._updates;0!==a.length;){const [c,d]=a.shift(),e=void 0!==d&&d.onUpdate;e&&b.push(e);c()}}
|
|
103
|
+
function kc(a,b,c,d){const e=a._deferred;let f,g,h=!1;void 0!==d&&(f=d.onUpdate,g=d.tag,h=d.skipTransforms);f&&e.push(f);const l=a._editorState;d=a._pendingEditorState;let k=!1;null===d&&(d=a._pendingEditorState=new wb(new Map(l._nodeMap)),k=!0);const m=S,n=M,r=T,u=a._updating;S=d;M=!1;a._updating=!0;T=a;try{k&&(d._selection=eb(a));const z=a._compositionKey;b();mc(a,e);hb(d,a);0!==a._dirtyType&&(!c&&d.isEmpty()&&p(29),h?gc(d,a):hc(d,a),mc(a,e),Zb(l,d,a._dirtyLeaves,a._dirtyElements));z!==a._compositionKey&&
|
|
104
|
+
(d._flushSync=!0);const v=d._selection;if(null!==v){const x=d._nodeMap,w=v.focus.key;void 0!==x.get(v.anchor.key)&&void 0!==x.get(w)||p(30)}}catch(z){ic("error",a,!1,z,a._log);a._pendingEditorState=l;a._dirtyType=2;a._cloneNotNeeded.clear();a._dirtyLeaves=new Set;a._dirtyElements.clear();a._log.push("UpdateRecover");Y(a);return}finally{S=m,M=n,T=r,a._updating=u,La=0}0!==a._dirtyType||ub(d,a)?(null!=g&&a._updateTags.add(g),d._flushSync?(d._flushSync=!1,Y(a)):k&&Ba(()=>{Y(a)})):(f&&(b=e.indexOf(f),
|
|
105
|
+
e.splice(b,1)),d._flushSync=!1,k&&(a._pendingEditorState=null))}function la(a,b,c,d){a._updating?a._updates.push([b,d]):kc(a,b,c,d)}class nc extends lb{static getType(){return"linebreak"}static clone(a){return new nc(a.__key)}constructor(a){super(a)}getTextContent(){return"\n"}createDOM(){return document.createElement("br")}updateDOM(){return!1}}function ab(){return new nc}function Ja(a){return a instanceof nc}
|
|
106
|
+
const oc={},vc=[["selectionchange",pc],["keydown",qc],["compositionstart",rc],["compositionend",sc],["input",tc],["click",uc],["cut",oc],["copy",oc],["dragstart",oc],["paste",oc],["focus",oc],["blur",oc]];ya?vc.push(["beforeinput",wc]):vc.push(["drop",oc]);let xc=!1;
|
|
107
|
+
function pc(a,b){a=window.getSelection();const c=b.getRootElement();c&&!c.contains(a.anchorNode)||b.update(()=>{t("onSelectionChange");const d=q();if(null!==d&&d.isCollapsed()){var e=d.anchor;"text"===e.type?(e=e.getNode(),d.format=e.getFormat()):"element"===e.type&&(d.format=0)}b.execCommand("selectionChange")})}
|
|
108
|
+
function uc(a,b){b.update(()=>{t("onClick");const c=q();if(null!==c){var d=c.anchor;"element"===d.type&&0===d.offset&&c.isCollapsed()&&1===ra().getChildrenSize()&&d.getNode().getTopLevelElementOrThrow().isEmpty()&&(d=b.getEditorState()._selection,null!==d&&c.is(d)&&(window.getSelection().removeAllRanges(),c.dirty=!0))}})}
|
|
109
|
+
function wc(a,b){const c=a.inputType;"deleteCompositionText"!==c&&"insertCompositionText"!==c&&b.update(()=>{t("onBeforeInputForRichText");const d=q();if(null!==d)if("deleteContentBackward"===c)H(null),a.preventDefault(),b.execCommand("deleteCharacter",!0);else{var e=a.data;if(!d.dirty&&d.isCollapsed()&&a.getTargetRanges){var f=a.getTargetRanges()[0];f&&d.applyDOMRange(f)}var g=d.focus;f=d.anchor.getNode();g=g.getNode();if("insertText"===c)"\n"===e?(a.preventDefault(),b.execCommand("insertLineBreak")):
|
|
110
|
+
"\n\n"===e?(a.preventDefault(),b.execCommand("insertParagraph")):null==e&&a.dataTransfer?(e=a.dataTransfer.getData("text/plain"),a.preventDefault(),d.insertRawText(e)):null!=e&&Ua(d,e,!0)&&(a.preventDefault(),b.execCommand("insertText",e));else switch(a.preventDefault(),c){case "insertFromYank":case "insertFromDrop":case "insertReplacementText":b.execCommand("insertText",a);break;case "insertFromComposition":H(null);b.execCommand("insertText",a);break;case "insertLineBreak":H(null);b.execCommand("insertLineBreak");
|
|
111
|
+
break;case "insertParagraph":H(null);b.execCommand("insertParagraph");break;case "insertFromPaste":case "insertFromPasteAsQuotation":b.execCommand("paste",a);break;case "deleteByComposition":f===g&&!B(f)&&!B(g)&&D(f)&&D(g)||b.execCommand("removeText");break;case "deleteByDrag":case "deleteByCut":b.execCommand("removeText");break;case "deleteContent":b.execCommand("deleteCharacter",!1);break;case "deleteWordBackward":b.execCommand("deleteWord",!0);break;case "deleteWordForward":b.execCommand("deleteWord",
|
|
112
|
+
!1);break;case "deleteHardLineBackward":case "deleteSoftLineBackward":b.execCommand("deleteLine",!0);break;case "deleteContentForward":case "deleteHardLineForward":case "deleteSoftLineForward":b.execCommand("deleteLine",!1);break;case "formatStrikeThrough":b.execCommand("formatText","strikethrough");break;case "formatBold":b.execCommand("formatText","bold");break;case "formatItalic":b.execCommand("formatText","italic");break;case "formatUnderline":b.execCommand("formatText","underline");break;case "historyUndo":b.execCommand("undo");
|
|
113
|
+
break;case "historyRedo":b.execCommand("redo")}}})}function tc(a,b){a.stopPropagation();b.update(()=>{t("onInput");var c=q();const d=a.data;null!=d&&null!==c&&Ua(c,d,!1)?b.execCommand("insertText",d):Sa(b,!1);I();c=F();ta(c)})}function rc(a,b){b.update(()=>{t("onCompositionStart");const c=q();if(null!==c&&!b.isComposing()){const d=c.anchor;H(d.key);null==a.data||xc&&"element"!==d.type&&c.isCollapsed()||b.execCommand("insertText"," ")}})}
|
|
114
|
+
function yc(a,b){b.update(()=>{t("onCompositionEnd");H(null);Sa(b,!0)})}function sc(a,b){xa?setTimeout(()=>{yc(a,b)},0):yc(a,b)}
|
|
115
|
+
function qc(a,b){xc="Unidentified"===a.key&&229===a.keyCode;b.isComposing()||b.update(()=>{t("onKeyDown");if(null!==q()){var {keyCode:c,shiftKey:d,ctrlKey:e,metaKey:f,altKey:g}=a;if(39!==c||e||f||g)if(37!==c||e||f||g)if(38!==c||e||f)if(40!==c||e||f)if(13===c&&d)b.execCommand("keyEnter",a);else if(C&&e&&79===c)a.preventDefault(),b.execCommand("insertLineBreak",!0);else if(13!==c||d){var h=C?g||f?!1:8===c||72===c&&e:e||g||f?!1:8===c;h?8===c?b.execCommand("keyBackspace",a):b.execCommand("deleteCharacter",
|
|
116
|
+
!0):27===c?b.execCommand("keyEscape",a):(h=C?d||g||f?!1:46===c||68===c&&e:e||g||f?!1:46===c,h?46===c?b.execCommand("keyDelete",a):b.execCommand("deleteCharacter",!1):8===c&&(C?g:e)?(a.preventDefault(),b.execCommand("deleteWord",!0)):46===c&&(C?g:e)?(a.preventDefault(),b.execCommand("deleteWord",!1)):C&&f&&8===c?(a.preventDefault(),b.execCommand("deleteLine",!0)):C&&f&&46===c?(a.preventDefault(),b.execCommand("deleteLine",!1)):66===c&&(C?f:e)?(a.preventDefault(),b.execCommand("formatText","bold")):
|
|
117
|
+
85===c&&(C?f:e)?(a.preventDefault(),b.execCommand("formatText","underline")):73===c&&(C?f:e)?(a.preventDefault(),b.execCommand("formatText","italic")):9!==c||g||e||f?90===c&&!d&&(C?f:e)?(a.preventDefault(),b.execCommand("undo")):(h=C?90===c&&f&&d:89===c&&e||90===c&&e&&d,h&&(a.preventDefault(),b.execCommand("redo"))):b.execCommand("keyTab",a))}else b.execCommand("keyEnter",a);else b.execCommand("keyArrowDown",a);else b.execCommand("keyArrowUp",a);else b.execCommand("keyArrowLeft",a);else b.execCommand("keyArrowRight",
|
|
118
|
+
a)}})}function zc(a,b){return"selectionchange"===a||"keyup"===a||"pointerup"===a||"pointercancel"===a?b.ownerDocument:b}function Cc(a){a=a.getRootElement();return null!==a&&"true"===a.contentEditable}function Dc(a){let b=a._lexicalEventHandles;void 0===b&&(b=[],a._lexicalEventHandles=b);return b}
|
|
119
|
+
function Ec(a,b){const c=Dc(a);for(let d=0;d<vc.length;d++){const [e,f]=vc[d],g="function"===typeof f?h=>{Cc(b)&&f(h,b)}:h=>{Cc(b)&&b.execCommand(e,h)};zc(e,a).addEventListener(e,g);c.push(()=>{zc(e,a).removeEventListener(e,g)})}}
|
|
120
|
+
function jc(a,b,c,d){const e=a._keyToDOMMap;e.clear();a._editorState=vb();a._pendingEditorState=d;a._compositionKey=null;a._dirtyType=0;a._cloneNotNeeded.clear();a._dirtyLeaves=new Set;a._dirtyElements.clear();a._normalizedNodes=new Set;a._updateTags=new Set;a._log=[];a._updates=[];d=a._observer;null!==d&&(d.disconnect(),a._observer=null);null!==b&&(b.textContent="");null!==c&&(c.textContent="",e.set("root",c))}
|
|
121
|
+
function Fc(a,b){const c=b.getType();let d=a.get(c);void 0===d&&(d={count:0,klass:b,transforms:new Set},a.set(c,d));const e=d;e.count++;return()=>{1===e.count?a.delete(c):e.count--}}
|
|
122
|
+
class Gc{constructor(a,b,c){this._parentEditor=b;this._rootElement=null;this._editorState=a;this._compositionKey=this._pendingEditorState=null;this._deferred=[];this._keyToDOMMap=new Map;this._updates=[];this._updating=!1;this._listeners={decorator:new Set,error:new Set,textcontent:new Set,textmutation:new Set,root:new Set,update:new Set,command:[new Set,new Set,new Set,new Set,new Set]};this._config=c;this._registeredNodes=new Map;this.registerNodes([tb,Hc,nc]);this._decorators={};this._pendingDecorators=
|
|
123
|
+
null;this._dirtyType=0;this._cloneNotNeeded=new Set;this._dirtyLeaves=new Set;this._dirtyElements=new Map;this._normalizedNodes=new Set;this._updateTags=new Set;this._observer=null;this._log=[];this._key=""+za++}isComposing(){return null!=this._compositionKey}registerNodes(a){const b=a.length,c=this._registeredNodes,d=[];for(let e=0;e<b;e++)d.push(Fc(c,a[e]));return()=>{for(let e=0;e<b;e++)d[e]()}}addListener(a,b,c){const d=this._listeners[a];if("command"===a&&void 0!==c){const f=d[c];f.add(b);return()=>
|
|
124
|
+
{f.delete(b)}}d.add(b);const e="root"===a;e&&b(this._rootElement,null);return()=>{d.delete(b);e&&b(null,this._rootElement)}}addTransform(a,b){const c=a.getType(),d=this._registeredNodes.get(c);void 0===d&&p(18,a.name);const e=d.transforms;e.add(b);Oa(this,c);return()=>{e.delete(b)}}execCommand(a,b){return lc(this,a,b)}getDecorators(){return this._decorators}getRootElement(){return this._rootElement}setRootElement(a){const b=this._rootElement;if(a!==b){var c=this._pendingEditorState||this._editorState;
|
|
125
|
+
this._rootElement=a;jc(this,b,a,c);if(null!==b&&!this._config.disableEvents){c=Dc(b);for(let d=0;d<c.length;d++)c[d]();b._lexicalEventHandles=[]}null!==a&&(a.setAttribute("data-lexical-editor","true"),this._dirtyType=2,ua(this),this._updateTags.add("without-history"),Y(this),this._config.disableEvents||Ec(a,this));ic("root",this,!1,a,b)}}getElementByKey(a){return this._keyToDOMMap.get(a)||null}getEditorState(){return this._editorState}setEditorState(a,b){a.isEmpty()&&p(19);ta(this);const c=this._pendingEditorState,
|
|
126
|
+
d=this._updateTags;b=void 0!==b?b.tag:null;null===c||c.isEmpty()||(null!=b&&d.add(b),Y(this));this._pendingEditorState=a;this._dirtyType=2;this._compositionKey=null;null!=b&&d.add(b);Y(this)}parseEditorState(a){const b=JSON.parse(a);a=new Map;a=new wb(a);const c={originalSelection:b._selection},d=M,e=T;S=a;M=!1;T=this;try{var f=new Map(b._nodeMap);const g=f.get("root");ac(g,f,this,null,c)}finally{S=a,M=d,T=e}f=c.remappedSelection||c.originalSelection;f=null===f?null:new Za(P(f.anchor.key,f.anchor.offset,
|
|
127
|
+
f.anchor.type),P(f.focus.key,f.focus.offset,f.focus.type),0);a._selection=f;return a}update(a,b){la(this,a,!1,b)}focus(a){const b=this._rootElement;null!==b&&(b.setAttribute("autocapitalize","off"),la(this,()=>{const c=q(),d=ra();null!==c?c.dirty=!0:0!==d.getChildrenSize()&&d.selectEnd()},!0,{onUpdate:()=>{b.removeAttribute("autocapitalize");a&&a()}}))}blur(){const a=this._rootElement;null!==a&&a.blur()}}function Ic(a,b){return b&1?"strong":b&2?"em":"span"}
|
|
128
|
+
function Jc(a,b){var c=a[b];return"string"===typeof c?(c=c.split(" "),a[b]=c):c}function Kc(a,b,c,d,e){a=d.classList;d=Jc(e,"base");void 0!==d&&a.add(...d);d=Jc(e,"underlineStrikethrough");let f=!1;const g=b&8&&b&4;var h=c&8&&c&4;void 0!==d&&(h?(f=!0,g||a.add(...d)):g&&a.remove(...d));for(const l in ca)h=ca[l],d=Jc(e,l),void 0!==d&&(c&h?!f||"underline"!==l&&"strikethrough"!==l?(0===(b&h)||g&&"underline"===l||"strikethrough"===l)&&a.add(...d):b&h&&a.remove(...d):b&h&&a.remove(...d))}
|
|
129
|
+
function Lc(a,b,c){const d=b.firstChild;c=c.isComposing()?"\u00a0":"";a+=c;null==d?b.textContent=a:d.nodeValue!==a&&(d.nodeValue=a)}
|
|
130
|
+
class Hc extends lb{static getType(){return"text"}static clone(a){return new Hc(a.__text,a.__key)}constructor(a,b){super(b);this.__text=a;this.__format=0;this.__style="";this.__detail=this.__mode=0}getFormat(){return this.getLatest().__format}getStyle(){return this.getLatest().__style}isToken(){return 1===this.getLatest().__mode}isSegmented(){return 2===this.getLatest().__mode}isInert(){return 3===this.getLatest().__mode}isDirectionless(){return 0!==(this.getLatest().__detail&1)}isUnmergeable(){return 0!==
|
|
131
|
+
(this.getLatest().__detail&2)}hasFormat(a){a=ca[a];return 0!==(this.getFormat()&a)}isSimpleText(){return"text"===this.__type&&0===this.__mode}getTextContent(a,b){return!a&&this.isInert()||!1===b&&this.isDirectionless()?"":this.getLatest().__text}getFormatFlags(a,b){const c=this.getLatest().__format;return Ha(c,a,b)}createDOM(a){var b=this.__format,c=b&16?"code":null;const d=Ic(this,b),e=document.createElement(null===c?d:c);let f=e;null!==c&&(f=document.createElement(d),e.appendChild(f));c=f;Lc(this.__text,
|
|
132
|
+
c,this);a=a.theme.text;void 0!==a&&Kc(d,0,b,c,a);b=this.__style;""!==b&&(e.style.cssText=b);return e}updateDOM(a,b,c){const d=this.__text;var e=a.__format,f=this.__format,g=e&16?"code":null;const h=f&16?"code":null;var l=Ic(this,e);const k=Ic(this,f);if((null===g?l:g)!==(null===h?k:h))return!0;if(g===h&&l!==k)return e=b.firstChild,null==e&&p(20),a=g=document.createElement(k),Lc(d,a,this),c=c.theme.text,void 0!==c&&Kc(k,0,f,a,c),b.replaceChild(g,e),!1;l=b;null!==h&&null!==g&&(l=b.firstChild,null==
|
|
133
|
+
l&&p(21));Lc(d,l,this);c=c.theme.text;void 0!==c&&e!==f&&Kc(k,e,f,l,c);f=this.__style;a.__style!==f&&(b.style.cssText=f);return!1}selectionTransform(){}setFormat(a){I();const b=this.getWritable();this.getWritable().__format=a;return b}setStyle(a){I();const b=this.getWritable();this.getWritable().__style=a;return b}toggleFormat(a){a=ca[a];return this.setFormat(this.getFormat()^a)}toggleDirectionless(){const a=this.getWritable();a.__detail^=1;return a}toggleUnmergeable(){const a=this.getWritable();
|
|
134
|
+
a.__detail^=2;return a}setMode(a){a=ea[a];const b=this.getWritable();b.__mode=a;return b}setTextContent(a){I();const b=this.getWritable();b.__text=a;return b}select(a,b){I();const c=q();var d=this.getTextContent();const e=this.__key;"string"===typeof d?(d=d.length,void 0===a&&(a=d),void 0===b&&(b=d)):b=a=0;if(null===c)return db(e,a,e,b,"text","text");d=K();d!==c.anchor.key&&d!==c.focus.key||H(e);c.setTextNodeRange(this,a,this,b);return c}spliceText(a,b,c,d){I();const e=this.getWritable(),f=e.__text,
|
|
135
|
+
g=c.length;let h=a;0>h&&(h=g+h,0>h&&(h=0));const l=q();d&&null!==l&&(a+=g,l.setTextNodeRange(e,a,e,a));b=f.slice(0,h)+c+f.slice(h+b);return e.setTextContent(b)}canInsertTextBefore(){return!0}canInsertTextAfter(){return!0}splitText(...a){I();var b=this.getLatest(),c=b.getTextContent(),d=b.__key,e=K(),f=new Set(a);a=[];var g=c.length,h="";for(var l=0;l<g;l++)""!==h&&f.has(l)&&(a.push(h),h=""),h+=c[l];""!==h&&a.push(h);f=a.length;if(0===f)return[];if(a[0]===c)return[b];var k=a[0];c=b.getParentOrThrow();
|
|
136
|
+
l=c.__key;const m=b.getFormat(),n=b.getStyle(),r=b.__detail;g=!1;b.isSegmented()?(h=L(k),h.__parent=l,h.__format=m,h.__style=n,h.__detail=r,g=!0):(h=b.getWritable(),h.__text=k);b=q();h=[h];k=k.length;for(let v=1;v<f;v++){var u=a[v],z=u.length;u=L(u).getWritable();u.__format=m;u.__style=n;u.__detail=r;const x=u.__key;z=k+z;if(null!==b){const w=b.anchor,N=b.focus;w.key===d&&"text"===w.type&&w.offset>k&&w.offset<=z&&(w.key=x,w.offset-=k,b.dirty=!0);N.key===d&&"text"===N.type&&N.offset>k&&N.offset<=z&&
|
|
137
|
+
(N.key=x,N.offset-=k,b.dirty=!0)}e===d&&H(x);k=z;u.__parent=l;h.push(u)}G(this);e=c.getWritable().__children;d=e.indexOf(d);a=h.map(v=>v.__key);g?(e.splice(d,0,...a),this.remove()):e.splice(d,1,...a);null!==b&&fb(b,c,d,f-1);return h}mergeWithSibling(a){const b=a===this.getPreviousSibling();b||a===this.getNextSibling()||p(22);const c=this.__key,d=a.__key,e=this.__text,f=e.length;K()===d&&H(c);const g=q();if(null!==g){const h=g.anchor,l=g.focus;null!==h&&h.key===d&&(jb(h,b,c,a,f),g.dirty=!0);null!==
|
|
138
|
+
l&&l.key===d&&(jb(l,b,c,a,f),g.dirty=!0)}this.setTextContent(b?a.__text+e:e+a.__text);a.remove();return this.getLatest()}}function L(a=""){return new Hc(a)}function A(a){return a instanceof Hc}exports.$createLineBreakNode=ab;exports.$createNodeFromParse=function(a,b){I();const c=F();return ac(a,b,c,null)};exports.$createSelection=function(){const a=P("root",0,"element"),b=P("root",0,"element");return new Za(a,b,0)};exports.$createTextNode=L;exports.$getCompositionKey=K;
|
|
139
|
+
exports.$getNearestNodeFromDOMNode=ma;exports.$getNodeByKey=J;exports.$getPreviousSelection=Ta;exports.$getRoot=ra;exports.$getSelection=q;exports.$isDecoratorNode=y;exports.$isElementNode=B;exports.$isLeafNode=Ia;exports.$isLineBreakNode=Ja;exports.$isRootNode=R;exports.$isTextNode=A;exports.$log=t;exports.$setCompositionKey=H;exports.$setSelection=sa;exports.DecoratorNode=sb;exports.ElementNode=nb;exports.TextNode=Hc;exports.VERSION="0.1.3";exports.createDecoratorEditor=pb;
|
|
140
|
+
exports.createDecoratorMap=rb;exports.createEditor=function(a){var b=a||{};a=b.namespace||Ra();const c=b.theme||{},d=b.context||{},e=b.parentEditor||null,f=b.htmlTransforms||{},g=b.disableEvents||!1,h=vb();b=b.initialEditorState;a=new Gc(h,e,{context:d,namespace:a,theme:c,htmlTransforms:f,disableEvents:g});void 0!==b&&(a._pendingEditorState=b,a._dirtyType=2);return a};exports.isDecoratorEditor=function(a){return a instanceof ob};exports.isDecoratorMap=function(a){return a instanceof qb};
|
package/LinkNode.js
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
'use strict';var d=require("lexical");function e(a,...b){b.forEach(c=>{null!=c&&"string"===typeof c&&a.classList.add(...c.split(" "))})}
|
|
2
|
+
class f extends d.ElementNode{static getType(){return"link"}static clone(a){return new f(a.__url,a.__key)}constructor(a,b){super(b);this.__url=a}createDOM(a){const b=document.createElement("a");b.href=this.__url;e(b,a.theme.link);return b}updateDOM(a,b){const c=this.__url;c!==a.__url&&(b.href=c);return!1}getURL(){return this.getLatest().__url}setURL(a){this.getWritable().__url=a}insertNewAfter(a){a=this.getParentOrThrow().insertNewAfter(a);if(d.$isElementNode(a)){const b=g(this.__url);a.append(b);
|
|
3
|
+
return b}return null}canInsertTextBefore(){return!1}canInsertTextAfter(){return!1}canBeEmpty(){return!1}isInline(){return!0}}function g(a){return new f(a)}exports.$createLinkNode=g;exports.$isLinkNode=function(a){return a instanceof f};exports.LinkNode=f;
|
package/ListItemNode.js
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
'use strict';var f=require("lexical"),g=require("lexical/ParagraphNode"),l=require("lexical/ListNode"),m=require("lexical/ListItemNode");function n(a){throw Error(`Minified Lexical error #${a}; see codes.json for the full message or `+"use the non-minified dev environment for full errors and additional helpful warnings.");}function p(a,...b){b.forEach(c=>{null!=c&&"string"===typeof c&&a.classList.add(...c.split(" "))})}function q(a,...b){b.forEach(c=>{a.classList.remove(...c.split(" "))})}
|
|
2
|
+
class r extends f.ElementNode{static getType(){return"listitem"}static clone(a){return new r(a.__key)}constructor(a){super(a)}createDOM(a){const b=document.createElement("li");b.value=t(this);u(b,a.theme,this);return b}updateDOM(a,b,c){b.value=t(this);u(b,c.theme,this);return!1}append(...a){for(let b=0;b<a.length;b++){const c=a[b];if(f.$isElementNode(c)&&this.canMergeWith(c)){const d=c.getChildren();this.append(...d);c.remove()}else super.append(c)}return this}replace(a){if(v(a))return super.replace(a);
|
|
3
|
+
const b=this.getParentOrThrow();if(l.$isListNode(b)){var c=b.__children;const e=c.length;var d=c.indexOf(this.__key);if(0===d)b.insertBefore(a);else if(d===e-1)b.insertAfter(a);else{c=l.$createListNode(b.__tag);const h=b.getChildren();for(d+=1;d<e;d++)c.append(h[d]);b.insertAfter(a);a.insertAfter(c)}this.remove();1===e&&b.remove()}return a}insertAfter(a){var b=this.getNextSiblings();if(v(a))return b.forEach(d=>d.markDirty()),super.insertAfter(a);var c=this.getParentOrThrow();l.$isListNode(c)||n(1);
|
|
4
|
+
if(l.$isListNode(a)&&a.getTag()===c.getTag()){b=a;a=a.getChildren();for(c=a.length-1;0<=c;c--)b=a[c],this.insertAfter(b);return b}c.insertAfter(a);if(0!==b.length){const d=l.$createListNode(c.getTag());b.forEach(e=>d.append(e));a.insertAfter(d)}return a}insertNewAfter(){var a=this.getNextSibling(),b=this.getPreviousSibling();var c=this.getParent();l.$isListNode(c)||n(2);for(var d=c;null!==d;)d=d.getParent(),l.$isListNode(d)&&(c=d);d=!0;var e=this.getFirstChild();if(l.$isListNode(e))d=!1;else for(e=
|
|
5
|
+
this;null!==e;)m.$isListItemNode(e)&&0<e.getNextSiblings().length&&(d=!1),e=e.getParent();if(f.$isElementNode(c)&&""===this.getTextContent()&&(null===b||null===a)&&d){null===a?(a=g.$createParagraphNode(),c.insertAfter(a)):(a=g.$createParagraphNode(),c.insertBefore(a));for(b=this;null==b.getNextSibling()&&null==b.getPreviousSibling();){c=b.getParent();if(null==c||!v(b)&&!l.$isListNode(b))break;b=c}b.remove()}else a=w(),this.insertAfter(a);return a}collapseAtStart(a){const b=g.$createParagraphNode();
|
|
6
|
+
this.getChildren().forEach(h=>b.append(h));var c=this.getParentOrThrow(),d=c.getParentOrThrow();const e=v(d);1===c.getChildrenSize()?e?(c.remove(),d.select()):(c.replace(b),c=a.anchor,a=a.focus,d=b.getKey(),"element"===c.type&&c.getNode().is(this)&&c.set(d,c.offset,"element"),"element"===a.type&&a.getNode().is(this)&&a.set(d,a.offset,"element")):(c.insertBefore(b),this.remove());return!0}canInsertAfter(a){return v(a)}canReplaceWith(a){return v(a)}canMergeWith(a){return g.$isParagraphNode(a)||v(a)}}
|
|
7
|
+
function t(a){var b=a.getParent();let c=1;null!=b&&(l.$isListNode(b)?c=b.__start:n(47));a=a.getPreviousSiblings();for(b=0;b<a.length;b++){const d=a[b];v(d)&&!l.$isListNode(d.getFirstChild())&&c++}return c}function u(a,b,c){const d=[],e=[],h=(b=b.list)?b.listitem:void 0;if(b&&b.nested)var k=b.nested.listitem;void 0!==h&&(b=h.split(" "),d.push(...b));void 0!==k&&(k=k.split(" "),c.getChildren().some(x=>l.$isListNode(x))?d.push(...k):e.push(...k));0<d.length&&p(a,...d);0<e.length&&q(a,...e)}
|
|
8
|
+
function w(){return new r}function v(a){return a instanceof r}exports.$createListItemNode=w;exports.$isListItemNode=v;exports.ListItemNode=r;
|
package/ListNode.js
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
'use strict';var f=require("lexical"),h=require("lexical/ListItemNode"),m=require("lexical/ListNode");function n(b,...a){a.forEach(c=>{null!=c&&"string"===typeof c&&b.classList.add(...c.split(" "))})}function p(b,...a){a.forEach(c=>{b.classList.remove(...c.split(" "))})}
|
|
2
|
+
class t extends f.ElementNode{static getType(){return"list"}static clone(b){return new t(b.__tag,b.__start,b.__key)}constructor(b,a,c){super(c);this.__tag=b;this.__start=a}getTag(){return this.__tag}createDOM(b){const a=document.createElement(this.__tag);1!==this.__start&&a.setAttribute("start",String(this.__start));u(a,b.theme,this);return a}updateDOM(b,a,c){if(b.__tag!==this.__tag)return!0;u(a,c.theme,this);return!1}canBeEmpty(){return!1}append(...b){for(let c=0;c<b.length;c++){var a=b[c];if(h.$isListItemNode(a))super.append(a);
|
|
3
|
+
else{const e=h.$createListItemNode();v(a)?e.append(a):(a=f.$createTextNode(a.getTextContent()),e.append(a));super.append(e)}}return this}}
|
|
4
|
+
function u(b,a,c){const e=[],g=[];a=a.list;if(void 0!==a){a:{var k=1;for(var d=c.getParent();null!=d;){if(h.$isListItemNode(d)){d=d.getParent();if(m.$isListNode(d)){k++;d=d.getParent();continue}throw Error("Minified Lexical error #2; see codes.json for the full message or use the non-minified dev environment for full errors and additional helpful warnings.");}break a}}d=k%5;const q=a[c.__tag+(0===d?5:d)],r=a[c.__tag];let l;a=a.nested;void 0!==a&&a.list&&(l=a.list);void 0!==r&&e.push(r);if(void 0!==
|
|
5
|
+
q)for(a=q.split(" "),e.push(...a),a=1;6>a;a++)a!==d&&g.push(c.__tag+a);void 0!==l&&(c=l.split(" "),1<k?e.push(...c):g.push(...c))}0<e.length&&n(b,...e);0<g.length&&p(b,...g)}function v(b){return b instanceof t}exports.$createListNode=function(b,a=1){return new t(b,a)};exports.$isListNode=v;exports.ListNode=t;
|
package/ParagraphNode.js
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
'use strict';var c=require("lexical");function d(a,...b){b.forEach(e=>{null!=e&&"string"===typeof e&&a.classList.add(...e.split(" "))})}
|
|
2
|
+
class f extends c.ElementNode{static getType(){return"paragraph"}static clone(a){return new f(a.__key)}constructor(a){super(a)}createDOM(a){const b=document.createElement("p");d(b,a.theme.paragraph);return b}updateDOM(){return!1}insertNewAfter(){const a=g(),b=this.getDirection();a.setDirection(b);this.insertAfter(a);return a}collapseAtStart(){var a=this.getChildren();const b=this.getNextSibling();return c.$isElementNode(b)&&0===this.getIndexWithinParent()&&(0===a.length||c.$isTextNode(a[0])&&""===
|
|
3
|
+
a[0].getTextContent().trim())?(a=b.getFirstChild(),c.$isTextNode(a)?a.select(0,0):b.select(0,0),this.remove(),!0):!1}}function g(){return new f}exports.$createParagraphNode=g;exports.$isParagraphNode=function(a){return a instanceof f};exports.ParagraphNode=f;
|
package/QuoteNode.js
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
'use strict';var c=require("lexical"),e=require("lexical/ParagraphNode");function f(a,...b){b.forEach(d=>{null!=d&&"string"===typeof d&&a.classList.add(...d.split(" "))})}
|
|
2
|
+
class g extends c.ElementNode{static getType(){return"quote"}static clone(a){return new g(a.__key)}constructor(a){super(a)}createDOM(a){const b=document.createElement("blockquote");f(b,a.theme.quote);return b}updateDOM(){return!1}insertNewAfter(){const a=e.$createParagraphNode(),b=this.getDirection();a.setDirection(b);this.insertAfter(a);return a}collapseAtStart(){const a=e.$createParagraphNode();this.getChildren().forEach(b=>a.append(b));this.replace(a);return!0}}exports.$createQuoteNode=function(){return new g};
|
|
3
|
+
exports.$isQuoteNode=function(a){return a instanceof g};exports.QuoteNode=g;
|
package/README.md
CHANGED
|
@@ -1,39 +1,5 @@
|
|
|
1
|
-
lexical
|
|
2
|
-
===
|
|
1
|
+
# `lexical`
|
|
3
2
|
|
|
4
|
-
|
|
3
|
+
Lexical is an extensible JavaScript text-editor that provides reliable, accessible and performant typing experiences for the web.
|
|
5
4
|
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
```bash
|
|
9
|
-
$ sudo npm install lexical -g
|
|
10
|
-
```
|
|
11
|
-
|
|
12
|
-
## Quick Start
|
|
13
|
-
|
|
14
|
-
```bash
|
|
15
|
-
$ lexical xdf
|
|
16
|
-
```
|
|
17
|
-
|
|
18
|
-
## License
|
|
19
|
-
|
|
20
|
-
The MIT License (MIT)
|
|
21
|
-
|
|
22
|
-
Copyright (c) 2013 xdf
|
|
23
|
-
|
|
24
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
25
|
-
this software and associated documentation files (the "Software"), to deal in
|
|
26
|
-
the Software without restriction, including without limitation the rights to
|
|
27
|
-
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
28
|
-
the Software, and to permit persons to whom the Software is furnished to do so,
|
|
29
|
-
subject to the following conditions:
|
|
30
|
-
|
|
31
|
-
The above copyright notice and this permission notice shall be included in all
|
|
32
|
-
copies or substantial portions of the Software.
|
|
33
|
-
|
|
34
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
35
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
36
|
-
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
37
|
-
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
38
|
-
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
39
|
-
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
5
|
+
The `lexical` package contains only the core Lexical engine and nodes. This package is intended to be used in conjunction with packages that wire Lexical up to applications, such as `@lexical/react`.
|
package/TableCellNode.js
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
'use strict';var c=require("lexical");function e(a,...b){b.forEach(d=>{null!=d&&"string"===typeof d&&a.classList.add(...d.split(" "))})}
|
|
2
|
+
class f extends c.ElementNode{static getType(){return"table-cell"}static clone(a){return new f(!1,a.__key)}constructor(a=!1,b){super(b);this.__isHeader=a}getTag(){return this.__isHeader?"th":"td"}createDOM(a){const b=document.createElement(this.getTag());e(b,a.theme.tableCell,!0===this.__isHeader&&a.theme.tableCellHeader);return b}updateDOM(){return!1}collapseAtStart(){return!0}canSelectionRemove(){return!1}}exports.$createTableCellNode=function(a){return new f(a)};
|
|
3
|
+
exports.$isTableCellNode=function(a){return a instanceof f};exports.TableCellNode=f;
|
package/TableNode.js
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
'use strict';var r=require("lexical");function v(a,...e){e.forEach(g=>{null!=g&&"string"===typeof g&&a.classList.add(...g.split(" "))})}const x=document.createElement("style");x.appendChild(document.createTextNode("::selection{background-color: transparent}"));function A(a){for(;null!=a;){const e=a.nodeName;if("TD"===e||"TH"===e){a=a._cell;if(void 0===a)break;return a}a=a.parentNode}return null}
|
|
2
|
+
function B(a){const e=[],g={rows:0,columns:0,cells:e};(new MutationObserver(b=>{var d=a.firstChild;let h=0,f=0,n=!1;for(let k=0;k<b.length;k++){const l=b[k].target.nodeName;if("TABLE"===l||"TR"===l){n=!0;break}}if(n){for(e.length=0;null!=d;){b=d.nodeName;if("TD"===b||"TH"===b)b={elem:d,highlighted:!1,x:h,y:f},d._cell=b,void 0===e[f]&&(e[f]=[]),e[f][h]=b;else if(b=d.firstChild,null!=b){d=b;continue}b=d.nextSibling;if(null!=b)h++,d=b;else if(b=d.parentNode,null!=b){d=b.nextSibling;if(null==d)break;
|
|
3
|
+
f++;h=0}}g.columns=h+1;g.rows=f+1}})).observe(a,{childList:!0,subtree:!0});return g}function C(a,e,g,b,d){const h=[];for(let f=0;f<d.length;f++){const n=d[f];for(let k=0;k<n.length;k++){const l=n[k],q=l.elem.style;k>=a&&k<=e&&f>=g&&f<=b?(l.highlighted||(l.highlighted=!0,q.setProperty("background-color","rgb(163, 187, 255)"),q.setProperty("caret-color","transparent")),h.push(l)):l.highlighted&&(l.highlighted=!1,q.removeProperty("background-color"),q.removeProperty("caret-color"))}}return h}
|
|
4
|
+
function D(a,e,g){const b=B(e);if(null!==g.getRootElement()){var d=!1,h=!1,f=-1,n=-1,k=-1,l=-1,q=[];e.addEventListener("mousemove",m=>{if(d){var c=A(m.target);if(null!==c){const t=c.x;c=c.y;if(!h&&(f!==t||n!==c))m.preventDefault(),m=window.getSelection(),m.setBaseAndExtent(m.anchorNode,0,m.anchorNode,0),h=!0,document.body&&document.body.appendChild(x),null===u&&(u=g.addListener("command",(w,y)=>{if("deleteCharacter"===w){if(q.length===b.columns*b.rows)return a.selectPrevious(),a.remove(),z(),!0;q.forEach(({elem:p})=>
|
|
5
|
+
{p=r.$getNearestNodeFromDOMNode(p);r.$isElementNode(p)&&p.clear()});return!0}return"formatText"===w?(F(y),!0):!1},1));else if(t===k&&c===l)return;k=t;l=c;h&&(q=C(Math.min(f,k),Math.max(f,k),Math.min(n,l),Math.max(n,l),b.cells))}}});var z=()=>{d=h=!1;l=k=n=f=-1;C(-1,-1,-1,-1,b.cells);q=[];null!==u&&(u(),u=null);const m=x.parentNode;null!=m&&m.removeChild(x)};e.addEventListener("mouseleave",()=>{});var F=m=>{let c=r.$getSelection();null===c&&(c=r.$createSelection());const t=c,w=t.anchor,y=t.focus;q.forEach(p=>
|
|
6
|
+
{p=r.$getNearestNodeFromDOMNode(p.elem);r.$isElementNode(p)&&(w.set(p.getKey(),0,"element"),y.set(p.getKey(),p.getChildrenSize(),"element"),t.formatText(m))});c.anchor.set(c.anchor.key,c.anchor.offset,c.anchor.type);c.focus.set(c.anchor.key,c.anchor.offset,c.anchor.type);r.$setSelection(c)},u=null;e.addEventListener("mousedown",m=>{d?h&&z():setTimeout(()=>{h&&z();const c=A(m.target);null!==c&&(d=!0,f=c.x,n=c.y,document.addEventListener("mouseup",()=>{d=!1},{capture:!0,once:!0}))},0)})}}
|
|
7
|
+
class E extends r.ElementNode{static getType(){return"table"}static clone(a){return new E(a.__key)}constructor(a){super(a)}createDOM(a,e){const g=document.createElement("table");v(g,a.theme.table);D(this,g,e);return g}updateDOM(){return!1}canExtractContents(){return!1}canBeEmpty(){return!1}}exports.$createTableNode=function(){return new E};exports.$isTableNode=function(a){return a instanceof E};exports.TableNode=E;
|
package/TableRowNode.js
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
'use strict';var c=require("lexical");function e(a,...b){b.forEach(d=>{null!=d&&"string"===typeof d&&a.classList.add(...d.split(" "))})}class f extends c.ElementNode{static getType(){return"table-row"}static clone(a){return new f(a.__key)}constructor(a){super(a)}createDOM(a){const b=document.createElement("tr");e(b,a.theme.tableRow);return b}updateDOM(){return!1}canBeEmpty(){return!1}canSelectionRemove(){return!1}}exports.$createTableRowNode=function(){return new f};
|
|
2
|
+
exports.$isTableRowNode=function(a){return a instanceof f};exports.TableRowNode=f;
|
package/package.json
CHANGED
|
@@ -1,25 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lexical",
|
|
3
|
-
"
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
"lexical": "./bin/lexical"
|
|
7
|
-
},
|
|
8
|
-
"main": "index.js",
|
|
9
|
-
"repository": {
|
|
10
|
-
"type": "git",
|
|
11
|
-
"url": "git://github.com/xudafeng/lexical.git"
|
|
12
|
-
},
|
|
13
|
-
"dependencies": {
|
|
3
|
+
"author": {
|
|
4
|
+
"name": "Dominic Gannaway",
|
|
5
|
+
"email": "dg@domgan.com"
|
|
14
6
|
},
|
|
7
|
+
"description": "Lexical is an extensible text editor library that provides excellent reliability, accessible and performance.",
|
|
15
8
|
"keywords": [
|
|
9
|
+
"react",
|
|
10
|
+
"lexical",
|
|
11
|
+
"editor",
|
|
12
|
+
"contenteditable",
|
|
13
|
+
"rich-text"
|
|
16
14
|
],
|
|
17
|
-
"
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
"
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
}
|
|
15
|
+
"license": "MIT",
|
|
16
|
+
"version": "0.1.3",
|
|
17
|
+
"main": "Lexical.js",
|
|
18
|
+
"repository": {
|
|
19
|
+
"type": "git",
|
|
20
|
+
"url": "https://github.com/facebook/lexical",
|
|
21
|
+
"directory": "packages/lexical"
|
|
22
|
+
}
|
|
23
|
+
}
|
package/.npmignore
DELETED
package/.travis.yml
DELETED
package/HISTORY
DELETED
|
File without changes
|
package/Makefile
DELETED
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
TESTS = test/*.test.js
|
|
2
|
-
TIMEOUT = 1000
|
|
3
|
-
MOCHA_OPTS =
|
|
4
|
-
|
|
5
|
-
install:
|
|
6
|
-
@npm install --registry=http://r.cnpmjs.org --disturl=http://dist.cnpmjs.org
|
|
7
|
-
|
|
8
|
-
jshint: install
|
|
9
|
-
@./node_modules/.bin/jshint .
|
|
10
|
-
|
|
11
|
-
test: install
|
|
12
|
-
@NODE_ENV=test ./node_modules/.bin/mocha \
|
|
13
|
-
--harmony \
|
|
14
|
-
--reporter $(REPORTER) \
|
|
15
|
-
--timeout $(TIMEOUT) \
|
|
16
|
-
$(MOCHA_OPTS) \
|
|
17
|
-
$(TESTS)
|
|
18
|
-
|
|
19
|
-
test-cov cov: install
|
|
20
|
-
@NODE_ENV=test node --harmony \
|
|
21
|
-
node_modules/.bin/istanbul cover --preserve-comments \
|
|
22
|
-
./node_modules/.bin/_mocha \
|
|
23
|
-
-- -u exports \
|
|
24
|
-
--reporter $(REPORTER) \
|
|
25
|
-
--timeout $(TIMEOUT) \
|
|
26
|
-
$(MOCHA_OPTS) \
|
|
27
|
-
$(TESTS)
|
|
28
|
-
@./node_modules/.bin/cov coverage
|
package/bin/lexical
DELETED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env node
|
|
2
|
-
/* ================================================================
|
|
3
|
-
* killing by xdf(xudafeng[at]126.com)
|
|
4
|
-
*
|
|
5
|
-
* first created at : Thu Jun 12 2014 01:24:59 GMT+0800 (CST)
|
|
6
|
-
*
|
|
7
|
-
* ================================================================
|
|
8
|
-
* Copyright 2013 xdf
|
|
9
|
-
*
|
|
10
|
-
* Licensed under the MIT License
|
|
11
|
-
* You may not use this file except in compliance with the License.
|
|
12
|
-
*
|
|
13
|
-
* ================================================================ */
|
|
14
|
-
|
|
15
|
-
"use strict";
|
|
16
|
-
|
|
17
|
-
module.exports = require('../lib/lexical');
|
|
18
|
-
|
package/index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
module.exports = require('./lib/lexical');
|
package/lib/lexical.js
DELETED
|
@@ -1,68 +0,0 @@
|
|
|
1
|
-
/* ================================================================
|
|
2
|
-
* killing by xdf(xudafeng[at]126.com)
|
|
3
|
-
*
|
|
4
|
-
* first created at : Thu Jun 12 2014 01:24:59 GMT+0800 (CST)
|
|
5
|
-
*
|
|
6
|
-
* ================================================================
|
|
7
|
-
* Copyright 2014 xdf
|
|
8
|
-
*
|
|
9
|
-
* Licensed under the MIT License
|
|
10
|
-
* You may not use this file except in compliance with the License.
|
|
11
|
-
*
|
|
12
|
-
* ================================================================ */
|
|
13
|
-
|
|
14
|
-
"use strict";
|
|
15
|
-
|
|
16
|
-
var exec = require('child_process').exec;
|
|
17
|
-
var p = process.argv[2];
|
|
18
|
-
|
|
19
|
-
var WRAP = '\n';
|
|
20
|
-
var BLANK = ' ';
|
|
21
|
-
|
|
22
|
-
if(!p){
|
|
23
|
-
return;
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
function filter(list){
|
|
27
|
-
var a = [];
|
|
28
|
-
list.forEach(function(i){
|
|
29
|
-
if(!!i){
|
|
30
|
-
a.push(i);
|
|
31
|
-
}
|
|
32
|
-
});
|
|
33
|
-
return a;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
exec('ps -ef | grep ' + p, function (error, stdout) {
|
|
37
|
-
if(error) throw error;
|
|
38
|
-
|
|
39
|
-
var items = stdout.split(WRAP);
|
|
40
|
-
var list = [];
|
|
41
|
-
|
|
42
|
-
items.forEach(function(i){
|
|
43
|
-
var content = i.split(BLANK);
|
|
44
|
-
content = filter(content);
|
|
45
|
-
content = content.reverse();
|
|
46
|
-
|
|
47
|
-
if(!!content[0]){
|
|
48
|
-
|
|
49
|
-
if(!new RegExp('grep|kill').test(content[1])){
|
|
50
|
-
content = content.reverse();
|
|
51
|
-
list.push(content[1]);
|
|
52
|
-
}
|
|
53
|
-
}
|
|
54
|
-
});
|
|
55
|
-
|
|
56
|
-
if(!list.length){
|
|
57
|
-
return;
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
exec('sudo kill -SIGKILL ' + list.join(BLANK), function(error){
|
|
61
|
-
if(error) throw error;
|
|
62
|
-
|
|
63
|
-
list.forEach(function(i){
|
|
64
|
-
console.log('PID: \x1B[36m' + i + '\x1B[39m has been killed.');
|
|
65
|
-
});
|
|
66
|
-
});
|
|
67
|
-
});
|
|
68
|
-
|
package/test/lexical.test.js
DELETED
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
/* ================================================================
|
|
2
|
-
* lexical by xdf(xudafeng[at]126.com)
|
|
3
|
-
*
|
|
4
|
-
* first created at : Fri Jun 13 2014 14:09:02 GMT+0800 (CST)
|
|
5
|
-
*
|
|
6
|
-
* ================================================================
|
|
7
|
-
* Copyright 2013 xdf
|
|
8
|
-
*
|
|
9
|
-
* Licensed under the MIT License
|
|
10
|
-
* You may not use this file except in compliance with the License.
|
|
11
|
-
*
|
|
12
|
-
* ================================================================ */
|
|
13
|
-
|
|
14
|
-
"use strict";
|
|
15
|
-
|
|
16
|
-
var lexical = require('../');
|
|
17
|
-
|
|
18
|
-
describe('', function(){
|
|
19
|
-
});
|
package/test/mocha.opt
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
--require should
|