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

dont scroll into view for notes

parent 08257cc6
No related branches found
No related tags found
1 merge request!231Connect funcionality
......@@ -169,7 +169,6 @@ const FindComponent = ({ close, expand, setPreviousSearcValue }) => {
};
const findNext = () => {
view[lastActiveViewId].focus();
const results = helpers.getAllResultsByView(
view,
searchValue,
......@@ -205,11 +204,11 @@ const FindComponent = ({ close, expand, setPreviousSearcValue }) => {
results.main.length > 0
) {
setLastSelection(view[activeViewId].state.selection);
setlastActiveViewId(activeViewId);
helpers.moveToMatch(view, 'main', results, 0);
helpers.clearViewSelection(view, lastActiveViewId);
} else {
for (let i = 0; i < notesIds.length; i++) {
console.log('here?');
if (
results[notesIds[i]].length > 0 &&
notesIds[i] !== lastActiveViewId
......
......@@ -137,11 +137,11 @@ const moveToMatch = (view, lastActiveViewId, results, position) => {
TextSelection.between(selectionFrom.$anchor, selectionTo.$head),
),
);
view[lastActiveViewId].dispatch(
view[lastActiveViewId].state.tr.scrollIntoView(),
);
view[lastActiveViewId].focus();
if (lastActiveViewId === 'main') {
view[lastActiveViewId].dispatch(
view[lastActiveViewId].state.tr.scrollIntoView(),
);
}
};
const clearViewSelection = (view, lastActiveViewId) => {
......
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