mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-04-05 02:49:32 +00:00
Don't scroll when loading more items
This commit is contained in:
parent
b8558d6837
commit
43b18db76a
@ -76,21 +76,10 @@ update _ msg model =
|
|||||||
|
|
||||||
else
|
else
|
||||||
let
|
let
|
||||||
firstNew =
|
|
||||||
Data.Items.first list
|
|
||||||
|
|
||||||
scrollCmd =
|
|
||||||
case firstNew of
|
|
||||||
Just item ->
|
|
||||||
Ports.scrollToElem item.id
|
|
||||||
|
|
||||||
Nothing ->
|
|
||||||
Cmd.none
|
|
||||||
|
|
||||||
newModel =
|
newModel =
|
||||||
{ model | results = Data.Items.concat model.results list }
|
{ model | results = Data.Items.concat model.results list }
|
||||||
in
|
in
|
||||||
( newModel, scrollCmd, Nothing )
|
( newModel, Cmd.none, Nothing )
|
||||||
|
|
||||||
SelectItem item ->
|
SelectItem item ->
|
||||||
( model, Cmd.none, Just item )
|
( model, Cmd.none, Just item )
|
||||||
|
@ -32,20 +32,20 @@ elmApp.ports.setAllProgress.subscribe(function(input) {
|
|||||||
}, 100);
|
}, 100);
|
||||||
});
|
});
|
||||||
|
|
||||||
elmApp.ports.scrollToElem.subscribe(function(id) {
|
// elmApp.ports.scrollToElem.subscribe(function(id) {
|
||||||
if (id && id != "") {
|
// if (id && id != "") {
|
||||||
window.setTimeout(function() {
|
// window.setTimeout(function() {
|
||||||
var el = document.getElementById(id);
|
// var el = document.getElementById(id);
|
||||||
if (el) {
|
// if (el) {
|
||||||
if (el["scrollIntoViewIfNeeded"]) {
|
// if (el["scrollIntoViewIfNeeded"]) {
|
||||||
el.scrollIntoViewIfNeeded();
|
// el.scrollIntoViewIfNeeded();
|
||||||
} else {
|
// } else {
|
||||||
el.scrollIntoView();
|
// el.scrollIntoView();
|
||||||
}
|
// }
|
||||||
}
|
// }
|
||||||
}, 20);
|
// }, 20);
|
||||||
}
|
// }
|
||||||
});
|
// });
|
||||||
|
|
||||||
elmApp.ports.saveUiSettings.subscribe(function(args) {
|
elmApp.ports.saveUiSettings.subscribe(function(args) {
|
||||||
if (Array.isArray(args) && args.length == 2) {
|
if (Array.isArray(args) && args.length == 2) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user