Files
AFFiNE-Mirror/src/components/editor.tsx
T
2022-10-13 14:50:04 +08:00

52 lines
1.2 KiB
TypeScript

import { Suspense, useEffect, useRef } from 'react';
import type { EditorContainer } from '@blocksuite/editor';
import { Text } from '@blocksuite/store';
import '@blocksuite/blocks';
import '@blocksuite/editor';
import '@blocksuite/blocks/style';
declare global {
interface Window {
editor: EditorContainer;
}
}
export const Editor = () => {
const editorRef = useRef<EditorContainer>();
useEffect(() => {
const { store } = editorRef.current as EditorContainer;
const pageId = store.addBlock({
flavour: 'page',
title: 'Blocksuite live demo',
});
const groupId = store.addBlock({ flavour: 'group' }, pageId);
const text = new Text('Legend from here ...');
store.addBlock({ flavour: 'paragraph', text }, groupId);
// store._history.clear();
}, []);
return (
<Suspense fallback={<div>Error!</div>}>
<editor-container ref={editorRef} />
</Suspense>
);
};
declare global {
interface HTMLElementTagNameMap {
'editor-container': EditorContainer;
}
namespace JSX {
interface IntrinsicElements {
// TODO fix type error
'editor-container': any; // EditorContainer
}
}
}
export default Editor;