-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathwysiwyg-preset.ts
267 lines (245 loc) · 10.2 KB
/
wysiwyg-preset.ts
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
import type {Node} from 'prosemirror-model';
import type {ExtensionAuto} from '../core';
import {BehaviorPreset, type BehaviorPresetOptions} from '../extensions/behavior';
import {
EditorModeKeymap,
type EditorModeKeymapOptions,
} from '../extensions/behavior/EditorModeKeymap';
import {BaseNode, YfmHeadingAttr, YfmNoteNode} from '../extensions/specs';
import {i18n as i18nPlaceholder} from '../i18n/placeholder';
import {CommonMarkPreset, type CommonMarkPresetOptions} from '../presets/commonmark';
import {DefaultPreset, type DefaultPresetOptions} from '../presets/default';
import {FullPreset, type FullPresetOptions} from '../presets/full';
import {YfmPreset, type YfmPresetOptions} from '../presets/yfm';
import {ZeroPreset, type ZeroPresetOptions} from '../presets/zero';
import {Action as A, formatter as f} from '../shortcuts';
import type {DirectiveSyntaxContext} from '../utils/directive';
import type {FileUploadHandler} from '../utils/upload';
import {wCommandMenuConfigByPreset, wSelectionMenuConfigByPreset} from './config/wysiwyg';
import {emojiDefs} from './emoji';
import type {MarkdownEditorPreset, WysiwygPlaceholderOptions} from './types';
const DEFAULT_IGNORED_KEYS = ['Tab', 'Shift-Tab'] as const;
export type ExtensionsOptions = BehaviorPresetOptions & FullPresetOptions;
export type BundlePresetOptions = ExtensionsOptions &
EditorModeKeymapOptions & {
preset: MarkdownEditorPreset;
mdBreaks?: boolean;
preserveEmptyRows?: boolean;
fileUploadHandler?: FileUploadHandler;
placeholderOptions?: WysiwygPlaceholderOptions;
/**
* If we need to set dimensions for uploaded images
*
* @default false
*/
needToSetDimensionsForUploadedImages?: boolean;
enableNewImageSizeCalculation?: boolean;
directiveSyntax: DirectiveSyntaxContext;
// MAJOR: remove markdown-it-attrs
disableMdAttrs?: boolean;
};
declare global {
namespace WysiwygEditor {
interface Context {
directiveSyntax: DirectiveSyntaxContext;
}
}
}
export const BundlePreset: ExtensionAuto<BundlePresetOptions> = (builder, opts) => {
builder.context.set('directiveSyntax', opts.directiveSyntax);
const dropCursor: NonNullable<BundlePresetOptions['cursor']>['dropOptions'] = {
color: 'var(--g-color-line-brand)',
width: 2,
};
const zeroOptions: BehaviorPresetOptions & ZeroPresetOptions = {
...opts,
baseStyles: {
attributes: {
// for disable setting attrs inside pm-view from floating-ui from uikit
// see https://github.com/floating-ui/floating-ui/discussions/3213
// and https://github.com/floating-ui/floating-ui/pull/3202
'aria-live': '',
...opts.baseStyles?.attributes,
},
},
cursor: {dropOptions: dropCursor},
clipboard: {pasteFileHandler: opts.fileUploadHandler, ...opts.clipboard},
selectionContext: {config: wSelectionMenuConfigByPreset.zero, ...opts.selectionContext},
commandMenu: {actions: wCommandMenuConfigByPreset.zero, ...opts.commandMenu},
history: {undoKey: f.toPM(A.Undo), redoKey: f.toPM(A.Redo), ...opts.history},
baseSchema: {
paragraphKey: f.toPM(A.Text),
paragraphPlaceholder: (node: Node, parent?: Node | null) => {
const {value, behavior} = opts.placeholderOptions || {};
const emptyEntries = {
'empty-row': !node.text,
'empty-row-top-level': !node.text && parent?.type.name === BaseNode.Doc,
'empty-doc':
!node.text && parent?.type.name === BaseNode.Doc && parent.childCount === 1,
};
const showPlaceholder = emptyEntries[behavior || 'empty-doc'];
if (!showPlaceholder) return null;
return typeof value === 'function'
? value()
: value ?? i18nPlaceholder('doc_empty');
},
preserveEmptyRows: opts.preserveEmptyRows,
...opts.baseSchema,
},
};
const commonMarkOptions: BehaviorPresetOptions & CommonMarkPresetOptions = {
...zeroOptions,
selectionContext: {
config: wSelectionMenuConfigByPreset.commonmark,
...opts.selectionContext,
},
commandMenu: {actions: wCommandMenuConfigByPreset.commonmark, ...opts.commandMenu},
breaks: {
preferredBreak: (opts.mdBreaks ? 'soft' : 'hard') as 'soft' | 'hard',
...opts.breaks,
},
bold: {boldKey: f.toPM(A.Bold), ...opts.bold},
italic: {italicKey: f.toPM(A.Italic), ...opts.italic},
code: {codeKey: f.toPM(A.Code), ...opts.code},
codeBlock: {
codeBlockKey: f.toPM(A.CodeBlock),
...opts.codeBlock,
},
blockquote: {qouteKey: f.toPM(A.Quote), ...opts.blockquote},
link: {linkKey: f.toPM(A.Link), ...opts.link},
lists: {
ulKey: f.toPM(A.BulletList),
olKey: f.toPM(A.OrderedList),
ulInputRules: {plus: false},
...opts.lists,
},
image: {
parseInsertedUrlAsImage: opts.imgSize?.parseInsertedUrlAsImage,
},
};
const defaultOptions: BehaviorPresetOptions & DefaultPresetOptions = {
...commonMarkOptions,
selectionContext: {config: wSelectionMenuConfigByPreset.default, ...opts.selectionContext},
commandMenu: {actions: wCommandMenuConfigByPreset.default, ...opts.commandMenu},
strike: {strikeKey: f.toPM(A.Strike), ...opts.strike},
};
const yfmOptions: BehaviorPresetOptions & YfmPresetOptions = {
...defaultOptions,
yfmConfigs: {disableAttrs: opts.disableMdAttrs, ...opts.yfmConfigs},
selectionContext: {config: wSelectionMenuConfigByPreset.yfm, ...opts.selectionContext},
commandMenu: {actions: wCommandMenuConfigByPreset.yfm, ...opts.commandMenu},
underline: {underlineKey: f.toPM(A.Underline), ...opts.underline},
imgSize: {
imageUploadHandler: opts.fileUploadHandler,
needToSetDimensionsForUploadedImages: opts.needToSetDimensionsForUploadedImages,
enableNewImageSizeCalculation: opts.enableNewImageSizeCalculation,
...opts.imgSize,
},
checkbox: {checkboxLabelPlaceholder: () => i18nPlaceholder('checkbox'), ...opts.checkbox},
deflist: {
deflistTermPlaceholder: () => i18nPlaceholder('deflist_term'),
deflistDescPlaceholder: () => i18nPlaceholder('deflist_desc'),
},
yfmCut: {
yfmCutKey: f.toPM(A.Cut),
yfmCutTitlePlaceholder: () => i18nPlaceholder('cut_title'),
yfmCutContentPlaceholder: () => i18nPlaceholder('cut_content'),
...opts.yfmCut,
},
yfmNote: {
yfmNoteKey: f.toPM(A.Note),
yfmNoteTitlePlaceholder: () => i18nPlaceholder('note_title'),
...opts.yfmNote,
},
yfmTable: {yfmTableCellPlaceholder: () => i18nPlaceholder('table_cell'), ...opts.yfmTable},
yfmFile: {
fileUploadHandler: opts.fileUploadHandler,
needToSetDimensionsForUploadedImages: opts.needToSetDimensionsForUploadedImages,
...opts.yfmFile,
},
yfmHeading: {
h1Key: f.toPM(A.Heading1),
h2Key: f.toPM(A.Heading2),
h3Key: f.toPM(A.Heading3),
h4Key: f.toPM(A.Heading4),
h5Key: f.toPM(A.Heading5),
h6Key: f.toPM(A.Heading6),
headingPlaceholder: (node: Node) =>
`${i18nPlaceholder('heading')} ${node.attrs[YfmHeadingAttr.Level]}`, // todo: remove attrs import
...opts.yfmHeading,
},
placeholder: {
[YfmNoteNode.NoteContent]: () => i18nPlaceholder('note_content'),
},
};
const fullOptions: BehaviorPresetOptions & FullPresetOptions = {
...yfmOptions,
selectionContext: {config: wSelectionMenuConfigByPreset.full, ...opts.selectionContext},
commandMenu: {actions: wCommandMenuConfigByPreset.full, ...opts.commandMenu},
emoji: {defs: emojiDefs, ...opts.emoji},
};
const zeroIgnoreActions = [A.Undo, A.Redo];
const commonMarkIgnoreActions = zeroIgnoreActions.concat(
A.Bold,
A.Italic,
A.Code,
A.Link,
A.Text,
A.Heading1,
A.Heading2,
A.Heading3,
A.Heading4,
A.Heading5,
A.Heading6,
A.BulletList,
A.OrderedList,
A.Quote,
A.CodeBlock,
);
const defaultIgnoreActions = commonMarkIgnoreActions.concat(A.Strike);
const yfmIgnoreActions = defaultIgnoreActions.concat(
A.Underline,
A.Note,
A.Cut,
);
const fullIgnoreActions = yfmIgnoreActions.concat();
let ignoreActions;
switch (opts.preset) {
case 'zero': {
ignoreActions = zeroIgnoreActions;
builder.use(BehaviorPreset, zeroOptions).use(ZeroPreset, zeroOptions);
break;
}
case 'commonmark': {
ignoreActions = commonMarkIgnoreActions;
builder.use(BehaviorPreset, commonMarkOptions).use(CommonMarkPreset, commonMarkOptions);
break;
}
case 'default': {
ignoreActions = defaultIgnoreActions;
builder.use(BehaviorPreset, defaultOptions).use(DefaultPreset, defaultOptions);
break;
}
case 'yfm': {
ignoreActions = yfmIgnoreActions;
builder.use(BehaviorPreset, yfmOptions).use(YfmPreset, yfmOptions);
break;
}
default: {
ignoreActions = fullIgnoreActions;
builder.use(BehaviorPreset, fullOptions).use(FullPreset, fullOptions);
break;
}
}
const ignoreKeysList = opts.ignoreKeysList?.slice() ?? [];
ignoreKeysList.push(...DEFAULT_IGNORED_KEYS);
for (const action of ignoreActions) {
const key = f.toPM(action);
if (key) ignoreKeysList.push(key);
}
builder.use(EditorModeKeymap, {
onSubmit: opts.onSubmit,
onCancel: opts.onCancel,
ignoreKeysList,
});
};