Compare commits

...

2 Commits

Author SHA1 Message Date
kolaente c82e5fb235
fix: lint 2024-02-17 23:23:39 +01:00
kolaente e5e8e8d134
fix(editor): add unique ids to task list items 2024-02-17 23:15:27 +01:00
1 changed files with 17 additions and 4 deletions

View File

@ -389,7 +389,20 @@ const editor = useEditor({
CustomImage, CustomImage,
TaskList, TaskList,
TaskItem.configure({ TaskItem.extend({
addAttributes() {
return {
...this.parent?.(),
id: {
default: () => createRandomID(),
parseHTML: element => element.getAttribute('data-id'),
renderHTML: attributes => ({
'data-id': attributes.id,
}),
},
}
},
}).configure({
nested: true, nested: true,
onReadOnlyChecked: (node: Node, checked: boolean): boolean => { onReadOnlyChecked: (node: Node, checked: boolean): boolean => {
if (!isEditEnabled) { if (!isEditEnabled) {
@ -401,7 +414,7 @@ const editor = useEditor({
// https://github.com/ueberdosis/tiptap/issues/3676 // https://github.com/ueberdosis/tiptap/issues/3676
editor.value!.state.doc.descendants((subnode, pos) => { editor.value!.state.doc.descendants((subnode, pos) => {
if (node.eq(subnode)) { if (node.attrs.id === subnode.attrs.id) {
const {tr} = editor.value!.state const {tr} = editor.value!.state
tr.setNodeMarkup(pos, undefined, { tr.setNodeMarkup(pos, undefined, {
...node.attrs, ...node.attrs,
@ -409,10 +422,10 @@ const editor = useEditor({
}) })
editor.value!.view.dispatch(tr) editor.value!.view.dispatch(tr)
bubbleSave() bubbleSave()
return true
} }
}) })
return true return true
}, },
}), }),
@ -597,7 +610,7 @@ watch(
() => isEditing.value, () => isEditing.value,
async editing => { async editing => {
await nextTick() await nextTick()
let checkboxes = tiptapInstanceRef.value?.querySelectorAll('[data-checked]') let checkboxes = tiptapInstanceRef.value?.querySelectorAll('[data-checked]')
if (typeof checkboxes === 'undefined' || checkboxes.length === 0) { if (typeof checkboxes === 'undefined' || checkboxes.length === 0) {
// For some reason, this works when we check a second time. // For some reason, this works when we check a second time.