-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathPlaygroundMini.tsx
39 lines (34 loc) · 1014 Bytes
/
PlaygroundMini.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
import {memo} from 'react';
import {getInitialMd} from '../utils/getInitialMd';
import {Playground, type PlaygroundProps} from './Playground';
export type PlaygroundMiniProps = Pick<
PlaygroundProps,
| 'initialEditor'
| 'settingsVisible'
| 'breaks'
| 'allowHTML'
| 'linkify'
| 'linkifyTlds'
| 'sanitizeHtml'
| 'prepareRawMarkup'
| 'splitModeOrientation'
| 'stickyToolbar'
| 'initialSplitModeEnabled'
| 'renderPreviewDefined'
| 'height'
| 'initial'
| 'onChangeEditorType'
| 'onChangeSplitModeEnabled'
| 'directiveSyntax'
| 'disabledHTMLBlockModes'
| 'disableMarkdownItAttrs'
> & {withDefaultInitialContent?: boolean};
export const PlaygroundMini = memo<PlaygroundMiniProps>(
({withDefaultInitialContent, initial, ...props}) => (
<Playground
{...props}
initial={initial ?? (withDefaultInitialContent ? getInitialMd() : undefined)}
/>
),
);
PlaygroundMini.displayName = 'Playground';