38 lines
980 B
JavaScript
38 lines
980 B
JavaScript
import { h } from 'preact';
|
|
import PropTypes from 'prop-types';
|
|
import Textarea from 'preact-textarea-autosize';
|
|
import { Toolbar } from './Toolbar';
|
|
|
|
export const EditorBody = ({
|
|
onChange,
|
|
defaultValue,
|
|
switchHelpContext,
|
|
version,
|
|
}) => {
|
|
return (
|
|
<div className="crayons-article-form__body">
|
|
<Toolbar version={version} />
|
|
|
|
<Textarea
|
|
className="crayons-textfield crayons-textfield--ghost crayons-article-form__body__field"
|
|
id="article_body_markdown"
|
|
placeholder="Write your post content here..."
|
|
value={defaultValue}
|
|
onInput={onChange}
|
|
onFocus={(_event) => {
|
|
switchHelpContext(_event);
|
|
}}
|
|
name="body_markdown"
|
|
/>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
EditorBody.propTypes = {
|
|
onChange: PropTypes.func.isRequired,
|
|
defaultValue: PropTypes.string.isRequired,
|
|
switchHelpContext: PropTypes.func.isRequired,
|
|
version: PropTypes.string.isRequired,
|
|
};
|
|
|
|
EditorBody.displayName = 'EditorBody';
|