@dxos/react-ui-editor 0.3.11-main.668f0ff → 0.3.11-main.674a7f9

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 (226) hide show
  1. package/dist/lib/browser/index.mjs +2031 -1641
  2. package/dist/lib/browser/index.mjs.map +4 -4
  3. package/dist/lib/browser/meta.json +1 -1
  4. package/dist/types/src/components/TextEditor/MarkdownEditor.stories.d.ts +14 -14
  5. package/dist/types/src/components/TextEditor/MarkdownEditor.stories.d.ts.map +1 -1
  6. package/dist/types/src/components/TextEditor/TextEditor.d.ts +20 -17
  7. package/dist/types/src/components/TextEditor/TextEditor.d.ts.map +1 -1
  8. package/dist/types/src/components/TextEditor/TextEditor.stories.d.ts +6 -3
  9. package/dist/types/src/components/TextEditor/TextEditor.stories.d.ts.map +1 -1
  10. package/dist/types/src/{hooks/automerge → components/TextEditor}/automerge.stories.d.ts +6 -1
  11. package/dist/types/src/components/TextEditor/automerge.stories.d.ts.map +1 -0
  12. package/dist/types/src/components/TextEditor/comments.stories.d.ts +26 -0
  13. package/dist/types/src/components/TextEditor/comments.stories.d.ts.map +1 -0
  14. package/dist/types/src/components/TextEditor/index.d.ts +0 -2
  15. package/dist/types/src/components/TextEditor/index.d.ts.map +1 -1
  16. package/dist/types/src/extensions/autocomplete.d.ts.map +1 -0
  17. package/dist/types/src/extensions/automerge/automerge.d.ts +9 -0
  18. package/dist/types/src/extensions/automerge/automerge.d.ts.map +1 -0
  19. package/dist/types/src/extensions/automerge/cursor.d.ts +5 -0
  20. package/dist/types/src/extensions/automerge/cursor.d.ts.map +1 -0
  21. package/dist/types/src/extensions/automerge/defs.d.ts +24 -0
  22. package/dist/types/src/extensions/automerge/defs.d.ts.map +1 -0
  23. package/dist/types/src/extensions/automerge/index.d.ts +3 -0
  24. package/dist/types/src/extensions/automerge/index.d.ts.map +1 -0
  25. package/dist/types/src/extensions/automerge/semaphore.d.ts +14 -0
  26. package/dist/types/src/extensions/automerge/semaphore.d.ts.map +1 -0
  27. package/dist/types/src/extensions/automerge/update-automerge.d.ts +5 -0
  28. package/dist/types/src/extensions/automerge/update-automerge.d.ts.map +1 -0
  29. package/dist/types/src/extensions/automerge/update-codemirror.d.ts.map +1 -0
  30. package/dist/types/src/extensions/awareness.d.ts +46 -0
  31. package/dist/types/src/extensions/awareness.d.ts.map +1 -0
  32. package/dist/types/src/extensions/basic.d.ts +8 -0
  33. package/dist/types/src/extensions/basic.d.ts.map +1 -0
  34. package/dist/types/src/extensions/blast.d.ts.map +1 -0
  35. package/dist/types/src/{components/TextEditor/extensions → extensions}/comments.d.ts +33 -18
  36. package/dist/types/src/extensions/comments.d.ts.map +1 -0
  37. package/dist/types/src/extensions/cursor.d.ts +25 -0
  38. package/dist/types/src/extensions/cursor.d.ts.map +1 -0
  39. package/dist/types/src/extensions/index.d.ts +13 -0
  40. package/dist/types/src/extensions/index.d.ts.map +1 -0
  41. package/dist/types/src/extensions/listener.d.ts.map +1 -0
  42. package/dist/types/src/{components/TextEditor/extensions → extensions}/markdown/bundle.d.ts +2 -5
  43. package/dist/types/src/extensions/markdown/bundle.d.ts.map +1 -0
  44. package/dist/types/src/extensions/markdown/code.d.ts.map +1 -0
  45. package/dist/types/src/extensions/markdown/heading.d.ts +6 -0
  46. package/dist/types/src/extensions/markdown/heading.d.ts.map +1 -0
  47. package/dist/types/src/extensions/markdown/highlight.d.ts.map +1 -0
  48. package/dist/types/src/extensions/markdown/hr.d.ts.map +1 -0
  49. package/dist/types/src/extensions/markdown/image.d.ts.map +1 -0
  50. package/dist/types/src/extensions/markdown/index.d.ts +10 -0
  51. package/dist/types/src/extensions/markdown/index.d.ts.map +1 -0
  52. package/dist/types/src/{components/TextEditor/extensions → extensions/markdown}/link.d.ts +1 -0
  53. package/dist/types/src/extensions/markdown/link.d.ts.map +1 -0
  54. package/dist/types/src/extensions/markdown/table.d.ts.map +1 -0
  55. package/dist/types/src/extensions/markdown/tasklist.d.ts.map +1 -0
  56. package/dist/types/src/extensions/mention.d.ts.map +1 -0
  57. package/dist/types/src/extensions/outliner.d.ts +4 -0
  58. package/dist/types/src/extensions/outliner.d.ts.map +1 -0
  59. package/dist/types/src/extensions/typewriter.d.ts.map +1 -0
  60. package/dist/types/src/hooks/awareness-provider.d.ts +31 -0
  61. package/dist/types/src/hooks/awareness-provider.d.ts.map +1 -0
  62. package/dist/types/src/hooks/defs.d.ts +25 -0
  63. package/dist/types/src/hooks/defs.d.ts.map +1 -0
  64. package/dist/types/src/hooks/index.d.ts +3 -1
  65. package/dist/types/src/hooks/index.d.ts.map +1 -1
  66. package/dist/types/src/hooks/useTextEditor.d.ts +17 -0
  67. package/dist/types/src/hooks/useTextEditor.d.ts.map +1 -0
  68. package/dist/types/src/hooks/useTextModel.d.ts +2 -31
  69. package/dist/types/src/hooks/useTextModel.d.ts.map +1 -1
  70. package/dist/types/src/index.d.ts +5 -0
  71. package/dist/types/src/index.d.ts.map +1 -1
  72. package/dist/types/src/styles/cursors.d.ts.map +1 -0
  73. package/dist/types/src/styles/index.d.ts +1 -0
  74. package/dist/types/src/styles/index.d.ts.map +1 -1
  75. package/dist/types/src/styles/markdown.d.ts.map +1 -1
  76. package/dist/types/src/styles/tokens.d.ts +1 -0
  77. package/dist/types/src/styles/tokens.d.ts.map +1 -1
  78. package/dist/types/src/{components/TextEditor/themes → themes}/default.d.ts +1 -1
  79. package/dist/types/src/themes/default.d.ts.map +1 -0
  80. package/dist/types/src/themes/index.d.ts.map +1 -0
  81. package/dist/types/src/util.d.ts +7 -0
  82. package/dist/types/src/util.d.ts.map +1 -0
  83. package/package.json +33 -34
  84. package/src/components/TextEditor/MarkdownEditor.stories.tsx +88 -91
  85. package/src/components/TextEditor/TextEditor.stories.tsx +13 -34
  86. package/src/components/TextEditor/TextEditor.tsx +123 -94
  87. package/src/{hooks/automerge → components/TextEditor}/automerge.stories.tsx +66 -6
  88. package/src/components/TextEditor/comments.stories.tsx +357 -0
  89. package/src/components/TextEditor/index.ts +0 -3
  90. package/src/{components/TextEditor/extensions → extensions}/autocomplete.ts +23 -19
  91. package/src/extensions/automerge/automerge.ts +88 -0
  92. package/src/extensions/automerge/cursor.ts +52 -0
  93. package/src/extensions/automerge/defs.ts +41 -0
  94. package/src/extensions/automerge/index.ts +6 -0
  95. package/src/{hooks → extensions}/automerge/semaphore.ts +34 -29
  96. package/src/{hooks → extensions}/automerge/update-automerge.ts +5 -6
  97. package/src/{hooks → extensions}/automerge/update-codemirror.ts +13 -5
  98. package/src/extensions/awareness.ts +310 -0
  99. package/src/extensions/basic.ts +37 -0
  100. package/src/extensions/comments.ts +428 -0
  101. package/src/extensions/cursor.ts +50 -0
  102. package/src/{components/TextEditor/extensions → extensions}/index.ts +4 -8
  103. package/src/extensions/listener.ts +35 -0
  104. package/src/{components/TextEditor/extensions → extensions}/markdown/bundle.ts +18 -24
  105. package/src/{components/TextEditor/extensions → extensions/markdown}/code.ts +28 -23
  106. package/src/extensions/markdown/heading.ts +60 -0
  107. package/src/{components/TextEditor/extensions → extensions}/markdown/highlight.ts +4 -13
  108. package/src/extensions/markdown/hr.ts +72 -0
  109. package/src/extensions/markdown/image.ts +87 -0
  110. package/src/extensions/markdown/index.ts +13 -0
  111. package/src/{components/TextEditor/extensions → extensions/markdown}/link.ts +116 -62
  112. package/src/{components/TextEditor/extensions → extensions/markdown}/table.ts +10 -4
  113. package/src/extensions/markdown/tasklist.ts +111 -0
  114. package/src/{components/TextEditor/extensions → extensions}/mention.ts +9 -2
  115. package/src/extensions/outliner.ts +12 -0
  116. package/src/{components/TextEditor/extensions → extensions}/typewriter.ts +1 -1
  117. package/src/hooks/awareness-provider.ts +124 -0
  118. package/src/hooks/defs.ts +42 -0
  119. package/src/hooks/index.ts +4 -1
  120. package/src/hooks/useTextEditor.ts +29 -0
  121. package/src/hooks/useTextModel.ts +30 -115
  122. package/src/index.ts +5 -0
  123. package/src/styles/index.ts +1 -0
  124. package/src/styles/markdown.ts +0 -2
  125. package/src/styles/tokens.ts +3 -0
  126. package/src/{components/TextEditor/themes → themes}/default.ts +52 -79
  127. package/src/util.ts +41 -0
  128. package/dist/types/src/components/TextEditor/codemirror.stories.d.ts +0 -12
  129. package/dist/types/src/components/TextEditor/codemirror.stories.d.ts.map +0 -1
  130. package/dist/types/src/components/TextEditor/extensions/autocomplete.d.ts.map +0 -1
  131. package/dist/types/src/components/TextEditor/extensions/basic.d.ts +0 -9
  132. package/dist/types/src/components/TextEditor/extensions/basic.d.ts.map +0 -1
  133. package/dist/types/src/components/TextEditor/extensions/blast.d.ts.map +0 -1
  134. package/dist/types/src/components/TextEditor/extensions/code.d.ts.map +0 -1
  135. package/dist/types/src/components/TextEditor/extensions/comments.d.ts.map +0 -1
  136. package/dist/types/src/components/TextEditor/extensions/hr.d.ts.map +0 -1
  137. package/dist/types/src/components/TextEditor/extensions/image.d.ts.map +0 -1
  138. package/dist/types/src/components/TextEditor/extensions/index.d.ts +0 -17
  139. package/dist/types/src/components/TextEditor/extensions/index.d.ts.map +0 -1
  140. package/dist/types/src/components/TextEditor/extensions/link.d.ts.map +0 -1
  141. package/dist/types/src/components/TextEditor/extensions/listener.d.ts.map +0 -1
  142. package/dist/types/src/components/TextEditor/extensions/markdown/bundle.d.ts.map +0 -1
  143. package/dist/types/src/components/TextEditor/extensions/markdown/highlight.d.ts.map +0 -1
  144. package/dist/types/src/components/TextEditor/extensions/markdown/index.d.ts +0 -3
  145. package/dist/types/src/components/TextEditor/extensions/markdown/index.d.ts.map +0 -1
  146. package/dist/types/src/components/TextEditor/extensions/mention.d.ts.map +0 -1
  147. package/dist/types/src/components/TextEditor/extensions/mermaid.d.ts +0 -3
  148. package/dist/types/src/components/TextEditor/extensions/mermaid.d.ts.map +0 -1
  149. package/dist/types/src/components/TextEditor/extensions/table.d.ts.map +0 -1
  150. package/dist/types/src/components/TextEditor/extensions/tasklist.d.ts.map +0 -1
  151. package/dist/types/src/components/TextEditor/extensions/tooltip.d.ts +0 -12
  152. package/dist/types/src/components/TextEditor/extensions/tooltip.d.ts.map +0 -1
  153. package/dist/types/src/components/TextEditor/extensions/typewriter.d.ts.map +0 -1
  154. package/dist/types/src/components/TextEditor/extensions/util.d.ts +0 -5
  155. package/dist/types/src/components/TextEditor/extensions/util.d.ts.map +0 -1
  156. package/dist/types/src/components/TextEditor/themes/default.d.ts.map +0 -1
  157. package/dist/types/src/components/TextEditor/themes/index.d.ts.map +0 -1
  158. package/dist/types/src/hooks/automerge/automerge.stories.d.ts.map +0 -1
  159. package/dist/types/src/hooks/automerge/handle.d.ts +0 -9
  160. package/dist/types/src/hooks/automerge/handle.d.ts.map +0 -1
  161. package/dist/types/src/hooks/automerge/index.d.ts +0 -3
  162. package/dist/types/src/hooks/automerge/index.d.ts.map +0 -1
  163. package/dist/types/src/hooks/automerge/plugin.d.ts +0 -26
  164. package/dist/types/src/hooks/automerge/plugin.d.ts.map +0 -1
  165. package/dist/types/src/hooks/automerge/semaphore.d.ts +0 -19
  166. package/dist/types/src/hooks/automerge/semaphore.d.ts.map +0 -1
  167. package/dist/types/src/hooks/automerge/update-automerge.d.ts +0 -6
  168. package/dist/types/src/hooks/automerge/update-automerge.d.ts.map +0 -1
  169. package/dist/types/src/hooks/automerge/update-codemirror.d.ts.map +0 -1
  170. package/dist/types/src/hooks/yjs/cursors.d.ts.map +0 -1
  171. package/dist/types/src/hooks/yjs/index.d.ts +0 -3
  172. package/dist/types/src/hooks/yjs/index.d.ts.map +0 -1
  173. package/dist/types/src/hooks/yjs/space-provider.d.ts +0 -27
  174. package/dist/types/src/hooks/yjs/space-provider.d.ts.map +0 -1
  175. package/dist/types/src/hooks/yjs/yjs.stories.d.ts +0 -12
  176. package/dist/types/src/hooks/yjs/yjs.stories.d.ts.map +0 -1
  177. package/dist/types/src/hooks/yjs/yjs.test.d.ts +0 -2
  178. package/dist/types/src/hooks/yjs/yjs.test.d.ts.map +0 -1
  179. package/dist/types/src/testing/index.d.ts +0 -3
  180. package/dist/types/src/testing/index.d.ts.map +0 -1
  181. package/dist/types/src/testing/proto/gen/schema.d.ts +0 -15
  182. package/dist/types/src/testing/proto/gen/schema.d.ts.map +0 -1
  183. package/dist/types/src/testing/proto/index.d.ts +0 -2
  184. package/dist/types/src/testing/proto/index.d.ts.map +0 -1
  185. package/dist/types/src/testing/replicator.d.ts +0 -45
  186. package/dist/types/src/testing/replicator.d.ts.map +0 -1
  187. package/src/components/TextEditor/codemirror.stories.ts +0 -114
  188. package/src/components/TextEditor/extensions/basic.ts +0 -32
  189. package/src/components/TextEditor/extensions/comments.ts +0 -389
  190. package/src/components/TextEditor/extensions/hr.ts +0 -74
  191. package/src/components/TextEditor/extensions/image.ts +0 -69
  192. package/src/components/TextEditor/extensions/listener.ts +0 -39
  193. package/src/components/TextEditor/extensions/markdown/index.ts +0 -6
  194. package/src/components/TextEditor/extensions/mermaid.ts +0 -11
  195. package/src/components/TextEditor/extensions/tasklist.ts +0 -121
  196. package/src/components/TextEditor/extensions/tooltip.ts +0 -61
  197. package/src/components/TextEditor/extensions/util.ts +0 -18
  198. package/src/hooks/automerge/handle.ts +0 -14
  199. package/src/hooks/automerge/index.ts +0 -6
  200. package/src/hooks/automerge/plugin.ts +0 -134
  201. package/src/hooks/yjs/index.ts +0 -6
  202. package/src/hooks/yjs/space-provider.ts +0 -126
  203. package/src/hooks/yjs/yjs.stories.tsx +0 -56
  204. package/src/hooks/yjs/yjs.test.ts +0 -59
  205. package/src/testing/index.ts +0 -6
  206. package/src/testing/proto/gen/schema.ts +0 -49
  207. package/src/testing/proto/index.ts +0 -5
  208. package/src/testing/proto/schema.proto +0 -15
  209. package/src/testing/replicator.ts +0 -189
  210. /package/dist/types/src/{components/TextEditor/extensions → extensions}/autocomplete.d.ts +0 -0
  211. /package/dist/types/src/{hooks → extensions}/automerge/update-codemirror.d.ts +0 -0
  212. /package/dist/types/src/{components/TextEditor/extensions → extensions}/blast.d.ts +0 -0
  213. /package/dist/types/src/{components/TextEditor/extensions → extensions}/listener.d.ts +0 -0
  214. /package/dist/types/src/{components/TextEditor/extensions → extensions/markdown}/code.d.ts +0 -0
  215. /package/dist/types/src/{components/TextEditor/extensions → extensions}/markdown/highlight.d.ts +0 -0
  216. /package/dist/types/src/{components/TextEditor/extensions → extensions/markdown}/hr.d.ts +0 -0
  217. /package/dist/types/src/{components/TextEditor/extensions → extensions/markdown}/image.d.ts +0 -0
  218. /package/dist/types/src/{components/TextEditor/extensions → extensions/markdown}/table.d.ts +0 -0
  219. /package/dist/types/src/{components/TextEditor/extensions → extensions/markdown}/tasklist.d.ts +0 -0
  220. /package/dist/types/src/{components/TextEditor/extensions → extensions}/mention.d.ts +0 -0
  221. /package/dist/types/src/{components/TextEditor/extensions → extensions}/typewriter.d.ts +0 -0
  222. /package/dist/types/src/{hooks/yjs → styles}/cursors.d.ts +0 -0
  223. /package/dist/types/src/{components/TextEditor/themes → themes}/index.d.ts +0 -0
  224. /package/src/{components/TextEditor/extensions → extensions}/blast.ts +0 -0
  225. /package/src/{hooks/yjs → styles}/cursors.ts +0 -0
  226. /package/src/{components/TextEditor/themes → themes}/index.ts +0 -0
