Merge pull request #12515 from nextcloud/papercut/12295/grid-view-lazy-loading

Make number of file list entries depending on the width for grid view
This commit is contained in:
Morris Jobke 2018-11-19 10:52:54 +01:00 committed by GitHub
commit ea46c111a0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -99,7 +99,14 @@
* @return {int} page size
*/
pageSize: function() {
return Math.max(Math.ceil(this.$container.height() / 50), 1);
var isGridView = this.$showGridView.is(':checked');
var columns = 1;
var rows = Math.ceil(this.$container.height() / 50);
if (isGridView) {
columns = Math.ceil(this.$container.width() / 160);
rows = Math.ceil(this.$container.height() / 160);
}
return Math.max(columns*rows, columns);
},
/**