-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.tsx
226 lines (203 loc) · 5.92 KB
/
index.tsx
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
import {
createAutoformatPlugin,
createBlockquotePlugin,
createBoldPlugin,
createCodeBlockPlugin,
createCodePlugin,
createExitBreakPlugin,
createHeadingPlugin,
createDndPlugin,
createHighlightPlugin,
createImagePlugin,
createItalicPlugin,
createLinkPlugin,
createListPlugin,
createMediaEmbedPlugin,
createNodeIdPlugin,
createParagraphPlugin,
createResetNodePlugin,
createSelectOnBackspacePlugin,
createSoftBreakPlugin,
createStrikethroughPlugin,
createUnderlinePlugin,
PlatePlugin,
autoformatArrow,
autoformatLegal,
autoformatLegalHtml,
autoformatMath,
autoformatSmartQuotes,
ELEMENT_HR,
createHorizontalRulePlugin,
setNodes,
createAlignPlugin,
ELEMENT_DEFAULT,
insertNodes,
createPlugins,
ELEMENT_H1,
ELEMENT_H2,
ELEMENT_H3,
ELEMENT_H4,
ELEMENT_H5,
ELEMENT_H6,
ELEMENT_PARAGRAPH,
createTablePlugin,
parseIframeUrl,
parseTwitterUrl,
MediaEmbedTweet,
parseVideoUrl,
MediaEmbedVideo
} from '@udecode/plate'
import { ELEMENT_EXCALIDRAW } from '@mexit/core'
import { MediaIFrame, parseRestMediaUrls, TableWrapper, useUploadToCDN } from '@mexit/shared'
import { createQuickLinkPlugin } from './QuickLink'
import { createBlockModifierPlugin } from './createBlockModifierPlugin'
import { createHighlightTextPlugin } from './createHighlightTextPlugin'
import { createTagPlugin } from './createTagPlugin'
import { createTodoPlugin } from './createTodoPlugin'
import {
optionsAutoFormatRule,
optionsCreateNodeIdPlugin,
optionsExitBreakPlugin,
optionsResetBlockTypePlugin,
optionsSelectOnBackspacePlugin,
optionsSoftBreakPlugin
} from './options'
import { useAuth } from '@workduck-io/dwindle'
export type PluginOptionType = {
exclude: {
dnd: boolean
}
uploadImage?: (data: string | ArrayBuffer) => Promise<string | ArrayBuffer>
}
/**
* Plugin generator
* @param config Configurations for the plugins, event handlers etc.
* @returns Array of PlatePlugin
*/
export const generatePlugins = (options: PluginOptionType) => {
const Plugins: PlatePlugin[] = [
// editor
// elements
createParagraphPlugin(), // paragraph element
createBlockquotePlugin(), // blockquote element
createCodeBlockPlugin(), // code block element
createHeadingPlugin(), // heading elements
// Marks
createBoldPlugin(), // bold mark
createItalicPlugin(), // italic mark
createUnderlinePlugin(), // underline mark
createStrikethroughPlugin(), // strikethrough mark
createCodePlugin(), // code mark
createHighlightPlugin(), // highlight mark
// createTodoListPlugin(),
// Special Elements
// Special Elements
createImagePlugin({
options: {
uploadImage: options.uploadImage
}
}),
createLinkPlugin(), // Link
createListPlugin(), // List
createTodoPlugin(),
createTablePlugin({ component: TableWrapper }), // Table
// Editing Plugins
createSoftBreakPlugin(optionsSoftBreakPlugin),
createExitBreakPlugin(optionsExitBreakPlugin),
createResetNodePlugin(optionsResetBlockTypePlugin),
createHorizontalRulePlugin(),
createSelectOnBackspacePlugin({ options: { query: { allow: [ELEMENT_HR, ELEMENT_EXCALIDRAW] } } }),
createAlignPlugin({
inject: {
props: {
validTypes: [ELEMENT_PARAGRAPH, ELEMENT_H1, ELEMENT_H2, ELEMENT_H3, ELEMENT_H4, ELEMENT_H5, ELEMENT_H6]
}
}
}),
// Autoformat markdown syntax to elements (**, #(n))
createAutoformatPlugin({
options: {
rules: [
...autoformatSmartQuotes,
...autoformatLegal,
...autoformatLegalHtml,
...autoformatMath,
...autoformatArrow,
...optionsAutoFormatRule,
{
mode: 'block',
type: ELEMENT_HR,
match: ['---', '—-', '___ '],
format: (editor) => {
setNodes(editor, { type: ELEMENT_HR })
insertNodes(editor, {
type: ELEMENT_DEFAULT,
children: [{ text: '' }]
})
}
}
]
}
}),
createNodeIdPlugin(optionsCreateNodeIdPlugin),
createBlockModifierPlugin(),
// serialization / deseriailization
// Convert pasted markdown to contents of the editor
// createDeserializeMDPlugin(),
// Media and link embed
createMediaEmbedPlugin({
options: {
transformUrl: parseIframeUrl,
rules: [
// {
// parser: parseTwitterUrl,
// component: MediaEmbedTweet
// },
{
parser: parseVideoUrl,
component: MediaEmbedVideo
},
{
parser: parseRestMediaUrls,
component: MediaIFrame
}
]
}
}),
// Custom Plugins
// createBlurSelectionPlugin() ,
// Comboboxes
createTagPlugin(), // Tags
createQuickLinkPlugin(), // Internal Links ILinks
// // For Inline Blocks
// createInlineBlockPlugin(),
createSelectOnBackspacePlugin(optionsSelectOnBackspacePlugin),
createHighlightTextPlugin()
]
const withPlugins = !options?.exclude?.dnd ? [...Plugins, createDndPlugin()] : Plugins
return withPlugins
}
export const generateEditorPluginsWithComponents = (components: Record<string, any>, options?: PluginOptionType) => {
const wrappedComponents = components
const plugins = createPlugins(generatePlugins(options), {
components: wrappedComponents
})
return plugins
}
export const useMemoizedPlugins = (components: Record<string, any>, options?: PluginOptionType) => {
const wrappedComponents = components
// Raw uploader
const { uploadImageToS3 } = useAuth()
// Compresses image and Shows toasts about upload
const { uploadImageToWDCDN } = useUploadToCDN(uploadImageToS3)
const plugins = createPlugins(
generatePlugins({
...options,
uploadImage: options.uploadImage ?? uploadImageToWDCDN
}),
{
components: wrappedComponents
}
)
return plugins
}