@modusoperandi/licit 0.1.7 → 0.1.8

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.
Files changed (632) hide show
  1. package/.babelrc +54 -54
  2. package/.dockerignore +4 -4
  3. package/.eslintignore +3 -3
  4. package/.eslintrc.js +80 -80
  5. package/.flowconfig +37 -37
  6. package/.github/workflows/build.yml +35 -30
  7. package/.github/workflows/lint.yml +30 -30
  8. package/.prettierignore +5 -5
  9. package/.prettierrc +4 -4
  10. package/.stylelintignore +1 -1
  11. package/.stylelintrc.json +13 -13
  12. package/.travis.yml +18 -18
  13. package/CODEOWNERS +40 -40
  14. package/LICENSE +22 -22
  15. package/README.md +286 -285
  16. package/build_collab_server.py +7 -7
  17. package/build_customstyle_server.py +7 -7
  18. package/build_image_server.py +7 -7
  19. package/dist/BlockquoteInsertNewLineCommand.js.flow +55 -55
  20. package/dist/BlockquoteNodeSpec.js.flow +30 -30
  21. package/dist/BlockquoteToggleCommand.js.flow +34 -34
  22. package/dist/BookmarkNodeSpec.js.flow +39 -39
  23. package/dist/BulletListNodeSpec.js.flow +61 -61
  24. package/dist/CZIProseMirror.js.flow +90 -90
  25. package/dist/CodeBlockCommand.js.flow +43 -43
  26. package/dist/CodeBlockNodeSpec.js.flow +24 -24
  27. package/dist/CodeMarkSpec.js.flow +14 -14
  28. package/dist/ContentPlaceholderPlugin.js.flow +187 -187
  29. package/dist/CursorPlaceholderPlugin.js.flow +115 -115
  30. package/dist/DocLayoutCommand.js.flow +94 -94
  31. package/dist/DocNodeSpec.js.flow +64 -64
  32. package/dist/EMMarkSpec.js.flow +14 -14
  33. package/dist/EditorCommands.js.flow +128 -128
  34. package/dist/EditorKeyMap.js.flow +187 -187
  35. package/dist/EditorMarks.js.flow +71 -71
  36. package/dist/EditorNodes.js.flow +60 -60
  37. package/dist/EditorPageLayoutPlugin.js.flow +67 -67
  38. package/dist/EditorPlugins.js.flow +8 -8
  39. package/dist/EditorSchema.js.flow +12 -12
  40. package/dist/EditorState.js.flow +7 -7
  41. package/dist/FontSizeCommand.js.flow +57 -57
  42. package/dist/FontSizeMarkSpec.js.flow +49 -49
  43. package/dist/FontTypeCommand.js.flow +100 -100
  44. package/dist/FontTypeMarkSpec.js.flow +80 -80
  45. package/dist/HTMLMutator.js.flow +59 -59
  46. package/dist/HardBreakNodeSpec.js.flow +15 -15
  47. package/dist/HeadingCommand.js.flow +51 -51
  48. package/dist/HeadingNodeSpec.js.flow +54 -54
  49. package/dist/HistoryRedoCommand.js.flow +20 -20
  50. package/dist/HistoryUndoCommand.js.flow +20 -20
  51. package/dist/HorizontalRuleCommand.js.flow +49 -49
  52. package/dist/HorizontalRuleNodeSpec.js.flow +39 -39
  53. package/dist/ImageFromURLCommand.js.flow +14 -14
  54. package/dist/ImageNodeSpec.js.flow +90 -90
  55. package/dist/ImageSourceCommand.js.flow +117 -117
  56. package/dist/ImageUploadCommand.js.flow +36 -36
  57. package/dist/ImageUploadPlaceholderPlugin.js.flow +192 -192
  58. package/dist/IndentCommand.js.flow +41 -41
  59. package/dist/LinkMarkSpec.js.flow +32 -32
  60. package/dist/LinkSetURLCommand.js.flow +103 -103
  61. package/dist/LinkTooltipPlugin.js.flow +203 -203
  62. package/dist/ListItemInsertNewLineCommand.js.flow +55 -55
  63. package/dist/ListItemMergeCommand.js.flow +177 -177
  64. package/dist/ListItemNodeSpec.js.flow +51 -51
  65. package/dist/ListSplitCommand.js.flow +32 -32
  66. package/dist/ListToggleCommand.js.flow +77 -77
  67. package/dist/MarkNames.js.flow +18 -18
  68. package/dist/MarkToggleCommand.js.flow +66 -66
  69. package/dist/MarksClearCommand.js.flow +42 -42
  70. package/dist/MathEditCommand.js.flow +110 -110
  71. package/dist/MathNodeSpec.js.flow +46 -46
  72. package/dist/NodeNames.js.flow +23 -23
  73. package/dist/OrderedListNodeSpec.js.flow +132 -132
  74. package/dist/ParagraphNodeSpec.js.flow +160 -160
  75. package/dist/ParagraphSpacingCommand.js.flow +121 -121
  76. package/dist/PrintCommand.js.flow +31 -31
  77. package/dist/SelectionPlaceholderPlugin.js.flow +131 -131
  78. package/dist/SpacerMarkSpec.js.flow +47 -47
  79. package/dist/StrikeMarkSpec.js.flow +21 -21
  80. package/dist/StrongMarkSpec.js.flow +25 -25
  81. package/dist/StyleView.js.flow +19 -19
  82. package/dist/TableBackgroundColorCommand.js.flow +75 -75
  83. package/dist/TableBorderColorCommand.js.flow +75 -75
  84. package/dist/TableCellColorCommand.js.flow +71 -71
  85. package/dist/TableCellMenuPlugin.js.flow +125 -125
  86. package/dist/TableInsertCommand.js.flow +112 -112
  87. package/dist/TableMergeCellsCommand.js.flow +90 -90
  88. package/dist/TableNodesSpecs.js.flow +78 -78
  89. package/dist/TablePlugins.js.flow +14 -14
  90. package/dist/TableResizePlugin.js.flow +631 -631
  91. package/dist/TextAlignCommand.js.flow +122 -122
  92. package/dist/TextColorCommand.js.flow +87 -87
  93. package/dist/TextColorMarkSpec.js.flow +35 -35
  94. package/dist/TextHighlightCommand.js.flow +91 -91
  95. package/dist/TextHighlightMarkSpec.js.flow +38 -38
  96. package/dist/TextInsertTabSpaceCommand.js.flow +83 -83
  97. package/dist/TextLineSpacingCommand.js.flow +157 -157
  98. package/dist/TextNoWrapMarkSpec.js.flow +14 -14
  99. package/dist/TextNodeSpec.js.flow +7 -7
  100. package/dist/TextSelectionMarkSpec.js.flow +24 -24
  101. package/dist/TextSubMarkSpec.js.flow +20 -20
  102. package/dist/TextSuperMarkSpec.js.flow +20 -20
  103. package/dist/TextUnderlineMarkSpec.js.flow +27 -27
  104. package/dist/Types.js.flow +75 -75
  105. package/dist/WebFontLoader.js.flow +22 -22
  106. package/dist/applyMark.js.flow +61 -61
  107. package/dist/blockQuoteInputRule.js.flow +36 -36
  108. package/dist/bom.xml +72 -72
  109. package/dist/browser.js.flow +7 -7
  110. package/dist/buildEditorPlugins.js.flow +51 -51
  111. package/dist/buildInputRules.js.flow +81 -81
  112. package/dist/clearMarks.js.flow +128 -128
  113. package/dist/client/CollabConnector.js +2 -2
  114. package/dist/client/CollabConnector.js.flow +71 -70
  115. package/dist/client/EditorConnection.js.flow +307 -307
  116. package/dist/client/Licit.js +145 -72
  117. package/dist/client/Licit.js.flow +562 -491
  118. package/dist/client/Licit.test.js +2 -2
  119. package/dist/client/Licit.test.js.flow +65 -65
  120. package/dist/client/Reporter.js.flow +37 -37
  121. package/dist/client/SimpleConnector.js.flow +53 -53
  122. package/dist/client/http.js.flow +66 -66
  123. package/dist/client/licit.css +12 -12
  124. package/dist/client/throttle.js.flow +27 -27
  125. package/dist/compareNumber.js.flow +11 -11
  126. package/dist/consolidateListNodes.js +27 -27
  127. package/dist/consolidateListNodes.js.flow +281 -281
  128. package/dist/convertFromDOMElement.js.flow +36 -36
  129. package/dist/convertFromHTML.js.flow +19 -19
  130. package/dist/convertFromJSON.js.flow +78 -78
  131. package/dist/convertToCSSPTValue.js.flow +22 -22
  132. package/dist/convertToJSON.js.flow +7 -7
  133. package/dist/createCommand.js.flow +40 -40
  134. package/dist/createEditorKeyMap.js.flow +94 -94
  135. package/dist/createEmptyEditorState.js.flow +41 -41
  136. package/dist/createTableResizingPlugin.js.flow +86 -86
  137. package/dist/findActionableCell.js.flow +74 -74
  138. package/dist/findActiveMark.js.flow +32 -32
  139. package/dist/findNodesWithSameMark.js.flow +89 -89
  140. package/dist/hyphenize.js.flow +17 -17
  141. package/dist/index.js.flow +10 -10
  142. package/dist/insertTable.js.flow +56 -56
  143. package/dist/isBulletListNode.js.flow +9 -9
  144. package/dist/isEditorStateEmpty.js.flow +32 -32
  145. package/dist/isInsideListItem.js.flow +13 -13
  146. package/dist/isListNode.js.flow +13 -13
  147. package/dist/isNodeSelectionForNodeType.js.flow +15 -15
  148. package/dist/isOrderedListNode.js.flow +9 -9
  149. package/dist/isTableNode.js.flow +15 -15
  150. package/dist/isTextStyleMarkCommandEnabled.js.flow +49 -49
  151. package/dist/joinDown.js.flow +27 -27
  152. package/dist/joinListNode.js.flow +55 -55
  153. package/dist/joinUp.js.flow +39 -39
  154. package/dist/keymaps.js.flow +185 -185
  155. package/dist/lookUpElement.js.flow +14 -14
  156. package/dist/nodeAt.js.flow +12 -12
  157. package/dist/noop.js.flow +5 -5
  158. package/dist/normalizeHTML.js.flow +78 -78
  159. package/dist/patchAnchorElements.js.flow +38 -38
  160. package/dist/patchBreakElements.js.flow +22 -22
  161. package/dist/patchElementInlineStyles.js.flow +92 -92
  162. package/dist/patchListElements.js.flow +276 -276
  163. package/dist/patchMathElements.js.flow +60 -60
  164. package/dist/patchParagraphElements.js.flow +20 -20
  165. package/dist/patchStyleElements.js.flow +194 -194
  166. package/dist/patchTableElements.js.flow +89 -89
  167. package/dist/rebaseDocWithSteps.js.flow +42 -42
  168. package/dist/sanitizeURL.js.flow +13 -13
  169. package/dist/splitListItem.js.flow +191 -191
  170. package/dist/styles.css +19 -19
  171. package/dist/styles0.css +29 -29
  172. package/dist/toClosestFontPtSize.js.flow +22 -22
  173. package/dist/toSafeHTMLDocument.js.flow +9 -9
  174. package/dist/toggleBlockquote.js.flow +91 -91
  175. package/dist/toggleCodeBlock.js.flow +102 -102
  176. package/dist/toggleHeading.js.flow +113 -113
  177. package/dist/toggleList.js.flow +450 -450
  178. package/dist/transformAndPreserveTextSelection.js.flow +151 -151
  179. package/dist/ui/AlertInfo.js +1 -1
  180. package/dist/ui/AlertInfo.js.flow +64 -64
  181. package/dist/ui/BookmarkNodeView.js.flow +66 -66
  182. package/dist/ui/ColorEditor.js.flow +101 -101
  183. package/dist/ui/CommandButton.js.flow +68 -68
  184. package/dist/ui/CommandMenu.js.flow +75 -75
  185. package/dist/ui/CommandMenuButton.js.flow +131 -131
  186. package/dist/ui/CustomButton.js.flow +33 -33
  187. package/dist/ui/CustomEditorView.js.flow +28 -28
  188. package/dist/ui/CustomMenu.js.flow +17 -17
  189. package/dist/ui/CustomMenuItem.js.flow +36 -36
  190. package/dist/ui/CustomNodeView.js.flow +200 -200
  191. package/dist/ui/CustomRadioButton.js.flow +65 -65
  192. package/dist/ui/DocLayoutEditor.js.flow +146 -146
  193. package/dist/ui/Editor.js.flow +291 -291
  194. package/dist/ui/EditorFrameset.js.flow +81 -81
  195. package/dist/ui/EditorToolbar.js.flow +211 -211
  196. package/dist/ui/EditorToolbarConfig.js.flow +172 -172
  197. package/dist/ui/FontSizeCommandMenuButton.js.flow +66 -66
  198. package/dist/ui/FontTypeCommandMenuButton.js.flow +49 -49
  199. package/dist/ui/Frag.js.flow +13 -13
  200. package/dist/ui/Icon.js.flow +89 -89
  201. package/dist/ui/ImageAlignEditor.js.flow +60 -60
  202. package/dist/ui/ImageInlineEditor.js.flow +67 -67
  203. package/dist/ui/ImageNodeView.js +1 -11
  204. package/dist/ui/ImageNodeView.js.flow +404 -416
  205. package/dist/ui/ImageResizeBox.js.flow +219 -219
  206. package/dist/ui/ImageURLEditor.js.flow +119 -119
  207. package/dist/ui/ImageUploadEditor.js.flow +117 -117
  208. package/dist/ui/KeyCodes.js.flow +12 -12
  209. package/dist/ui/LinkTooltip.js.flow +85 -85
  210. package/dist/ui/LinkURLEditor.js.flow +111 -111
  211. package/dist/ui/ListItemNodeView.js.flow +98 -98
  212. package/dist/ui/ListTypeButton.js.flow +131 -131
  213. package/dist/ui/ListTypeCommandButton.js.flow +85 -85
  214. package/dist/ui/ListTypeMenu.js.flow +70 -70
  215. package/dist/ui/LoadingIndicator.js.flow +20 -20
  216. package/dist/ui/MathEditor.js.flow +78 -78
  217. package/dist/ui/MathInlineEditor.js.flow +102 -102
  218. package/dist/ui/MathNodeView.js.flow +175 -175
  219. package/dist/ui/PasteMenu.js.flow +57 -57
  220. package/dist/ui/PointerSurface.js.flow +141 -141
  221. package/dist/ui/PopUp.js.flow +77 -77
  222. package/dist/ui/PopUpManager.js.flow +213 -213
  223. package/dist/ui/PopUpPosition.js +0 -0
  224. package/dist/ui/PopUpPosition.js.flow +104 -104
  225. package/dist/ui/ResizeObserver.js.flow +106 -106
  226. package/dist/ui/RichTextEditor.js.flow +133 -133
  227. package/dist/ui/SelectionObserver.js.flow +134 -134
  228. package/dist/ui/TableCellMenu.js.flow +38 -38
  229. package/dist/ui/TableGridSizeEditor.js.flow +184 -184
  230. package/dist/ui/TableNodeView.js.flow +22 -22
  231. package/dist/ui/TooltipSurface.js.flow +76 -76
  232. package/dist/ui/bindScrollHandler.js.flow +46 -46
  233. package/dist/ui/canUseCSSFont.js.flow +43 -43
  234. package/dist/ui/clamp.js.flow +11 -11
  235. package/dist/ui/createPopUp.js.flow +205 -205
  236. package/dist/ui/czi-animations.css +15 -15
  237. package/dist/ui/czi-body-layout-editor.css +16 -16
  238. package/dist/ui/czi-bookmark-view.css +10 -10
  239. package/dist/ui/czi-color-editor.css +56 -56
  240. package/dist/ui/czi-cursor-placeholder.css +36 -36
  241. package/dist/ui/czi-custom-button.css +93 -93
  242. package/dist/ui/czi-custom-menu-button.css +18 -18
  243. package/dist/ui/czi-custom-menu-item.css +30 -30
  244. package/dist/ui/czi-custom-menu.css +8 -8
  245. package/dist/ui/czi-custom-radio-button.css +80 -80
  246. package/dist/ui/czi-custom-scrollbar.css +21 -21
  247. package/dist/ui/czi-editor-frameset.css +81 -81
  248. package/dist/ui/czi-editor-toolbar.css +122 -122
  249. package/dist/ui/czi-editor.css +220 -220
  250. package/dist/ui/czi-form.css +104 -104
  251. package/dist/ui/czi-frag.css +3 -3
  252. package/dist/ui/czi-heading.css +40 -40
  253. package/dist/ui/czi-icon.css +72 -72
  254. package/dist/ui/czi-image-resize-box.css +165 -165
  255. package/dist/ui/czi-image-upload-editor.css +57 -57
  256. package/dist/ui/czi-image-upload-placeholder.css +50 -50
  257. package/dist/ui/czi-image-url-editor.css +38 -38
  258. package/dist/ui/czi-image-view.css +125 -125
  259. package/dist/ui/czi-indent.css +137 -137
  260. package/dist/ui/czi-inline-editor.css +20 -20
  261. package/dist/ui/czi-link-tooltip.css +71 -71
  262. package/dist/ui/czi-list.css +410 -410
  263. package/dist/ui/czi-loading-indicator.css +111 -111
  264. package/dist/ui/czi-math-view.css +62 -62
  265. package/dist/ui/czi-pop-up.css +32 -32
  266. package/dist/ui/czi-selection-placeholder.css +24 -24
  267. package/dist/ui/czi-table-cell-menu.css +14 -14
  268. package/dist/ui/czi-table-grid-size-editor.css +37 -37
  269. package/dist/ui/czi-table.css +86 -86
  270. package/dist/ui/czi-tooltip-surface.css +45 -45
  271. package/dist/ui/czi-vars.css +46 -46
  272. package/dist/ui/findActiveFontSize.js.flow +58 -58
  273. package/dist/ui/findActiveFontType.js.flow +38 -38
  274. package/dist/ui/fonts.css +471 -471
  275. package/dist/ui/handleEditorDrop.js.flow +28 -28
  276. package/dist/ui/handleEditorKeyDown.js.flow +39 -39
  277. package/dist/ui/handleEditorPaste.js.flow +33 -33
  278. package/dist/ui/htmlElementToRect.js.flow +18 -18
  279. package/dist/ui/icon-font.css +10 -10
  280. package/dist/ui/injectStyleSheet.js.flow +42 -42
  281. package/dist/ui/isElementFullyVisible.js.flow +23 -23
  282. package/dist/ui/isOffline.js.flow +8 -8
  283. package/dist/ui/isReactClass.js.flow +12 -12
  284. package/dist/ui/listType.css +21 -21
  285. package/dist/ui/mathquill-editor/MathQuillEditor.js.flow +159 -159
  286. package/dist/ui/mathquill-editor/MathQuillEditorSymbols.js.flow +483 -483
  287. package/dist/ui/mathquill-editor/MathQuillEditorSymbolsPanel.js.flow +48 -48
  288. package/dist/ui/mathquill-editor/czi-mathquill-editor-symbols-panel.css +39 -39
  289. package/dist/ui/mathquill-editor/czi-mathquill-editor.css +50 -50
  290. package/dist/ui/mathquill-editor/mathquill-import-kludge.js.flow +24 -24
  291. package/dist/ui/preventEventDefault.js.flow +5 -5
  292. package/dist/ui/rects.js.flow +47 -47
  293. package/dist/ui/renderLaTeXAsHTML.js.flow +46 -46
  294. package/dist/ui/resolveImage.js.flow +123 -123
  295. package/dist/ui/toCSSColor.js.flow +51 -51
  296. package/dist/ui/toCSSLineSpacing.js.flow +82 -82
  297. package/dist/ui/toHexColor.js.flow +26 -26
  298. package/dist/ui/uuid.js.flow +9 -9
  299. package/dist/updateIndentLevel.js.flow +211 -211
  300. package/dist/uuid.js.flow +9 -9
  301. package/flow-typed/@modusoperandilicit-customstyles.js +5 -5
  302. package/flow-typed/@modusoperandilicit-doc-attrs-step.js +5 -5
  303. package/flow-typed/@molicit-citation.js +5 -5
  304. package/flow-typed/create-emotion.js +5 -5
  305. package/flow-typed/docs-editor.js +3 -3
  306. package/flow-typed/draft-convert.js +3 -3
  307. package/flow-typed/draft-js.js +3 -3
  308. package/flow-typed/flatted.js +5 -5
  309. package/flow-typed/jquery.js +5 -5
  310. package/flow-typed/katex.js +6 -6
  311. package/flow-typed/mathquill.js +5 -5
  312. package/flow-typed/prosemirror-collab.js +5 -5
  313. package/flow-typed/prosemirror-commands.js +5 -5
  314. package/flow-typed/prosemirror-dev-tools.js +5 -5
  315. package/flow-typed/prosemirror-dropcursor.js +5 -5
  316. package/flow-typed/prosemirror-gapcursor.js +5 -5
  317. package/flow-typed/prosemirror-history.js +5 -5
  318. package/flow-typed/prosemirror-inputrules.js +5 -5
  319. package/flow-typed/prosemirror-keymap.js +5 -5
  320. package/flow-typed/prosemirror-model.js +5 -5
  321. package/flow-typed/prosemirror-state.js +5 -5
  322. package/flow-typed/prosemirror-tables.js +5 -5
  323. package/flow-typed/prosemirror-transform.js +5 -5
  324. package/flow-typed/prosemirror-utils.js +5 -5
  325. package/flow-typed/prosemirror-view.js +5 -5
  326. package/flow-typed/resize-observer-polyfill.js +5 -5
  327. package/flow-typed/uuid.js +5 -5
  328. package/jest.setup.js +5 -5
  329. package/licit/client/CustomLicitRuntime.js +95 -95
  330. package/licit/client/CustomStyleRuntime.js +136 -136
  331. package/licit/client/index.js +366 -366
  332. package/licit/index.html +11 -11
  333. package/licit/server/collab/instance.js +221 -221
  334. package/licit/server/collab/route.js +69 -69
  335. package/licit/server/collab/server.js +297 -297
  336. package/licit/server/collab/start.js +13 -13
  337. package/licit/server/customstyles/start.js +184 -184
  338. package/licit/server/image/start.js +58 -58
  339. package/lint.sh +4 -4
  340. package/package.json +165 -165
  341. package/run_collab_server.py +21 -21
  342. package/run_customstyle_server.py +20 -20
  343. package/run_image_server.py +20 -20
  344. package/run_web_server.py +25 -25
  345. package/scripts/build_bin.js +10 -10
  346. package/scripts/build_bin.py +103 -103
  347. package/scripts/ci_check_dist.sh +13 -13
  348. package/scripts/env.js +6 -6
  349. package/scripts/webserver.js +35 -35
  350. package/sonar-project.properties +11 -11
  351. package/src/BlockquoteInsertNewLineCommand.js +55 -55
  352. package/src/BlockquoteNodeSpec.js +30 -30
  353. package/src/BlockquoteToggleCommand.js +34 -34
  354. package/src/BookmarkNodeSpec.js +39 -39
  355. package/src/BulletListNodeSpec.js +61 -61
  356. package/src/CZIProseMirror.js +90 -90
  357. package/src/CodeBlockCommand.js +43 -43
  358. package/src/CodeBlockNodeSpec.js +24 -24
  359. package/src/CodeMarkSpec.js +14 -14
  360. package/src/ContentPlaceholderPlugin.js +187 -187
  361. package/src/CursorPlaceholderPlugin.js +115 -115
  362. package/src/DocLayoutCommand.js +94 -94
  363. package/src/DocNodeSpec.js +64 -64
  364. package/src/EMMarkSpec.js +14 -14
  365. package/src/EditorCommands.js +128 -128
  366. package/src/EditorKeyMap.js +187 -187
  367. package/src/EditorMarks.js +71 -71
  368. package/src/EditorNodes.js +60 -60
  369. package/src/EditorPageLayoutPlugin.js +67 -67
  370. package/src/EditorPlugins.js +8 -8
  371. package/src/EditorSchema.js +12 -12
  372. package/src/EditorState.js +7 -7
  373. package/src/FontSizeCommand.js +57 -57
  374. package/src/FontSizeMarkSpec.js +49 -49
  375. package/src/FontTypeCommand.js +100 -100
  376. package/src/FontTypeMarkSpec.js +80 -80
  377. package/src/HTMLMutator.js +59 -59
  378. package/src/HardBreakNodeSpec.js +15 -15
  379. package/src/HeadingCommand.js +51 -51
  380. package/src/HeadingNodeSpec.js +54 -54
  381. package/src/HistoryRedoCommand.js +20 -20
  382. package/src/HistoryUndoCommand.js +20 -20
  383. package/src/HorizontalRuleCommand.js +49 -49
  384. package/src/HorizontalRuleNodeSpec.js +39 -39
  385. package/src/ImageFromURLCommand.js +14 -14
  386. package/src/ImageNodeSpec.js +90 -90
  387. package/src/ImageSourceCommand.js +117 -117
  388. package/src/ImageUploadCommand.js +36 -36
  389. package/src/ImageUploadPlaceholderPlugin.js +192 -192
  390. package/src/IndentCommand.js +41 -41
  391. package/src/LinkMarkSpec.js +32 -32
  392. package/src/LinkSetURLCommand.js +103 -103
  393. package/src/LinkTooltipPlugin.js +203 -203
  394. package/src/ListItemInsertNewLineCommand.js +55 -55
  395. package/src/ListItemMergeCommand.js +177 -177
  396. package/src/ListItemNodeSpec.js +51 -51
  397. package/src/ListSplitCommand.js +32 -32
  398. package/src/ListToggleCommand.js +77 -77
  399. package/src/MarkNames.js +18 -18
  400. package/src/MarkToggleCommand.js +66 -66
  401. package/src/MarksClearCommand.js +42 -42
  402. package/src/MathEditCommand.js +110 -110
  403. package/src/MathNodeSpec.js +46 -46
  404. package/src/NodeNames.js +23 -23
  405. package/src/OrderedListNodeSpec.js +132 -132
  406. package/src/ParagraphNodeSpec.js +160 -160
  407. package/src/ParagraphSpacingCommand.js +121 -121
  408. package/src/PrintCommand.js +31 -31
  409. package/src/SelectionPlaceholderPlugin.js +131 -131
  410. package/src/SpacerMarkSpec.js +47 -47
  411. package/src/StrikeMarkSpec.js +21 -21
  412. package/src/StrongMarkSpec.js +25 -25
  413. package/src/StyleView.js +19 -19
  414. package/src/TableBackgroundColorCommand.js +75 -75
  415. package/src/TableBorderColorCommand.js +75 -75
  416. package/src/TableCellColorCommand.js +71 -71
  417. package/src/TableCellMenuPlugin.js +125 -125
  418. package/src/TableInsertCommand.js +112 -112
  419. package/src/TableMergeCellsCommand.js +90 -90
  420. package/src/TableNodesSpecs.js +78 -78
  421. package/src/TablePlugins.js +14 -14
  422. package/src/TableResizePlugin.js +631 -631
  423. package/src/TextAlignCommand.js +122 -122
  424. package/src/TextColorCommand.js +87 -87
  425. package/src/TextColorMarkSpec.js +35 -35
  426. package/src/TextHighlightCommand.js +91 -91
  427. package/src/TextHighlightMarkSpec.js +38 -38
  428. package/src/TextInsertTabSpaceCommand.js +83 -83
  429. package/src/TextLineSpacingCommand.js +157 -157
  430. package/src/TextNoWrapMarkSpec.js +14 -14
  431. package/src/TextNodeSpec.js +7 -7
  432. package/src/TextSelectionMarkSpec.js +24 -24
  433. package/src/TextSubMarkSpec.js +20 -20
  434. package/src/TextSuperMarkSpec.js +20 -20
  435. package/src/TextUnderlineMarkSpec.js +27 -27
  436. package/src/Types.js +75 -75
  437. package/src/WebFontLoader.js +22 -22
  438. package/src/applyMark.js +61 -61
  439. package/src/blockQuoteInputRule.js +36 -36
  440. package/src/browser.js +7 -7
  441. package/src/buildEditorPlugins.js +51 -51
  442. package/src/buildInputRules.js +81 -81
  443. package/src/clearMarks.js +128 -128
  444. package/src/client/CollabConnector.js +71 -70
  445. package/src/client/EditorConnection.js +307 -307
  446. package/src/client/Licit.js +562 -491
  447. package/src/client/Licit.test.js +65 -65
  448. package/src/client/Reporter.js +37 -37
  449. package/src/client/SimpleConnector.js +53 -53
  450. package/src/client/http.js +66 -66
  451. package/src/client/licit.css +12 -12
  452. package/src/client/throttle.js +27 -27
  453. package/src/compareNumber.js +11 -11
  454. package/src/consolidateListNodes.js +281 -281
  455. package/src/convertFromDOMElement.js +36 -36
  456. package/src/convertFromHTML.js +19 -19
  457. package/src/convertFromJSON.js +78 -78
  458. package/src/convertToCSSPTValue.js +22 -22
  459. package/src/convertToJSON.js +7 -7
  460. package/src/createCommand.js +40 -40
  461. package/src/createEditorKeyMap.js +94 -94
  462. package/src/createEmptyEditorState.js +41 -41
  463. package/src/createTableResizingPlugin.js +86 -86
  464. package/src/findActionableCell.js +74 -74
  465. package/src/findActiveMark.js +32 -32
  466. package/src/findNodesWithSameMark.js +89 -89
  467. package/src/hyphenize.js +17 -17
  468. package/src/index.js +10 -10
  469. package/src/insertTable.js +56 -56
  470. package/src/isBulletListNode.js +9 -9
  471. package/src/isEditorStateEmpty.js +32 -32
  472. package/src/isInsideListItem.js +13 -13
  473. package/src/isListNode.js +13 -13
  474. package/src/isNodeSelectionForNodeType.js +15 -15
  475. package/src/isOrderedListNode.js +9 -9
  476. package/src/isTableNode.js +15 -15
  477. package/src/isTextStyleMarkCommandEnabled.js +49 -49
  478. package/src/joinDown.js +27 -27
  479. package/src/joinListNode.js +55 -55
  480. package/src/joinUp.js +39 -39
  481. package/src/keymaps.js +185 -185
  482. package/src/lookUpElement.js +14 -14
  483. package/src/nodeAt.js +12 -12
  484. package/src/noop.js +5 -5
  485. package/src/normalizeHTML.js +78 -78
  486. package/src/patchAnchorElements.js +38 -38
  487. package/src/patchBreakElements.js +22 -22
  488. package/src/patchElementInlineStyles.js +92 -92
  489. package/src/patchListElements.js +276 -276
  490. package/src/patchMathElements.js +60 -60
  491. package/src/patchParagraphElements.js +20 -20
  492. package/src/patchStyleElements.js +194 -194
  493. package/src/patchTableElements.js +89 -89
  494. package/src/rebaseDocWithSteps.js +42 -42
  495. package/src/sanitizeURL.js +13 -13
  496. package/src/splitListItem.js +191 -191
  497. package/src/styles.css +19 -19
  498. package/src/styles0.css +29 -29
  499. package/src/toClosestFontPtSize.js +22 -22
  500. package/src/toSafeHTMLDocument.js +9 -9
  501. package/src/toggleBlockquote.js +91 -91
  502. package/src/toggleCodeBlock.js +102 -102
  503. package/src/toggleHeading.js +113 -113
  504. package/src/toggleList.js +450 -450
  505. package/src/transformAndPreserveTextSelection.js +151 -151
  506. package/src/ui/AlertInfo.js +64 -64
  507. package/src/ui/BookmarkNodeView.js +66 -66
  508. package/src/ui/ColorEditor.js +101 -101
  509. package/src/ui/CommandButton.js +68 -68
  510. package/src/ui/CommandMenu.js +75 -75
  511. package/src/ui/CommandMenuButton.js +131 -131
  512. package/src/ui/CustomButton.js +33 -33
  513. package/src/ui/CustomEditorView.js +28 -28
  514. package/src/ui/CustomMenu.js +17 -17
  515. package/src/ui/CustomMenuItem.js +36 -36
  516. package/src/ui/CustomNodeView.js +200 -200
  517. package/src/ui/CustomRadioButton.js +65 -65
  518. package/src/ui/DocLayoutEditor.js +146 -146
  519. package/src/ui/Editor.js +291 -291
  520. package/src/ui/EditorFrameset.js +81 -81
  521. package/src/ui/EditorToolbar.js +211 -211
  522. package/src/ui/EditorToolbarConfig.js +172 -172
  523. package/src/ui/FontSizeCommandMenuButton.js +66 -66
  524. package/src/ui/FontTypeCommandMenuButton.js +49 -49
  525. package/src/ui/Frag.js +13 -13
  526. package/src/ui/Icon.js +89 -89
  527. package/src/ui/ImageAlignEditor.js +60 -60
  528. package/src/ui/ImageInlineEditor.js +67 -67
  529. package/src/ui/ImageNodeView.js +404 -416
  530. package/src/ui/ImageResizeBox.js +219 -219
  531. package/src/ui/ImageURLEditor.js +119 -119
  532. package/src/ui/ImageUploadEditor.js +117 -117
  533. package/src/ui/KeyCodes.js +12 -12
  534. package/src/ui/LinkTooltip.js +85 -85
  535. package/src/ui/LinkURLEditor.js +111 -111
  536. package/src/ui/ListItemNodeView.js +98 -98
  537. package/src/ui/ListTypeButton.js +131 -131
  538. package/src/ui/ListTypeCommandButton.js +85 -85
  539. package/src/ui/ListTypeMenu.js +70 -70
  540. package/src/ui/LoadingIndicator.js +20 -20
  541. package/src/ui/MathEditor.js +78 -78
  542. package/src/ui/MathInlineEditor.js +102 -102
  543. package/src/ui/MathNodeView.js +175 -175
  544. package/src/ui/PasteMenu.js +57 -57
  545. package/src/ui/PointerSurface.js +141 -141
  546. package/src/ui/PopUp.js +77 -77
  547. package/src/ui/PopUpManager.js +213 -213
  548. package/src/ui/PopUpPosition.js +104 -104
  549. package/src/ui/ResizeObserver.js +106 -106
  550. package/src/ui/RichTextEditor.js +133 -133
  551. package/src/ui/SelectionObserver.js +134 -134
  552. package/src/ui/TableCellMenu.js +38 -38
  553. package/src/ui/TableGridSizeEditor.js +184 -184
  554. package/src/ui/TableNodeView.js +22 -22
  555. package/src/ui/TooltipSurface.js +76 -76
  556. package/src/ui/bindScrollHandler.js +46 -46
  557. package/src/ui/canUseCSSFont.js +43 -43
  558. package/src/ui/clamp.js +11 -11
  559. package/src/ui/createPopUp.js +205 -205
  560. package/src/ui/czi-animations.css +15 -15
  561. package/src/ui/czi-body-layout-editor.css +16 -16
  562. package/src/ui/czi-bookmark-view.css +10 -10
  563. package/src/ui/czi-color-editor.css +56 -56
  564. package/src/ui/czi-cursor-placeholder.css +36 -36
  565. package/src/ui/czi-custom-button.css +93 -93
  566. package/src/ui/czi-custom-menu-button.css +18 -18
  567. package/src/ui/czi-custom-menu-item.css +30 -30
  568. package/src/ui/czi-custom-menu.css +8 -8
  569. package/src/ui/czi-custom-radio-button.css +80 -80
  570. package/src/ui/czi-custom-scrollbar.css +21 -21
  571. package/src/ui/czi-editor-frameset.css +81 -81
  572. package/src/ui/czi-editor-toolbar.css +122 -122
  573. package/src/ui/czi-editor.css +220 -220
  574. package/src/ui/czi-form.css +104 -104
  575. package/src/ui/czi-frag.css +3 -3
  576. package/src/ui/czi-heading.css +40 -40
  577. package/src/ui/czi-icon.css +72 -72
  578. package/src/ui/czi-image-resize-box.css +165 -165
  579. package/src/ui/czi-image-upload-editor.css +57 -57
  580. package/src/ui/czi-image-upload-placeholder.css +50 -50
  581. package/src/ui/czi-image-url-editor.css +38 -38
  582. package/src/ui/czi-image-view.css +125 -125
  583. package/src/ui/czi-indent.css +137 -137
  584. package/src/ui/czi-inline-editor.css +20 -20
  585. package/src/ui/czi-link-tooltip.css +71 -71
  586. package/src/ui/czi-list.css +410 -410
  587. package/src/ui/czi-loading-indicator.css +111 -111
  588. package/src/ui/czi-math-view.css +62 -62
  589. package/src/ui/czi-pop-up.css +32 -32
  590. package/src/ui/czi-selection-placeholder.css +24 -24
  591. package/src/ui/czi-table-cell-menu.css +14 -14
  592. package/src/ui/czi-table-grid-size-editor.css +37 -37
  593. package/src/ui/czi-table.css +86 -86
  594. package/src/ui/czi-tooltip-surface.css +45 -45
  595. package/src/ui/czi-vars.css +46 -46
  596. package/src/ui/findActiveFontSize.js +58 -58
  597. package/src/ui/findActiveFontType.js +38 -38
  598. package/src/ui/fonts.css +471 -471
  599. package/src/ui/handleEditorDrop.js +28 -28
  600. package/src/ui/handleEditorKeyDown.js +39 -39
  601. package/src/ui/handleEditorPaste.js +33 -33
  602. package/src/ui/htmlElementToRect.js +18 -18
  603. package/src/ui/icon-font.css +10 -10
  604. package/src/ui/injectStyleSheet.js +42 -42
  605. package/src/ui/isElementFullyVisible.js +23 -23
  606. package/src/ui/isOffline.js +8 -8
  607. package/src/ui/isReactClass.js +12 -12
  608. package/src/ui/listType.css +21 -21
  609. package/src/ui/mathquill-editor/MathQuillEditor.js +159 -159
  610. package/src/ui/mathquill-editor/MathQuillEditorSymbols.js +483 -483
  611. package/src/ui/mathquill-editor/MathQuillEditorSymbolsPanel.js +48 -48
  612. package/src/ui/mathquill-editor/czi-mathquill-editor-symbols-panel.css +39 -39
  613. package/src/ui/mathquill-editor/czi-mathquill-editor.css +50 -50
  614. package/src/ui/mathquill-editor/mathquill-import-kludge.js +24 -24
  615. package/src/ui/preventEventDefault.js +5 -5
  616. package/src/ui/rects.js +47 -47
  617. package/src/ui/renderLaTeXAsHTML.js +46 -46
  618. package/src/ui/resolveImage.js +123 -123
  619. package/src/ui/toCSSColor.js +51 -51
  620. package/src/ui/toCSSLineSpacing.js +82 -82
  621. package/src/ui/toHexColor.js +26 -26
  622. package/src/ui/uuid.js +9 -9
  623. package/src/updateIndentLevel.js +211 -211
  624. package/src/uuid.js +9 -9
  625. package/style-service.Dockerfile +26 -26
  626. package/utils/build_bin.js +9 -9
  627. package/utils/build_customstyle_server.js +71 -71
  628. package/utils/build_image_server.js +71 -71
  629. package/utils/build_licit_collab_server.js +75 -75
  630. package/utils/build_web_server.js +40 -40
  631. package/utils/env.js +6 -6
  632. package/webpack.config.js +126 -126
