forked from michael/editable-website
-
Notifications
You must be signed in to change notification settings - Fork 1
/
prosemirrorSchemas.js
295 lines (274 loc) · 6.76 KB
/
prosemirrorSchemas.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
import { Schema } from 'prosemirror-model';
const pDOM = ['p', 0];
const blockquoteDOM = ['blockquote', 0];
const brDOM = ['br'];
const olDOM = ['ol', 0];
const ulDOM = ['ul', 0];
const liDOM = ['li', 0];
const emDOM = ['em', 0];
const strongDOM = ['strong', 0];
// :: Object
// [Specs](#model.NodeSpec) for the nodes defined in this schema.
// :: Object [Specs](#model.MarkSpec) for the marks in the schema.
export const marks = {
// :: MarkSpec A link. Has `href` and `title` attributes. `title`
// defaults to the empty string. Rendered and parsed as an `<a>`
// element.
link: {
attrs: {
href: {},
title: { default: null }
},
inclusive: false,
parseDOM: [
{
tag: 'a[href]',
getAttrs(dom) {
return { href: dom.getAttribute('href'), title: dom.getAttribute('title') };
}
}
],
toDOM(node) {
const { href, title } = node.attrs;
return ['a', { href, title }, 0];
}
},
// :: MarkSpec An emphasis mark. Rendered as an `<em>` element.
// Has parse rules that also match `<i>` and `font-style: italic`.
em: {
parseDOM: [{ tag: 'i' }, { tag: 'em' }, { style: 'font-style=italic' }],
toDOM() {
return emDOM;
}
},
// :: MarkSpec A strong mark. Rendered as `<strong>`, parse rules
// also match `<b>` and `font-weight: bold`.
strong: {
parseDOM: [
{ tag: 'strong' },
// This works around a Google Docs misbehavior where
// pasted content will be inexplicably wrapped in `<b>`
// tags with a font-weight normal.
{ tag: 'b', getAttrs: node => node.style.fontWeight !== 'normal' && null },
{ style: 'font-weight', getAttrs: value => /^(bold(er)?|[5-9]\d{2,})$/.test(value) && null }
],
toDOM() {
return strongDOM;
}
}
};
/**
* Schema to represent a single line of plain text
* @type {Schema}
*/
export const singleLinePlainTextSchema = new Schema({
nodes: {
doc: { content: 'text*' },
text: { inline: true }
}
});
/**
* Schema to represent a single line of plain text
* @type {Schema}
*/
export const singleLineRichTextSchema = new Schema({
nodes: {
doc: { content: 'text*' },
text: { inline: true }
},
marks
});
/**
* Schema to represent rich text
* @type {Schema}
*/
export const multiLineRichTextSchema = new Schema({
nodes: {
// :: NodeSpec The top level document node.
doc: {
content: 'block+'
},
// :: NodeSpec A plain paragraph textblock. Represented in the DOM
// as a `<p>` element.
paragraph: {
content: 'inline*',
group: 'block',
parseDOM: [{ tag: 'p' }],
toDOM() {
return pDOM;
}
},
// :: NodeSpec
// An ordered list [node spec](#model.NodeSpec). Has a single
// attribute, `order`, which determines the number at which the list
// starts counting, and defaults to 1. Represented as an `<ol>`
// element.
ordered_list: {
content: 'list_item+',
group: 'block',
attrs: { order: { default: 1 } },
parseDOM: [
{
tag: 'ol',
getAttrs(dom) {
return { order: dom.hasAttribute('start') ? +dom.getAttribute('start') : 1 };
}
}
],
toDOM(node) {
return node.attrs.order === 1 ? olDOM : ['ol', { start: node.attrs.order }, 0];
}
},
// :: NodeSpec
// A bullet list node spec, represented in the DOM as `<ul>`.
bullet_list: {
content: 'list_item+',
group: 'block',
parseDOM: [{ tag: 'ul' }],
toDOM() {
return ulDOM;
}
},
// :: NodeSpec
// A list item (`<li>`) spec.
list_item: {
content: 'paragraph+', // only allow one or more paragraphs
// content: 'paragraph (orderedList | bulletList | paragraph)*',
parseDOM: [{ tag: 'li' }],
toDOM() {
return liDOM;
},
defining: true
},
// :: NodeSpec A blockquote (`<blockquote>`) wrapping one or more blocks.
blockquote: {
content: 'paragraph+',
group: 'block',
defining: true,
parseDOM: [{ tag: 'blockquote' }],
toDOM() {
return blockquoteDOM;
}
},
// :: NodeSpec A heading textblock, with a `level` attribute that
// should hold the number 1 to 6. Parsed and serialized as `<h1>` to
// `<h6>` elements.
heading: {
attrs: { level: { default: 1 } },
content: 'inline*',
marks: '',
group: 'block',
defining: true,
parseDOM: [
{
tag: 'h2',
getAttrs() {
return { level: 1 };
}
},
{
tag: 'h3',
getAttrs() {
return { level: 2 };
}
},
{
tag: 'h4',
getAttrs() {
return { level: 3 };
}
}
],
toDOM(node) {
return ['h' + (parseInt(node.attrs.level) + 1), {}, 0];
}
},
// :: NodeSpec The text node.
text: {
group: 'inline'
},
// :: NodeSpec An inline image (`<img>`) node. Supports `src`,
// `alt`, and `href` attributes. The latter two default to the empty
// string.
image: {
// inline: true,
attrs: {
src: {},
width: {},
height: {}
},
group: 'block',
draggable: true,
parseDOM: [
{
tag: 'img',
getAttrs(dom) {
return {
src: dom.getAttribute('src'),
width: dom.getAttribute('width'),
height: dom.getAttribute('height')
};
}
}
],
toDOM(node) {
const { src, width, height } = node.attrs;
return [
'img',
{
src: src,
width: width,
height: height
}
];
}
},
// :: NodeSpec A hard line break, represented in the DOM as `<br>`.
hard_break: {
inline: true,
group: 'inline',
selectable: false,
parseDOM: [{ tag: 'br' }],
toDOM() {
return brDOM;
}
}
},
marks
});
/**
* Schema to represent rich text
* @type {Schema}
*/
export const multiLinePlainTextSchema = new Schema({
nodes: {
// :: NodeSpec The top level document node.
doc: {
content: 'block+'
},
// :: NodeSpec A plain paragraph textblock. Represented in the DOM
// as a `<p>` element.
paragraph: {
content: 'inline*',
group: 'block',
parseDOM: [{ tag: 'p' }],
toDOM() {
return pDOM;
}
},
// :: NodeSpec The text node.
text: {
group: 'inline'
},
// :: NodeSpec A hard line break, represented in the DOM as `<br>`.
hard_break: {
inline: true,
group: 'inline',
selectable: false,
parseDOM: [{ tag: 'br' }],
toDOM() {
return brDOM;
}
}
}
});