@uiw/react-codemirror 4.11.6 → 4.12.2
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 +48 -0
- package/cjs/index.d.ts +8 -1
- package/cjs/index.js +4 -2
- package/cjs/index.js.map +3 -2
- package/cjs/useCodeMirror.js +5 -4
- package/cjs/useCodeMirror.js.map +7 -2
- package/dist/mdeditor.js +201 -127
- 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 +5 -3
- package/esm/useCodeMirror.js.map +7 -2
- package/package.json +5 -2
- package/src/index.tsx +10 -1
- package/src/useCodeMirror.ts +6 -2
package/README.md
CHANGED
|
@@ -51,6 +51,7 @@ npm install @uiw/react-codemirror --save
|
|
|
51
51
|
| `@uiw/codemirror-extensions-line-numbers-relative` | [](https://www.npmjs.com/package/@uiw/codemirror-extensions-line-numbers-relative) [](https://www.npmjs.com/package/@uiw/codemirror-extensions-line-numbers-relative) | [`#preview`](https://uiwjs.github.io/react-codemirror/#/extensions/line-numbers-relative) |
|
|
52
52
|
| `@uiw/codemirror-extensions-mentions` | [](https://www.npmjs.com/package/@uiw/codemirror-extensions-mentions) [](https://www.npmjs.com/package/@uiw/codemirror-extensions-mentions) | [`#preview`](https://uiwjs.github.io/react-codemirror/#/extensions/mentions) |
|
|
53
53
|
| `@uiw/codemirror-themes` | [](https://www.npmjs.com/package/@uiw/codemirror-themes) [](https://www.npmjs.com/package/@uiw/codemirror-themes) | [`#preview`](https://uiwjs.github.io/react-codemirror/#/theme/doc) |
|
|
54
|
+
| `@uiw/codemirror-themes-all` | [](https://www.npmjs.com/package/@uiw/codemirror-themes-all) [](https://www.npmjs.com/package/@uiw/codemirror-themes-all) | [`#preview`](https://uiwjs.github.io/react-codemirror/#/theme/all) |
|
|
54
55
|
| `@uiw/codemirror-theme-abcdef` | [](https://www.npmjs.com/package/@uiw/codemirror-theme-abcdef) [](https://www.npmjs.com/package/@uiw/codemirror-theme-abcdef) | [`#preview`](https://uiwjs.github.io/react-codemirror/#/theme/data/abcdef) |
|
|
55
56
|
| `@uiw/codemirror-theme-androidstudio` | [](https://www.npmjs.com/package/@uiw/codemirror-theme-androidstudio) [](https://www.npmjs.com/package/@uiw/codemirror-theme-androidstudio) | [`#preview`](https://uiwjs.github.io/react-codemirror/#/theme/data/androidstudio) |
|
|
56
57
|
| `@uiw/codemirror-theme-atomone` | [](https://www.npmjs.com/package/@uiw/codemirror-theme-atomone) [](https://www.npmjs.com/package/@uiw/codemirror-theme-atomone) | [`#preview`](https://uiwjs.github.io/react-codemirror/#/theme/data/atomone) |
|
|
@@ -277,6 +278,46 @@ export default function App() {
|
|
|
277
278
|
}
|
|
278
279
|
```
|
|
279
280
|
|
|
281
|
+
## Use `initialState` to restore state from JSON-serialized representation
|
|
282
|
+
|
|
283
|
+
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.
|
|
284
|
+
|
|
285
|
+
For example, this is how undo history can be saved in the local storage, so that it remains after the page reloads
|
|
286
|
+
|
|
287
|
+
```jsx
|
|
288
|
+
import CodeMirror from '@uiw/react-codemirror';
|
|
289
|
+
import { historyField } from '@codemirror/commands';
|
|
290
|
+
|
|
291
|
+
// When custom fields should be serialized, you can pass them in as an object mapping property names to fields.
|
|
292
|
+
// See [toJSON](https://codemirror.net/docs/ref/#state.EditorState.toJSON) documentation for more details
|
|
293
|
+
const stateFields = { history: historyField };
|
|
294
|
+
|
|
295
|
+
export function EditorWithInitialState() {
|
|
296
|
+
const serializedState = localStorage.getItem('myEditorState');
|
|
297
|
+
const value = localStorage.getItem('myValue') || '';
|
|
298
|
+
|
|
299
|
+
return (
|
|
300
|
+
<CodeMirror
|
|
301
|
+
value={value}
|
|
302
|
+
initialState={
|
|
303
|
+
serializedState
|
|
304
|
+
? {
|
|
305
|
+
json: JSON.parse(serializedState || ''),
|
|
306
|
+
fields: stateFields,
|
|
307
|
+
}
|
|
308
|
+
: undefined
|
|
309
|
+
}
|
|
310
|
+
onChange={(value, viewUpdate) => {
|
|
311
|
+
localStorage.setItem('myValue', value);
|
|
312
|
+
|
|
313
|
+
const state = viewUpdate.state.toJSON(stateFields);
|
|
314
|
+
localStorage.setItem('myEditorState', JSON.stringify(state));
|
|
315
|
+
}}
|
|
316
|
+
/>
|
|
317
|
+
);
|
|
318
|
+
}
|
|
319
|
+
```
|
|
320
|
+
|
|
280
321
|
## Props
|
|
281
322
|
|
|
282
323
|
<!--rehype:style=background-color: #ffe564; display: inline-block; border-bottom: 0; padding: 3px 12px;-->
|
|
@@ -364,6 +405,13 @@ export interface ReactCodeMirrorProps
|
|
|
364
405
|
* Originally from the [config of EditorView](https://codemirror.net/6/docs/ref/#view.EditorView.constructor%5Econfig.root)
|
|
365
406
|
*/
|
|
366
407
|
root?: ShadowRoot | Document;
|
|
408
|
+
/**
|
|
409
|
+
* Create a state from its JSON representation serialized with [toJSON](https://codemirror.net/docs/ref/#state.EditorState.toJSON) function
|
|
410
|
+
*/
|
|
411
|
+
initialState?: {
|
|
412
|
+
json: any;
|
|
413
|
+
fields?: Record<'string', StateField<any>>;
|
|
414
|
+
};
|
|
367
415
|
}
|
|
368
416
|
export interface ReactCodeMirrorRef {
|
|
369
417
|
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),
|
|
@@ -152,12 +153,12 @@ function useCodeMirror(props) {
|
|
|
152
153
|
getExtensions = getExtensions.concat(extensions);
|
|
153
154
|
(0, _react.useEffect)(function () {
|
|
154
155
|
if (container && !state) {
|
|
155
|
-
var
|
|
156
|
+
var config = {
|
|
156
157
|
doc: value,
|
|
157
158
|
selection: selection,
|
|
158
159
|
extensions: getExtensions
|
|
159
|
-
}
|
|
160
|
-
|
|
160
|
+
};
|
|
161
|
+
var stateCurrent = initialState ? _state.EditorState.fromJSON(initialState.json, config, initialState.fields) : _state.EditorState.create(config);
|
|
161
162
|
setState(stateCurrent);
|
|
162
163
|
|
|
163
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",
|
|
@@ -54,7 +55,11 @@
|
|
|
54
55
|
"EditorState",
|
|
55
56
|
"concat",
|
|
56
57
|
"useEffect",
|
|
58
|
+
"config",
|
|
57
59
|
"stateCurrent",
|
|
60
|
+
"fromJSON",
|
|
61
|
+
"json",
|
|
62
|
+
"fields",
|
|
58
63
|
"create",
|
|
59
64
|
"viewCurrent",
|
|
60
65
|
"parent",
|
|
@@ -76,7 +81,7 @@
|
|
|
76
81
|
"../src/useCodeMirror.ts"
|
|
77
82
|
],
|
|
78
83
|
"sourcesContent": [
|
|
79
|
-
"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 } = 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
|
|
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"
|
|
80
85
|
],
|
|
81
|
-
"mappings": ";;;;;;;;;;;AAAA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AAOO,SAASA,aAAT,CAAuBC,KAAvB,EAA6C;EAClD,IACEC,KADF,
|
|
86
|
+
"mappings": "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"
|
|
82
87
|
}
|