Last active
March 11, 2022 09:38
-
-
Save sushilbansal/3d1764305aeddbf88d8e3844a2bb9e2c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { FieldAttributes, useField } from 'formik'; | |
import isHotkey from 'is-hotkey'; | |
import React, { useCallback, useMemo, useState } from 'react'; | |
import { createEditor } from 'slate'; | |
import { withHistory } from 'slate-history'; | |
import { Editable, Slate, withReact } from 'slate-react'; | |
import { FormControl, FormHelperText } from '@material-ui/core'; | |
import Paper from '@material-ui/core/Paper'; | |
import { Theme } from '@material-ui/core/styles'; | |
import makeStyles from '@material-ui/styles/makeStyles'; | |
import { HOTKEYS, SlateElement, SlateLeaf, toggleMark } from './SlateEditorUtil'; | |
import { withEmbeds } from './SlateEmbeds'; | |
import { withLinks } from './SlateLinks'; | |
import { SlateToolbar } from './SlateToolbar'; | |
interface Props { | |
initValue: any; | |
required: boolean; | |
fullWidth: boolean; | |
label?: string; | |
placeholder?: string; | |
textContainerStyle?: any; | |
} | |
export const SlateInputField: React.SFC<FieldAttributes<any> & Props> = ({ | |
initValue, | |
required, | |
fullWidth, | |
placeholder, | |
textContainerStyle, | |
...props | |
}) => { | |
const [field, meta, helpers] = useField<{}>(props); | |
const { setValue } = helpers; | |
const classes = useStyles(); | |
const [slateValue, setSlateValue] = useState(JSON.parse(initValue)); | |
const editor = useMemo( | |
() => withHistory(withEmbeds(withLinks(withReact(createEditor())))), | |
[] | |
); | |
const renderElement = useCallback((props) => <SlateElement {...props} />, []); | |
const renderLeaf = useCallback((props) => <SlateLeaf {...props} />, []); | |
const errorMessage = meta.touched && meta.error ? meta.error : ""; | |
return ( | |
<FormControl | |
className={classes.formControl} | |
error={Boolean(errorMessage)} | |
required={required} | |
fullWidth={fullWidth} | |
> | |
<Paper elevation={2} className={classes.paper}> | |
<Slate | |
editor={editor} | |
value={slateValue} | |
onChange={(value: any) => { | |
setSlateValue(value); | |
setValue(JSON.stringify(value)); | |
}} | |
> | |
<SlateToolbar /> | |
<Editable | |
id={field.name} | |
renderLeaf={renderLeaf} | |
placeholder={placeholder} | |
renderElement={renderElement} | |
onKeyDown={(event: any) => { | |
for (const hotkey in HOTKEYS) { | |
if (isHotkey(hotkey, event)) { | |
event.preventDefault(); | |
const mark = HOTKEYS[hotkey]; | |
toggleMark(editor, mark); | |
} | |
} | |
}} | |
style={{ ...textContainerStyle }} | |
/> | |
</Slate> | |
<FormHelperText id={`${field.name}-error-text`}> | |
{errorMessage} | |
</FormHelperText> | |
</Paper> | |
</FormControl> | |
); | |
}; | |
const useStyles = makeStyles((theme: Theme) => ({ | |
container: { | |
display: "flex", | |
flexWrap: "wrap", | |
}, | |
formControl: { | |
marginBottom: theme.spacing(5), | |
backgroundColor: "white", | |
borderWidth: 5, | |
borderColor: "red", | |
}, | |
paper: { | |
border: `2px solid ${theme.palette.divider}`, | |
}, | |
})); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment