Skip to content

Commit 11b330b

Browse files
Added missing multi-column slash menu items to home page demo (#1221)
1 parent c48248e commit 11b330b

File tree

2 files changed

+48
-9
lines changed

2 files changed

+48
-9
lines changed

docs/components/pages/landing/hero/DemoEditor.tsx

+37-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,20 @@
11
import {
22
BlockNoteSchema,
3+
combineByGroup,
4+
filterSuggestionItems,
5+
locales,
36
uploadToTmpFilesDotOrg_DEV_ONLY,
47
} from "@blocknote/core";
58
import "@blocknote/core/fonts/inter.css";
6-
import { useCreateBlockNote } from "@blocknote/react";
9+
import {
10+
getDefaultReactSlashMenuItems,
11+
SuggestionMenuController,
12+
useCreateBlockNote,
13+
} from "@blocknote/react";
714
import { BlockNoteView } from "@blocknote/mantine";
815
import {
16+
getMultiColumnSlashMenuItems,
17+
locales as multiColumnLocales,
918
multiColumnDropCursor,
1019
withMultiColumn,
1120
} from "@blocknote/xl-multi-column";
@@ -74,6 +83,10 @@ export default function DemoEditor(props: { theme?: "light" | "dark" }) {
7483

7584
const editor = useCreateBlockNote(
7685
{
86+
dictionary: {
87+
...locales.en,
88+
multi_column: multiColumnLocales.en,
89+
},
7790
schema: withMultiColumn(BlockNoteSchema.create()),
7891
dropCursor: multiColumnDropCursor,
7992
collaboration: {
@@ -100,5 +113,27 @@ export default function DemoEditor(props: { theme?: "light" | "dark" }) {
100113
}
101114
}, [warningShown]);
102115

103-
return <BlockNoteView onFocus={focus} editor={editor} theme={props.theme} />;
116+
const getSlashMenuItems = useMemo(() => {
117+
return async (query: string) =>
118+
filterSuggestionItems(
119+
combineByGroup(
120+
getDefaultReactSlashMenuItems(editor),
121+
getMultiColumnSlashMenuItems(editor),
122+
),
123+
query,
124+
);
125+
}, [editor]);
126+
127+
return (
128+
<BlockNoteView
129+
onFocus={focus}
130+
editor={editor}
131+
theme={props.theme}
132+
slashMenu={false}>
133+
<SuggestionMenuController
134+
triggerCharacter={"/"}
135+
getItems={getSlashMenuItems}
136+
/>
137+
</BlockNoteView>
138+
);
104139
}

examples/01-basic/03-multi-column/App.tsx

+11-7
Original file line numberDiff line numberDiff line change
@@ -96,12 +96,16 @@ export default function App() {
9696
],
9797
});
9898

99-
// Merges the default slash menu items with the multi-column ones.
100-
const slashMenuItems = useMemo(() => {
101-
return combineByGroup(
102-
getDefaultReactSlashMenuItems(editor),
103-
getMultiColumnSlashMenuItems(editor)
104-
);
99+
// Gets the default slash menu items merged with the multi-column ones.
100+
const getSlashMenuItems = useMemo(() => {
101+
return async (query: string) =>
102+
filterSuggestionItems(
103+
combineByGroup(
104+
getDefaultReactSlashMenuItems(editor),
105+
getMultiColumnSlashMenuItems(editor)
106+
),
107+
query
108+
);
105109
}, [editor]);
106110

107111
// Renders the editor instance using a React component.
@@ -111,7 +115,7 @@ export default function App() {
111115
items and the multi-column ones. */}
112116
<SuggestionMenuController
113117
triggerCharacter={"/"}
114-
getItems={async (query) => filterSuggestionItems(slashMenuItems, query)}
118+
getItems={getSlashMenuItems}
115119
/>
116120
</BlockNoteView>
117121
);

0 commit comments

Comments
 (0)