Move the styles declaration inside BlockEditor
I do not know why, but when the styles are declared as settings of the BlockEditorProvider, then typing anything is too slow to be usable. But, when the styles are declared within the BlockEditor, without the useSelect hook, then it works as expected (not fast, not that, but at least not intolerably slow.) I tried with a useMemo to keep the styles the same when there is no change, which is most of the time, but the behaviour is the same. Since i do not need to pass the styles from without the application, at least not for now, my only option is to have them directly in BlockEditor.
This commit is contained in:
parent
fbe4728053
commit
5b1a63a69c
|
@ -1,4 +1,3 @@
|
|||
import { useSelect } from '@wordpress/data';
|
||||
import { InterfaceSkeleton, FullscreenMode, ComplementaryArea } from '@wordpress/interface';
|
||||
import { BlockBreadcrumb, BlockCanvas, store as blockEditorStore } from '@wordpress/block-editor';
|
||||
|
||||
|
@ -6,13 +5,20 @@ import Header from './Header';
|
|||
import Sidebar from './Sidebar';
|
||||
import { scope } from './constants';
|
||||
|
||||
import blockLibraryCommon from '@wordpress/block-library/build-style/common.css?inline';
|
||||
import blockLibraryEditor from '@wordpress/block-library/build-style/editor.css?inline';
|
||||
import blockLibraryStyle from '@wordpress/block-library/build-style/style.css?inline';
|
||||
import componentsStyle from '@wordpress/components/build-style/style.css?inline';
|
||||
import formatLibraryStyle from '@wordpress/format-library/build-style/style.css?inline';
|
||||
|
||||
export default function BlockEditor() {
|
||||
const { styles } = useSelect(( select ) => {
|
||||
const { getSettings, getBlockSelectionStart } = select( blockEditorStore );
|
||||
return {
|
||||
styles: getSettings().styles,
|
||||
};
|
||||
}, []);
|
||||
const styles = [
|
||||
{ css: componentsStyle },
|
||||
{ css: blockLibraryCommon },
|
||||
{ css: blockLibraryStyle },
|
||||
{ css: blockLibraryEditor },
|
||||
{ css: formatLibraryStyle },
|
||||
];
|
||||
|
||||
return (
|
||||
<>
|
||||
|
|
|
@ -5,12 +5,6 @@ import BlockEditor from './BlockEditor';
|
|||
|
||||
import './editor.scss';
|
||||
|
||||
import blockLibraryCommon from '@wordpress/block-library/build-style/common.css?inline';
|
||||
import blockLibraryEditor from '@wordpress/block-library/build-style/editor.css?inline';
|
||||
import blockLibraryStyle from '@wordpress/block-library/build-style/style.css?inline';
|
||||
import componentsStyle from '@wordpress/components/build-style/style.css?inline';
|
||||
import formatLibraryStyle from '@wordpress/format-library/build-style/style.css?inline';
|
||||
|
||||
export default function Editor() {
|
||||
const [ blocks, updateBlocks ] = useState();
|
||||
|
||||
|
@ -19,13 +13,6 @@ export default function Editor() {
|
|||
onInput={ updateBlocks }
|
||||
onChange={ updateBlocks }
|
||||
settings={ {
|
||||
styles: [
|
||||
{ css: componentsStyle },
|
||||
{ css: blockLibraryCommon },
|
||||
{ css: blockLibraryStyle },
|
||||
{ css: blockLibraryEditor },
|
||||
{ css: formatLibraryStyle },
|
||||
],
|
||||
__experimentalFeatures: {
|
||||
typography: {
|
||||
defaultFontSizes: true,
|
||||
|
|
Loading…
Reference in New Issue