Skip to content
Snippets Groups Projects
Commit 2e37f3fd authored by chris's avatar chris
Browse files

remove temp solution

parent 44ef9d67
No related branches found
No related tags found
1 merge request!104temp fix for pasted comment ids
......@@ -143,33 +143,12 @@ const updateComments = view => {
);
const allComments = nodes.map(node => {
return node.node.marks.filter(comment => {
if (comment.type.name === "comment") {
comment.pos = node.pos;
comment.length = node.node.nodeSize;
}
return comment.type.name === "comment";
});
});
const groupedComments = {};
allComments.forEach(comment => {
//TEMP SOLUTION //TODO PROPERLY FIX IN PM PASTE
if (comment[0].attrs.id === "") {
const commentMark = view.state.schema.marks.comment;
const { tr } = view.state;
view.dispatch(
tr.setMeta("addToHistory", false).addMark(
comment[0].pos,
comment[0].pos + comment[0].length,
commentMark.create({
...((comment[0] && comment[0].attrs) || {}),
id: uuidv4()
})
)
);
}
// until here
if (!groupedComments[comment[0].attrs.group]) {
groupedComments[comment[0].attrs.group] = [comment[0]];
} else {
......
......@@ -11,7 +11,7 @@ const comment = {
tag: "span.comment[data-conversation]",
getAttrs(dom) {
return {
id: dom.id,
id: dom.dataset.id,
group: dom.dataset.group,
conversation: JSON.parse(dom.dataset.conversation)
};
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment