@openleaf-editor/core 0.1.0-beta.3 → 0.1.0-beta.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +38 -6
- package/dist/autolink.d.ts +15 -4
- package/dist/autolink.d.ts.map +1 -1
- package/dist/autolink.js +91 -21
- package/dist/autolink.js.map +1 -1
- package/dist/code-spellcheck.d.ts +33 -0
- package/dist/code-spellcheck.d.ts.map +1 -0
- package/dist/code-spellcheck.js +119 -0
- package/dist/code-spellcheck.js.map +1 -0
- package/dist/commands.d.ts +6 -2
- package/dist/commands.d.ts.map +1 -1
- package/dist/commands.js +137 -5
- package/dist/commands.js.map +1 -1
- package/dist/decoration-range.d.ts +26 -0
- package/dist/decoration-range.d.ts.map +1 -0
- package/dist/decoration-range.js +103 -0
- package/dist/decoration-range.js.map +1 -0
- package/dist/figure-drag.d.ts +26 -0
- package/dist/figure-drag.d.ts.map +1 -0
- package/dist/figure-drag.js +75 -0
- package/dist/figure-drag.js.map +1 -0
- package/dist/gapcursor.d.ts +14 -0
- package/dist/gapcursor.d.ts.map +1 -0
- package/dist/gapcursor.js +17 -0
- package/dist/gapcursor.js.map +1 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +6 -0
- package/dist/index.js.map +1 -1
- package/dist/isolating-selection.d.ts +19 -1
- package/dist/isolating-selection.d.ts.map +1 -1
- package/dist/isolating-selection.js +100 -11
- package/dist/isolating-selection.js.map +1 -1
- package/dist/keymap.d.ts +14 -3
- package/dist/keymap.d.ts.map +1 -1
- package/dist/keymap.js +14 -3
- package/dist/keymap.js.map +1 -1
- package/dist/schema.d.ts.map +1 -1
- package/dist/schema.js +9 -0
- package/dist/schema.js.map +1 -1
- package/dist/visual-aids.d.ts.map +1 -1
- package/dist/visual-aids.js +2 -52
- package/dist/visual-aids.js.map +1 -1
- package/package.json +4 -2
package/README.md
CHANGED
|
@@ -73,6 +73,8 @@ import { setFontFamily, activeFontFamily } from '@openleaf-editor/core'
|
|
|
73
73
|
|
|
74
74
|
activeFontFamily(view.state) // 'Georgia' | null
|
|
75
75
|
setFontFamily('Georgia')(view.state, view.dispatch) // boolean
|
|
76
|
+
setFontFamily("Goudy's Old Style")(view.state, view.dispatch)
|
|
77
|
+
// stores '"Goudy\'s Old Style"' -- the canonical double-quoted form
|
|
76
78
|
```
|
|
77
79
|
|
|
78
80
|
`selectedImage` / `updateImage` (and the matching media pair) are how the
|
|
@@ -84,6 +86,12 @@ A predicate returns `null` for a mixed selection rather than the first value it
|
|
|
84
86
|
finds -- a dropdown showing "Georgia" for a range that is half Georgia would be
|
|
85
87
|
worse than showing nothing.
|
|
86
88
|
|
|
89
|
+
`indent` / `outdent` (`Mod-]` / `Mod-[`) nest a list item or add a padding
|
|
90
|
+
step on a paragraph or heading. They never insert spaces into a
|
|
91
|
+
`code_block` — that node has no `indent` attribute — so a code sample is
|
|
92
|
+
indented by typing spaces. Tab is never captured, including there. If the
|
|
93
|
+
code block sits inside a list item, `indent` still nests that item.
|
|
94
|
+
|
|
87
95
|
Block-type commands (`setHeading`, `setParagraph`, `toggleCodeBlock`) refuse a
|
|
88
96
|
textblock whose content the destination cannot hold. A captioned `<figure>` is a
|
|
89
97
|
textblock in the schema (`content: 'inline+'`) but not a paragraph: converting it
|
|
@@ -93,14 +101,38 @@ inserting an `<hr>` cannot split a figure.
|
|
|
93
101
|
|
|
94
102
|
## Isolating selections
|
|
95
103
|
|
|
96
|
-
If you construct a ProseMirror editor yourself, install
|
|
97
|
-
`isolatingSelectionPlugin()` next to `history()` and the keymap.
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
104
|
+
If you construct a ProseMirror editor yourself, install `gapCursorPlugin()`
|
|
105
|
+
and `isolatingSelectionPlugin()` next to `history()` and the keymap.
|
|
106
|
+
|
|
107
|
+
Without the gap cursor, a document that is only a page-break or a `<details>`
|
|
108
|
+
has no legal caret beside it, and typing replaces the atom. Without the
|
|
109
|
+
isolating clamp, a `TextSelection` that starts in a `<blockquote>` and ends
|
|
110
|
+
inside a following `<details>` throws on the next keystroke (`Cannot join
|
|
111
|
+
details onto blockquote`), and the recovery rewrites the document with no undo
|
|
112
|
+
entry. The isolating plugin also handles `beforeinput` so a keystroke cannot
|
|
113
|
+
skip the clamp when the model caret is still collapsed and only the DOM range
|
|
114
|
+
crosses the boundary. `<openleaf-editor>` already installs both. Details are in
|
|
102
115
|
[authoring-plugins.md §4.11](../../docs/authoring-plugins.md#411-isolating-nodes-clamp-the-selection-at-their-boundary).
|
|
103
116
|
|
|
117
|
+
## Code is not spellchecked
|
|
118
|
+
|
|
119
|
+
If you construct a ProseMirror editor yourself, install `codeSpellcheckPlugin()`
|
|
120
|
+
alongside the others. It decorates code blocks and inline `<code>` with
|
|
121
|
+
`spellcheck="false"`, so the browser stops underlining identifiers in an editor
|
|
122
|
+
whose author asked for their *prose* to be checked. It is a decoration and not
|
|
123
|
+
part of `toDOM` on purpose: `serializeHtml` serializes with the schema, so an
|
|
124
|
+
attribute added there would be written into every stored document.
|
|
125
|
+
`<openleaf-editor>` already installs the plugin. WebKit applies `spellcheck`
|
|
126
|
+
from the editing host rather than per element, so this changes nothing on Safari
|
|
127
|
+
or iOS.
|
|
128
|
+
|
|
129
|
+
## Captioned figures
|
|
130
|
+
|
|
131
|
+
If you construct a ProseMirror editor yourself, install `figureDragPlugin()`
|
|
132
|
+
next to `isolatingSelectionPlugin()`. Dragging the `<img>` inside a captioned
|
|
133
|
+
`<figure>` otherwise moves only the image and leaves the caption behind.
|
|
134
|
+
`<openleaf-editor>` already installs the plugin.
|
|
135
|
+
|
|
104
136
|
## Safety
|
|
105
137
|
|
|
106
138
|
URL, CSS and embed rules come from
|
package/dist/autolink.d.ts
CHANGED
|
@@ -1,10 +1,21 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Turn a typed URL into a link when the author finishes it.
|
|
3
3
|
*
|
|
4
|
-
* Space
|
|
5
|
-
* have in mail clients and office
|
|
6
|
-
* that is already a link, and it
|
|
7
|
-
*
|
|
4
|
+
* Space, Enter, and the end of an IME composition are the commit points,
|
|
5
|
+
* matching the behaviour authors already have in mail clients and office
|
|
6
|
+
* software. The plugin never rewrites a range that is already a link, and it
|
|
7
|
+
* refuses anything `isSafeUrl` would drop, so typing `javascript:` cannot
|
|
8
|
+
* become a mark the serializer would then emit. It also never `addMark`s
|
|
9
|
+
* while `view.composing` is true: rewriting the document under an open IME
|
|
10
|
+
* is how keyboards start duplicating or dropping characters.
|
|
11
|
+
*
|
|
12
|
+
* The mark is never its own undo event. `AddMarkStep` maps no positions, so
|
|
13
|
+
* `prosemirror-history` treats a standalone mark as non-adjacent and starts a
|
|
14
|
+
* new group — Ctrl+Z then peels the link off and leaves the URL (#182). Space
|
|
15
|
+
* and Enter therefore add the mark from `appendTransaction`, which ProseMirror
|
|
16
|
+
* tags with `appendedTransaction` so history folds it into the keystroke.
|
|
17
|
+
* `compositionend` cannot append (it fires on a timeout after the composition
|
|
18
|
+
* transactions), so that dispatch sets the same meta by hand.
|
|
8
19
|
*/
|
|
9
20
|
import { Plugin } from 'prosemirror-state';
|
|
10
21
|
export declare function hrefFromTypedUrl(raw: string): string | null;
|
package/dist/autolink.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"autolink.d.ts","sourceRoot":"","sources":["../src/autolink.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"autolink.d.ts","sourceRoot":"","sources":["../src/autolink.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;GAkBG;AAEH,OAAO,EAAE,MAAM,EAAiD,MAAM,mBAAmB,CAAA;AA+CzF,wBAAgB,gBAAgB,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CAK3D;AAoED,wBAAgB,cAAc,IAAI,MAAM,CA0DvC"}
|
package/dist/autolink.js
CHANGED
|
@@ -1,10 +1,21 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Turn a typed URL into a link when the author finishes it.
|
|
3
3
|
*
|
|
4
|
-
* Space
|
|
5
|
-
* have in mail clients and office
|
|
6
|
-
* that is already a link, and it
|
|
7
|
-
*
|
|
4
|
+
* Space, Enter, and the end of an IME composition are the commit points,
|
|
5
|
+
* matching the behaviour authors already have in mail clients and office
|
|
6
|
+
* software. The plugin never rewrites a range that is already a link, and it
|
|
7
|
+
* refuses anything `isSafeUrl` would drop, so typing `javascript:` cannot
|
|
8
|
+
* become a mark the serializer would then emit. It also never `addMark`s
|
|
9
|
+
* while `view.composing` is true: rewriting the document under an open IME
|
|
10
|
+
* is how keyboards start duplicating or dropping characters.
|
|
11
|
+
*
|
|
12
|
+
* The mark is never its own undo event. `AddMarkStep` maps no positions, so
|
|
13
|
+
* `prosemirror-history` treats a standalone mark as non-adjacent and starts a
|
|
14
|
+
* new group — Ctrl+Z then peels the link off and leaves the URL (#182). Space
|
|
15
|
+
* and Enter therefore add the mark from `appendTransaction`, which ProseMirror
|
|
16
|
+
* tags with `appendedTransaction` so history folds it into the keystroke.
|
|
17
|
+
* `compositionend` cannot append (it fires on a timeout after the composition
|
|
18
|
+
* transactions), so that dispatch sets the same meta by hand.
|
|
8
19
|
*/
|
|
9
20
|
import { Plugin, PluginKey } from 'prosemirror-state';
|
|
10
21
|
import { isSafeUrl } from './url.js';
|
|
@@ -93,42 +104,101 @@ function applyAutolink(state, end) {
|
|
|
93
104
|
return null;
|
|
94
105
|
return state.tr.addMark(found.from, found.to, link.create({ href: found.href }));
|
|
95
106
|
}
|
|
96
|
-
function maybeAutolink(view, end) {
|
|
107
|
+
function maybeAutolink(view, end, groupWithPrevious = false) {
|
|
97
108
|
const tr = applyAutolink(view.state, end);
|
|
98
109
|
if (!tr)
|
|
99
110
|
return false;
|
|
111
|
+
tr.setMeta(key, true);
|
|
112
|
+
// Same metadata `EditorState.applyTransaction` sets on a plugin's
|
|
113
|
+
// `appendTransaction` result. History reads it as "this belongs to the
|
|
114
|
+
// event already in progress" and will not open a new undo group, even
|
|
115
|
+
// though `AddMarkStep` is not adjacent to the text that was just typed.
|
|
116
|
+
if (groupWithPrevious)
|
|
117
|
+
tr.setMeta('appendedTransaction', tr);
|
|
100
118
|
view.dispatch(tr);
|
|
101
119
|
return true;
|
|
102
120
|
}
|
|
121
|
+
/**
|
|
122
|
+
* After Enter (or any split that leaves the caret at the start of the next
|
|
123
|
+
* textblock), the URL lives at the end of the previous block. Space is handled
|
|
124
|
+
* separately because the caret stays in the same block, after the space.
|
|
125
|
+
*
|
|
126
|
+
* `$new.pos <= $old.pos` filters Backspace-at-start and deleting the first
|
|
127
|
+
* character of a paragraph: those also leave `parentOffset === 0` but must
|
|
128
|
+
* not autolink the block above.
|
|
129
|
+
*/
|
|
130
|
+
function urlEndAfterBlockSplit(oldState, newState) {
|
|
131
|
+
if (!oldState.selection.empty || !newState.selection.empty)
|
|
132
|
+
return null;
|
|
133
|
+
const $old = oldState.selection.$from;
|
|
134
|
+
const $new = newState.selection.$from;
|
|
135
|
+
if (!$old.parent.isTextblock || !$new.parent.isTextblock)
|
|
136
|
+
return null;
|
|
137
|
+
if ($new.parentOffset !== 0 || $new.depth < 1)
|
|
138
|
+
return null;
|
|
139
|
+
if ($new.pos <= $old.pos)
|
|
140
|
+
return null;
|
|
141
|
+
return $new.before($new.depth) - 1;
|
|
142
|
+
}
|
|
103
143
|
export function autolinkPlugin() {
|
|
144
|
+
// `appendTransaction` is handed states, not the view, and the composing
|
|
145
|
+
// guard is a property of the view. The `view` prop is the supported way to
|
|
146
|
+
// reach one: PM calls it once per editor this plugin is installed in, and
|
|
147
|
+
// `autolinkPlugin()` mints a fresh plugin per editor, so this holds the view
|
|
148
|
+
// that owns the transactions `appendTransaction` sees.
|
|
149
|
+
let host = null;
|
|
104
150
|
return new Plugin({
|
|
105
151
|
key,
|
|
106
|
-
|
|
152
|
+
view(editorView) {
|
|
153
|
+
host = editorView;
|
|
154
|
+
return {
|
|
155
|
+
destroy() {
|
|
156
|
+
host = null;
|
|
157
|
+
},
|
|
158
|
+
};
|
|
159
|
+
},
|
|
160
|
+
appendTransaction(transactions, oldState, newState) {
|
|
161
|
+
// The same guard `compositionend` carries, and the one this path was
|
|
162
|
+
// missing: a composing IME reaches here through `readDOMChange`, which
|
|
163
|
+
// dispatches a doc-changing transaction per composition update. A
|
|
164
|
+
// composition buffer that happens to hold a space after a URL would
|
|
165
|
+
// otherwise get an `addMark` under the open IME -- the exact rewrite the
|
|
166
|
+
// header comment says never happens.
|
|
167
|
+
if (host?.composing)
|
|
168
|
+
return null;
|
|
107
169
|
if (!transactions.some((tr) => tr.docChanged))
|
|
108
170
|
return null;
|
|
109
171
|
if (transactions.some((tr) => tr.getMeta(key)))
|
|
110
172
|
return null;
|
|
111
173
|
const $from = newState.selection.$from;
|
|
112
|
-
if (
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
174
|
+
if ($from.parent.isTextblock && $from.parentOffset > 0) {
|
|
175
|
+
const prev = $from.parent.textBetween($from.parentOffset - 1, $from.parentOffset);
|
|
176
|
+
if (prev === ' ' || prev === '\u00a0') {
|
|
177
|
+
const tr = applyAutolink(newState, $from.pos);
|
|
178
|
+
return tr ? tr.setMeta(key, true) : null;
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
// Enter used to `dispatch` the mark from `handleKeyDown` and return
|
|
182
|
+
// false, so the keymap's split was a second undo event. Folding the
|
|
183
|
+
// mark into this appended transaction keeps one Enter as one Ctrl+Z.
|
|
184
|
+
const end = urlEndAfterBlockSplit(oldState, newState);
|
|
185
|
+
if (end == null)
|
|
116
186
|
return null;
|
|
117
|
-
const tr = applyAutolink(newState,
|
|
187
|
+
const tr = applyAutolink(newState, end);
|
|
118
188
|
return tr ? tr.setMeta(key, true) : null;
|
|
119
189
|
},
|
|
120
190
|
props: {
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
191
|
+
handleDOMEvents: {
|
|
192
|
+
compositionend(view) {
|
|
193
|
+
// This prop runs *before* PM's compositionend (which sets composing=false,
|
|
194
|
+
// then flushes pending records on a microtask). Never return true.
|
|
195
|
+
setTimeout(() => {
|
|
196
|
+
if (view.isDestroyed || view.composing)
|
|
197
|
+
return;
|
|
198
|
+
maybeAutolink(view, view.state.selection.from, true);
|
|
199
|
+
}, 0);
|
|
129
200
|
return false;
|
|
130
|
-
|
|
131
|
-
return false;
|
|
201
|
+
},
|
|
132
202
|
},
|
|
133
203
|
},
|
|
134
204
|
});
|
package/dist/autolink.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"autolink.js","sourceRoot":"","sources":["../src/autolink.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"autolink.js","sourceRoot":"","sources":["../src/autolink.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Stop the browser spell-checking code.
|
|
3
|
+
*
|
|
4
|
+
* `spellcheck="false"` on `<openleaf-editor>` is documented as the canvas-wide
|
|
5
|
+
* off switch, and source view has always hard-coded it on its textarea. The
|
|
6
|
+
* canvas had nothing between those two: a `<pre>` full of identifiers and a
|
|
7
|
+
* `<code>` run in a sentence were checked as prose, so every `getElementById`
|
|
8
|
+
* carried a red squiggle in an editor whose author had asked for spellchecking
|
|
9
|
+
* of their *writing*. This is not the same question as the host attribute and
|
|
10
|
+
* it is not conditional on it -- `spellcheck="true"` means "check my prose",
|
|
11
|
+
* and code is not prose either way.
|
|
12
|
+
*
|
|
13
|
+
* ## Decorations, not `toDOM`
|
|
14
|
+
*
|
|
15
|
+
* The obvious fix -- `['pre', { spellcheck: 'false' }, ...]` in the schema -- is
|
|
16
|
+
* wrong, because `serializeHtml` serializes with `DOMSerializer.fromSchema`, so
|
|
17
|
+
* the same `toDOM` that renders the canvas writes the stored HTML. That fix
|
|
18
|
+
* would put an editor-chrome attribute into every saved document and into every
|
|
19
|
+
* fidelity comparison. Decorations are view-only by construction: the worst a
|
|
20
|
+
* bug in this file can do is check, or fail to check, some spelling.
|
|
21
|
+
*
|
|
22
|
+
* ## What this does not fix
|
|
23
|
+
*
|
|
24
|
+
* WebKit honours `spellcheck` on the editing host rather than on descendants
|
|
25
|
+
* inside it, so on Safari and every iOS browser the squiggles stay. There is no
|
|
26
|
+
* DOM-level workaround short of a node view that removes the text from the
|
|
27
|
+
* editable tree, which costs far more than it buys. Chromium and Gecko, which
|
|
28
|
+
* do respect the attribute per element, are the browsers this helps.
|
|
29
|
+
*/
|
|
30
|
+
import { Plugin } from 'prosemirror-state';
|
|
31
|
+
import { DecorationSet } from 'prosemirror-view';
|
|
32
|
+
export declare function codeSpellcheckPlugin(): Plugin<DecorationSet>;
|
|
33
|
+
//# sourceMappingURL=code-spellcheck.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"code-spellcheck.d.ts","sourceRoot":"","sources":["../src/code-spellcheck.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4BG;AAGH,OAAO,EAAE,MAAM,EAAa,MAAM,mBAAmB,CAAA;AACrD,OAAO,EAAc,aAAa,EAAE,MAAM,kBAAkB,CAAA;AAuE5D,wBAAgB,oBAAoB,IAAI,MAAM,CAAC,aAAa,CAAC,CAiB5D"}
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Stop the browser spell-checking code.
|
|
3
|
+
*
|
|
4
|
+
* `spellcheck="false"` on `<openleaf-editor>` is documented as the canvas-wide
|
|
5
|
+
* off switch, and source view has always hard-coded it on its textarea. The
|
|
6
|
+
* canvas had nothing between those two: a `<pre>` full of identifiers and a
|
|
7
|
+
* `<code>` run in a sentence were checked as prose, so every `getElementById`
|
|
8
|
+
* carried a red squiggle in an editor whose author had asked for spellchecking
|
|
9
|
+
* of their *writing*. This is not the same question as the host attribute and
|
|
10
|
+
* it is not conditional on it -- `spellcheck="true"` means "check my prose",
|
|
11
|
+
* and code is not prose either way.
|
|
12
|
+
*
|
|
13
|
+
* ## Decorations, not `toDOM`
|
|
14
|
+
*
|
|
15
|
+
* The obvious fix -- `['pre', { spellcheck: 'false' }, ...]` in the schema -- is
|
|
16
|
+
* wrong, because `serializeHtml` serializes with `DOMSerializer.fromSchema`, so
|
|
17
|
+
* the same `toDOM` that renders the canvas writes the stored HTML. That fix
|
|
18
|
+
* would put an editor-chrome attribute into every saved document and into every
|
|
19
|
+
* fidelity comparison. Decorations are view-only by construction: the worst a
|
|
20
|
+
* bug in this file can do is check, or fail to check, some spelling.
|
|
21
|
+
*
|
|
22
|
+
* ## What this does not fix
|
|
23
|
+
*
|
|
24
|
+
* WebKit honours `spellcheck` on the editing host rather than on descendants
|
|
25
|
+
* inside it, so on Safari and every iOS browser the squiggles stay. There is no
|
|
26
|
+
* DOM-level workaround short of a node view that removes the text from the
|
|
27
|
+
* editable tree, which costs far more than it buys. Chromium and Gecko, which
|
|
28
|
+
* do respect the attribute per element, are the browsers this helps.
|
|
29
|
+
*/
|
|
30
|
+
import { Plugin, PluginKey } from 'prosemirror-state';
|
|
31
|
+
import { Decoration, DecorationSet } from 'prosemirror-view';
|
|
32
|
+
import { rebuildChanged } from './decoration-range.js';
|
|
33
|
+
const key = new PluginKey('openleaf-code-spellcheck');
|
|
34
|
+
/**
|
|
35
|
+
* One shared attrs object rather than a literal per decoration.
|
|
36
|
+
*
|
|
37
|
+
* A long minified paste is one decoration per code run, and ProseMirror
|
|
38
|
+
* compares decoration attrs when it decides what to redraw; sharing the object
|
|
39
|
+
* makes that comparison a pointer check.
|
|
40
|
+
*/
|
|
41
|
+
const OFF = { spellcheck: 'false' };
|
|
42
|
+
/** Marks named `code`, which is the inline `<code>` this schema and its extensions use. */
|
|
43
|
+
function isCodeMark(node) {
|
|
44
|
+
return node.marks.some((mark) => mark.type.name === 'code');
|
|
45
|
+
}
|
|
46
|
+
/**
|
|
47
|
+
* Decorate each run of inline `<code>` in one inline container.
|
|
48
|
+
*
|
|
49
|
+
* Adjacent text nodes are merged into one decoration. A `<code>` run that also
|
|
50
|
+
* carries bold is two text nodes in ProseMirror's model, and decorating each
|
|
51
|
+
* separately would put two spans where the DOM already has one element.
|
|
52
|
+
*/
|
|
53
|
+
function markInlineCode(parent, contentStart, out) {
|
|
54
|
+
let offset = 0;
|
|
55
|
+
let from = -1;
|
|
56
|
+
let to = -1;
|
|
57
|
+
parent.forEach((child) => {
|
|
58
|
+
const start = contentStart + offset;
|
|
59
|
+
offset += child.nodeSize;
|
|
60
|
+
if (!isCodeMark(child)) {
|
|
61
|
+
if (from >= 0)
|
|
62
|
+
out.push(Decoration.inline(from, to, OFF));
|
|
63
|
+
from = -1;
|
|
64
|
+
return;
|
|
65
|
+
}
|
|
66
|
+
// Contiguous with the run in progress: extend it rather than close it.
|
|
67
|
+
if (from >= 0 && to === start) {
|
|
68
|
+
to = start + child.nodeSize;
|
|
69
|
+
return;
|
|
70
|
+
}
|
|
71
|
+
if (from >= 0)
|
|
72
|
+
out.push(Decoration.inline(from, to, OFF));
|
|
73
|
+
from = start;
|
|
74
|
+
to = start + child.nodeSize;
|
|
75
|
+
});
|
|
76
|
+
if (from >= 0)
|
|
77
|
+
out.push(Decoration.inline(from, to, OFF));
|
|
78
|
+
}
|
|
79
|
+
/** Every code decoration for the nodes overlapping `[from, to]`. */
|
|
80
|
+
function decorationsIn(doc, from, to) {
|
|
81
|
+
const out = [];
|
|
82
|
+
doc.nodesBetween(from, to, (node, pos) => {
|
|
83
|
+
// Text is scanned from its parent, which is where the offsets are known.
|
|
84
|
+
if (node.isText)
|
|
85
|
+
return false;
|
|
86
|
+
// `spec.code` rather than a `code_block` name test, so a schema extension
|
|
87
|
+
// that adds its own code-holding node is covered by the same rule its
|
|
88
|
+
// ProseMirror semantics already declare.
|
|
89
|
+
if (node.type.spec.code) {
|
|
90
|
+
out.push(Decoration.node(pos, pos + node.nodeSize, OFF));
|
|
91
|
+
// The attribute is inherited by everything below, and a `code_block`
|
|
92
|
+
// holds no marks anyway.
|
|
93
|
+
return false;
|
|
94
|
+
}
|
|
95
|
+
if (node.inlineContent && node.content.size > 0)
|
|
96
|
+
markInlineCode(node, pos + 1, out);
|
|
97
|
+
return true;
|
|
98
|
+
});
|
|
99
|
+
return out;
|
|
100
|
+
}
|
|
101
|
+
export function codeSpellcheckPlugin() {
|
|
102
|
+
return new Plugin({
|
|
103
|
+
key,
|
|
104
|
+
state: {
|
|
105
|
+
init(_config, state) {
|
|
106
|
+
return DecorationSet.create(state.doc, decorationsIn(state.doc, 0, state.doc.content.size));
|
|
107
|
+
},
|
|
108
|
+
apply(tr, set) {
|
|
109
|
+
return rebuildChanged(set, tr, decorationsIn);
|
|
110
|
+
},
|
|
111
|
+
},
|
|
112
|
+
props: {
|
|
113
|
+
decorations(state) {
|
|
114
|
+
return key.getState(state);
|
|
115
|
+
},
|
|
116
|
+
},
|
|
117
|
+
});
|
|
118
|
+
}
|
|
119
|
+
//# sourceMappingURL=code-spellcheck.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"code-spellcheck.js","sourceRoot":"","sources":["../src/code-spellcheck.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4BG;AAGH,OAAO,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAA;AACrD,OAAO,EAAE,UAAU,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAA;AAC5D,OAAO,EAAE,cAAc,EAAE,MAAM,uBAAuB,CAAA;AAEtD,MAAM,GAAG,GAAG,IAAI,SAAS,CAAgB,0BAA0B,CAAC,CAAA;AAEpE;;;;;;GAMG;AACH,MAAM,GAAG,GAAG,EAAE,UAAU,EAAE,OAAO,EAAE,CAAA;AAEnC,2FAA2F;AAC3F,SAAS,UAAU,CAAC,IAAY;IAC9B,OAAO,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,KAAK,MAAM,CAAC,CAAA;AAC7D,CAAC;AAED;;;;;;GAMG;AACH,SAAS,cAAc,CAAC,MAAc,EAAE,YAAoB,EAAE,GAAiB;IAC7E,IAAI,MAAM,GAAG,CAAC,CAAA;IACd,IAAI,IAAI,GAAG,CAAC,CAAC,CAAA;IACb,IAAI,EAAE,GAAG,CAAC,CAAC,CAAA;IACX,MAAM,CAAC,OAAO,CAAC,CAAC,KAAK,EAAE,EAAE;QACvB,MAAM,KAAK,GAAG,YAAY,GAAG,MAAM,CAAA;QACnC,MAAM,IAAI,KAAK,CAAC,QAAQ,CAAA;QACxB,IAAI,CAAC,UAAU,CAAC,KAAK,CAAC,EAAE,CAAC;YACvB,IAAI,IAAI,IAAI,CAAC;gBAAE,GAAG,CAAC,IAAI,CAAC,UAAU,CAAC,MAAM,CAAC,IAAI,EAAE,EAAE,EAAE,GAAG,CAAC,CAAC,CAAA;YACzD,IAAI,GAAG,CAAC,CAAC,CAAA;YACT,OAAM;QACR,CAAC;QACD,uEAAuE;QACvE,IAAI,IAAI,IAAI,CAAC,IAAI,EAAE,KAAK,KAAK,EAAE,CAAC;YAC9B,EAAE,GAAG,KAAK,GAAG,KAAK,CAAC,QAAQ,CAAA;YAC3B,OAAM;QACR,CAAC;QACD,IAAI,IAAI,IAAI,CAAC;YAAE,GAAG,CAAC,IAAI,CAAC,UAAU,CAAC,MAAM,CAAC,IAAI,EAAE,EAAE,EAAE,GAAG,CAAC,CAAC,CAAA;QACzD,IAAI,GAAG,KAAK,CAAA;QACZ,EAAE,GAAG,KAAK,GAAG,KAAK,CAAC,QAAQ,CAAA;IAC7B,CAAC,CAAC,CAAA;IACF,IAAI,IAAI,IAAI,CAAC;QAAE,GAAG,CAAC,IAAI,CAAC,UAAU,CAAC,MAAM,CAAC,IAAI,EAAE,EAAE,EAAE,GAAG,CAAC,CAAC,CAAA;AAC3D,CAAC;AAED,oEAAoE;AACpE,SAAS,aAAa,CAAC,GAAW,EAAE,IAAY,EAAE,EAAU;IAC1D,MAAM,GAAG,GAAiB,EAAE,CAAA;IAC5B,GAAG,CAAC,YAAY,CAAC,IAAI,EAAE,EAAE,EAAE,CAAC,IAAI,EAAE,GAAG,EAAE,EAAE;QACvC,yEAAyE;QACzE,IAAI,IAAI,CAAC,MAAM;YAAE,OAAO,KAAK,CAAA;QAC7B,0EAA0E;QAC1E,sEAAsE;QACtE,yCAAyC;QACzC,IAAI,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,EAAE,CAAC;YACxB,GAAG,CAAC,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,GAAG,EAAE,GAAG,GAAG,IAAI,CAAC,QAAQ,EAAE,GAAG,CAAC,CAAC,CAAA;YACxD,qEAAqE;YACrE,yBAAyB;YACzB,OAAO,KAAK,CAAA;QACd,CAAC;QACD,IAAI,IAAI,CAAC,aAAa,IAAI,IAAI,CAAC,OAAO,CAAC,IAAI,GAAG,CAAC;YAAE,cAAc,CAAC,IAAI,EAAE,GAAG,GAAG,CAAC,EAAE,GAAG,CAAC,CAAA;QACnF,OAAO,IAAI,CAAA;IACb,CAAC,CAAC,CAAA;IACF,OAAO,GAAG,CAAA;AACZ,CAAC;AAED,MAAM,UAAU,oBAAoB;IAClC,OAAO,IAAI,MAAM,CAAgB;QAC/B,GAAG;QACH,KAAK,EAAE;YACL,IAAI,CAAC,OAAO,EAAE,KAAK;gBACjB,OAAO,aAAa,CAAC,MAAM,CAAC,KAAK,CAAC,GAAG,EAAE,aAAa,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAA;YAC7F,CAAC;YACD,KAAK,CAAC,EAAE,EAAE,GAAG;gBACX,OAAO,cAAc,CAAC,GAAG,EAAE,EAAE,EAAE,aAAa,CAAC,CAAA;YAC/C,CAAC;SACF;QACD,KAAK,EAAE;YACL,WAAW,CAAC,KAAK;gBACf,OAAO,GAAG,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAA;YAC5B,CAAC;SACF;KACF,CAAC,CAAA;AACJ,CAAC"}
|
package/dist/commands.d.ts
CHANGED
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
* button disabled-state free -- the same function answers "can I?" and "do it".
|
|
14
14
|
*/
|
|
15
15
|
import { type Attrs } from 'prosemirror-model';
|
|
16
|
-
import type
|
|
16
|
+
import { type Command, type EditorState } from 'prosemirror-state';
|
|
17
17
|
import { type Align, type Dir, type ListStyle } from './css.js';
|
|
18
18
|
/**
|
|
19
19
|
* Is this mark active at the cursor, or across the selection?
|
|
@@ -93,7 +93,11 @@ export declare function activeListStyle(state: EditorState): ListStyle | null;
|
|
|
93
93
|
*/
|
|
94
94
|
export declare function activeTextAlign(state: EditorState): Align | null;
|
|
95
95
|
/**
|
|
96
|
-
* Set the alignment of every alignable
|
|
96
|
+
* Set the alignment of every alignable node in the selection. `null` clears it.
|
|
97
|
+
*
|
|
98
|
+
* Images store `left` / `right` / `center` on `image.attrs.align`; serialization
|
|
99
|
+
* maps those to the `ol-*` classes. Justify is skipped on images, because it
|
|
100
|
+
* is not an image alignment.
|
|
97
101
|
*
|
|
98
102
|
* Reports true whenever there is something to align, even if it already carries
|
|
99
103
|
* this value. The alternative -- returning false because the work is already
|
package/dist/commands.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"commands.d.ts","sourceRoot":"","sources":["../src/commands.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;GAaG;AAIH,OAAO,
|
|
1
|
+
{"version":3,"file":"commands.d.ts","sourceRoot":"","sources":["../src/commands.ts"],"names":[],"mappings":"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"}
|