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

create empty paragraphs

parent 4ca0ec5f
No related branches found
No related tags found
1 merge request!511Numerical answer
......@@ -209,6 +209,8 @@ const QuestionEditorComponent = ({
}, []);
const dispatchTransaction = tr => {
console.log(tr.getMeta('addToHistoryFromOutside'));
const addToHistory = !tr.getMeta('exludeToHistoryFromOutside');
const { state, transactions } = questionView.state.applyTransaction(tr);
questionView.updateState(state);
context.updateView({}, questionId);
......@@ -222,7 +224,11 @@ const QuestionEditorComponent = ({
outerTr.step(steps[j].map(offsetMap));
}
if (outerTr.docChanged)
view.dispatch(outerTr.setMeta('outsideView', questionId));
view.dispatch(
outerTr
.setMeta('outsideView', questionId)
.setMeta('addToHistory', addToHistory),
);
}
};
......
......@@ -17,7 +17,9 @@ const createEmptyParagraph = (context, newAnswerId) => {
if (context.pmViews[newAnswerId].dispatch) {
const type = context.pmViews.main.state.schema.nodes.paragraph;
context.pmViews[newAnswerId].dispatch(
context.pmViews[newAnswerId].state.tr.insert(0, type.create()),
context.pmViews[newAnswerId].state.tr
.insert(0, type.create())
.setMeta('exludeToHistoryFromOutside', true),
);
}
context.pmViews[newAnswerId].dispatch(
......@@ -80,9 +82,9 @@ const createOptions = (main, context, parentType, questionType, answerType) => {
dispatch(tr);
setTimeout(() => {
context.pmViews[question.attrs.id].focus();
// createEmptyParagraph(context, firstOption.attrs.id);
// createEmptyParagraph(context, secondOption.attrs.id);
// createEmptyParagraph(context, question.attrs.id);
createEmptyParagraph(context, firstOption.attrs.id);
createEmptyParagraph(context, secondOption.attrs.id);
createEmptyParagraph(context, question.attrs.id);
}, 50);
return true;
......
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