Skip to content

Commit bbbd80a

Browse files
authored
feat: add support for tiptap / liveblocks comments (#1442)
* add support for tiptap / liveblocks comments * fix blocknoteignore from group to spec attribute
1 parent 2839ede commit bbbd80a

File tree

21 files changed

+767
-600
lines changed

21 files changed

+767
-600
lines changed

packages/core/src/api/nodeConversions/nodeToBlock.ts

+11-5
Original file line numberDiff line numberDiff line change
@@ -104,11 +104,12 @@ export function contentNodeToInlineContent<
104104
return;
105105
}
106106

107-
if (
108-
node.type.name !== "link" &&
109-
node.type.name !== "text" &&
110-
inlineContentSchema[node.type.name]
111-
) {
107+
if (node.type.name !== "link" && node.type.name !== "text") {
108+
if (!inlineContentSchema[node.type.name]) {
109+
// eslint-disable-next-line no-console
110+
console.warn("unrecognized inline content type", node.type.name);
111+
return;
112+
}
112113
if (currentContent) {
113114
content.push(currentContent);
114115
currentContent = undefined;
@@ -130,6 +131,11 @@ export function contentNodeToInlineContent<
130131
} else {
131132
const config = styleSchema[mark.type.name];
132133
if (!config) {
134+
if (mark.type.spec.blocknoteIgnore) {
135+
// at this point, we don't want to show certain marks (such as comments)
136+
// in the BlockNote JSON output. These marks should be tagged with "blocknoteIgnore" in the spec
137+
continue;
138+
}
133139
throw new Error(`style ${mark.type.name} not found in styleSchema`);
134140
}
135141
if (config.propSchema === "boolean") {

packages/core/src/editor/BlockNoteEditor.ts

+12-3
Original file line numberDiff line numberDiff line change
@@ -489,7 +489,11 @@ export class BlockNoteEditor<
489489
this.resolveFileUrl = newOptions.resolveFileUrl;
490490
this.headless = newOptions._headless;
491491

492-
if (newOptions.collaboration && newOptions.initialContent) {
492+
const collaborationEnabled =
493+
"collaboration" in this.extensions ||
494+
"liveblocksExtension" in this.extensions;
495+
496+
if (collaborationEnabled && newOptions.initialContent) {
493497
// eslint-disable-next-line no-console
494498
console.warn(
495499
"When using Collaboration, initialContent might cause conflicts, because changes should come from the collaboration provider"
@@ -498,7 +502,7 @@ export class BlockNoteEditor<
498502

499503
const initialContent =
500504
newOptions.initialContent ||
501-
(options.collaboration
505+
(collaborationEnabled
502506
? [
503507
{
504508
type: "paragraph",
@@ -930,7 +934,12 @@ export class BlockNoteEditor<
930934
for (const mark of marks) {
931935
const config = this.schema.styleSchema[mark.type.name];
932936
if (!config) {
933-
if (mark.type.name !== "link") {
937+
if (
938+
// Links are not considered styles in blocknote
939+
mark.type.name !== "link" &&
940+
// "blocknoteIgnore" tagged marks (such as comments) are also not considered BlockNote "styles"
941+
!mark.type.spec.blocknoteIgnore
942+
) {
934943
// eslint-disable-next-line no-console
935944
console.warn("mark not found in styleschema", mark.type.name);
936945
}

packages/core/src/i18n/locales/ar.ts

+3
Original file line numberDiff line numberDiff line change
@@ -261,6 +261,9 @@ export const ar: Dictionary = {
261261
align_justify: {
262262
tooltip: "ضبط النص",
263263
},
264+
comment: {
265+
tooltip: "إضافة ملاحظة",
266+
},
264267
},
265268
file_panel: {
266269
upload: {

packages/core/src/i18n/locales/de.ts

+3
Original file line numberDiff line numberDiff line change
@@ -273,6 +273,9 @@ export const de = {
273273
align_justify: {
274274
tooltip: "Text Blocksatz",
275275
},
276+
comment: {
277+
tooltip: "Kommentar hinzufügen",
278+
},
276279
},
277280
file_panel: {
278281
upload: {

packages/core/src/i18n/locales/en.ts

+3
Original file line numberDiff line numberDiff line change
@@ -275,6 +275,9 @@ export const en = {
275275
align_justify: {
276276
tooltip: "Justify text",
277277
},
278+
comment: {
279+
tooltip: "Add comment",
280+
},
278281
},
279282
file_panel: {
280283
upload: {

packages/core/src/i18n/locales/es.ts

+3
Original file line numberDiff line numberDiff line change
@@ -272,6 +272,9 @@ export const es = {
272272
align_justify: {
273273
tooltip: "Justificar texto",
274274
},
275+
comment: {
276+
tooltip: "Agregar comentario",
277+
},
275278
},
276279
file_panel: {
277280
upload: {

packages/core/src/i18n/locales/fr.ts

+3
Original file line numberDiff line numberDiff line change
@@ -300,6 +300,9 @@ export const fr: Dictionary = {
300300
align_justify: {
301301
tooltip: "Justifier le texte",
302302
},
303+
comment: {
304+
tooltip: "Ajouter un commentaire",
305+
},
303306
},
304307
file_panel: {
305308
upload: {

packages/core/src/i18n/locales/hr.ts

+3
Original file line numberDiff line numberDiff line change
@@ -281,6 +281,9 @@ export const hr = {
281281
align_justify: {
282282
tooltip: "Poravnaj tekst obostrano",
283283
},
284+
comment: {
285+
tooltip: "Dodaj komentar",
286+
},
284287
},
285288
file_panel: {
286289
upload: {

packages/core/src/i18n/locales/is.ts

+3
Original file line numberDiff line numberDiff line change
@@ -268,6 +268,9 @@ export const is: Dictionary = {
268268
align_justify: {
269269
tooltip: "Jafna texta",
270270
},
271+
comment: {
272+
tooltip: "Bæta við athugun",
273+
},
271274
},
272275
file_panel: {
273276
upload: {

0 commit comments

Comments
 (0)