@@ -1,491 +1,562 @@
1
- // @flow
2
- import { EditorState, TextSelection, Plugin } from 'prosemirror-state';
3
- import { Node } from 'prosemirror-model';
4
- import { Transform } from 'prosemirror-transform';
5
- import { EditorView } from 'prosemirror-view';
6
- import * as React from 'react';
7
-
8
- import convertFromJSON from '../convertFromJSON';
9
- import RichTextEditor from '../ui/RichTextEditor';
10
- import uuid from '../uuid';
11
- import SimpleConnector from './SimpleConnector';
12
- import CollabConnector from './CollabConnector';
13
- import { EMPTY_DOC_JSON } from '../createEmptyEditorState';
14
- import type { EditorRuntime } from '../Types';
15
- import createPopUp from '../ui/createPopUp';
16
- import { atViewportCenter } from '../ui/PopUpPosition';
17
- import AlertInfo from '../ui/AlertInfo';
18
- import { SetDocAttrStep } from '@modusoperandi/licit-doc-attrs-step';
19
- import './licit.css';
20
- import DefaultEditorPlugins from '../buildEditorPlugins';
21
- import { Schema } from 'prosemirror-model';
22
- import EditorMarks from '../EditorMarks';
23
- import EditorNodes from '../EditorNodes';
24
-
25
- const ATTR_OBJID = 'objectId';
26
- const ATTR_OBJMETADATA = 'objectMetaData';
27
- /**
28
- * LICIT properties:
29
- * docID {string} [] Collaborative Doument ID
30
- * collabServiceURL {string} [/collaboration-service] Collaboration Service URL
31
- * debug {boolean} [false] To enable/disable ProseMirror Debug Tools, available only in development.
32
- * width {string} [100%] Width of the editor.
33
- * height {string} [100%] Height of the editor.
34
- * readOnly {boolean} [false] To enable/disable editing mode.
35
- * onChange {@callback} [null] Fires after each significant change.
36
- * @param data {JSON} Modified document data.
37
- * onReady {@callback} [null] Fires when the editor is fully ready.
38
- * @param ref {LICIT} Rerefence of the editor.
39
- * data {JSON} [null] Document data to be loaded into the editor.
40
- * disabled {boolean} [false] Disable the editor.
41
- * embedded {boolean} [false] Disable/Enable inline behaviour.
42
- * plugins [plugins] External Plugins into the editor.
43
- */
44
- class Licit extends React.Component<any, any> {
45
- _runtime: EditorRuntime;
46
- _connector: any;
47
- _clientID: string;
48
- _editorView: EditorView; // This will be handy in updating document's content.
49
- _skipSCU: boolean; // Flag to decide whether to skip shouldComponentUpdate
50
- _defaultEditorSchema: Schema;
51
- _defaultEditorPlugins: Array<Plugin>;
52
-
53
- _popUp = null;
54
-
55
- /**
56
- * Provides access to prosemirror view.
57
- */
58
- get editorView(): EditorView {
59
- return this._editorView;
60
- }
61
-
62
- constructor(props: any, context: any) {
63
- super(props, context);
64
- this.initialize(props);
65
- }
66
-
67
- initialize(props: any) {
68
- this._clientID = uuid();
69
- this._editorView = null;
70
- this._skipSCU = true;
71
-
72
- const noop = function () {};
73
-
74
- // [FS] IRAD-981 2020-06-10
75
- // Component's configurations.
76
- // [FS] IRAD-1552 2021-08-26
77
- // Collaboration server / client should allow string values for document identifiers.
78
- const docID = props.docID || ''; // Empty means collaborative.
79
- const collaborative = docID !== '';
80
- // [FS] IRAD-1553 2021-08-26
81
- // Configurable Collaboration Service URL.
82
- const collabServiceURL = props.collabServiceURL || '/collaboration-service';
83
- const debug = props.debug || false;
84
- // Default width and height to undefined
85
- const width = props.width || undefined;
86
- const height = props.height || undefined;
87
- const onChangeCB =
88
- typeof props.onChange === 'function' ? props.onChange : noop;
89
- const onReadyCB =
90
- typeof props.onReady === 'function' ? props.onReady : noop;
91
- const readOnly = props.readOnly || false;
92
- const data = props.data || null;
93
- const disabled = props.disabled || false;
94
- const embedded = props.embedded || false; // [FS] IRAD-996 2020-06-30
95
- // [FS] 2020-07-03
96
- // Handle Image Upload from Angular App
97
- const runtime = props.runtime || null;
98
- const plugins = props.plugins || null;
99
-
100
- this._defaultEditorSchema = new Schema({
101
- nodes: EditorNodes,
102
- marks: EditorMarks,
103
- });
104
- this._defaultEditorPlugins = new DefaultEditorPlugins(
105
- this._defaultEditorSchema
106
- ).get();
107
-
108
- let editorState = convertFromJSON(
109
- data,
110
- null,
111
- this._defaultEditorSchema,
112
- plugins,
113
- this._defaultEditorPlugins
114
- );
115
- // [FS] IRAD-1067 2020-09-19
116
- // The editorState will return null if the doc Json is mal-formed
117
- if (null === editorState) {
118
- editorState = convertFromJSON(
119
- EMPTY_DOC_JSON,
120
- null,
121
- this._defaultEditorSchema,
122
- plugins,
123
- this._defaultEditorPlugins
124
- );
125
- this.showAlert();
126
- }
127
-
128
- const setState = this.setState.bind(this);
129
- this._connector = collaborative
130
- ? new CollabConnector(
131
- editorState,
132
- setState,
133
- {
134
- docID,
135
- collabServiceURL,
136
- },
137
- this._defaultEditorSchema,
138
- this._defaultEditorPlugins
139
- )
140
- : new SimpleConnector(editorState, setState);
141
-
142
- // FS IRAD-989 2020-18-06
143
- // updating properties should automatically render the changes
144
-
145
- this.state = {
146
- docID,
147
- collabServiceURL,
148
- data,
149
- editorState,
150
- width,
151
- height,
152
- readOnly,
153
- onChangeCB,
154
- onReadyCB,
155
- debug,
156
- disabled,
157
- embedded,
158
- runtime,
159
- };
160
-
161
- // FS IRAD-1040 2020-26-08
162
- // Get the modified schema from editorstate and send it to collab server
163
- if (this._connector.updateSchema) {
164
- // Use known editorState to update schema.
165
- this._connector.updateSchema(editorState.schema);
166
- }
167
- }
168
-
169
- // [FS] IRAD-1067 2020-09-19
170
- // Alert funtion to show document is corrupted
171
- showAlert() {
172
- const anchor = null;
173
- this._popUp = createPopUp(AlertInfo, null, {
174
- anchor,
175
- position: atViewportCenter,
176
- onClose: (val) => {
177
- if (this._popUp) {
178
- this._popUp = null;
179
- }
180
- },
181
- });
182
- }
183
-
184
- resetCounters(transaction: Transform) {
185
- for (let index = 1; index <= 10; index++) {
186
- const counterVar = 'set-cust-style-counter-' + index;
187
- const setCounterVal = window[counterVar];
188
- if (setCounterVal) {
189
- delete window[counterVar];
190
- }
191
- }
192
- this.setCounterFlags(transaction, true);
193
- }
194
-
195
- setCounterFlags(transaction: Transform, reset: boolean) {
196
- let modified = false;
197
- let counterFlags = null;
198
- const existingCFlags = transaction.doc.attrs.counterFlags;
199
- if (reset && !existingCFlags) {
200
- return;
201
- }
202
-
203
- for (let index = 1; index <= 10; index++) {
204
- const counterVar = 'set-cust-style-counter-' + index;
205
-
206
- const setCounterVal = window[counterVar];
207
- if (setCounterVal) {
208
- if (!counterFlags) {
209
- counterFlags = {};
210
- }
211
- counterFlags[counterVar] = true;
212
-
213
- if (!existingCFlags) {
214
- modified = true;
215
- }
216
- }
217
- if (!modified) {
218
- if (existingCFlags) {
219
- if (setCounterVal) {
220
- modified = undefined == existingCFlags[counterVar];
221
- } else {
222
- modified = undefined != existingCFlags[counterVar];
223
- }
224
- } else {
225
- modified = setCounterVal;
226
- }
227
- }
228
- }
229
-
230
- if (modified) {
231
- const tr = this._editorView.state.tr.step(
232
- new SetDocAttrStep('counterFlags', counterFlags)
233
- );
234
- this._editorView.dispatch(tr);
235
- }
236
- }
237
-
238
- getDeletedArtifactIds() {
239
- if (this._connector.getDeletedArtifactIds) {
240
- this._connector.getDeletedArtifactIds(this.state.editorState.schema);
241
- }
242
- }
243
-
244
- isNodeHasAttribute(node: Node, attrName: string) {
245
- return node.attrs && node.attrs[attrName];
246
- }
247
-
248
- setContent = (content: any = {}): void => {
249
- const { doc, schema } = this._connector.getState();
250
- let { tr } = this._connector.getState();
251
- const document = content
252
- ? schema.nodeFromJSON(content)
253
- : schema.nodeFromJSON(EMPTY_DOC_JSON);
254
-
255
- const selection = TextSelection.create(doc, 0, doc.content.size);
256
-
257
- tr = tr.setSelection(selection).replaceSelectionWith(document, false);
258
- // [FS] IRAD-1092 2020-12-03
259
- // set the value for object metadata and objectId
260
- tr = this.isNodeHasAttribute(document, ATTR_OBJMETADATA)
261
- ? tr.step(
262
- new SetDocAttrStep(ATTR_OBJMETADATA, document.attrs.objectMetaData)
263
- )
264
- : tr;
265
- tr = this.isNodeHasAttribute(document, ATTR_OBJID)
266
- ? tr.step(new SetDocAttrStep(ATTR_OBJID, document.attrs.objectId))
267
- : tr;
268
-
269
- this._skipSCU = true;
270
- this._editorView.dispatch(tr);
271
- };
272
-
273
- shouldComponentUpdate(nextProps: any, nextState: any) {
274
- // Only interested if properties are set from outside.
275
- if (!this._skipSCU) {
276
- this._skipSCU = false;
277
- let dataChanged = false;
278
-
279
- // Compare data, if found difference, update editorState
280
- if (this.state.data !== nextState.data) {
281
- dataChanged = true;
282
- } else if (null === nextState.data) {
283
- if (
284
- this.state.editorState.doc.textContent &&
285
- 0 < this.state.editorState.doc.textContent.trim().length
286
- ) {
287
- dataChanged = true;
288
- }
289
- }
290
-
291
- if (dataChanged) {
292
- // data changed, so update document content
293
- this.setContent(nextState.data);
294
- }
295
-
296
- if (this.state.docID !== nextState.docID) {
297
- // Collaborative mode changed
298
- const collabEditing = nextState.docID !== '';
299
- const editorState = this._connector.getState();
300
- const setState = this.setState.bind(this);
301
- const docID = nextState.docID || '';
302
- const collabServiceURL =
303
- nextState.collabServiceURL || '/collaboration-service';
304
- // create new connector
305
- this._connector = collabEditing
306
- ? new CollabConnector(
307
- editorState,
308
- setState,
309
- {
310
- docID,
311
- collabServiceURL,
312
- },
313
- this._defaultEditorSchema,
314
- this._defaultEditorPlugins
315
- )
316
- : new SimpleConnector(editorState, setState);
317
- }
318
- }
319
-
320
- return true;
321
- }
322
-
323
- render(): React.Element<any> {
324
- const {
325
- editorState,
326
- width,
327
- height,
328
- readOnly,
329
- disabled,
330
- embedded,
331
- runtime,
332
- } = this.state;
333
- // [FS] IRAD-978 2020-06-05
334
- // Using 100vw & 100vh (100% viewport) is not ideal for a component which is expected to be a part of a page,
335
- // so changing it to 100% width & height which will occupy the area relative to its parent.
336
- return (
337
- <RichTextEditor
338
- disabled={disabled}
339
- editorState={editorState}
340
- embedded={embedded}
341
- height={height}
342
- onChange={this._onChange}
343
- onReady={this._onReady}
344
- readOnly={readOnly}
345
- runtime={runtime}
346
- width={width}
347
- />
348
- );
349
- }
350
-
351
- _onChange = (data: { state: EditorState, transaction: Transform }): void => {
352
- const { transaction } = data;
353
-
354
- /*
355
- ** ProseMirror Debug Tool's Snapshot creates a new state and sets that to editor view's state.
356
- ** This results in the connector's state as an orphan and thus transaction mismatch error.
357
- ** To resolve check and update the connector's state to keep in sync.
358
- */
359
-
360
- if (this._editorView) {
361
- const isSameState =
362
- this._connector._editorState == this._editorView.state;
363
- let invokeOnEdit = false;
364
-
365
- if (!isSameState) {
366
- this._connector._editorState = this._editorView.state;
367
- invokeOnEdit = true;
368
- } else {
369
- // [FS] IRAD-1264 2021-03-19
370
- // check if in non-collab mode.
371
- if (!(this._connector instanceof CollabConnector)) {
372
- invokeOnEdit = true;
373
- }
374
- }
375
- if (invokeOnEdit) {
376
- // [FS] IRAD-1236 2020-03-05
377
- // Only need to call if there is any difference in collab mode OR always in non-collab mode.
378
- this._connector.onEdit(transaction, this._editorView);
379
- }
380
-
381
- if (transaction.docChanged) {
382
- const docJson = transaction.doc.toJSON();
383
- let isEmpty = false;
384
-
385
- if (docJson.content && docJson.content.length === 1) {
386
- if (
387
- !docJson.content[0].content ||
388
- (docJson.content[0].content &&
389
- docJson.content[0].content[0].text &&
390
- '' === docJson.content[0].content[0].text.trim())
391
- ) {
392
- isEmpty = true;
393
- }
394
- }
395
-
396
- // setCFlags is/was always the opposite of isEmpty.
397
- if (isEmpty) {
398
- this.resetCounters(transaction);
399
- } else {
400
- this.setCounterFlags(transaction, false);
401
- }
402
-
403
- // Changing 2nd parameter from boolean to object was not in any way
404
- // backwards compatible. Any conditional logic placed on isEmpty was
405
- // broken. Reverting that change, then adding view as a 3rd parameter.
406
- this.state.onChangeCB(docJson, isEmpty, this._editorView);
407
-
408
- this.closeOpenedPopupModels();
409
- }
410
- }
411
- };
412
- // [FS] IRAD-1173 2021-02-25
413
- // Bug fix: Transaction mismatch error when a dialog is opened and keep typing.
414
- closeOpenedPopupModels() {
415
- const element = document.getElementsByClassName('czi-pop-up-element')[0];
416
- if (element && element.parentElement) {
417
- element.parentElement.removeChild(element);
418
- }
419
- }
420
-
421
- _onReady = (editorView: EditorView): void => {
422
- // [FS][06-APR-2020][IRAD-922]
423
- // Showing focus in the editor.
424
- const { state, dispatch } = editorView;
425
- this._editorView = editorView;
426
- const tr = state.tr;
427
- const doc = state.doc;
428
- const trx = tr.setSelection(TextSelection.create(doc, 0, doc.content.size));
429
- dispatch(trx.scrollIntoView());
430
- editorView.focus();
431
-
432
- if (this.state.onReadyCB) {
433
- this.state.onReadyCB(this);
434
- }
435
-
436
- if (this.state.debug) {
437
- // import dynamically
438
- import('prosemirror-dev-tools').then((prosemirrorDevTools) => {
439
- window.debugProseMirror = () => {
440
- prosemirrorDevTools.applyDevTools(editorView);
441
- };
442
- window.debugProseMirror();
443
- });
444
- }
445
- };
446
-
447
- componentWillUnmount(): void {
448
- // [FS] IRAD-1569 2021-09-15
449
- // Unmount dev tools when component is destroyed,
450
- // so that toggle effect is not occuring when the document is retrieved each time.
451
- if (this.state.debug) {
452
- // unmount dev
453
- window.debugProseMirror();
454
- }
455
- }
456
-
457
- /**
458
- * LICIT properties:
459
- * docID {number} [0] Collaborative Doument ID
460
- * debug {boolean} [false] To enable/disable ProseMirror Debug Tools, available only in development.
461
- * width {string} [100%] Width of the editor.
462
- * height {height} [100%] Height of the editor.
463
- * readOnly {boolean} [false] To enable/disable editing mode.
464
- * onChange {@callback} [null] Fires after each significant change.
465
- * @param data {JSON} Modified document data.
466
- * onReady {@callback} [null] Fires when the editor is fully ready.
467
- * @param ref {LICIT} Rerefence of the editor.
468
- * data {JSON} [null] Document data to be loaded into the editor.
469
- * disabled {boolean} [false] Disable the editor.
470
- * embedded {boolean} [false] Disable/Enable inline behaviour.
471
- */
472
- setProps = (props: any): void => {
473
- if (this.state.readOnly) {
474
- // It should be possible to load content into the editor in readonly as well.
475
- // It should not be necessary to make the component writable any time during the process
476
- const propsCopy = {};
477
- this._skipSCU = true;
478
- Object.assign(propsCopy, props);
479
- // make writable without content change
480
- propsCopy.readOnly = false;
481
- delete propsCopy.data;
482
- this.setState(propsCopy);
483
- }
484
- // Need to go through shouldComponentUpdate lifecycle here, when updated from outside,
485
- // so that content is modified gracefully using transaction so that undo/redo works too.
486
- this._skipSCU = false;
487
- this.setState(props);
488
- };
489
- }
490
-
491
- export default Licit;
1
+ // @flow
2
+ import { EditorState, TextSelection, Plugin } from 'prosemirror-state';
3
+ import { Node } from 'prosemirror-model';
4
+ import { Transform } from 'prosemirror-transform';
5
+ import { EditorView } from 'prosemirror-view';
6
+ import * as React from 'react';
7
+ import ReactDOM from 'react-dom';
8
+ import { stringify } from 'flatted';
9
+
10
+ import convertFromJSON from '../convertFromJSON';
11
+ import RichTextEditor from '../ui/RichTextEditor';
12
+ import uuid from '../uuid';
13
+ import SimpleConnector from './SimpleConnector';
14
+ import CollabConnector from './CollabConnector';
15
+ import { EMPTY_DOC_JSON } from '../createEmptyEditorState';
16
+ import type { EditorRuntime } from '../Types';
17
+ import createPopUp from '../ui/createPopUp';
18
+ import { atViewportCenter } from '../ui/PopUpPosition';
19
+ import AlertInfo from '../ui/AlertInfo';
20
+ import { SetDocAttrStep } from '@modusoperandi/licit-doc-attrs-step';
21
+ import './licit.css';
22
+ import DefaultEditorPlugins from '../buildEditorPlugins';
23
+ import { Schema } from 'prosemirror-model';
24
+ import EditorMarks from '../EditorMarks';
25
+ import EditorNodes from '../EditorNodes';
26
+
27
+ const ATTR_OBJID = 'objectId';
28
+ const ATTR_OBJMETADATA = 'objectMetaData';
29
+ /**
30
+ * LICIT properties:
31
+ * docID {string} [] Collaborative Doument ID
32
+ * collabServiceURL {string} [/collaboration-service] Collaboration Service URL
33
+ * debug {boolean} [false] To enable/disable ProseMirror Debug Tools, available only in development.
34
+ * width {string} [100%] Width of the editor.
35
+ * height {string} [100%] Height of the editor.
36
+ * readOnly {boolean} [false] To enable/disable editing mode.
37
+ * onChange {@callback} [null] Fires after each significant change.
38
+ * @param data {JSON} Modified document data.
39
+ * onReady {@callback} [null] Fires when the editor is fully ready.
40
+ * @param ref {LICIT} Rerefence of the editor.
41
+ * data {JSON} [null] Document data to be loaded into the editor.
42
+ * disabled {boolean} [false] Disable the editor.
43
+ * embedded {boolean} [false] Disable/Enable inline behaviour.
44
+ * plugins [plugins] External Plugins into the editor.
45
+ */
46
+ class Licit extends React.Component<any, any> {
47
+ _runtime: EditorRuntime;
48
+ _connector: any;
49
+ _clientID: string;
50
+ _editorView: EditorView; // This will be handy in updating document's content.
51
+ _skipSCU: boolean; // Flag to decide whether to skip shouldComponentUpdate
52
+ _defaultEditorSchema: Schema;
53
+ _defaultEditorPlugins: Array<Plugin>;
54
+ _devTools: Promise<any>;
55
+ _applyDevTools: any;
56
+
57
+ _popUp = null;
58
+
59
+ /**
60
+ * Provides access to prosemirror view.
61
+ */
62
+ get editorView(): EditorView {
63
+ return this._editorView;
64
+ }
65
+
66
+ constructor(props: any, context: any) {
67
+ super(props, context);
68
+ this.initialize(props);
69
+ }
70
+
71
+ initialize(props: any) {
72
+ this._clientID = uuid();
73
+ this._editorView = null;
74
+ this._skipSCU = true;
75
+
76
+ const noop = function () {};
77
+
78
+ // [FS] IRAD-981 2020-06-10
79
+ // Component's configurations.
80
+ // [FS] IRAD-1552 2021-08-26
81
+ // Collaboration server / client should allow string values for document identifiers.
82
+ const docID = props.docID || ''; // Empty means collaborative.
83
+ const collaborative = docID !== '';
84
+ // [FS] IRAD-1553 2021-08-26
85
+ // Configurable Collaboration Service URL.
86
+ const collabServiceURL = props.collabServiceURL || '/collaboration-service';
87
+ const debug = props.debug || false;
88
+ // Default width and height to undefined
89
+ const width = props.width || undefined;
90
+ const height = props.height || undefined;
91
+ const onChangeCB =
92
+ typeof props.onChange === 'function' ? props.onChange : noop;
93
+ const onReadyCB =
94
+ typeof props.onReady === 'function' ? props.onReady : noop;
95
+ const readOnly = props.readOnly || false;
96
+ const data = props.data || null;
97
+ const disabled = props.disabled || false;
98
+ const embedded = props.embedded || false; // [FS] IRAD-996 2020-06-30
99
+ // [FS] 2020-07-03
100
+ // Handle Image Upload from Angular App
101
+ const runtime = props.runtime || null;
102
+ const plugins = props.plugins || null;
103
+
104
+ this._defaultEditorSchema = new Schema({
105
+ nodes: EditorNodes,
106
+ marks: EditorMarks,
107
+ });
108
+ this._defaultEditorPlugins = new DefaultEditorPlugins(
109
+ this._defaultEditorSchema
110
+ ).get();
111
+
112
+ let editorState = convertFromJSON(
113
+ data,
114
+ null,
115
+ this._defaultEditorSchema,
116
+ plugins,
117
+ this._defaultEditorPlugins
118
+ );
119
+ // [FS] IRAD-1067 2020-09-19
120
+ // The editorState will return null if the doc Json is mal-formed
121
+ if (null === editorState) {
122
+ editorState = convertFromJSON(
123
+ EMPTY_DOC_JSON,
124
+ null,
125
+ this._defaultEditorSchema,
126
+ plugins,
127
+ this._defaultEditorPlugins
128
+ );
129
+ this.showAlert();
130
+ }
131
+
132
+ const setState = this.setState.bind(this);
133
+ this._connector = collaborative
134
+ ? new CollabConnector(
135
+ editorState,
136
+ setState,
137
+ {
138
+ docID,
139
+ collabServiceURL,
140
+ },
141
+ this._defaultEditorSchema,
142
+ this._defaultEditorPlugins,
143
+ // [FS] IRAD-1578 2021-09-27
144
+ this.onReady.bind(this)
145
+ )
146
+ : new SimpleConnector(editorState, setState);
147
+
148
+ // FS IRAD-989 2020-18-06
149
+ // updating properties should automatically render the changes
150
+
151
+ this.state = {
152
+ docID,
153
+ collabServiceURL,
154
+ data,
155
+ editorState,
156
+ width,
157
+ height,
158
+ readOnly,
159
+ onChangeCB,
160
+ onReadyCB,
161
+ debug,
162
+ disabled,
163
+ embedded,
164
+ runtime,
165
+ };
166
+
167
+ // FS IRAD-1040 2020-26-08
168
+ // Get the modified schema from editorstate and send it to collab server
169
+ if (this._connector.updateSchema) {
170
+ // Use known editorState to update schema.
171
+ this._connector.updateSchema(editorState.schema);
172
+ }
173
+ }
174
+
175
+ // [FS] IRAD-1578 2021-09-27
176
+ onReady(state: EditorState) {
177
+ const collabEditing = this.state.docID !== '';
178
+
179
+ if (collabEditing) {
180
+ this._editorView && this._editorView.focus();
181
+ if (this.state.onReadyCB) {
182
+ this.state.onReadyCB(this);
183
+ }
184
+ }
185
+ }
186
+
187
+ // [FS] IRAD-1067 2020-09-19
188
+ // Alert funtion to show document is corrupted
189
+ showAlert() {
190
+ const anchor = null;
191
+ this._popUp = createPopUp(AlertInfo, null, {
192
+ anchor,
193
+ position: atViewportCenter,
194
+ onClose: (val) => {
195
+ if (this._popUp) {
196
+ this._popUp = null;
197
+ }
198
+ },
199
+ });
200
+ }
201
+
202
+ resetCounters(transaction: Transform) {
203
+ for (let index = 1; index <= 10; index++) {
204
+ const counterVar = 'set-cust-style-counter-' + index;
205
+ const setCounterVal = window[counterVar];
206
+ if (setCounterVal) {
207
+ delete window[counterVar];
208
+ }
209
+ }
210
+ this.setCounterFlags(transaction, true);
211
+ }
212
+
213
+ setCounterFlags(transaction: Transform, reset: boolean) {
214
+ let modified = false;
215
+ let counterFlags = null;
216
+ const existingCFlags = transaction.doc.attrs.counterFlags;
217
+ if (reset && !existingCFlags) {
218
+ return;
219
+ }
220
+
221
+ for (let index = 1; index <= 10; index++) {
222
+ const counterVar = 'set-cust-style-counter-' + index;
223
+
224
+ const setCounterVal = window[counterVar];
225
+ if (setCounterVal) {
226
+ if (!counterFlags) {
227
+ counterFlags = {};
228
+ }
229
+ counterFlags[counterVar] = true;
230
+
231
+ if (!existingCFlags) {
232
+ modified = true;
233
+ }
234
+ }
235
+ if (!modified) {
236
+ if (existingCFlags) {
237
+ if (setCounterVal) {
238
+ modified = undefined == existingCFlags[counterVar];
239
+ } else {
240
+ modified = undefined != existingCFlags[counterVar];
241
+ }
242
+ } else {
243
+ modified = setCounterVal;
244
+ }
245
+ }
246
+ }
247
+
248
+ if (modified) {
249
+ const tr = this._editorView.state.tr.step(
250
+ new SetDocAttrStep('counterFlags', counterFlags)
251
+ );
252
+ this._editorView.dispatch(tr);
253
+ }
254
+ }
255
+
256
+ getDeletedArtifactIds() {
257
+ if (this._connector.getDeletedArtifactIds) {
258
+ this._connector.getDeletedArtifactIds(this.state.editorState.schema);
259
+ }
260
+ }
261
+
262
+ isNodeHasAttribute(node: Node, attrName: string) {
263
+ return node.attrs && node.attrs[attrName];
264
+ }
265
+
266
+ setContent = (content: any = {}): void => {
267
+ // [FS] IRAD-1571 2021-09-27
268
+ // dispatch a transaction that MUST start from the view�s current state;
269
+ const editorState = this._editorView.state;
270
+ const { doc, schema } = editorState;
271
+ let { tr } = editorState;
272
+ const document = schema.nodeFromJSON(content ? content : EMPTY_DOC_JSON);
273
+
274
+ const selection = TextSelection.create(doc, 0, doc.content.size);
275
+
276
+ tr = tr.setSelection(selection).replaceSelectionWith(document, false);
277
+ // [FS] IRAD-1092 2020-12-03
278
+ // set the value for object metadata and objectId
279
+ tr = this.isNodeHasAttribute(document, ATTR_OBJMETADATA)
280
+ ? tr.step(
281
+ new SetDocAttrStep(ATTR_OBJMETADATA, document.attrs.objectMetaData)
282
+ )
283
+ : tr;
284
+ tr = this.isNodeHasAttribute(document, ATTR_OBJID)
285
+ ? tr.step(new SetDocAttrStep(ATTR_OBJID, document.attrs.objectId))
286
+ : tr;
287
+
288
+ this._skipSCU = true;
289
+ this._editorView.dispatch(tr);
290
+ };
291
+
292
+ shouldComponentUpdate(nextProps: any, nextState: any) {
293
+ // Only interested if properties are set from outside.
294
+ if (!this._skipSCU) {
295
+ this._skipSCU = false;
296
+ let dataChanged = false;
297
+
298
+ // [FS] IRAD-1571 2021-09-27
299
+ // dispatch a transaction that MUST start from the view�s current state;
300
+ // [FS] IRAD-1589 2021-10-04
301
+ // Do a proper circular JSON comparison.
302
+ if (stringify(this.state.data) !== stringify(nextState.data)) {
303
+ const editorState = this._editorView.state;
304
+ const nextDoc = editorState.schema.nodeFromJSON(
305
+ nextState.data ? nextState.data : EMPTY_DOC_JSON
306
+ );
307
+ dataChanged = !nextDoc.eq(editorState.doc);
308
+ }
309
+
310
+ if (dataChanged) {
311
+ // data changed, so update document content
312
+ this.setContent(nextState.data);
313
+ }
314
+
315
+ if (this.state.docID !== nextState.docID) {
316
+ // Collaborative mode changed
317
+ const collabEditing = nextState.docID !== '';
318
+ const editorState = this._editorView.state;
319
+ const setState = this.setState.bind(this);
320
+ const docID = nextState.docID || '';
321
+ const collabServiceURL =
322
+ nextState.collabServiceURL || '/collaboration-service';
323
+ // create new connector
324
+ this._connector = collabEditing
325
+ ? new CollabConnector(
326
+ editorState,
327
+ setState,
328
+ {
329
+ docID,
330
+ collabServiceURL,
331
+ },
332
+ this._defaultEditorSchema,
333
+ this._defaultEditorPlugins,
334
+ // [FS] IRAD-1578 2021-09-27
335
+ this.onReady.bind(this)
336
+ )
337
+ : new SimpleConnector(editorState, setState);
338
+ }
339
+ }
340
+
341
+ return true;
342
+ }
343
+
344
+ render(): React.Element<any> {
345
+ const {
346
+ editorState,
347
+ width,
348
+ height,
349
+ readOnly,
350
+ disabled,
351
+ embedded,
352
+ runtime,
353
+ } = this.state;
354
+ // [FS] IRAD-978 2020-06-05
355
+ // Using 100vw & 100vh (100% viewport) is not ideal for a component which is expected to be a part of a page,
356
+ // so changing it to 100% width & height which will occupy the area relative to its parent.
357
+ return (
358
+ <RichTextEditor
359
+ disabled={disabled}
360
+ editorState={editorState}
361
+ embedded={embedded}
362
+ height={height}
363
+ onChange={this._onChange}
364
+ onReady={this._onReady}
365
+ readOnly={readOnly}
366
+ runtime={runtime}
367
+ width={width}
368
+ />
369
+ );
370
+ }
371
+
372
+ _onChange = (data: { state: EditorState, transaction: Transform }): void => {
373
+ const { transaction } = data;
374
+
375
+ /*
376
+ ** ProseMirror Debug Tool's Snapshot creates a new state and sets that to editor view's state.
377
+ ** This results in the connector's state as an orphan and thus transaction mismatch error.
378
+ ** To resolve check and update the connector's state to keep in sync.
379
+ */
380
+
381
+ if (this._editorView) {
382
+ const isSameState =
383
+ this._connector._editorState == this._editorView.state;
384
+ let invokeOnEdit = false;
385
+
386
+ if (!isSameState) {
387
+ this._connector._editorState = this._editorView.state;
388
+ invokeOnEdit = true;
389
+ } else {
390
+ // [FS] IRAD-1264 2021-03-19
391
+ // check if in non-collab mode.
392
+ if (!(this._connector instanceof CollabConnector)) {
393
+ invokeOnEdit = true;
394
+ }
395
+ }
396
+ if (invokeOnEdit) {
397
+ // [FS] IRAD-1236 2020-03-05
398
+ // Only need to call if there is any difference in collab mode OR always in non-collab mode.
399
+ this._connector.onEdit(transaction, this._editorView);
400
+ }
401
+
402
+ if (transaction.docChanged) {
403
+ const docJson = transaction.doc.toJSON();
404
+ let isEmpty = false;
405
+
406
+ if (docJson.content && docJson.content.length === 1) {
407
+ if (
408
+ !docJson.content[0].content ||
409
+ (docJson.content[0].content &&
410
+ docJson.content[0].content[0].text &&
411
+ '' === docJson.content[0].content[0].text.trim())
412
+ ) {
413
+ isEmpty = true;
414
+ }
415
+ }
416
+
417
+ // setCFlags is/was always the opposite of isEmpty.
418
+ if (isEmpty) {
419
+ this.resetCounters(transaction);
420
+ } else {
421
+ this.setCounterFlags(transaction, false);
422
+ }
423
+
424
+ // Changing 2nd parameter from boolean to object was not in any way
425
+ // backwards compatible. Any conditional logic placed on isEmpty was
426
+ // broken. Reverting that change, then adding view as a 3rd parameter.
427
+ this.state.onChangeCB(docJson, isEmpty, this._editorView);
428
+
429
+ this.closeOpenedPopupModels();
430
+ }
431
+ }
432
+ };
433
+ // [FS] IRAD-1173 2021-02-25
434
+ // Bug fix: Transaction mismatch error when a dialog is opened and keep typing.
435
+ closeOpenedPopupModels() {
436
+ const element = document.getElementsByClassName('czi-pop-up-element')[0];
437
+ if (element && element.parentElement) {
438
+ element.parentElement.removeChild(element);
439
+ }
440
+ }
441
+
442
+ _onReady = (editorView: EditorView): void => {
443
+ // [FS][06-APR-2020][IRAD-922]
444
+ // Showing focus in the editor.
445
+ const { state, dispatch } = editorView;
446
+ this._editorView = editorView;
447
+ const tr = state.tr;
448
+ const doc = state.doc;
449
+ const trx = tr.setSelection(TextSelection.create(doc, 0, doc.content.size));
450
+ dispatch(trx.scrollIntoView());
451
+
452
+ // [FS] IRAD-1578 2021-09-27
453
+ // In collab mode, fire onRead only after getting the response from collab server.
454
+ if (this.state.onReadyCB && this.state.docID === '') {
455
+ editorView.focus();
456
+ this.state.onReadyCB(this);
457
+ }
458
+
459
+ this.initDevTool(this.state.debug, editorView);
460
+ };
461
+
462
+ initDevTool(debug: boolean, editorView: EditorView): void {
463
+ // [FS] IRAD-1575 2021-09-27
464
+ if (debug) {
465
+ if (!this._devTools) {
466
+ this._devTools = new Promise(async (resolve, reject) => {
467
+ try {
468
+ // Method is exported as both the default and named, Using named
469
+ // for clarity and future proofing.
470
+ const { applyDevTools } = await import('prosemirror-dev-tools');
471
+ // got the pm dev tools instance.
472
+ this._applyDevTools = applyDevTools;
473
+ // Attach debug tools to current editor instance.
474
+ this._applyDevTools(editorView);
475
+ resolve(() => {
476
+ // [FS] IRAD-1571 2021-10-08
477
+ // Prosemirror Dev Tools handles as if one only instance is used in a page and
478
+ // hence handling removal here gracefully.
479
+ const place = document.querySelector(
480
+ '.'.concat('__prosemirror-dev-tools__')
481
+ );
482
+ if (place) {
483
+ ReactDOM.unmountComponentAtNode(place);
484
+ place.innerHTML = '';
485
+ }
486
+ });
487
+ } catch (error) {
488
+ reject();
489
+ }
490
+ });
491
+ }
492
+
493
+ // Attach debug tools to current editor instance.
494
+ if (this._devTools && this._applyDevTools) {
495
+ this._applyDevTools(editorView);
496
+ }
497
+ }
498
+ }
499
+
500
+ destroyDevTool(): void {
501
+ // [FS] IRAD-1569 2021-09-15
502
+ // Unmount dev tools when component is destroyed,
503
+ // so that toggle effect is not occuring when the document is retrieved each time.
504
+ if (this._devTools) {
505
+ // Call the applyDevTools method again to trigger DOM removal
506
+ // prosemirror-dev-tools has outstanding pull-requests that affect
507
+ // dom removal. this may need to be addressed once those have been merged.
508
+ this._devTools.then((removeDevTools) => removeDevTools());
509
+ }
510
+ }
511
+
512
+ componentWillUnmount(): void {
513
+ this.destroyDevTool();
514
+ }
515
+
516
+ /**
517
+ * LICIT properties:
518
+ * docID {number} [0] Collaborative Doument ID
519
+ * debug {boolean} [false] To enable/disable ProseMirror Debug Tools, available only in development.
520
+ * width {string} [100%] Width of the editor.
521
+ * height {height} [100%] Height of the editor.
522
+ * readOnly {boolean} [false] To enable/disable editing mode.
523
+ * onChange {@callback} [null] Fires after each significant change.
524
+ * @param data {JSON} Modified document data.
525
+ * onReady {@callback} [null] Fires when the editor is fully ready.
526
+ * @param ref {LICIT} Rerefence of the editor.
527
+ * data {JSON} [null] Document data to be loaded into the editor.
528
+ * disabled {boolean} [false] Disable the editor.
529
+ * embedded {boolean} [false] Disable/Enable inline behaviour.
530
+ */
531
+ setProps = (props: any): void => {
532
+ // [FS] IRAD-1571 2021-10-08
533
+ // Since the debug lies outside the editor,
534
+ // any change to debug tool must be refreshed here.
535
+ if (this.state.debug !== props.debug) {
536
+ // change in debug flag.
537
+ if (props.debug) {
538
+ this.initDevTool(true, this._editorView);
539
+ } else {
540
+ this.destroyDevTool();
541
+ }
542
+ }
543
+
544
+ if (this.state.readOnly) {
545
+ // It should be possible to load content into the editor in readonly as well.
546
+ // It should not be necessary to make the component writable any time during the process
547
+ const propsCopy = {};
548
+ this._skipSCU = true;
549
+ Object.assign(propsCopy, props);
550
+ // make writable without content change
551
+ propsCopy.readOnly = false;
552
+ delete propsCopy.data;
553
+ this.setState(propsCopy);
554
+ }
555
+ // Need to go through shouldComponentUpdate lifecycle here, when updated from outside,
556
+ // so that content is modified gracefully using transaction so that undo/redo works too.
557
+ this._skipSCU = false;
558
+ this.setState(props);
559
+ };
560
+ }
561
+
562
+ export default Licit;