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

make update default

parent bc7e933b
No related branches found
No related tags found
1 merge request!289Pm node views portals
import { AbstractNodeView } from 'wax-prosemirror-services';
export default class MultipleChoiceNodeView extends AbstractNodeView {
constructor(
node,
view,
getPos,
decorations,
createPortal,
Component,
context,
) {
super(node, view, getPos, decorations, createPortal, Component, context);
this.node = node;
this.outerView = view;
this.getPos = getPos;
this.context = context;
}
// constructor(
// node,
// view,
// getPos,
// decorations,
// createPortal,
// Component,
// context,
// ) {
// super(node, view, getPos, decorations, createPortal, Component, context);
// }
static name() {
return 'multiple_choice';
}
update(node) {
if (!node.sameMarkup(this.node)) return false;
this.node = node;
if (this.context.view[node.attrs.id]) {
let state = this.context.view[node.attrs.id].state;
let start = node.content.findDiffStart(state.doc.content);
if (start != null) {
let { a: endA, b: endB } = node.content.findDiffEnd(state.doc.content);
let overlap = start - Math.min(endA, endB);
if (overlap > 0) {
endA += overlap;
endB += overlap;
}
this.context.view[node.attrs.id].dispatch(
state.tr
.replace(start, endB, node.slice(start, endA))
.setMeta('fromOutside', true),
);
}
}
return true;
}
}
......@@ -14,13 +14,36 @@ export default class AbstractNodeView {
this.dom.id = uuidv4();
this.dom.classList.add('portal');
this.node = node;
this.outerView = view;
this.getPos = getPos;
this.context = context;
createPortal(this.dom, Component, node, view, getPos, decorations, context);
}
update(node) {
console.log('d;dld;ddld');
return false;
if (!node.sameMarkup(this.node)) return false;
this.node = node;
if (this.context.view[node.attrs.id]) {
const { state } = this.context.view[node.attrs.id];
const start = node.content.findDiffStart(state.doc.content);
if (start != null) {
let { a: endA, b: endB } = node.content.findDiffEnd(state.doc.content);
const overlap = start - Math.min(endA, endB);
if (overlap > 0) {
endA += overlap;
endB += overlap;
}
this.context.view[node.attrs.id].dispatch(
state.tr
.replace(start, endB, node.slice(start, endA))
.setMeta('fromOutside', true),
);
}
}
return true;
}
destroy() {
......
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