feat: editor is updated (#2464)

This commit is contained in:
Palash Gupta 2023-03-17 15:12:31 +05:30 committed by GitHub
parent 65c2a0bf6a
commit 91c3abae37
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,6 @@
import MEditor, { EditorProps } from '@monaco-editor/react';
import { useIsDarkMode } from 'hooks/useDarkMode';
import React from 'react';
import React, { useMemo } from 'react';
function Editor({
value,
@ -11,16 +11,24 @@ function Editor({
options,
}: MEditorProps): JSX.Element {
const isDarkMode = useIsDarkMode();
const onChangeHandler = (newValue?: string): void => {
if (typeof newValue === 'string' && onChange) onChange(newValue);
};
const editorOptions = useMemo(
() => ({ fontSize: 16, automaticLayout: true, readOnly, ...options }),
[options, readOnly],
);
return (
<MEditor
theme={isDarkMode ? 'vs-dark' : 'vs-light'}
language={language}
value={value}
options={{ fontSize: 16, automaticLayout: true, readOnly, ...options }}
options={editorOptions}
height={height}
onChange={(newValue): void => {
if (typeof newValue === 'string') onChange(newValue);
}}
onChange={onChangeHandler}
/>
);
}
@ -28,7 +36,7 @@ function Editor({
interface MEditorProps {
value: string;
language?: string;
onChange: (value: string) => void;
onChange?: (value: string) => void;
readOnly?: boolean;
height?: string;
options?: EditorProps['options'];
@ -39,6 +47,7 @@ Editor.defaultProps = {
readOnly: false,
height: '40vh',
options: {},
onChange: (): void => {},
};
export default Editor;