@uiw/react-codemirror 4.11.5 → 4.12.1
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 +57 -3
- package/cjs/index.d.ts +8 -1
- package/cjs/index.js +4 -2
- package/cjs/index.js.map +3 -2
- package/cjs/useCodeMirror.js +6 -9
- package/cjs/useCodeMirror.js.map +8 -5
- package/dist/mdeditor.js +118 -67
- package/dist/mdeditor.min.js +1 -1
- package/esm/index.d.ts +8 -1
- package/esm/index.js +5 -3
- package/esm/index.js.map +3 -2
- package/esm/useCodeMirror.js +7 -6
- package/esm/useCodeMirror.js.map +8 -5
- package/package.json +4 -2
- package/src/index.tsx +10 -1
- package/src/useCodeMirror.ts +8 -5
package/README.md
CHANGED
|
@@ -171,17 +171,21 @@ export default function App() {
|
|
|
171
171
|
[](https://codesandbox.io/embed/react-codemirror-example-codemirror-6-hook-yr4vg?fontsize=14&hidenavigation=1&theme=dark)
|
|
172
172
|
|
|
173
173
|
```jsx
|
|
174
|
-
import { useEffect, useRef } from 'react';
|
|
174
|
+
import { useEffect, useMemo, useRef } from 'react';
|
|
175
175
|
import { useCodeMirror } from '@uiw/react-codemirror';
|
|
176
176
|
import { javascript } from '@codemirror/lang-javascript';
|
|
177
177
|
|
|
178
178
|
const code = "console.log('hello world!');\n\n\n";
|
|
179
|
+
// Define the extensions outside the component for the best performance.
|
|
180
|
+
// If you need dynamic extensions, use React.useMemo to minimize reference changes
|
|
181
|
+
// which cause costly re-renders.
|
|
182
|
+
const extensions = [javascript()];
|
|
179
183
|
|
|
180
184
|
export default function App() {
|
|
181
185
|
const editor = useRef();
|
|
182
186
|
const { setContainer } = useCodeMirror({
|
|
183
187
|
container: editor.current,
|
|
184
|
-
extensions
|
|
188
|
+
extensions,
|
|
185
189
|
value: code,
|
|
186
190
|
});
|
|
187
191
|
|
|
@@ -204,6 +208,8 @@ import CodeMirror from '@uiw/react-codemirror';
|
|
|
204
208
|
import { javascript } from '@codemirror/lang-javascript';
|
|
205
209
|
import { okaidia } from '@uiw/codemirror-theme-okaidia';
|
|
206
210
|
|
|
211
|
+
const extensions = [javascript({ jsx: true })];
|
|
212
|
+
|
|
207
213
|
export default function App() {
|
|
208
214
|
return (
|
|
209
215
|
<CodeMirror
|
|
@@ -253,6 +259,7 @@ const myTheme = createTheme({
|
|
|
253
259
|
{ tag: t.attributeName, color: '#5c6166' },
|
|
254
260
|
],
|
|
255
261
|
});
|
|
262
|
+
const extensions = [javascript({ jsx: true })];
|
|
256
263
|
|
|
257
264
|
export default function App() {
|
|
258
265
|
const onChange = React.useCallback((value, viewUpdate) => {
|
|
@@ -263,13 +270,53 @@ export default function App() {
|
|
|
263
270
|
value="console.log('hello world!');"
|
|
264
271
|
height="200px"
|
|
265
272
|
theme={myTheme}
|
|
266
|
-
extensions={
|
|
273
|
+
extensions={extensions}
|
|
267
274
|
onChange={onChange}
|
|
268
275
|
/>
|
|
269
276
|
);
|
|
270
277
|
}
|
|
271
278
|
```
|
|
272
279
|
|
|
280
|
+
## Use `initialState` to restore state from JSON-serialized representation
|
|
281
|
+
|
|
282
|
+
CodeMirror allows to serialize editor state to JSON representation with [toJSON](https://codemirror.net/docs/ref/#state.EditorState.toJSON) function for persistency or other needs. This JSON representation can be later used to recreate ReactCodeMirror component with the same internal state.
|
|
283
|
+
|
|
284
|
+
For example, this is how undo history can be saved in the local storage, so that it remains after the page reloads
|
|
285
|
+
|
|
286
|
+
```jsx
|
|
287
|
+
import CodeMirror from '@uiw/react-codemirror';
|
|
288
|
+
import { historyField } from '@codemirror/commands';
|
|
289
|
+
|
|
290
|
+
// When custom fields should be serialized, you can pass them in as an object mapping property names to fields.
|
|
291
|
+
// See [toJSON](https://codemirror.net/docs/ref/#state.EditorState.toJSON) documentation for more details
|
|
292
|
+
const stateFields = { history: historyField };
|
|
293
|
+
|
|
294
|
+
export function EditorWithInitialState() {
|
|
295
|
+
const serializedState = localStorage.getItem('myEditorState');
|
|
296
|
+
const value = localStorage.getItem('myValue') || '';
|
|
297
|
+
|
|
298
|
+
return (
|
|
299
|
+
<CodeMirror
|
|
300
|
+
value={value}
|
|
301
|
+
initialState={
|
|
302
|
+
serializedState
|
|
303
|
+
? {
|
|
304
|
+
json: JSON.parse(serializedState || ''),
|
|
305
|
+
fields: stateFields,
|
|
306
|
+
}
|
|
307
|
+
: undefined
|
|
308
|
+
}
|
|
309
|
+
onChange={(value, viewUpdate) => {
|
|
310
|
+
localStorage.setItem('myValue', value);
|
|
311
|
+
|
|
312
|
+
const state = viewUpdate.state.toJSON(stateFields);
|
|
313
|
+
localStorage.setItem('myEditorState', JSON.stringify(state));
|
|
314
|
+
}}
|
|
315
|
+
/>
|
|
316
|
+
);
|
|
317
|
+
}
|
|
318
|
+
```
|
|
319
|
+
|
|
273
320
|
## Props
|
|
274
321
|
|
|
275
322
|
<!--rehype:style=background-color: #ffe564; display: inline-block; border-bottom: 0; padding: 3px 12px;-->
|
|
@@ -357,6 +404,13 @@ export interface ReactCodeMirrorProps
|
|
|
357
404
|
* Originally from the [config of EditorView](https://codemirror.net/6/docs/ref/#view.EditorView.constructor%5Econfig.root)
|
|
358
405
|
*/
|
|
359
406
|
root?: ShadowRoot | Document;
|
|
407
|
+
/**
|
|
408
|
+
* Create a state from its JSON representation serialized with [toJSON](https://codemirror.net/docs/ref/#state.EditorState.toJSON) function
|
|
409
|
+
*/
|
|
410
|
+
initialState?: {
|
|
411
|
+
json: any;
|
|
412
|
+
fields?: Record<'string', StateField<any>>;
|
|
413
|
+
};
|
|
360
414
|
}
|
|
361
415
|
export interface ReactCodeMirrorRef {
|
|
362
416
|
editor?: HTMLDivElement | null;
|
package/cjs/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { EditorState, EditorStateConfig, Extension } from '@codemirror/state';
|
|
2
|
+
import { EditorState, EditorStateConfig, Extension, StateField } from '@codemirror/state';
|
|
3
3
|
import { EditorView, ViewUpdate } from '@codemirror/view';
|
|
4
4
|
import { BasicSetupOptions } from '@uiw/codemirror-extensions-basic-setup';
|
|
5
5
|
import { Statistics } from './utils';
|
|
@@ -64,6 +64,13 @@ export interface ReactCodeMirrorProps extends Omit<EditorStateConfig, 'doc' | 'e
|
|
|
64
64
|
* Originally from the [config of EditorView](https://codemirror.net/6/docs/ref/#view.EditorView.constructor%5Econfig.root)
|
|
65
65
|
*/
|
|
66
66
|
root?: ShadowRoot | Document;
|
|
67
|
+
/**
|
|
68
|
+
* Create a state from its JSON representation serialized with [toJSON](https://codemirror.net/docs/ref/#state.EditorState.toJSON) function
|
|
69
|
+
*/
|
|
70
|
+
initialState?: {
|
|
71
|
+
json: any;
|
|
72
|
+
fields?: Record<string, StateField<any>>;
|
|
73
|
+
};
|
|
67
74
|
}
|
|
68
75
|
export interface ReactCodeMirrorRef {
|
|
69
76
|
editor?: HTMLDivElement | null;
|
package/cjs/index.js
CHANGED
|
@@ -61,7 +61,7 @@ Object.keys(_utils).forEach(function (key) {
|
|
|
61
61
|
}
|
|
62
62
|
});
|
|
63
63
|
});
|
|
64
|
-
var _excluded = ["className", "value", "selection", "extensions", "onChange", "onStatistics", "onCreateEditor", "onUpdate", "autoFocus", "theme", "height", "minHeight", "maxHeight", "width", "minWidth", "maxWidth", "basicSetup", "placeholder", "indentWithTab", "editable", "readOnly", "root"];
|
|
64
|
+
var _excluded = ["className", "value", "selection", "extensions", "onChange", "onStatistics", "onCreateEditor", "onUpdate", "autoFocus", "theme", "height", "minHeight", "maxHeight", "width", "minWidth", "maxWidth", "basicSetup", "placeholder", "indentWithTab", "editable", "readOnly", "root", "initialState"];
|
|
65
65
|
var ReactCodeMirror = /*#__PURE__*/(0, _react.forwardRef)(function (props, ref) {
|
|
66
66
|
var className = props.className,
|
|
67
67
|
_props$value = props.value,
|
|
@@ -88,6 +88,7 @@ var ReactCodeMirror = /*#__PURE__*/(0, _react.forwardRef)(function (props, ref)
|
|
|
88
88
|
editable = props.editable,
|
|
89
89
|
readOnly = props.readOnly,
|
|
90
90
|
root = props.root,
|
|
91
|
+
initialState = props.initialState,
|
|
91
92
|
other = (0, _objectWithoutProperties2["default"])(props, _excluded);
|
|
92
93
|
var editor = (0, _react.useRef)(null);
|
|
93
94
|
|
|
@@ -113,7 +114,8 @@ var ReactCodeMirror = /*#__PURE__*/(0, _react.forwardRef)(function (props, ref)
|
|
|
113
114
|
onStatistics: onStatistics,
|
|
114
115
|
onCreateEditor: onCreateEditor,
|
|
115
116
|
onUpdate: onUpdate,
|
|
116
|
-
extensions: extensions
|
|
117
|
+
extensions: extensions,
|
|
118
|
+
initialState: initialState
|
|
117
119
|
}),
|
|
118
120
|
state = _useCodeMirror.state,
|
|
119
121
|
view = _useCodeMirror.view,
|
package/cjs/index.js.map
CHANGED
|
@@ -27,6 +27,7 @@
|
|
|
27
27
|
"editable",
|
|
28
28
|
"readOnly",
|
|
29
29
|
"root",
|
|
30
|
+
"initialState",
|
|
30
31
|
"other",
|
|
31
32
|
"editor",
|
|
32
33
|
"useRef",
|
|
@@ -45,7 +46,7 @@
|
|
|
45
46
|
"../src/index.tsx"
|
|
46
47
|
],
|
|
47
48
|
"sourcesContent": [
|
|
48
|
-
"import React, { useRef, forwardRef, useImperativeHandle } from 'react';\nimport { EditorState, EditorStateConfig, Extension } from '@codemirror/state';\nimport { EditorView, ViewUpdate } from '@codemirror/view';\nimport { BasicSetupOptions } from '@uiw/codemirror-extensions-basic-setup';\nimport { useCodeMirror } from './useCodeMirror';\nimport { Statistics } from './utils';\n\nexport * from '@uiw/codemirror-extensions-basic-setup';\nexport * from './useCodeMirror';\nexport * from './utils';\n\nexport interface ReactCodeMirrorProps\n extends Omit<EditorStateConfig, 'doc' | 'extensions'>,\n Omit<React.HTMLAttributes<HTMLDivElement>, 'onChange' | 'placeholder'> {\n /** value of the auto created model in the editor. */\n value?: string;\n height?: string;\n minHeight?: string;\n maxHeight?: string;\n width?: string;\n minWidth?: string;\n maxWidth?: string;\n /** focus on the editor. */\n autoFocus?: boolean;\n /** Enables a placeholder—a piece of example content to show when the editor is empty. */\n placeholder?: string | HTMLElement;\n /**\n * `light` / `dark` / `Extension` Defaults to `light`.\n * @default light\n */\n theme?: 'light' | 'dark' | Extension;\n /**\n * Whether to optional basicSetup by default\n * @default true\n */\n basicSetup?: boolean | BasicSetupOptions;\n /**\n * This disables editing of the editor content by the user.\n * @default true\n */\n editable?: boolean;\n /**\n * This disables editing of the editor content by the user.\n * @default false\n */\n readOnly?: boolean;\n /**\n * Whether to optional basicSetup by default\n * @default true\n */\n indentWithTab?: boolean;\n /** Fired whenever a change occurs to the document. */\n onChange?(value: string, viewUpdate: ViewUpdate): void;\n /** Some data on the statistics editor. */\n onStatistics?(data: Statistics): void;\n /** Fired whenever any state change occurs within the editor, including non-document changes like lint results. */\n onUpdate?(viewUpdate: ViewUpdate): void;\n /** The first time the editor executes the event. */\n onCreateEditor?(view: EditorView, state: EditorState): void;\n /**\n * Extension values can be [provided](https://codemirror.net/6/docs/ref/#state.EditorStateConfig.extensions) when creating a state to attach various kinds of configuration and behavior information.\n * They can either be built-in extension-providing objects,\n * such as [state fields](https://codemirror.net/6/docs/ref/#state.StateField) or [facet providers](https://codemirror.net/6/docs/ref/#state.Facet.of),\n * or objects with an extension in its `extension` property. Extensions can be nested in arrays arbitrarily deep—they will be flattened when processed.\n */\n extensions?: Extension[];\n /**\n * If the view is going to be mounted in a shadow root or document other than the one held by the global variable document (the default), you should pass it here.\n * Originally from the [config of EditorView](https://codemirror.net/6/docs/ref/#view.EditorView.constructor%5Econfig.root)\n */\n root?: ShadowRoot | Document;\n}\n\nexport interface ReactCodeMirrorRef {\n editor?: HTMLDivElement | null;\n state?: EditorState;\n view?: EditorView;\n}\n\nconst ReactCodeMirror = forwardRef<ReactCodeMirrorRef, ReactCodeMirrorProps>((props, ref) => {\n const {\n className,\n value = '',\n selection,\n extensions = [],\n onChange,\n onStatistics,\n onCreateEditor,\n onUpdate,\n autoFocus,\n theme = 'light',\n height,\n minHeight,\n maxHeight,\n width,\n minWidth,\n maxWidth,\n basicSetup,\n placeholder,\n indentWithTab,\n editable,\n readOnly,\n root,\n ...other\n } = props;\n const editor = useRef<HTMLDivElement>(null);\n const { state, view, container, setContainer } = useCodeMirror({\n container: editor.current,\n root,\n value,\n autoFocus,\n theme,\n height,\n minHeight,\n maxHeight,\n width,\n minWidth,\n maxWidth,\n basicSetup,\n placeholder,\n indentWithTab,\n editable,\n readOnly,\n selection,\n onChange,\n onStatistics,\n onCreateEditor,\n onUpdate,\n extensions,\n });\n\n useImperativeHandle(ref, () => ({ editor: editor.current, state: state, view: view }), [\n editor,\n container,\n state,\n view,\n ]);\n\n // check type of value\n if (typeof value !== 'string') {\n throw new Error(`value must be typeof string but got ${typeof value}`);\n }\n\n const defaultClassNames = typeof theme === 'string' ? `cm-theme-${theme}` : 'cm-theme';\n return <div ref={editor} className={`${defaultClassNames}${className ? ` ${className}` : ''}`} {...other}></div>;\n});\n\nReactCodeMirror.displayName = 'CodeMirror';\n\nexport default ReactCodeMirror;\n"
|
|
49
|
+
"import React, { useRef, forwardRef, useImperativeHandle } from 'react';\nimport { EditorState, EditorStateConfig, Extension, StateField } from '@codemirror/state';\nimport { EditorView, ViewUpdate } from '@codemirror/view';\nimport { BasicSetupOptions } from '@uiw/codemirror-extensions-basic-setup';\nimport { useCodeMirror } from './useCodeMirror';\nimport { Statistics } from './utils';\n\nexport * from '@uiw/codemirror-extensions-basic-setup';\nexport * from './useCodeMirror';\nexport * from './utils';\n\nexport interface ReactCodeMirrorProps\n extends Omit<EditorStateConfig, 'doc' | 'extensions'>,\n Omit<React.HTMLAttributes<HTMLDivElement>, 'onChange' | 'placeholder'> {\n /** value of the auto created model in the editor. */\n value?: string;\n height?: string;\n minHeight?: string;\n maxHeight?: string;\n width?: string;\n minWidth?: string;\n maxWidth?: string;\n /** focus on the editor. */\n autoFocus?: boolean;\n /** Enables a placeholder—a piece of example content to show when the editor is empty. */\n placeholder?: string | HTMLElement;\n /**\n * `light` / `dark` / `Extension` Defaults to `light`.\n * @default light\n */\n theme?: 'light' | 'dark' | Extension;\n /**\n * Whether to optional basicSetup by default\n * @default true\n */\n basicSetup?: boolean | BasicSetupOptions;\n /**\n * This disables editing of the editor content by the user.\n * @default true\n */\n editable?: boolean;\n /**\n * This disables editing of the editor content by the user.\n * @default false\n */\n readOnly?: boolean;\n /**\n * Whether to optional basicSetup by default\n * @default true\n */\n indentWithTab?: boolean;\n /** Fired whenever a change occurs to the document. */\n onChange?(value: string, viewUpdate: ViewUpdate): void;\n /** Some data on the statistics editor. */\n onStatistics?(data: Statistics): void;\n /** Fired whenever any state change occurs within the editor, including non-document changes like lint results. */\n onUpdate?(viewUpdate: ViewUpdate): void;\n /** The first time the editor executes the event. */\n onCreateEditor?(view: EditorView, state: EditorState): void;\n /**\n * Extension values can be [provided](https://codemirror.net/6/docs/ref/#state.EditorStateConfig.extensions) when creating a state to attach various kinds of configuration and behavior information.\n * They can either be built-in extension-providing objects,\n * such as [state fields](https://codemirror.net/6/docs/ref/#state.StateField) or [facet providers](https://codemirror.net/6/docs/ref/#state.Facet.of),\n * or objects with an extension in its `extension` property. Extensions can be nested in arrays arbitrarily deep—they will be flattened when processed.\n */\n extensions?: Extension[];\n /**\n * If the view is going to be mounted in a shadow root or document other than the one held by the global variable document (the default), you should pass it here.\n * Originally from the [config of EditorView](https://codemirror.net/6/docs/ref/#view.EditorView.constructor%5Econfig.root)\n */\n root?: ShadowRoot | Document;\n /**\n * Create a state from its JSON representation serialized with [toJSON](https://codemirror.net/docs/ref/#state.EditorState.toJSON) function\n */\n initialState?: {\n json: any;\n fields?: Record<string, StateField<any>>;\n };\n}\n\nexport interface ReactCodeMirrorRef {\n editor?: HTMLDivElement | null;\n state?: EditorState;\n view?: EditorView;\n}\n\nconst ReactCodeMirror = forwardRef<ReactCodeMirrorRef, ReactCodeMirrorProps>((props, ref) => {\n const {\n className,\n value = '',\n selection,\n extensions = [],\n onChange,\n onStatistics,\n onCreateEditor,\n onUpdate,\n autoFocus,\n theme = 'light',\n height,\n minHeight,\n maxHeight,\n width,\n minWidth,\n maxWidth,\n basicSetup,\n placeholder,\n indentWithTab,\n editable,\n readOnly,\n root,\n initialState,\n ...other\n } = props;\n const editor = useRef<HTMLDivElement>(null);\n const { state, view, container, setContainer } = useCodeMirror({\n container: editor.current,\n root,\n value,\n autoFocus,\n theme,\n height,\n minHeight,\n maxHeight,\n width,\n minWidth,\n maxWidth,\n basicSetup,\n placeholder,\n indentWithTab,\n editable,\n readOnly,\n selection,\n onChange,\n onStatistics,\n onCreateEditor,\n onUpdate,\n extensions,\n initialState,\n });\n\n useImperativeHandle(ref, () => ({ editor: editor.current, state: state, view: view }), [\n editor,\n container,\n state,\n view,\n ]);\n\n // check type of value\n if (typeof value !== 'string') {\n throw new Error(`value must be typeof string but got ${typeof value}`);\n }\n\n const defaultClassNames = typeof theme === 'string' ? `cm-theme-${theme}` : 'cm-theme';\n return <div ref={editor} className={`${defaultClassNames}${className ? ` ${className}` : ''}`} {...other}></div>;\n});\n\nReactCodeMirror.displayName = 'CodeMirror';\n\nexport default ReactCodeMirror;\n"
|
|
49
50
|
],
|
|
50
|
-
"mappings": ";;;;;;;;;;;;;;;;;;AAAA;;AAIA;;AAIA;EAAA;EAAA;EAAA;EAAA;IAAA;IAAA;MAAA;IAAA;EAAA;AAAA;;;;AADA;;AAAA;EAAA;EAAA;EAAA;EAAA;IAAA;IAAA;MAAA;IAAA;EAAA;AAAA;;AAEA;;AAAA;EAAA;EAAA;EAAA;EAAA;IAAA;IAAA;MAAA;IAAA;EAAA;AAAA;;
|
|
51
|
+
"mappings": "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"
|
|
51
52
|
}
|
package/cjs/useCodeMirror.js
CHANGED
|
@@ -57,7 +57,8 @@ function useCodeMirror(props) {
|
|
|
57
57
|
defaultIndentWithTab = _props$indentWithTab === void 0 ? true : _props$indentWithTab,
|
|
58
58
|
_props$basicSetup = props.basicSetup,
|
|
59
59
|
defaultBasicSetup = _props$basicSetup === void 0 ? true : _props$basicSetup,
|
|
60
|
-
root = props.root
|
|
60
|
+
root = props.root,
|
|
61
|
+
initialState = props.initialState;
|
|
61
62
|
|
|
62
63
|
var _useState = (0, _react.useState)(),
|
|
63
64
|
_useState2 = (0, _slicedToArray2["default"])(_useState, 2),
|
|
@@ -93,17 +94,13 @@ function useCodeMirror(props) {
|
|
|
93
94
|
}
|
|
94
95
|
});
|
|
95
96
|
|
|
96
|
-
var handleChange = (0, _react.useCallback)(function (value, vu) {
|
|
97
|
-
return onChange && onChange(value, vu);
|
|
98
|
-
}, []);
|
|
99
|
-
|
|
100
97
|
var updateListener = _view.EditorView.updateListener.of(function (vu) {
|
|
101
98
|
if (vu.docChanged && typeof onChange === 'function') {
|
|
102
99
|
var doc = vu.state.doc;
|
|
103
100
|
|
|
104
101
|
var _value = doc.toString();
|
|
105
102
|
|
|
106
|
-
|
|
103
|
+
onChange(_value, vu);
|
|
107
104
|
}
|
|
108
105
|
|
|
109
106
|
onStatistics && onStatistics((0, _utils.getStatistics)(vu));
|
|
@@ -156,12 +153,12 @@ function useCodeMirror(props) {
|
|
|
156
153
|
getExtensions = getExtensions.concat(extensions);
|
|
157
154
|
(0, _react.useEffect)(function () {
|
|
158
155
|
if (container && !state) {
|
|
159
|
-
var
|
|
156
|
+
var config = {
|
|
160
157
|
doc: value,
|
|
161
158
|
selection: selection,
|
|
162
159
|
extensions: getExtensions
|
|
163
|
-
}
|
|
164
|
-
|
|
160
|
+
};
|
|
161
|
+
var stateCurrent = initialState ? _state.EditorState.fromJSON(initialState.json, config, initialState.fields) : _state.EditorState.create(config);
|
|
165
162
|
setState(stateCurrent);
|
|
166
163
|
|
|
167
164
|
if (!view) {
|
package/cjs/useCodeMirror.js.map
CHANGED
|
@@ -27,6 +27,7 @@
|
|
|
27
27
|
"basicSetup",
|
|
28
28
|
"defaultBasicSetup",
|
|
29
29
|
"root",
|
|
30
|
+
"initialState",
|
|
30
31
|
"useState",
|
|
31
32
|
"container",
|
|
32
33
|
"setContainer",
|
|
@@ -39,11 +40,9 @@
|
|
|
39
40
|
"backgroundColor",
|
|
40
41
|
"dark",
|
|
41
42
|
"defaultThemeOption",
|
|
42
|
-
"handleChange",
|
|
43
|
-
"useCallback",
|
|
44
|
-
"vu",
|
|
45
43
|
"updateListener",
|
|
46
44
|
"of",
|
|
45
|
+
"vu",
|
|
47
46
|
"docChanged",
|
|
48
47
|
"doc",
|
|
49
48
|
"toString",
|
|
@@ -56,7 +55,11 @@
|
|
|
56
55
|
"EditorState",
|
|
57
56
|
"concat",
|
|
58
57
|
"useEffect",
|
|
58
|
+
"config",
|
|
59
59
|
"stateCurrent",
|
|
60
|
+
"fromJSON",
|
|
61
|
+
"json",
|
|
62
|
+
"fields",
|
|
60
63
|
"create",
|
|
61
64
|
"viewCurrent",
|
|
62
65
|
"parent",
|
|
@@ -78,7 +81,7 @@
|
|
|
78
81
|
"../src/useCodeMirror.ts"
|
|
79
82
|
],
|
|
80
83
|
"sourcesContent": [
|
|
81
|
-
"import {
|
|
84
|
+
"import { useEffect, useState } from 'react';\nimport { EditorState, StateEffect } from '@codemirror/state';\nimport { indentWithTab } from '@codemirror/commands';\nimport { EditorView, keymap, ViewUpdate, placeholder } from '@codemirror/view';\nimport { basicSetup } from '@uiw/codemirror-extensions-basic-setup';\nimport { oneDark } from '@codemirror/theme-one-dark';\nimport { getStatistics } from './utils';\nimport { ReactCodeMirrorProps } from '.';\n\nexport interface UseCodeMirror extends ReactCodeMirrorProps {\n container?: HTMLDivElement | null;\n}\n\nexport function useCodeMirror(props: UseCodeMirror) {\n const {\n value,\n selection,\n onChange,\n onStatistics,\n onCreateEditor,\n onUpdate,\n extensions = [],\n autoFocus,\n theme = 'light',\n height = '',\n minHeight = '',\n maxHeight = '',\n placeholder: placeholderStr = '',\n width = '',\n minWidth = '',\n maxWidth = '',\n editable = true,\n readOnly = false,\n indentWithTab: defaultIndentWithTab = true,\n basicSetup: defaultBasicSetup = true,\n root,\n initialState,\n } = props;\n const [container, setContainer] = useState<HTMLDivElement>();\n const [view, setView] = useState<EditorView>();\n const [state, setState] = useState<EditorState>();\n const defaultLightThemeOption = EditorView.theme(\n {\n '&': {\n backgroundColor: '#fff',\n },\n },\n {\n dark: false,\n },\n );\n const defaultThemeOption = EditorView.theme({\n '&': {\n height,\n minHeight,\n maxHeight,\n width,\n minWidth,\n maxWidth,\n },\n });\n const updateListener = EditorView.updateListener.of((vu: ViewUpdate) => {\n if (vu.docChanged && typeof onChange === 'function') {\n const doc = vu.state.doc;\n const value = doc.toString();\n onChange(value, vu);\n }\n onStatistics && onStatistics(getStatistics(vu));\n });\n\n let getExtensions = [updateListener, defaultThemeOption];\n if (defaultIndentWithTab) {\n getExtensions.unshift(keymap.of([indentWithTab]));\n }\n if (defaultBasicSetup) {\n if (typeof defaultBasicSetup === 'boolean') {\n getExtensions.unshift(basicSetup());\n } else {\n getExtensions.unshift(basicSetup(defaultBasicSetup));\n }\n }\n\n if (placeholderStr) {\n getExtensions.unshift(placeholder(placeholderStr));\n }\n\n switch (theme) {\n case 'light':\n getExtensions.push(defaultLightThemeOption);\n break;\n case 'dark':\n getExtensions.push(oneDark);\n break;\n default:\n getExtensions.push(theme);\n break;\n }\n\n if (editable === false) {\n getExtensions.push(EditorView.editable.of(false));\n }\n if (readOnly) {\n getExtensions.push(EditorState.readOnly.of(true));\n }\n\n if (onUpdate && typeof onUpdate === 'function') {\n getExtensions.push(EditorView.updateListener.of(onUpdate));\n }\n getExtensions = getExtensions.concat(extensions);\n\n useEffect(() => {\n if (container && !state) {\n const config = {\n doc: value,\n selection,\n extensions: getExtensions,\n };\n const stateCurrent = initialState\n ? EditorState.fromJSON(initialState.json, config, initialState.fields)\n : EditorState.create(config);\n setState(stateCurrent);\n if (!view) {\n const viewCurrent = new EditorView({\n state: stateCurrent,\n parent: container,\n root,\n });\n setView(viewCurrent);\n onCreateEditor && onCreateEditor(viewCurrent, stateCurrent);\n }\n }\n return () => {\n if (view) {\n setState(undefined);\n setView(undefined);\n }\n };\n }, [container, state]);\n\n useEffect(() => setContainer(props.container!), [props.container]);\n\n useEffect(\n () => () => {\n if (view) {\n view.destroy();\n setView(undefined);\n }\n },\n [view],\n );\n\n useEffect(() => {\n if (autoFocus && view) {\n view.focus();\n }\n }, [autoFocus, view]);\n\n useEffect(() => {\n if (view) {\n view.dispatch({ effects: StateEffect.reconfigure.of(getExtensions) });\n }\n // eslint-disable-next-line react-hooks/exhaustive-deps\n }, [\n theme,\n extensions,\n height,\n minHeight,\n maxHeight,\n width,\n minWidth,\n maxWidth,\n placeholderStr,\n editable,\n readOnly,\n defaultIndentWithTab,\n defaultBasicSetup,\n onChange,\n onUpdate,\n ]);\n\n useEffect(() => {\n const currentValue = view ? view.state.doc.toString() : '';\n if (view && value !== currentValue) {\n view.dispatch({\n changes: { from: 0, to: currentValue.length, insert: value || '' },\n });\n }\n }, [value, view]);\n\n return { state, setState, view, setView, container, setContainer };\n}\n"
|
|
82
85
|
],
|
|
83
|
-
"mappings": ";;;;;;;;;;;AAAA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AAOO,SAASA,aAAT,CAAuBC,KAAvB,EAA6C;EAClD,IACEC,KADF,
|
|
86
|
+
"mappings": "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"
|
|
84
87
|
}
|