import React, { useState, useEffect } from 'react'; import Tab from '@material-ui/core/Tab'; import Tabs from '@material-ui/core/Tabs'; import TextField from '@material-ui/core/TextField'; import { makeStyles } from '@material-ui/core/styles'; import Content from 'src/components/Content'; const useStyles = makeStyles((theme) => ({ container: { margin: theme.spacing(2, 0), padding: theme.spacing(0, 2, 2, 2), }, textarea: {}, tabContent: { margin: theme.spacing(2, 0), }, preview: { borderBottom: `solid 3px ${theme.palette.grey['200']}`, minHeight: '5rem', }, actions: { display: 'flex', justifyContent: 'flex-end', }, })); type TabPanelProps = { children: React.ReactNode; value: number; index: number; } & React.HTMLProps; function TabPanel({ children, value, index, ...props }: TabPanelProps) { return ( ); } const a11yProps = (index: number) => ({ id: `editor-tab-${index}`, 'aria-controls': `editor-tabpanel-${index}`, }); type Props = { loading: boolean; onChange: (comment: string) => void; }; function CommentInput({ loading, onChange }: Props) { const [input, setInput] = useState(''); const [tab, setTab] = useState(0); const classes = useStyles(); useEffect(() => { onChange(input); }, [input, onChange]); return (
setTab(t)}>
setInput(e.target.value)} disabled={loading} />
); } export default CommentInput;