import { storiesOf } from "@storybook/react"; import { IRteOptions, IRteRef, makeRteApi, Rte } from "@vivid-planet/comet-admin-rte"; import * as React from "react"; import { PrintEditorState, useAutoFocus } from "./helper"; const rteOptions: IRteOptions = { supports: ["italic", "header-one", "header-two"], draftJsProps: { placeholder: "Placeholder", }, maxBlocks: 1, standardBlockType: "header-two", }; const [useRteApi] = makeRteApi(); function Story() { const { editorState, setEditorState } = useRteApi({ defaultValue: JSON.stringify({ blocks: [ { key: "fe4ti", text: "Only one block is accepted", type: "header-one", depth: 0, inlineStyleRanges: [ { offset: 9, length: 5, style: "ITALIC", }, ], entityRanges: [], data: {}, }, ], entityMap: {}, }), }); // focus the editor to see the cursor immediately const editorRef = React.useRef(); useAutoFocus(editorRef); return ( <> ); } storiesOf("comet-admin-rte", module).add("Rte, maxBlocks set", () => );