feat(ui): use infinite scrolling on all sections (no need anymore to to click on "load more")

This commit is contained in:
Edouard Vanbelle
2026-06-02 12:34:34 +02:00
parent 9fac34f91e
commit cdd62c29b5
7 changed files with 78 additions and 0 deletions
+3
View File
@@ -24,6 +24,7 @@ import { inlineViewer } from '../features/files/inlineViewer.js';
import { favorites } from '../features/library/favorites.js';
import { fetchResourcesPage, rebuildBreadCrumb } from '../model/filesModel.js';
import { grants } from '../model/grants.js';
import { attachInfiniteScroll } from '../utils/infiniteScroll.js';
import { resolveHomeFolder } from './authSession.js';
import { updateHistory } from './main.js';
import { app } from './state.js';
@@ -289,6 +290,8 @@ function _ensureLoadMoreButton() {
wrapper.appendChild(btn);
filesContainer.after(wrapper);
attachInfiniteScroll(wrapper, () => _loadPage({ isFirstPage: false }));
}
/**