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

workaround for setting active view in notes

parent ebb15773
No related branches found
No related tags found
1 merge request!231Connect funcionality
...@@ -177,7 +177,6 @@ const FindComponent = ({ close, expand, setPreviousSearcValue }) => { ...@@ -177,7 +177,6 @@ const FindComponent = ({ close, expand, setPreviousSearcValue }) => {
); );
const resultsFrom = helpers.getResultsFrom(results); const resultsFrom = helpers.getResultsFrom(results);
const notesIds = helpers.getNotesIds(view.main); const notesIds = helpers.getNotesIds(view.main);
const found = helpers.getClosestMatch( const found = helpers.getClosestMatch(
lastSelection.from, lastSelection.from,
resultsFrom[lastActiveViewId], resultsFrom[lastActiveViewId],
......
...@@ -120,7 +120,6 @@ const getClosestMatch = (selectionFrom, results, greater = true) => { ...@@ -120,7 +120,6 @@ const getClosestMatch = (selectionFrom, results, greater = true) => {
}; };
const moveToMatch = (view, lastActiveViewId, results, position) => { const moveToMatch = (view, lastActiveViewId, results, position) => {
console.log(lastActiveViewId, results, position);
const selectionFrom = new TextSelection( const selectionFrom = new TextSelection(
view[lastActiveViewId].state.doc.resolve( view[lastActiveViewId].state.doc.resolve(
results[lastActiveViewId][position].from, results[lastActiveViewId][position].from,
......
...@@ -18,7 +18,7 @@ export default ({ node, view }) => { ...@@ -18,7 +18,7 @@ export default ({ node, view }) => {
const context = useContext(WaxContext); const context = useContext(WaxContext);
const noteId = node.attrs.id; const noteId = node.attrs.id;
let noteView; let noteView;
let clickInNote = false;
// eslint-disable-next-line react/destructuring-assignment // eslint-disable-next-line react/destructuring-assignment
const isEditable = context.view.main.props.editable(editable => { const isEditable = context.view.main.props.editable(editable => {
return editable; return editable;
...@@ -38,7 +38,7 @@ export default ({ node, view }) => { ...@@ -38,7 +38,7 @@ export default ({ node, view }) => {
handleDOMEvents: { handleDOMEvents: {
mousedown: () => { mousedown: () => {
context.updateView({}, noteId); context.updateView({}, noteId);
clickInNote = true;
// Kludge to prevent issues due to the fact that the whole // Kludge to prevent issues due to the fact that the whole
// footnote is node-selected (and thus DOM-selected) when // footnote is node-selected (and thus DOM-selected) when
// the parent editor is focused. // the parent editor is focused.
...@@ -92,6 +92,8 @@ export default ({ node, view }) => { ...@@ -92,6 +92,8 @@ export default ({ node, view }) => {
// TODO Remove timeout and use state to check if noteView has changed // TODO Remove timeout and use state to check if noteView has changed
setTimeout(() => { setTimeout(() => {
if (clickInNote) context.updateView({}, noteId);
clickInNote = false;
if (noteView.state.selection.from !== noteView.state.selection.to) if (noteView.state.selection.from !== noteView.state.selection.to)
context.updateView({}, noteId); context.updateView({}, noteId);
}, 20); }, 20);
......
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