@dxos/react-ui-editor 0.3.11-main.8a9dd1e → 0.3.11-main.8b0e08e

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 (147) hide show
  1. package/dist/lib/browser/index.mjs +1036 -1057
  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 +13 -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 +14 -6
  7. package/dist/types/src/components/TextEditor/TextEditor.d.ts.map +1 -1
  8. package/dist/types/src/components/TextEditor/TextEditor.stories.d.ts +1 -1
  9. package/dist/types/src/components/TextEditor/comments.stories.d.ts +1 -1
  10. package/dist/types/src/components/TextEditor/comments.stories.d.ts.map +1 -1
  11. package/dist/types/src/extensions/autocomplete.d.ts.map +1 -1
  12. package/dist/types/src/extensions/automerge/automerge.d.ts.map +1 -1
  13. package/dist/types/src/extensions/automerge/defs.d.ts +7 -9
  14. package/dist/types/src/extensions/automerge/defs.d.ts.map +1 -1
  15. package/dist/types/src/extensions/automerge/index.d.ts +0 -1
  16. package/dist/types/src/extensions/automerge/index.d.ts.map +1 -1
  17. package/dist/types/src/extensions/automerge/semaphore.d.ts +7 -12
  18. package/dist/types/src/extensions/automerge/semaphore.d.ts.map +1 -1
  19. package/dist/types/src/extensions/automerge/update-automerge.d.ts +2 -2
  20. package/dist/types/src/extensions/awareness.d.ts +1 -1
  21. package/dist/types/src/extensions/awareness.d.ts.map +1 -1
  22. package/dist/types/src/extensions/basic.d.ts +4 -5
  23. package/dist/types/src/extensions/basic.d.ts.map +1 -1
  24. package/dist/types/src/extensions/comments.d.ts +27 -18
  25. package/dist/types/src/extensions/comments.d.ts.map +1 -1
  26. package/dist/types/src/extensions/cursor.d.ts +3 -3
  27. package/dist/types/src/extensions/cursor.d.ts.map +1 -1
  28. package/dist/types/src/extensions/index.d.ts +1 -7
  29. package/dist/types/src/extensions/index.d.ts.map +1 -1
  30. package/dist/types/src/extensions/markdown/bundle.d.ts +3 -6
  31. package/dist/types/src/extensions/markdown/bundle.d.ts.map +1 -1
  32. package/dist/types/src/extensions/markdown/code.d.ts.map +1 -0
  33. package/dist/types/src/extensions/markdown/heading.d.ts +6 -0
  34. package/dist/types/src/extensions/markdown/heading.d.ts.map +1 -0
  35. package/dist/types/src/extensions/markdown/highlight.d.ts.map +1 -1
  36. package/dist/types/src/extensions/markdown/hr.d.ts.map +1 -0
  37. package/dist/types/src/extensions/markdown/image.d.ts.map +1 -0
  38. package/dist/types/src/extensions/markdown/index.d.ts +7 -0
  39. package/dist/types/src/extensions/markdown/index.d.ts.map +1 -1
  40. package/dist/types/src/extensions/markdown/link.d.ts.map +1 -0
  41. package/dist/types/src/extensions/markdown/table.d.ts.map +1 -0
  42. package/dist/types/src/extensions/markdown/tasklist.d.ts +3 -0
  43. package/dist/types/src/extensions/markdown/tasklist.d.ts.map +1 -0
  44. package/dist/types/src/extensions/mention.d.ts.map +1 -1
  45. package/dist/types/src/extensions/outliner.d.ts +4 -0
  46. package/dist/types/src/extensions/outliner.d.ts.map +1 -0
  47. package/dist/types/src/hooks/awareness-provider.d.ts +7 -4
  48. package/dist/types/src/hooks/awareness-provider.d.ts.map +1 -1
  49. package/dist/types/src/hooks/defs.d.ts +25 -0
  50. package/dist/types/src/hooks/defs.d.ts.map +1 -0
  51. package/dist/types/src/hooks/index.d.ts +2 -2
  52. package/dist/types/src/hooks/index.d.ts.map +1 -1
  53. package/dist/types/src/hooks/useTextEditor.d.ts +17 -0
  54. package/dist/types/src/hooks/useTextEditor.d.ts.map +1 -0
  55. package/dist/types/src/hooks/useTextModel.d.ts +2 -27
  56. package/dist/types/src/hooks/useTextModel.d.ts.map +1 -1
  57. package/dist/types/src/styles/markdown.d.ts +2 -2
  58. package/dist/types/src/styles/markdown.d.ts.map +1 -1
  59. package/dist/types/src/themes/default.d.ts.map +1 -1
  60. package/dist/types/src/util.d.ts +2 -0
  61. package/dist/types/src/util.d.ts.map +1 -1
  62. package/package.json +32 -35
  63. package/src/components/TextEditor/MarkdownEditor.stories.tsx +69 -72
  64. package/src/components/TextEditor/TextEditor.tsx +95 -70
  65. package/src/components/TextEditor/comments.stories.tsx +104 -76
  66. package/src/extensions/autocomplete.ts +6 -3
  67. package/src/extensions/automerge/automerge.ts +39 -45
  68. package/src/extensions/automerge/defs.ts +10 -31
  69. package/src/extensions/automerge/index.ts +0 -1
  70. package/src/extensions/automerge/semaphore.ts +23 -20
  71. package/src/extensions/automerge/update-automerge.ts +2 -2
  72. package/src/extensions/awareness.ts +15 -14
  73. package/src/extensions/basic.ts +22 -17
  74. package/src/extensions/comments.ts +199 -161
  75. package/src/extensions/cursor.ts +7 -3
  76. package/src/extensions/index.ts +1 -7
  77. package/src/extensions/markdown/bundle.ts +20 -30
  78. package/src/extensions/markdown/code.ts +127 -0
  79. package/src/extensions/markdown/heading.ts +59 -0
  80. package/src/extensions/markdown/highlight.ts +9 -15
  81. package/src/extensions/markdown/hr.ts +71 -0
  82. package/src/extensions/markdown/index.ts +7 -0
  83. package/src/extensions/{link.ts → markdown/link.ts} +4 -5
  84. package/src/extensions/{tasklist.ts → markdown/tasklist.ts} +48 -33
  85. package/src/extensions/mention.ts +9 -2
  86. package/src/extensions/outliner.ts +12 -0
  87. package/src/hooks/awareness-provider.ts +24 -20
  88. package/src/hooks/defs.ts +42 -0
  89. package/src/hooks/index.ts +3 -2
  90. package/src/hooks/useTextEditor.ts +29 -0
  91. package/src/hooks/useTextModel.ts +47 -56
  92. package/src/styles/markdown.ts +9 -10
  93. package/src/themes/default.ts +0 -2
  94. package/src/util.ts +26 -3
  95. package/dist/types/src/components/TextEditor/codemirror.stories.d.ts +0 -12
  96. package/dist/types/src/components/TextEditor/codemirror.stories.d.ts.map +0 -1
  97. package/dist/types/src/components/TextEditor/yjs.stories.d.ts +0 -12
  98. package/dist/types/src/components/TextEditor/yjs.stories.d.ts.map +0 -1
  99. package/dist/types/src/extensions/code.d.ts.map +0 -1
  100. package/dist/types/src/extensions/hr.d.ts.map +0 -1
  101. package/dist/types/src/extensions/image.d.ts.map +0 -1
  102. package/dist/types/src/extensions/link.d.ts.map +0 -1
  103. package/dist/types/src/extensions/table.d.ts.map +0 -1
  104. package/dist/types/src/extensions/tasklist.d.ts +0 -7
  105. package/dist/types/src/extensions/tasklist.d.ts.map +0 -1
  106. package/dist/types/src/extensions/yjs/cursor.d.ts +0 -4
  107. package/dist/types/src/extensions/yjs/cursor.d.ts.map +0 -1
  108. package/dist/types/src/extensions/yjs/index.d.ts +0 -2
  109. package/dist/types/src/extensions/yjs/index.d.ts.map +0 -1
  110. package/dist/types/src/extensions/yjs/yjs.d.ts +0 -4
  111. package/dist/types/src/extensions/yjs/yjs.d.ts.map +0 -1
  112. package/dist/types/src/extensions/yjs/yjs.test.d.ts +0 -2
  113. package/dist/types/src/extensions/yjs/yjs.test.d.ts.map +0 -1
  114. package/dist/types/src/hooks/automerge.d.ts +0 -3
  115. package/dist/types/src/hooks/automerge.d.ts.map +0 -1
  116. package/dist/types/src/hooks/yjs.d.ts +0 -27
  117. package/dist/types/src/hooks/yjs.d.ts.map +0 -1
  118. package/dist/types/src/testing/index.d.ts +0 -3
  119. package/dist/types/src/testing/index.d.ts.map +0 -1
  120. package/dist/types/src/testing/proto/gen/schema.d.ts +0 -15
  121. package/dist/types/src/testing/proto/gen/schema.d.ts.map +0 -1
  122. package/dist/types/src/testing/proto/index.d.ts +0 -2
  123. package/dist/types/src/testing/proto/index.d.ts.map +0 -1
  124. package/dist/types/src/testing/replicator.d.ts +0 -45
  125. package/dist/types/src/testing/replicator.d.ts.map +0 -1
  126. package/src/components/TextEditor/codemirror.stories.ts +0 -115
  127. package/src/components/TextEditor/yjs.stories.tsx +0 -56
  128. package/src/extensions/code.ts +0 -106
  129. package/src/extensions/hr.ts +0 -73
  130. package/src/extensions/yjs/cursor.ts +0 -22
  131. package/src/extensions/yjs/index.ts +0 -5
  132. package/src/extensions/yjs/yjs.test.ts +0 -35
  133. package/src/extensions/yjs/yjs.ts +0 -16
  134. package/src/hooks/automerge.ts +0 -52
  135. package/src/hooks/yjs.ts +0 -156
  136. package/src/testing/index.ts +0 -6
  137. package/src/testing/proto/gen/schema.ts +0 -49
  138. package/src/testing/proto/index.ts +0 -5
  139. package/src/testing/proto/schema.proto +0 -15
  140. package/src/testing/replicator.ts +0 -184
  141. /package/dist/types/src/extensions/{code.d.ts → markdown/code.d.ts} +0 -0
  142. /package/dist/types/src/extensions/{hr.d.ts → markdown/hr.d.ts} +0 -0
  143. /package/dist/types/src/extensions/{image.d.ts → markdown/image.d.ts} +0 -0
  144. /package/dist/types/src/extensions/{link.d.ts → markdown/link.d.ts} +0 -0
  145. /package/dist/types/src/extensions/{table.d.ts → markdown/table.d.ts} +0 -0
  146. /package/src/extensions/{image.ts → markdown/image.ts} +0 -0
  147. /package/src/extensions/{table.ts → markdown/table.ts} +0 -0