@@ -11,24 +11,23 @@ import {
11
11
  Decoration,
12
12
  type BlockInfo,
13
13
  } from '@codemirror/view';
14
- import get from 'lodash.get';
15
14
 
16
15
  import { mx } from '@dxos/react-ui-theme';
17
16
 
18
- import { tokens } from '../../../styles';
17
+ import { getToken } from '../../styles';
19
18
 
20
19
  const CODE_REGEX = /```[\s\S]*?```/gs;
21
20
 
22
21
  // TODO(burdon): Reconcile with theme.
23
22
  const styles = EditorView.baseTheme({
24
23
  '& .cm-codeblock': {
25
- fontFamily: get(tokens, 'fontFamily.mono', []).join(','),
24
+ fontFamily: getToken('fontFamily.mono', []).join(','),
26
25
  },
27
26
  '&light [aria-readonly="true"] .cm-codeblock': {
28
- background: get(tokens, 'extend.colors.neutral.50'),
27
+ background: getToken('extend.colors.neutral.50'),
29
28
  },
30
29
  '&dark [aria-readonly="true"] .cm-codeblock': {
31
- background: get(tokens, 'extend.colors.neutral.850'),
30
+ background: getToken('extend.colors.neutral.850'),
32
31
  },
33
32
  '& [aria-readonly="true"] .cm-codeblock': {
34
33
  display: 'block',
@@ -54,22 +53,20 @@ const getLineRange = (lines: BlockInfo[], from: number, to: number) => {
54
53
  };
55
54
 
56
55
  export const code = () => {
57
- const getDecorations = (view: EditorView) => {
56
+ const buildDecorations = (view: EditorView) => {
58
57
  const decorations: Range<Decoration>[] = [];
59
- if (view.state.readOnly) {
60
- const text = view.state.doc.sliceString(0);
61
- const matches = text.matchAll(CODE_REGEX);
62
- const blocks = view.viewportLineBlocks;
63
- for (const match of matches) {
64
- const range = getLineRange(blocks, match.index!, match.index! + match[0].length);
65
- for (let i = range[0]; i <= range[1]; i++) {
66
- const block = blocks[i];
67
- decorations.push(
68
- Decoration.line({
69
- class: mx('cm-codeblock', i === range[0] && 'cm-codeblock-first', i === range[1] && 'cm-codeblock-last'),
70
- }).range(block.from),
71
- );
72
- }
58
+ const text = view.state.doc.sliceString(0);
59
+ const matches = text.matchAll(CODE_REGEX);
60
+ const blocks = view.viewportLineBlocks;
61
+ for (const match of matches) {
62
+ const range = getLineRange(blocks, match.index!, match.index! + match[0].length);
63
+ for (let i = range[0]; i <= range[1]; i++) {
64
+ const block = blocks[i];
65
+ decorations.push(
66
+ Decoration.line({
67
+ class: mx('cm-codeblock', i === range[0] && 'cm-codeblock-first', i === range[1] && 'cm-codeblock-last'),
68
+ }).range(block.from),
69
+ );
73
70
  }
74
71
  }
75
72
 
@@ -79,14 +76,22 @@ export const code = () => {
79
76
  return [
80
77
  ViewPlugin.fromClass(
81
78
  class {
79
+ hasFocus = false;
82
80
  decorations: DecorationSet;
83
81
  constructor(view: EditorView) {
84
- this.decorations = getDecorations(view);
82
+ this.decorations = buildDecorations(view);
85
83
  }
86
84
 
87
85
  update(update: ViewUpdate) {
88
- if (update.docChanged || update.viewportChanged) {
89
- this.decorations = getDecorations(update.view);
86
+ if (
87
+ // TODO(burdon): Generalize for other extensions.
88
+ this.hasFocus !== update.view.hasFocus ||
89
+ update.startState.readOnly !== update.view.state.readOnly ||
90
+ update.docChanged ||
91
+ update.viewportChanged
92
+ ) {
93
+ this.hasFocus = update.view.hasFocus;
94
+ this.decorations = buildDecorations(update.view);
90
95
  }
91
96
  }
92
97
  },
@@ -0,0 +1,60 @@
1
+ //
2
+ // Copyright 2023 DXOS.org
3
+ //
4
+
5
+ import { syntaxTree } from '@codemirror/language';
6
+ import { RangeSetBuilder } from '@codemirror/state';
7
+ import { Decoration, type DecorationSet, type EditorView, ViewPlugin, type ViewUpdate } from '@codemirror/view';
8
+
9
+ const buildDecorations = (view: EditorView): DecorationSet => {
10
+ const builder = new RangeSetBuilder<Decoration>();
11
+ const { state } = view;
12
+ const cursor = state.selection.main.head;
13
+
14
+ for (const { from, to } of view.visibleRanges) {
15
+ syntaxTree(state).iterate({
16
+ enter: (node) => {
17
+ switch (node.name) {
18
+ case 'ATXHeading1':
19
+ case 'ATXHeading2':
20
+ case 'ATXHeading3':
21
+ case 'ATXHeading4':
22
+ case 'ATXHeading5':
23
+ case 'ATXHeading6': {
24
+ const mark = node.node.getChild('HeaderMark');
25
+
26
+ // Check if cursor is inside text.
27
+ if (mark && (cursor < node.from || cursor > node.to)) {
28
+ builder.add(mark.from, mark.to + 1, Decoration.replace({}));
29
+ }
30
+ }
31
+ }
32
+ },
33
+ from,
34
+ to,
35
+ });
36
+ }
37
+
38
+ return builder.finish();
39
+ };
40
+
41
+ export const heading = () => {
42
+ return [
43
+ ViewPlugin.fromClass(
44
+ class {
45
+ decorations: DecorationSet;
46
+
47
+ constructor(view: EditorView) {
48
+ this.decorations = buildDecorations(view);
49
+ }
50
+
51
+ update(update: ViewUpdate) {
52
+ this.decorations = buildDecorations(update.view);
53
+ }
54
+ },
55
+ {
56
+ decorations: (v) => v.decorations,
57
+ },
58
+ ),
59
+ ];
60
+ };
@@ -6,20 +6,19 @@ import { markdownLanguage } from '@codemirror/lang-markdown';
6
6
  import { HighlightStyle } from '@codemirror/language';
7
7
  import { tags, styleTags, Tag } from '@lezer/highlight';
8
8
  import { type MarkdownConfig, Table } from '@lezer/markdown';
9
- import get from 'lodash.get';
10
9
 
11
10
  import {
12
11
  blockquote,
13
12
  bold,
14
13
  code,
15
14
  codeMark,
15
+ getToken,
16
16
  heading,
17
17
  inlineUrl,
18
18
  italic,
19
19
  mark,
20
20
  strikethrough,
21
- tokens,
22
- } from '../../../../styles';
21
+ } from '../../styles';
23
22
 
24
23
  /**
25
24
  * Custom tags defined and processed by the GFM lezer extension.
@@ -32,7 +31,6 @@ export const markdownTags = {
32
31
  CodeText: Tag.define(),
33
32
  EmphasisMark: Tag.define(),
34
33
  HeaderMark: Tag.define(),
35
- // HorizontalRule: Tag.define(),
36
34
  InlineCode: Tag.define(),
37
35
  LinkLabel: Tag.define(),
38
36
  LinkReference: Tag.define(),
@@ -178,13 +176,6 @@ export const markdownHighlightStyle = (readonly?: boolean) => {
178
176
  class: blockquote,
179
177
  },
180
178
 
181
- // TODO(burdon): Replace with extension.
182
- // {
183
- // tag: [markdownTags.HorizontalRule],
184
- // class: mx(horizontalRule, readonly && '-indent-[100rem]'),
185
- // },
186
-
187
- // TODO(burdon): Only if being edited.
188
179
  {
189
180
  tag: [markdownTags.TableCell],
190
181
  class: 'font-mono',
@@ -193,12 +184,12 @@ export const markdownHighlightStyle = (readonly?: boolean) => {
193
184
  // Main content, paragraphs, etc.
194
185
  // {
195
186
  // tag: [tags.content],
196
- // fontFamily: get(tokens, 'fontFamily.body', []).join(','),
187
+ // fontFamily: getToken('fontFamily.body', []).join(','),
197
188
  // },
198
189
  ],
199
190
  {
200
191
  scope: markdownLanguage,
201
- all: { fontFamily: get(tokens, 'fontFamily.body', []).join(',') },
192
+ all: { fontFamily: getToken('fontFamily.body', []).join(',') },
202
193
  },
203
194
  );
204
195
  };
@@ -0,0 +1,72 @@
1
+ //
2
+ // Copyright 2023 DXOS.org
3
+ //
4
+
5
+ import { syntaxTree } from '@codemirror/language';
6
+ import { RangeSetBuilder } from '@codemirror/state';
7
+ import { Decoration, type DecorationSet, EditorView, ViewPlugin, type ViewUpdate, WidgetType } from '@codemirror/view';
8
+
9
+ import { getToken } from '../../styles';
10
+
11
+ // TODO(burdon): Reconcile with theme.
12
+ const styles = EditorView.baseTheme({
13
+ '& .cm-hr': {
14
+ // Note that block-level decorations should not have vertical margins,
15
+ borderTop: `1px solid ${getToken('extend.colors.neutral.200')}`,
16
+ },
17
+ });
18
+
19
+ class HorizontalRuleWidget extends WidgetType {
20
+ override toDOM() {
21
+ const el = document.createElement('div');
22
+ el.className = 'cm-hr';
23
+ return el;
24
+ }
25
+ }
26
+
27
+ const decoration = Decoration.replace({ widget: new HorizontalRuleWidget() });
28
+
29
+ const buildDecorations = (view: EditorView): DecorationSet => {
30
+ const builder = new RangeSetBuilder<Decoration>();
31
+ const { state } = view;
32
+ const cursor = state.selection.main.head;
33
+
34
+ for (const { from, to } of view.visibleRanges) {
35
+ syntaxTree(state).iterate({
36
+ enter: (node) => {
37
+ if (node.name === 'HorizontalRule') {
38
+ // Check if cursor is inside text.
39
+ if (cursor <= node.from || cursor >= node.to) {
40
+ builder.add(node.from, node.to, decoration);
41
+ }
42
+ }
43
+ },
44
+ from,
45
+ to,
46
+ });
47
+ }
48
+
49
+ return builder.finish();
50
+ };
51
+
52
+ export const hr = () => {
53
+ return [
54
+ styles,
55
+ ViewPlugin.fromClass(
56
+ class {
57
+ decorations: DecorationSet;
58
+
59
+ constructor(view: EditorView) {
60
+ this.decorations = buildDecorations(view);
61
+ }
62
+
63
+ update(update: ViewUpdate) {
64
+ this.decorations = buildDecorations(update.view);
65
+ }
66
+ },
67
+ {
68
+ decorations: (v) => v.decorations,
69
+ },
70
+ ),
71
+ ];
72
+ };
@@ -0,0 +1,87 @@
1
+ //
2
+ // Copyright 2023 DXOS.org
3
+ //
4
+
5
+ import { syntaxTree } from '@codemirror/language';
6
+ import { type EditorState, type Extension, StateField, type Transaction, type Range } from '@codemirror/state';
7
+ import { Decoration, type DecorationSet, EditorView, WidgetType } from '@codemirror/view';
8
+
9
+ export type ImageOptions = {};
10
+
11
+ export const image = (options: ImageOptions = {}): Extension => {
12
+ return StateField.define<DecorationSet>({
13
+ create: (state) => {
14
+ return Decoration.set(buildDecorations(0, state.doc.length, state));
15
+ },
16
+ update: (value: DecorationSet, tr: Transaction) => {
17
+ if (!tr.docChanged && !tr.selection) {
18
+ return value;
19
+ }
20
+ // Find range of changes and cursor changes.
21
+ const cursor = tr.state.selection.main.head;
22
+ const oldCursor = tr.changes.mapPos(tr.startState.selection.main.head);
23
+ let from = Math.min(cursor, oldCursor);
24
+ let to = Math.max(cursor, oldCursor);
25
+ tr.changes.iterChangedRanges((fromA, toA, fromB, toB) => {
26
+ from = Math.min(from, fromB);
27
+ to = Math.max(to, toB);
28
+ });
29
+ // Expand to cover lines
30
+ from = tr.state.doc.lineAt(from).from;
31
+ to = tr.state.doc.lineAt(to).to;
32
+ return value.map(tr.changes).update({
33
+ filterFrom: from,
34
+ filterTo: to,
35
+ filter: () => false,
36
+ add: buildDecorations(from, to, tr.state),
37
+ });
38
+ },
39
+ provide: (field) => EditorView.decorations.from(field),
40
+ });
41
+ };
42
+
43
+ const buildDecorations = (from: number, to: number, state: EditorState) => {
44
+ const decorations: Range<Decoration>[] = [];
45
+ const cursor = state.selection.main.head;
46
+
47
+ syntaxTree(state).iterate({
48
+ enter: (node) => {
49
+ if (node.name === 'Image') {
50
+ const urlNode = node.node.getChild('URL');
51
+ if (urlNode) {
52
+ const hide = state.readOnly || cursor < node.from || cursor > node.to;
53
+ const url = state.sliceDoc(urlNode.from, urlNode.to);
54
+ decorations.push(
55
+ Decoration.replace({
56
+ block: true, // Prevent cursor from entering.
57
+ widget: new ImageWidget(url),
58
+ }).range(hide ? node.from : node.to, node.to),
59
+ );
60
+ }
61
+ }
62
+ },
63
+ from,
64
+ to,
65
+ });
66
+
67
+ return decorations;
68
+ };
69
+
70
+ class ImageWidget extends WidgetType {
71
+ constructor(readonly _url: string) {
72
+ super();
73
+ }
74
+
75
+ override eq(other: this) {
76
+ return this._url === (other as any as ImageWidget)._url;
77
+ }
78
+
79
+ override toDOM(view: EditorView) {
80
+ const img = document.createElement('img');
81
+ img.setAttribute('src', this._url);
82
+ img.setAttribute('class', 'cm-image');
83
+ // Images are hidden until successfully loaded to avoid flickering effects.
84
+ img.onload = () => img.classList.add('cm-loaded-image');
85
+ return img;
86
+ }
87
+ }
@@ -0,0 +1,13 @@
1
+ //
2
+ // Copyright 2023 DXOS.org
3
+ //
4
+
5
+ export * from './bundle';
6
+ export * from './code';
7
+ export * from './heading';
8
+ export * from './highlight';
9
+ export * from './hr';
10
+ export * from './image';
11
+ export * from './link';
12
+ export * from './table';
13
+ export * from './tasklist';
@@ -4,15 +4,19 @@
4
4
  //
5
5
 
6
6
  import { syntaxTree } from '@codemirror/language';
7
+ import { type Extension, RangeSetBuilder } from '@codemirror/state';
7
8
  import {
8
- type EditorState,
9
- type Extension,
10
- type RangeSet,
11
- RangeSetBuilder,
12
- StateField,
13
- type Transaction,
14
- } from '@codemirror/state';
15
- import { Decoration, EditorView, WidgetType } from '@codemirror/view';
9
+ hoverTooltip,
10
+ Decoration,
11
+ type DecorationSet,
12
+ type EditorView,
13
+ ViewPlugin,
14
+ type ViewUpdate,
15
+ WidgetType,
16
+ } from '@codemirror/view';
17
+ import { type SyntaxNode } from '@lezer/common';
18
+
19
+ import { tooltipContent } from '@dxos/react-ui-theme';
16
20
 
17
21
  // Adapted from:
18
22
  // https://codemirror.net/try/?c=aW1wb3J0IHsgYmFzaWNTZXR1cCwgRWRpdG9yVmlldyB9IGZyb20gImNvZGVtaXJyb3IiCmltcG9ydCB7IG1hcmtkb3duIH0gZnJvbSAiQGNvZGVtaXJyb3IvbGFuZy1tYXJrZG93biIKaW1wb3J0IHsgc3ludGF4VHJlZSB9IGZyb20gIkBjb2RlbWlycm9yL2xhbmd1YWdlIjsKaW1wb3J0IHsgRWRpdG9yU3RhdGUsIFJhbmdlU2V0QnVpbGRlciwgU3RhdGVGaWVsZCB9IGZyb20gIkBjb2RlbWlycm9yL3N0YXRlIjsKaW1wb3J0IHsgRGVjb3JhdGlvbiwgV2lkZ2V0VHlwZSB9IGZyb20gIkBjb2RlbWlycm9yL3ZpZXciOwoKY2xhc3MgTGluayBleHRlbmRzIFdpZGdldFR5cGUgewogIGNvbnN0cnVjdG9yKHRleHQsIHVybCkgewogICAgc3VwZXIoKQogICAgdGhpcy50ZXh0ID0gdGV4dAogICAgdGhpcy51cmwgPSB1cmwKICB9CiAgZXEob3RoZXIpIHsgcmV0dXJuIHRoaXMudGV4dCA9PSBvdGhlci50ZXh0ICYmIHRoaXMudXJsID09IG90aGVyLnVybCB9CiAgdG9ET00oKSB7CiAgICBsZXQgbGluayA9IGRvY3VtZW50LmNyZWF0ZUVsZW1lbnQoImEiKQogICAgbGluay50ZXh0Q29udGVudCA9IHRoaXMudGV4dAogICAgbGluay5ocmVmID0gdGhpcy51cmwKICAgIHJldHVybiBsaW5rOwogIH0KfQoKbGV0IGRlY29yYXRpb25zRmllbGQgPSBTdGF0ZUZpZWxkLmRlZmluZSh7CiAgY3JlYXRlKCkgewogICAgcmV0dXJuIERlY29yYXRpb24ubm9uZTsKICB9LAogIHVwZGF0ZShfLCB0cikgewogICAgY29uc3QgYnVpbGRlciA9IG5ldyBSYW5nZVNldEJ1aWxkZXIoKTsKICAgIGxldCBjdXJzb3IgPSB0ci5zdGF0ZS5zZWxlY3Rpb24ubWFpbi5oZWFkOwogICAgc3ludGF4VHJlZSh0ci5zdGF0ZSkuaXRlcmF0ZSh7CiAgICAgIGVudGVyOiAobm9kZSkgPT4gewogICAgICAgIGlmICgoY3Vyc29yIDwgbm9kZS5mcm9tIHx8IGN1cnNvciA+IG5vZGUudG8pICYmIG5vZGUubmFtZSA9PSAiTGluayIpIHsKICAgICAgICAgIGxldCBtYXJrcyA9IG5vZGUubm9kZS5nZXRDaGlsZHJlbigiTGlua01hcmsiKTsKICAgICAgICAgIGxldCB0ZXh0ID0gbWFya3MubGVuZ3RoID49IDIgPyB0ci5zdGF0ZS5zbGljZURvYyhtYXJrc1swXS50bywgbWFya3NbMV0uZnJvbSkgOiAiIgoKICAgICAgICAgIGxldCB1cmxOb2RlID0gbm9kZS5ub2RlLmdldENoaWxkKCJVUkwiKTsKICAgICAgICAgIGxldCB1cmwgPSB1cmxOb2RlID8gdHIuc3RhdGUuc2xpY2VEb2ModXJsTm9kZS5mcm9tLCB1cmxOb2RlLnRvKSA6ICIiCiAgICAgICAgICBidWlsZGVyLmFkZChub2RlLmZyb20sIG5vZGUudG8sIERlY29yYXRpb24ucmVwbGFjZSh7CiAgICAgICAgICAgIHdpZGdldDogbmV3IExpbmsodGV4dCwgdXJsKSwKICAgICAgICAgIH0pLAogICAgICAgICAgICAgICAgICAgICApOwogICAgICAgICAgcmV0dXJuIGZhbHNlOwogICAgICAgIH0KICAgICAgICByZXR1cm4gdHJ1ZTsKICAgICAgfSwKICAgIH0pOwogICAgcmV0dXJuIGJ1aWxkZXIuZmluaXNoKCk7CiAgfSwKICBwcm92aWRlOiAoZikgPT4gRWRpdG9yVmlldy5kZWNvcmF0aW9ucy5mcm9tKGYpLAp9KTsKCmxldCB2aWV3ID0gbmV3IEVkaXRvclZpZXcoewogIGRvYzogIiMgSGVsbG8gV29ybGRcblxuW1Rlc3RdKGh0dHBzOi8vZXhhbXBsZS5jb20pXG5cblxuIiwKICBleHRlbnNpb25zOiBbZGVjb3JhdGlvbnNGaWVsZCwgbWFya2Rvd24oKV0sCiAgcGFyZW50OiBkb2N1bWVudC5ib2R5LAp9KTsKCnZpZXcuZm9jdXMoKTs=
@@ -20,6 +24,7 @@ import { Decoration, EditorView, WidgetType } from '@codemirror/view';
20
24
 
21
25
  export type LinkOptions = {
22
26
  link?: boolean;
27
+ onHover?: (el: Element, url: string) => void;
23
28
  onRender?: (el: Element, url: string) => void;
24
29
  };
25
30
 
@@ -28,27 +33,71 @@ export type LinkOptions = {
28
33
  * https://codemirror.net/docs/ref/#state.StateField
29
34
  */
30
35
  export const link = (options: LinkOptions = {}): Extension => {
31
- return StateField.define<RangeSet<any>>({
32
- create: (state) => update(state, options),
33
- update: (_: RangeSet<any>, tr: Transaction) => update(tr.state, options),
34
- provide: (field) => EditorView.decorations.from(field),
35
- });
36
+ const extensions: Extension[] = [
37
+ ViewPlugin.fromClass(
38
+ class {
39
+ decorations: DecorationSet;
40
+
41
+ constructor(view: EditorView) {
42
+ this.decorations = buildDecorations(view, options);
43
+ }
44
+
45
+ update(update: ViewUpdate) {
46
+ if (update.docChanged || update.viewportChanged || update.selectionSet) {
47
+ this.decorations = buildDecorations(update.view, options);
48
+ }
49
+ }
50
+ },
51
+ {
52
+ decorations: (v) => v.decorations,
53
+ },
54
+ ),
55
+ ];
56
+
57
+ if (options.onHover) {
58
+ extensions.push(
59
+ // https://codemirror.net/examples/tooltip
60
+ // https://codemirror.net/docs/ref/#view.hoverTooltip
61
+ // https://github.com/codemirror/view/blob/main/src/tooltip.ts
62
+ hoverTooltip((view, pos, side) => {
63
+ const syntax = syntaxTree(view.state).resolveInner(pos, side);
64
+ let link = null;
65
+ for (let i = 0, node: SyntaxNode | null = syntax; !link && node && i < 5; node = node.parent, i++) {
66
+ link = node.name === 'Link' ? node : null;
67
+ }
68
+ const url = link && link.getChild('URL');
69
+ if (!url || !link) {
70
+ return null;
71
+ }
72
+ const urlText = view.state.sliceDoc(url.from, url.to);
73
+ return {
74
+ pos: link.from,
75
+ end: link.to,
76
+ above: true,
77
+ create: () => {
78
+ const el = document.createElement('div');
79
+ el.className = tooltipContent({}, 'pli-2 plb-1');
80
+ options.onHover!(el, urlText);
81
+ return { dom: el, offset: { x: 0, y: 4 } };
82
+ },
83
+ };
84
+ }),
85
+ );
86
+ }
87
+
88
+ return extensions;
36
89
  };
37
90
 
38
91
  class LinkButton extends WidgetType {
39
- constructor(
40
- private readonly _pos: number,
41
- private readonly _url: string,
42
- private readonly _onAttach: LinkOptions['onRender'],
43
- ) {
92
+ constructor(private readonly _url: string, private readonly _onAttach: LinkOptions['onRender']) {
44
93
  super();
45
94
  }
46
95
 
47
- override eq(other: LinkButton) {
48
- return this._pos === other._pos && this._url === other._url;
96
+ override eq(other: this) {
97
+ return this._url === other._url;
49
98
  }
50
99
 
51
- toDOM(view: EditorView) {
100
+ override toDOM(view: EditorView) {
52
101
  const el = document.createElement('span');
53
102
  this._onAttach!(el, this._url);
54
103
  return el;
@@ -56,15 +105,15 @@ class LinkButton extends WidgetType {
56
105
  }
57
106
 
58
107
  class LinkText extends WidgetType {
59
- constructor(private readonly _pos: number, private readonly _text: string, private readonly _url?: string) {
108
+ constructor(private readonly _text: string, private readonly _url?: string) {
60
109
  super();
61
110
  }
62
111
 
63
- override eq(other: LinkText) {
64
- return this._pos === other._pos && this._url === other._url;
112
+ override eq(other: this) {
113
+ return this._url === other._url;
65
114
  }
66
115
 
67
- toDOM(view: EditorView) {
116
+ override toDOM(view: EditorView) {
68
117
  const link = document.createElement('a');
69
118
  link.setAttribute('class', 'cm-link');
70
119
  link.textContent = this._text;
@@ -76,7 +125,7 @@ class LinkText extends WidgetType {
76
125
  link.onclick = () => {
77
126
  view.dispatch({
78
127
  selection: {
79
- anchor: this._pos,
128
+ anchor: view.posAtDOM(link),
80
129
  },
81
130
  });
82
131
  };
@@ -91,46 +140,51 @@ class LinkText extends WidgetType {
91
140
  * possibly overlapping ranges in such a way that they can efficiently be mapped though document changes.
92
141
  * https://codemirror.net/docs/ref/#state
93
142
  */
94
- const update = (state: EditorState, options: LinkOptions) => {
95
- const builder = new RangeSetBuilder();
143
+ const buildDecorations = (view: EditorView, options: LinkOptions): DecorationSet => {
144
+ const builder = new RangeSetBuilder<Decoration>();
145
+ const { state } = view;
96
146
  const cursor = state.selection.main.head;
97
147
 
98
- syntaxTree(state).iterate({
99
- enter: (node) => {
100
- // Check if cursor is inside text.
101
- if (node.name === 'Link') {
102
- const marks = node.node.getChildren('LinkMark');
103
- const text = marks.length >= 2 ? state.sliceDoc(marks[0].to, marks[1].from) : '';
104
- const urlNode = node.node.getChild('URL');
105
- const url = urlNode ? state.sliceDoc(urlNode.from, urlNode.to) : '';
106
- if (!url) {
107
- return false;
108
- }
109
-
110
- if (state.readOnly || cursor < node.from || cursor > node.to) {
111
- builder.add(
112
- node.from,
113
- node.to,
114
- Decoration.replace({
115
- widget: new LinkText(node.from, text, options.link ? url : undefined),
116
- }),
117
- );
118
- }
148
+ for (const { from, to } of view.visibleRanges) {
149
+ syntaxTree(state).iterate({
150
+ enter: (node) => {
151
+ // Check if cursor is inside text.
152
+ if (node.name === 'Link') {
153
+ const marks = node.node.getChildren('LinkMark');
154
+ const text = marks.length >= 2 ? state.sliceDoc(marks[0].to, marks[1].from) : '';
155
+ const urlNode = node.node.getChild('URL');
156
+ const url = urlNode ? state.sliceDoc(urlNode.from, urlNode.to) : '';
157
+ if (!url) {
158
+ return false;
159
+ }
160
+
161
+ if (!view.hasFocus || state.readOnly || cursor < node.from || cursor > node.to) {
162
+ builder.add(
163
+ node.from,
164
+ node.to,
165
+ Decoration.replace({
166
+ widget: new LinkText(text, options.link ? url : undefined),
167
+ }),
168
+ );
169
+ }
170
+
171
+ if (options.onRender) {
172
+ builder.add(
173
+ node.to,
174
+ node.to,
175
+ Decoration.replace({
176
+ widget: new LinkButton(url, options.onRender),
177
+ }),
178
+ );
179
+ }
119
180
 
120
- if (options.onRender) {
121
- builder.add(
122
- node.to,
123
- node.to,
124
- Decoration.replace({
125
- widget: new LinkButton(node.from, url, options.onRender),
126
- }),
127
- );
181
+ return false;
128
182
  }
129
-
130
- return false;
131
- }
132
- },
133
- });
183
+ },
184
+ from,
185
+ to,
186
+ });
187
+ }
134
188
 
135
189
  return builder.finish();
136
190
  };
@@ -81,7 +81,6 @@ const update = (state: EditorState, options: TableOptions) => {
81
81
  table.from,
82
82
  table.to,
83
83
  Decoration.replace({
84
- block: true,
85
84
  widget: new TableWidget(table),
86
85
  }),
87
86
  );
@@ -98,11 +97,14 @@ class TableWidget extends WidgetType {
98
97
  super();
99
98
  }
100
99
 
101
- override eq(other: WidgetType) {
102
- return this._table.from === (other as any as TableWidget)?._table?.from;
100
+ override eq(other: this) {
101
+ return (
102
+ this._table.header?.join() === other._table.header?.join() &&
103
+ this._table.rows?.join() === other._table.rows?.join()
104
+ );
103
105
  }
104
106
 
105
- toDOM(view: EditorView) {
107
+ override toDOM(view: EditorView) {
106
108
  const table = document.createElement('table');
107
109
 
108
110
  {
@@ -129,4 +131,8 @@ class TableWidget extends WidgetType {
129
131
 
130
132
  return table;
131
133
  }
134
+
135
+ override ignoreEvent(e: Event) {
136
+ return !/^mouse/.test(e.type);
137
+ }
132
138
  }