-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathRenderer.tsx
More file actions
224 lines (183 loc) · 5.96 KB
/
Renderer.tsx
File metadata and controls
224 lines (183 loc) · 5.96 KB
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
/* eslint-disable @typescript-eslint/no-var-requires */
import classNames from 'classnames';
import CodeEditor from './CodeEditor';
import Preview from './Preview';
import canUseDOM from './utils/canUseDOM';
import evalCode from './utils/evalCode';
import CodeIcon from './icons/Code';
import { useEffect, useState, useCallback } from 'react';
import { transform as transformCode, Options } from 'sucrase';
const React = require('react');
const ReactDOM = require('react-dom');
interface EditorProps {
/** The className of the editor */
className?: string;
/** Add a prefix to the className of the buttons on the toolbar */
classPrefix?: string;
/** The className of the code button displayed on the toolbar */
buttonClassName?: string;
/** Customize the code icon on the toolbar */
icon?: React.ReactNode;
/** The properties of the show code button */
showCodeButtonProps?: React.HTMLAttributes<HTMLButtonElement>;
}
export interface RendererProps extends Omit<React.HTMLAttributes<HTMLElement>, 'onChange'> {
/** Code editor theme, applied to CodeMirror */
theme?: 'light' | 'dark';
/** The code to be rendered is executed */
code?: string;
/** The component used to render the copy button */
copyCodeButtonAs?: React.ElementType;
/** Dependent objects required by the executed code */
dependencies?: Record<string, unknown>;
/** Renders a code editor that can modify the source code */
editable?: boolean;
/** Editor properties */
editor?: EditorProps;
/**
* https://github.com/alangpierce/sucrase#transforms
*/
transformOptions?: Options;
/** Customize the rendering toolbar */
renderToolbar?: (
buttons: React.ReactNode,
showCodeButtonProps: React.HTMLAttributes<HTMLButtonElement>
) => React.ReactNode;
/** Customize the rendering footer */
renderExtraFooter?: () => React.ReactNode;
/** Callback triggered when the editor is opened */
onOpenEditor?: () => void;
/** Callback triggered when the editor is closed */
onCloseEditor?: () => void;
/** Callback triggered after code change */
onChange?: (code?: string) => void;
/** Executed before compiling the code */
beforeCompile?: (code: string) => string;
/** Executed after compiling the code */
afterCompile?: (code: string) => string;
}
const defaultTransformOptions: Options = { transforms: ['jsx'] };
const Renderer = React.forwardRef((props: RendererProps, ref: React.Ref<HTMLDivElement>) => {
const {
dependencies,
editor = {},
theme = 'light',
editable: isEditable = false,
transformOptions = defaultTransformOptions,
code,
copyCodeButtonAs,
renderToolbar,
renderExtraFooter,
onOpenEditor,
onCloseEditor,
onChange,
beforeCompile,
afterCompile,
...rest
} = props;
const {
classPrefix,
icon: codeIcon,
className: editorClassName,
buttonClassName,
showCodeButtonProps,
...editorProps
} = editor;
const [editable, setEditable] = useState(isEditable);
const [errorMessage, setErrorMessage] = useState(null);
const [compiledReactNode, setCompiledReactNode] = useState(null);
const handleExpandEditor = useCallback(() => {
setEditable(!editable);
if (editable) {
onCloseEditor?.();
} else if (!editable) {
onOpenEditor?.();
}
}, [editable, onCloseEditor, onOpenEditor]);
const handleError = useCallback(error => {
setErrorMessage(error.message);
}, []);
const prefix = name => (classPrefix ? `${classPrefix}-${name}` : name);
const executeCode = useCallback(
(pendCode = code) => {
if (!canUseDOM) {
return;
}
const originalRender = ReactDOM.render;
// Redefine the render function, which will reset to the default value after `eval` is executed.
ReactDOM.render = element => {
setCompiledReactNode(element);
};
try {
const beforeCompileCode = beforeCompile?.(pendCode) || pendCode;
if (beforeCompileCode) {
const { code: compiledCode } = transformCode(beforeCompileCode, transformOptions);
evalCode(afterCompile?.(compiledCode) || compiledCode, {
React,
ReactDOM,
...dependencies
});
}
} catch (err) {
console.warn(err);
} finally {
// Reset the render function to the original value.
ReactDOM.render = originalRender;
}
},
[code, dependencies, beforeCompile, transformOptions, afterCompile]
);
useEffect(() => {
executeCode(code);
}, [code, executeCode]);
const handleCodeChange = useCallback(
(code?: string) => {
onChange?.(code);
executeCode(code);
setErrorMessage(null);
},
[executeCode, onChange]
);
const toggleButtonProps = {
role: 'switch',
'aria-checked': editable,
'aria-label': 'Show the full source',
className: buttonClassName,
onClick: handleExpandEditor,
...showCodeButtonProps
};
const showCodeButton = (
<button {...toggleButtonProps}>
{typeof codeIcon !== 'undefined' ? (
codeIcon
) : (
<CodeIcon className={classNames(prefix('icon'), prefix('icon-code'))} />
)}
</button>
);
const showCodeEditor = editable && code;
const hasError = !!errorMessage;
return (
<div className="rcv-container" {...rest} ref={ref}>
<Preview hasError={hasError} errorMessage={errorMessage} onError={handleError}>
{compiledReactNode}
</Preview>
<div className="rcv-toolbar">
{renderToolbar ? renderToolbar(showCodeButton, toggleButtonProps) : showCodeButton}
</div>
{showCodeEditor && (
<CodeEditor
{...editorProps}
key="jsx"
copyCodeButtonAs={copyCodeButtonAs}
onChange={handleCodeChange}
className={classNames(editorClassName, 'rcv-editor')}
editorConfig={{ lineNumbers: true, theme: `base16-${theme}` }}
code={code}
/>
)}
{renderExtraFooter?.()}
</div>
);
});
export default Renderer;