@@ -2,7 +2,7 @@
2
2
  // Copyright 2024 DXOS.org
3
3
  //
4
4
 
5
- import { Facet } from '@codemirror/state';
5
+ import { type EditorState, Facet } from '@codemirror/state';
6
6
 
7
7
  import type { Range } from '../hooks';
8
8
 
@@ -31,13 +31,17 @@ export class Cursor {
31
31
  combine: (providers) => providers[0] ?? defaultCursorConverter,
32
32
  });
33
33
 
34
- static readonly getCursorFromRange = (cursorConverter: CursorConverter, range: Range) => {
34
+ static readonly getCursorFromRange = (state: EditorState, range: Range) => {
35
+ const cursorConverter = state.facet(Cursor.converter);
36
+
35
37
  const from = cursorConverter.toCursor(range.from);
36
38
  const to = cursorConverter.toCursor(range.to, -1);
37
39
  return [from, to].join(':');
38
40
  };
39
41
 
40
- static readonly getRangeFromCursor = (cursorConverter: CursorConverter, cursor: string) => {
42
+ static readonly getRangeFromCursor = (state: EditorState, cursor: string) => {
43
+ const cursorConverter = state.facet(Cursor.converter);
44
+
41
45
  const parts = cursor.split(':');
42
46
  const from = cursorConverter.fromCursor(parts[0]);
43
47
  const to = cursorConverter.fromCursor(parts[1]);
@@ -7,16 +7,10 @@ export * from './automerge';
7
7
  export * from './awareness';
8
8
  export * from './basic';
9
9
  export * from './blast';
10
- export * from './code';
11
10
  export * from './comments';
12
11
  export * from './cursor';
13
- export * from './hr';
14
- export * from './image';
15
- export * from './link';
16
12
  export * from './listener';
17
13
  export * from './markdown';
18
14
  export * from './mention';
19
- export * from './table';
20
- export * from './tasklist';
15
+ export * from './outliner';
21
16
  export * from './typewriter';
22
- export * from './yjs';
@@ -23,34 +23,26 @@ import {
23
23
  import type { ThemeMode } from '@dxos/react-ui';
24
24
 
25
25
  import { markdownHighlightStyle, markdownTagsExtensions } from './highlight';
26
+ import { type TextEditorProps } from '../../components';
26
27
 
27
28
  export type MarkdownBundleOptions = {
28
- readonly?: boolean;
29
29
  themeMode?: ThemeMode;
30
- placeholder?: string;
31
- };
30
+ } & Pick<TextEditorProps, 'placeholder'>;
32
31
 
33
32
  /**
34
33
  * Markdown bundle.
35
34
  * Refs:
36
- * https://github.com/codemirror/basic-setup
37
- * https://github.com/codemirror/basic-setup/blob/main/src/codemirror.ts#L50
38
35
  * https://codemirror.net/docs/community
39
36
  * https://codemirror.net/docs/ref/#codemirror.basicSetup
40
37
  */
41
38
  // TODO(burdon): Add Composer here: https://codemirror.net/docs/community
42
- export const markdownBundle = ({
43
- readonly,
44
- themeMode,
45
- placeholder: _placeholder,
46
- }: MarkdownBundleOptions): Extension[] => {
39
+ export const markdownBundle = ({ themeMode, placeholder: _placeholder }: MarkdownBundleOptions): Extension[] => {
47
40
  return [
48
41
  EditorState.allowMultipleSelections.of(true),
49
42
  EditorState.tabSize.of(2),
50
43
  EditorView.lineWrapping,
51
44
 
52
- customKeymap(),
53
-
45
+ // https://github.com/codemirror/basic-setup
54
46
  bracketMatching(),
55
47
  closeBrackets(),
56
48
  crosshairCursor(),
@@ -59,7 +51,7 @@ export const markdownBundle = ({
59
51
  highlightActiveLine(),
60
52
  history(),
61
53
  indentOnInput(),
62
- _placeholder && placeholder(_placeholder),
54
+ _placeholder ? placeholder(_placeholder) : [],
63
55
 
64
56
  // Main extension.
65
57
  // https://github.com/codemirror/lang-markdown
@@ -86,21 +78,19 @@ export const markdownBundle = ({
86
78
  themeMode === 'dark' ? syntaxHighlighting(oneDarkHighlightStyle) : syntaxHighlighting(defaultHighlightStyle),
87
79
 
88
80
  // Custom styles.
89
- syntaxHighlighting(markdownHighlightStyle(readonly)),
90
- ].filter(Boolean) as Extension[];
91
- };
81
+ syntaxHighlighting(markdownHighlightStyle()),
92
82
 
93
- // https://codemirror.net/docs/ref/#view.keymap
94
- const customKeymap = () =>
95
- keymap.of([
96
- // https://codemirror.net/docs/ref/#commands.indentWithTab
97
- indentWithTab,
98
- // https://codemirror.net/docs/ref/#commands.standardKeymap
99
- ...standardKeymap,
100
- // https://codemirror.net/docs/ref/#commands.historyKeymap
101
- ...historyKeymap,
102
- // https://codemirror.net/docs/ref/#autocomplete.closeBracketsKeymap
103
- ...closeBracketsKeymap,
104
- // https://codemirror.net/docs/ref/#search.searchKeymap
105
- ...searchKeymap,
106
- ]);
83
+ keymap.of([
84
+ // https://codemirror.net/docs/ref/#commands.indentWithTab
85
+ indentWithTab,
86
+ // https://codemirror.net/docs/ref/#autocomplete.closeBracketsKeymap
87
+ ...closeBracketsKeymap,
88
+ // https://codemirror.net/docs/ref/#commands.historyKeymap
89
+ ...historyKeymap,
90
+ // https://codemirror.net/docs/ref/#search.searchKeymap
91
+ ...searchKeymap,
92
+ // https://codemirror.net/docs/ref/#commands.standardKeymap
93
+ ...standardKeymap,
94
+ ]),
95
+ ];
96
+ };
@@ -0,0 +1,127 @@
1
+ //
2
+ // Copyright 2023 DXOS.org
3
+ //
4
+
5
+ import { syntaxTree } from '@codemirror/language';
6
+ import { RangeSetBuilder } from '@codemirror/state';
7
+ import {
8
+ ViewPlugin,
9
+ type DecorationSet,
10
+ EditorView,
11
+ type ViewUpdate,
12
+ Decoration,
13
+ type BlockInfo,
14
+ WidgetType,
15
+ } from '@codemirror/view';
16
+
17
+ import { mx } from '@dxos/react-ui-theme';
18
+
19
+ import { getToken } from '../../styles';
20
+
21
+ // TODO(burdon): Reconcile with theme.
22
+ // [aria-readonly="true"]
23
+ const styles = EditorView.baseTheme({
24
+ '& .cm-code': {
25
+ paddingInline: '1rem !important',
26
+ fontFamily: getToken('fontFamily.mono', []).join(','),
27
+ },
28
+ '& .cm-codeblock': {
29
+ display: 'inline-block',
30
+ width: '100%',
31
+ },
32
+ '&light .cm-codeblock, &light .cm-codeblock.cm-activeLine': {
33
+ background: getToken('extend.colors.neutral.25'),
34
+ },
35
+ '&dark .cm-codeblock, &dark .cm-codeblock.cm-activeLine': {
36
+ background: getToken('extend.colors.neutral.850'),
37
+ },
38
+ '& .cm-codeblock-first': {
39
+ borderTopLeftRadius: '.5rem',
40
+ borderTopRightRadius: '.5rem',
41
+ },
42
+ '& .cm-codeblock-last': {
43
+ borderBottomLeftRadius: '.5rem',
44
+ borderBottomRightRadius: '.5rem',
45
+ },
46
+ });
47
+
48
+ // TODO(burdon): Start from EditorView.lineBlockAt(pos).
49
+ const getLineRange = (lines: BlockInfo[], from: number, to: number) => {
50
+ const start = lines.findIndex((line) => line.from >= from);
51
+ const end = lines.findIndex((line) => line.to >= to);
52
+ return [start, end];
53
+ };
54
+
55
+ class LineWidget extends WidgetType {
56
+ constructor(private readonly _className: string) {
57
+ super();
58
+ }
59
+
60
+ override toDOM() {
61
+ const el = document.createElement('span');
62
+ el.innerHTML = '&nbsp;';
63
+ el.className = mx('cm-code cm-codeblock', this._className);
64
+ return el;
65
+ }
66
+ }
67
+
68
+ const top = new LineWidget('cm-codeblock-first');
69
+ const bottom = new LineWidget('cm-codeblock-last');
70
+
71
+ const buildDecorations = (view: EditorView): DecorationSet => {
72
+ const builder = new RangeSetBuilder<Decoration>();
73
+ const { state } = view;
74
+ const blocks = view.viewportLineBlocks;
75
+ const cursor = state.selection.main.head;
76
+
77
+ // TODO(burdon): Add copy to clipboard widget.
78
+ for (const { from, to } of view.visibleRanges) {
79
+ syntaxTree(state).iterate({
80
+ enter: (node) => {
81
+ if (node.name === 'FencedCode') {
82
+ const edit = !view.state.readOnly && cursor >= node.from && cursor <= node.to;
83
+ const range = getLineRange(blocks, node.from, node.to);
84
+ for (let i = range[0]; i <= range[1]; i++) {
85
+ const block = blocks[i];
86
+ if (!edit && (i === range[0] || i === range[1])) {
87
+ builder.add(block.from, block.to, Decoration.replace({ widget: i === range[0] ? top : bottom }));
88
+ } else {
89
+ builder.add(
90
+ block.from,
91
+ block.from,
92
+ Decoration.line({
93
+ class: mx('cm-code cm-codeblock'),
94
+ }),
95
+ );
96
+ }
97
+ }
98
+ }
99
+ },
100
+ from,
101
+ to,
102
+ });
103
+ }
104
+
105
+ return builder.finish();
106
+ };
107
+
108
+ export const code = () => {
109
+ return [
110
+ ViewPlugin.fromClass(
111
+ class {
112
+ decorations: DecorationSet;
113
+ constructor(view: EditorView) {
114
+ this.decorations = buildDecorations(view);
115
+ }
116
+
117
+ update(update: ViewUpdate) {
118
+ this.decorations = buildDecorations(update.view);
119
+ }
120
+ },
121
+ {
122
+ decorations: (value) => value.decorations,
123
+ },
124
+ ),
125
+ styles,
126
+ ];
127
+ };
@@ -0,0 +1,59 @@
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
+ if (mark) {
26
+ if (view.state.readOnly || cursor < node.from || cursor > node.to) {
27
+ builder.add(mark.from, mark.to + 1, Decoration.replace({}));
28
+ }
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
+ constructor(view: EditorView) {
47
+ this.decorations = buildDecorations(view);
48
+ }
49
+
50
+ update(update: ViewUpdate) {
51
+ this.decorations = buildDecorations(update.view);
52
+ }
53
+ },
54
+ {
55
+ decorations: (value) => value.decorations,
56
+ },
57
+ ),
58
+ ];
59
+ };
@@ -128,13 +128,13 @@ export const markdownHighlightStyle = (readonly?: boolean) => {
128
128
  // Markdown marks.
129
129
  {
130
130
  tag: [markdownTags.CodeMark, markdownTags.HeaderMark, markdownTags.QuoteMark, markdownTags.EmphasisMark],
131
- class: readonly ? 'hidden' : mark,
131
+ class: mark,
132
132
  },
133
133
 
134
134
  // E.g., code block language (after ```).
135
135
  {
136
136
  tag: [tags.function(tags.variableName), tags.labelName],
137
- class: readonly ? 'hidden' : codeMark,
137
+ class: codeMark,
138
138
  },
139
139
 
140
140
  {
@@ -143,12 +143,12 @@ export const markdownHighlightStyle = (readonly?: boolean) => {
143
143
  },
144
144
 
145
145
  // Headings.
146
- { tag: tags.heading1, class: heading(1, readonly) },
147
- { tag: tags.heading2, class: heading(2, readonly) },
148
- { tag: tags.heading3, class: heading(3, readonly) },
149
- { tag: tags.heading4, class: heading(4, readonly) },
150
- { tag: tags.heading5, class: heading(5, readonly) },
151
- { tag: tags.heading6, class: heading(6, readonly) },
146
+ { tag: tags.heading1, class: heading(1) },
147
+ { tag: tags.heading2, class: heading(2) },
148
+ { tag: tags.heading3, class: heading(3) },
149
+ { tag: tags.heading4, class: heading(4) },
150
+ { tag: tags.heading5, class: heading(5) },
151
+ { tag: tags.heading6, class: heading(6) },
152
152
 
153
153
  // Emphasis.
154
154
  { tag: tags.emphasis, class: italic },
@@ -165,7 +165,7 @@ export const markdownHighlightStyle = (readonly?: boolean) => {
165
165
  // However, since `codeLanguages` is also defined, the `lezer` will not parse fenced code blocks,
166
166
  // when a language is specified. In this case, the syntax highlighting extensions will colorize
167
167
  // the code, but all other CSS properties will be inherited.
168
- // IMPORTANT: Therefore, the fenced code block will use the base editor font.
168
+ // IMPORTANT: Therefore, the fenced code block will use the base editor font unless changed by an extension.
169
169
  {
170
170
  tag: [markdownTags.CodeText, markdownTags.InlineCode],
171
171
  class: code,
@@ -180,12 +180,6 @@ export const markdownHighlightStyle = (readonly?: boolean) => {
180
180
  tag: [markdownTags.TableCell],
181
181
  class: 'font-mono',
182
182
  },
183
-
184
- // Main content, paragraphs, etc.
185
- // {
186
- // tag: [tags.content],
187
- // fontFamily: getToken('fontFamily.body', []).join(','),
188
- // },
189
183
  ],
190
184
  {
191
185
  scope: markdownLanguage,
@@ -0,0 +1,71 @@
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
+ ViewPlugin.fromClass(
55
+ class {
56
+ decorations: DecorationSet;
57
+ constructor(view: EditorView) {
58
+ this.decorations = buildDecorations(view);
59
+ }
60
+
61
+ update(update: ViewUpdate) {
62
+ this.decorations = buildDecorations(update.view);
63
+ }
64
+ },
65
+ {
66
+ decorations: (value) => value.decorations,
67
+ },
68
+ ),
69
+ styles,
70
+ ];
71
+ };
@@ -3,4 +3,11 @@
3
3
  //
4
4
 
5
5
  export * from './bundle';
6
+ export * from './code';
7
+ export * from './heading';
6
8
  export * from './highlight';
9
+ export * from './hr';
10
+ export * from './image';
11
+ export * from './link';
12
+ export * from './table';
13
+ export * from './tasklist';
@@ -6,13 +6,13 @@
6
6
  import { syntaxTree } from '@codemirror/language';
7
7
  import { type Extension, RangeSetBuilder } from '@codemirror/state';
8
8
  import {
9
+ hoverTooltip,
9
10
  Decoration,
11
+ type DecorationSet,
10
12
  type EditorView,
11
- WidgetType,
12
- hoverTooltip,
13
13
  ViewPlugin,
14
14
  type ViewUpdate,
15
- type DecorationSet,
15
+ WidgetType,
16
16
  } from '@codemirror/view';
17
17
  import { type SyntaxNode } from '@lezer/common';
18
18
 
@@ -37,7 +37,6 @@ export const link = (options: LinkOptions = {}): Extension => {
37
37
  ViewPlugin.fromClass(
38
38
  class {
39
39
  decorations: DecorationSet;
40
-
41
40
  constructor(view: EditorView) {
42
41
  this.decorations = buildDecorations(view, options);
43
42
  }
@@ -49,7 +48,7 @@ export const link = (options: LinkOptions = {}): Extension => {
49
48
  }
50
49
  },
51
50
  {
52
- decorations: (v) => v.decorations,
51
+ decorations: (value) => value.decorations,
53
52
  },
54
53
  ),
55
54
  ];
@@ -6,6 +6,19 @@ import { syntaxTree } from '@codemirror/language';
6
6
  import { RangeSetBuilder } from '@codemirror/state';
7
7
  import { EditorView, Decoration, WidgetType, ViewPlugin, type DecorationSet, type ViewUpdate } from '@codemirror/view';
8
8
 
9
+ import { getToken } from '../../styles';
10
+
11
+ // TODO(burdon): Reconcile with theme.
12
+ const styles = EditorView.baseTheme({
13
+ '& .cm-task': {
14
+ color: getToken('extend.colors.blue.500'),
15
+ },
16
+ '& .cm-task-checkbox': {
17
+ marginLeft: '4px',
18
+ marginRight: '4px',
19
+ },
20
+ });
21
+
9
22
  class CheckboxWidget extends WidgetType {
10
23
  constructor(private _checked: boolean) {
11
24
  super();
@@ -17,6 +30,7 @@ class CheckboxWidget extends WidgetType {
17
30
 
18
31
  override toDOM(view: EditorView) {
19
32
  const input = document.createElement('input');
33
+ input.className = 'cm-task-checkbox';
20
34
  input.type = 'checkbox';
21
35
  input.checked = this._checked;
22
36
  if (view.state.readOnly) {
@@ -42,35 +56,8 @@ class CheckboxWidget extends WidgetType {
42
56
  }
43
57
  }
44
58
 
45
- const checkedDeco = Decoration.replace({ widget: new CheckboxWidget(true) });
46
- const uncheckedDeco = Decoration.replace({ widget: new CheckboxWidget(false) });
47
-
48
- export type TasklistOptions = {};
49
-
50
- export const tasklist = (options: TasklistOptions = {}) => {
51
- return ViewPlugin.fromClass(
52
- class {
53
- decorations: DecorationSet;
54
-
55
- constructor(view: EditorView) {
56
- this.decorations = buildDecorations(view);
57
- }
58
-
59
- update(update: ViewUpdate) {
60
- if (update.docChanged || update.viewportChanged || update.selectionSet) {
61
- this.decorations = buildDecorations(update.view);
62
- }
63
- }
64
- },
65
- {
66
- decorations: (v) => v.decorations,
67
- provide: (plugin) =>
68
- EditorView.atomicRanges.of((view) => {
69
- return view.plugin(plugin)?.decorations || Decoration.none;
70
- }),
71
- },
72
- );
73
- };
59
+ const checkedDecoration = Decoration.replace({ widget: new CheckboxWidget(true) });
60
+ const uncheckedDecoration = Decoration.replace({ widget: new CheckboxWidget(false) });
74
61
 
75
62
  const buildDecorations = (view: EditorView): DecorationSet => {
76
63
  const builder = new RangeSetBuilder<Decoration>();
@@ -80,10 +67,13 @@ const buildDecorations = (view: EditorView): DecorationSet => {
80
67
  for (const { from, to } of view.visibleRanges) {
81
68
  syntaxTree(state).iterate({
82
69
  enter: (node) => {
83
- // Check if cursor is inside text.
84
- if (node.name === 'TaskMarker' && (cursor < node.from || cursor > node.to)) {
85
- const checked = state.doc.sliceString(node.from + 1, node.to - 1) === 'x';
86
- builder.add(node.from, node.to, checked ? checkedDeco : uncheckedDeco);
70
+ if (node.name === 'TaskMarker') {
71
+ // Check if cursor is inside text.
72
+ if (cursor < node.from || cursor > node.to) {
73
+ const checked = state.doc.sliceString(node.from + 1, node.to - 1) === 'x';
74
+ builder.add(node.from - 2, node.from - 1, Decoration.mark({ class: 'cm-task' }));
75
+ builder.add(node.from, node.to, checked ? checkedDecoration : uncheckedDecoration);
76
+ }
87
77
  }
88
78
  },
89
79
  from,
@@ -93,3 +83,28 @@ const buildDecorations = (view: EditorView): DecorationSet => {
93
83
 
94
84
  return builder.finish();
95
85
  };
86
+
87
+ export type TasklistOptions = {};
88
+
89
+ export const tasklist = (options: TasklistOptions = {}) => {
90
+ return [
91
+ ViewPlugin.fromClass(
92
+ class {
93
+ decorations: DecorationSet;
94
+ constructor(view: EditorView) {
95
+ this.decorations = buildDecorations(view);
96
+ }
97
+
98
+ update(update: ViewUpdate) {
99
+ if (update.docChanged || update.viewportChanged || update.selectionSet) {
100
+ this.decorations = buildDecorations(update.view);
101
+ }
102
+ }
103
+ },
104
+ {
105
+ decorations: (value) => value.decorations,
106
+ },
107
+ ),
108
+ styles,
109
+ ];
110
+ };
@@ -9,18 +9,25 @@ export type MentionOptions = {
9
9
  onSearch: (text: string) => string[];
10
10
  };
11
11
 
12
+ // TODO(burdon): Can only have a single autocompletion. Merge configuration with autocomplete.
12
13
  export const mention = ({ onSearch }: MentionOptions): Extension => {
13
14
  return autocompletion({
15
+ // TODO(burdon): Not working.
16
+ activateOnTyping: true,
17
+ // activateOnTypingDelay: 100,
18
+ // selectOnOpen: true,
14
19
  closeOnBlur: false, // For debugging.
20
+ // defaultKeymap: false,
21
+ icons: false,
15
22
  override: [
16
23
  (context: CompletionContext): CompletionResult | null => {
24
+ console.log(context);
25
+
17
26
  const match = context.matchBefore(/@(\w+)?/);
18
27
  if (!match || (match.from === match.to && !context.explicit)) {
19
28
  return null;
20
29
  }
21
30
 
22
- console.log(match);
23
-
24
31
  return {
25
32
  from: match.from,
26
33
  options: onSearch(match.text.slice(1).toLowerCase()).map((value) => ({ label: `@${value}` })),
@@ -0,0 +1,12 @@
1
+ //
2
+ // Copyright 2024 DXOS.org
3
+ //
4
+
5
+ import { type Extension } from '@codemirror/state';
6
+
7
+ export type OutlinerOptions = {};
8
+
9
+ // TODO(burdon): Experimental component: multiple hierarchical draggable editor sections.
10
+ export const outliner = (options: OutlinerOptions = {}): Extension => {
11
+ return [];
12
+ };