1
1
import {
2
2
BlockNoteSchema ,
3
+ combineByGroup ,
4
+ filterSuggestionItems ,
5
+ locales ,
3
6
uploadToTmpFilesDotOrg_DEV_ONLY ,
4
7
} from "@blocknote/core" ;
5
8
import "@blocknote/core/fonts/inter.css" ;
6
- import { useCreateBlockNote } from "@blocknote/react" ;
9
+ import {
10
+ getDefaultReactSlashMenuItems ,
11
+ SuggestionMenuController ,
12
+ useCreateBlockNote ,
13
+ } from "@blocknote/react" ;
7
14
import { BlockNoteView } from "@blocknote/mantine" ;
8
15
import {
16
+ getMultiColumnSlashMenuItems ,
17
+ locales as multiColumnLocales ,
9
18
multiColumnDropCursor ,
10
19
withMultiColumn ,
11
20
} from "@blocknote/xl-multi-column" ;
@@ -74,6 +83,10 @@ export default function DemoEditor(props: { theme?: "light" | "dark" }) {
74
83
75
84
const editor = useCreateBlockNote (
76
85
{
86
+ dictionary : {
87
+ ...locales . en ,
88
+ multi_column : multiColumnLocales . en ,
89
+ } ,
77
90
schema : withMultiColumn ( BlockNoteSchema . create ( ) ) ,
78
91
dropCursor : multiColumnDropCursor ,
79
92
collaboration : {
@@ -100,5 +113,27 @@ export default function DemoEditor(props: { theme?: "light" | "dark" }) {
100
113
}
101
114
} , [ warningShown ] ) ;
102
115
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
+ ) ;
104
139
}
0 commit comments