Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: get POC running on the latest version of blocknote again #2

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

nperez0111
Copy link

We are going to need an easy way to get the comments extension into the server editor if we are going to use this approach. Either via an option on creating the editor instance or otherwise exposing that plugin to have it in the schema.

I wonder if we need to do all of this though, can't we just make an editor on the server and give it the normal collab options and use editor methods to manipulate the document? May be worht testing, but isn't pertitent to what I'm trying to do at the moment which is the auth part

Comment on lines +29 to +35
// TODO to get this to work, I needed to pass a copy of the comment mark to get it into the schema
comments: Mark.create({
name: "comment",
excludes: "",
inclusive: false,
keepOnSplit: true,
group: "blocknoteIgnore", // ignore in blocknote json
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We need to figure out what to do about this...

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

good catch! this was a leftover, it's been fixed already. will make a PR

@nperez0111 nperez0111 requested a review from YousefED March 11, 2025 14:10
@YousefED
Copy link
Contributor

what does this fix exactly? can you explain what was broken? Was something broken before, or only after upgrading to 0.25.1?

@nperez0111
Copy link
Author

If you were to install this with 0.25.0, the example doesn't work, because we changed several things before releasing and this was built while we were still building out comments.

For example:

  • certain imports needs to be pulled from @blocknote/core/comments since they were split out
  • comments are not available as part of the schema by default, they are opt-in. So, setMark was not working, I copied over the comments mark, because it was easier than trying to enable comments on the server side (because it was expecting a whole threadstore implementation and other things that we didn't really need)
  • some of the types had changed, like comment role to commenter
  • yjs was throwing the duplicated error at me so I just re-enabled that for everyone

@YousefED
Copy link
Contributor

YousefED commented Mar 11, 2025 via email

@@ -23,7 +24,75 @@ export function setMark(
) {
// needed to get the pmSchema
// if you use a BlockNote custom schema, make sure to pass it to the create options
const editor = ServerBlockNoteEditor.create();
const editor = ServerBlockNoteEditor.create({
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

let's try with just passing comments to the editor options before merging this, I think that should work right?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I had tried this, but it wanted a ydoc I think. Maybe your PR will help this

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants