Skip to content
Snippets Groups Projects
Commit f1520d6c authored by Christos's avatar Christos
Browse files

Merge branch 'fix-feedback' into 'master'

Fix feedback

See merge request !338
parents 824edd28 001f5860
No related branches found
No related tags found
1 merge request!338Fix feedback
Showing
with 80 additions and 118 deletions
...@@ -43,10 +43,6 @@ const Editoria = () => { ...@@ -43,10 +43,6 @@ const Editoria = () => {
const EditoriaComponent = useMemo( const EditoriaComponent = useMemo(
() => ( () => (
<> <>
<button onClick={() => console.log(editorRef.current.getContent())}>
Click
</button>
<Wax <Wax
ref={editorRef} ref={editorRef}
key={key} key={key}
...@@ -60,7 +56,6 @@ const Editoria = () => { ...@@ -60,7 +56,6 @@ const Editoria = () => {
// onChange={debounce(source => { // onChange={debounce(source => {
// console.log(JSON.stringify(source)); // console.log(JSON.stringify(source));
// }, 200)} // }, 200)}
// onBlur={source => console.log(source)}
user={user} user={user}
/> />
</> </>
......
...@@ -15,7 +15,7 @@ const renderImage = file => { ...@@ -15,7 +15,7 @@ const renderImage = file => {
}); });
}; };
const t = `<p class="paragraph">Based on the equation below</p><math-display class="math-node">x + y = 5</math-display><p class="paragraph">Which ones are correct?</p><p class="paragraph"></p><div id="" class="multiple-choice"><div class="multiple-choice-option" id="d7b65415-ff82-446f-afa4-accaa3837f4a" correct="false" feedback=""><p class="paragraph">answer 1</p><p class="paragraph"><math-inline class="math-node">x+y=1</math-inline></p></div><div class="multiple-choice-option" id="e7d6bb2f-7cd7-44f1-92a0-281e72157538" correct="true" feedback=""><p class="paragraph">answer 2</p></div><div class="multiple-choice-option" id="d6fc749f-afae-4203-9562-d68c380a86e5" correct="false" feedback=""><p class="paragraph">answer 3</p></div></div><div id="" class="fill-the-gap"><p class="paragraph">A <span id="bfd4376c-4424-455e-9187-f53282fa1024" class="fill-the-gap">DNA</span> molecule is very long and usually consists of hundreds or thousands of genes.</p><p class="paragraph">An electron having a certain discrete amount of <span id="14dedf44-728f-4384-835f-e3af82b25623" class="fill-the-gap">energy</span> is something like a ball on a staircase.</p></div><p class="paragraph"></p>`; const t = `<p class="paragraph">Based on the equation below</p><math-display class="math-node">x + y = 5</math-display><p class="paragraph">Which ones are correct?</p><p class="paragraph"></p><div id="" class="multiple-choice"><div class="multiple-choice-option" id="d7b65415-ff82-446f-afa4-accaa3837f4a" correct="false" feedback=""><p class="paragraph">answer 1</p><p class="paragraph"><math-inline class="math-node">x+y=1</math-inline></p></div><div class="multiple-choice-option" id="e7d6bb2f-7cd7-44f1-92a0-281e72157538" correct="true" feedback=""><p class="paragraph">answer 2</p></div><div class="multiple-choice-option" id="d6fc749f-afae-4203-9562-d68c380a86e5" correct="false" feedback="1111111"><p class="paragraph">answer 3</p></div></div><div id="" class="fill-the-gap"><p class="paragraph">A <span id="bfd4376c-4424-455e-9187-f53282fa1024" class="fill-the-gap">DNA</span> molecule is very long and usually consists of hundreds or thousands of genes.</p><p class="paragraph">An electron having a certain discrete amount of <span id="14dedf44-728f-4384-835f-e3af82b25623" class="fill-the-gap">energy</span> is something like a ball on a staircase.</p></div><p class="paragraph"></p>`;
const Hhmi = () => { const Hhmi = () => {
return ( return (
......
import { injectable } from "inversify"; import { injectable } from 'inversify';
@injectable() @injectable()
export default class PmPlugins { export default class PmPlugins {
_plugins = new Map(); _plugins = new Map();
......
...@@ -15,7 +15,6 @@ import { EditorView } from 'prosemirror-view'; ...@@ -15,7 +15,6 @@ import { EditorView } from 'prosemirror-view';
import { trackedTransaction } from 'wax-prosemirror-services'; import { trackedTransaction } from 'wax-prosemirror-services';
import { WaxContext } from './WaxContext'; import { WaxContext } from './WaxContext';
import { PortalContext } from './PortalContext'; import { PortalContext } from './PortalContext';
import transformPasted from './helpers/TransformPasted';
import ComponentPlugin from './ComponentPlugin'; import ComponentPlugin from './ComponentPlugin';
import WaxOptions from './WaxOptions'; import WaxOptions from './WaxOptions';
import getDocContent from './helpers/GetDocContent'; import getDocContent from './helpers/GetDocContent';
...@@ -75,9 +74,6 @@ const WaxView = forwardRef((props, ref) => { ...@@ -75,9 +74,6 @@ const WaxView = forwardRef((props, ref) => {
user, user,
scrollMargin: 200, scrollMargin: 200,
scrollThreshold: 200, scrollThreshold: 200,
transformPasted: slice => {
return transformPasted(slice, view);
},
attributes: { attributes: {
spellcheck: browserSpellCheck ? 'true' : 'false', spellcheck: browserSpellCheck ? 'true' : 'false',
}, },
......
/* eslint-disable array-callback-return */
/* eslint-disable no-param-reassign */
import { forEach, each } from 'lodash';
import { v4 as uuidv4 } from 'uuid';
import { DocumentHelpers } from 'wax-prosemirror-utilities';
const transformPasted = (slice, view) => {
const { content } = slice;
if (view.state.schema.marks.comment) {
const commentNodes = DocumentHelpers.findChildrenByMark(
content,
view.state.schema.marks.comment,
true,
);
const allComments = [];
commentNodes.map(node => {
node.node.marks.map(comment => {
if (comment.type.name === 'comment') {
allComments.push(comment);
}
});
});
const groupedCommentsById = allComments.reduce((obj, mark) => {
obj[mark.attrs.id] = [...(obj[mark.attrs.id] || []), mark];
return obj;
}, {});
forEach(Object.keys(groupedCommentsById), key => {
const id = uuidv4();
forEach(groupedCommentsById[key], comment => {
comment.attrs.id = id;
});
});
}
const schemaNotes = [];
each(view.state.schema.nodes, node => {
if (node.groups.includes('notes')) schemaNotes.push(node);
});
if (schemaNotes.length > 0) {
schemaNotes.forEach(schemaNote => {
const notes = DocumentHelpers.findChildrenByType(
content,
view.state.schema.nodes[schemaNote.name],
true,
);
notes.forEach(note => {
note.node.attrs.id = uuidv4();
});
});
}
return slice;
};
export default transformPasted;
...@@ -2,6 +2,8 @@ export { default as TrackChangePlugin } from './src/trackChanges/TrackChangePlug ...@@ -2,6 +2,8 @@ export { default as TrackChangePlugin } from './src/trackChanges/TrackChangePlug
export { default as HideShowPlugin } from './src/trackChanges/HideShowPlugin'; export { default as HideShowPlugin } from './src/trackChanges/HideShowPlugin';
export { default as CommentPlugin } from './src/comments/CommentPlugin'; export { default as CommentPlugin } from './src/comments/CommentPlugin';
export { default as CopyPasteCommentPlugin } from './src/comments/CopyPasteCommentPlugin';
export { default as WaxSelectionPlugin } from './src/WaxSelectionPlugin'; export { default as WaxSelectionPlugin } from './src/WaxSelectionPlugin';
export { default as highlightPlugin } from './src/highlightPlugin'; export { default as highlightPlugin } from './src/highlightPlugin';
......
/* eslint-disable no-param-reassign */
import { forEach, each } from 'lodash';
import { v4 as uuidv4 } from 'uuid';
import { Plugin, PluginKey } from 'prosemirror-state';
import { DocumentHelpers } from 'wax-prosemirror-utilities';
const copyPasteCommentPugin = new PluginKey('copyPasteCommentPugin');
export default (props, context) => {
return new Plugin({
key: copyPasteCommentPugin,
props: {
transformPasted: slice => {
const { activeView } = context.app.context;
const { content } = slice;
const commentNodes = DocumentHelpers.findChildrenByMark(
content,
activeView.state.schema.marks.comment,
true,
);
const allComments = [];
commentNodes.map(node => {
node.node.marks.map(comment => {
if (comment.type.name === 'comment') {
allComments.push(comment);
}
});
});
const groupedCommentsById = allComments.reduce((obj, mark) => {
obj[mark.attrs.id] = [...(obj[mark.attrs.id] || []), mark];
return obj;
}, {});
forEach(Object.keys(groupedCommentsById), key => {
const id = uuidv4();
forEach(groupedCommentsById[key], comment => {
comment.attrs.id = id;
});
});
const schemaNotes = [];
each(activeView.state.schema.nodes, node => {
if (node.groups.includes('notes')) schemaNotes.push(node);
});
if (schemaNotes.length > 0) {
schemaNotes.forEach(schemaNote => {
const notes = DocumentHelpers.findChildrenByType(
content,
activeView.state.schema.nodes[schemaNote.name],
true,
);
notes.forEach(note => {
note.node.attrs.id = uuidv4();
});
});
}
return slice;
},
},
});
};
import { commentMark } from 'wax-prosemirror-schema'; import { commentMark } from 'wax-prosemirror-schema';
import { RightArea, CommentBubbleComponent } from 'wax-prosemirror-components'; import { RightArea, CommentBubbleComponent } from 'wax-prosemirror-components';
import { CommentPlugin } from 'wax-prosemirror-plugins'; import { CommentPlugin, CopyPasteCommentPlugin } from 'wax-prosemirror-plugins';
import Service from '../Service'; import Service from '../Service';
const PLUGIN_KEY = 'commentPlugin'; const PLUGIN_KEY = 'commentPlugin';
...@@ -8,6 +8,10 @@ const PLUGIN_KEY = 'commentPlugin'; ...@@ -8,6 +8,10 @@ const PLUGIN_KEY = 'commentPlugin';
export default class CommentsService extends Service { export default class CommentsService extends Service {
boot() { boot() {
this.app.PmPlugins.add(PLUGIN_KEY, CommentPlugin(PLUGIN_KEY)); this.app.PmPlugins.add(PLUGIN_KEY, CommentPlugin(PLUGIN_KEY));
this.app.PmPlugins.add(
'copyPasteCommentPlugin',
CopyPasteCommentPlugin('copyPasteCommentPlugin', this.app.context),
);
const createOverlay = this.container.get('CreateOverlay'); const createOverlay = this.container.get('CreateOverlay');
const layout = this.container.get('Layout'); const layout = this.container.get('Layout');
createOverlay( createOverlay(
......
...@@ -26,23 +26,24 @@ export default ({ node, view, getPos }) => { ...@@ -26,23 +26,24 @@ export default ({ node, view, getPos }) => {
const context = useContext(WaxContext); const context = useContext(WaxContext);
const [feedBack, setFeedBack] = useState(''); const [feedBack, setFeedBack] = useState('');
const [isFirstRun, setFirstRun] = useState(true); const [isFirstRun, setFirstRun] = useState(true);
const [typing, setTyping] = useState(false);
const feedBackRef = useRef(null); const feedBackRef = useRef(null);
useEffect(() => { useEffect(() => {
const allNodes = getNodes(context.view.main); const allNodes = getNodes(context.view.main);
allNodes.forEach(singNode => { allNodes.forEach(singNode => {
if (singNode.node.attrs.id === node.attrs.id) { if (singNode.node.attrs.id === node.attrs.id) {
if (!typing) setFeedBack(singNode.node.attrs.feedback);
if (!isFirstRun) { if (!isFirstRun) {
if (singNode.node.attrs.feedback === '') if (singNode.node.attrs.feedback === '')
setFeedBack(singNode.node.attrs.feedback); setFeedBack(singNode.node.attrs.feedback);
} }
if (singNode.node.attrs.feedback !== '')
setFeedBack(singNode.node.attrs.feedback);
} }
}); });
}, [getNodes(context.view.main)]); }, [getNodes(context.view.main)]);
const handleKeyDown = e => { const handleKeyDown = e => {
setTyping(true);
if (e.key === 'Backspace') { if (e.key === 'Backspace') {
context.view.main.dispatch( context.view.main.dispatch(
context.view.main.state.tr.setSelection( context.view.main.state.tr.setSelection(
......
...@@ -11,7 +11,6 @@ import { undo, redo } from 'prosemirror-history'; ...@@ -11,7 +11,6 @@ import { undo, redo } from 'prosemirror-history';
import { WaxContext } from 'wax-prosemirror-core'; import { WaxContext } from 'wax-prosemirror-core';
import { NoteEditorContainer } from 'wax-prosemirror-components'; import { NoteEditorContainer } from 'wax-prosemirror-components';
import { DocumentHelpers } from 'wax-prosemirror-utilities'; import { DocumentHelpers } from 'wax-prosemirror-utilities';
import transformPasted from './helpers/TransformPasted';
import trackedTransaction from '../TrackChangeService/track-changes/trackedTransaction'; import trackedTransaction from '../TrackChangeService/track-changes/trackedTransaction';
export default ({ node, view }) => { export default ({ node, view }) => {
...@@ -63,9 +62,6 @@ export default ({ node, view }) => { ...@@ -63,9 +62,6 @@ export default ({ node, view }) => {
handleTextInput: (editorView, from, to, text) => { handleTextInput: (editorView, from, to, text) => {
typing = true; typing = true;
}, },
transformPasted: slice => {
return transformPasted(slice, noteView);
},
attributes: { attributes: {
spellcheck: 'false', spellcheck: 'false',
......
import Service from '../Service';
import { footNoteNode } from 'wax-prosemirror-schema'; import { footNoteNode } from 'wax-prosemirror-schema';
import { CommentBubbleComponent } from 'wax-prosemirror-components'; import { CommentBubbleComponent } from 'wax-prosemirror-components';
import Service from '../Service';
import Note from './Note'; import Note from './Note';
import NoteComponent from './NoteComponent'; import NoteComponent from './NoteComponent';
......
import { forEach } from "lodash";
import { v4 as uuidv4 } from "uuid";
import { DocumentHelpers } from "wax-prosemirror-utilities";
const transformPasted = (slice, view) => {
const { content } = slice;
const commentNodes = DocumentHelpers.findChildrenByMark(
content,
view.state.schema.marks.comment,
true
);
const allComments = [];
commentNodes.map(node => {
node.node.marks.map(comment => {
if (comment.type.name === "comment") {
allComments.push(comment);
}
});
});
let groupedCommentsById = allComments.reduce((obj, mark) => {
obj[mark.attrs.id] = [...(obj[mark.attrs.id] || []), mark];
return obj;
}, {});
forEach(Object.keys(groupedCommentsById), key => {
let id = uuidv4();
forEach(groupedCommentsById[key], comment => {
comment.attrs.id = id;
});
});
return slice;
};
export default transformPasted;
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