collective / volto-hydra

A volto addon to let you edit content in realtime when you have many frontends written in any framework
1 stars 2 forks source link

Inline format text #119

Closed MAX-786 closed 4 weeks ago

MAX-786 commented 1 month ago

fixes #88 fixes #31 fixes #32

Approach (still got some bugs) :

hydra.js:

Admin UI:

Since we have to write our own toggleMark method to update the json of selected block richtext field, I am doing the following:

MAX-786 commented 1 month ago

I think as Dylan suggested, its better to move addNodeIds on the adminUI side, which will lessen the load on hydrajs and also help us in formatting text inline. I'll try it out and see how complicated it is to do so.

djay commented 1 month ago

@MAX-786 why do we care if the original data is modified? I don't think there is a way to cancel an inline edit is there? does slate in the sidebar modify the original data?

Will you include the other char formatting as well in this PR? might as well include them if its easy. paragraph formats like h2 etc work different. are they better in a different PR or this one?

djay commented 1 month ago

Did it help to see the slate package and it's transform code?

MAX-786 commented 1 month ago

Yep!!!! they helped and interestingly i was looking at them before too but i wasn't sure if it would be useful but i made them work and now i also added 'italic' & 'del' formats too. I'll be adding the comments with what approach i used and what it is actually doing to format the text.

MAX-786 commented 1 month ago

so the aim of this pr was to enable applying/removing bold, italic, and strikethrough formatting to selected text directly within the iframe. One thing i also needed to make sure is that i had to ensure that any formatting changes made in the iframe are accurately reflected in the Slate JSON representation and vice-versa. Now recent commits correctly handles scenarios where the entire selection is enclosed within a formatting element or maybe formatting element is inside the selection, so it is now handled by isFormatted & unwrapFormattin methods.

https://github.com/user-attachments/assets/dcec3a20-3007-4355-b781-7eb62039605a

djay commented 1 month ago

@MAX-786 I think this looks good enough and we should get it merged and move on

djay commented 1 month ago

@MAX-786 does this work for #107 also or does this only work for the slate block?

MAX-786 commented 1 month ago

@MAX-786 does this work for https://github.com/collective/volto-hydra/issues/107 also or does this only work for the slate block?

inline text editing and realtime update is implemented by keeping in mind the instructions for integrator in readme so it will work but inline formatting is currently supported for slate blocks only.