mirror of
https://github.com/laurent22/joplin.git
synced 2024-11-27 08:21:03 +02:00
960d7f84eb
* Desktop: don't count completed to-dos in note counts when they are not shown * Desktop: review comments for commit0383dcc
* Desktop: fix remaining lint issues with commit1fe4685
56 lines
1.2 KiB
JavaScript
56 lines
1.2 KiB
JavaScript
const Folder = require('lib/models/Folder.js');
|
|
const Setting = require('lib/models/Setting.js');
|
|
|
|
class FoldersScreenUtils {
|
|
static async allForDisplay(options = {}) {
|
|
const orderDir = Setting.value('folders.sortOrder.reverse') ? 'DESC' : 'ASC';
|
|
|
|
const folderOptions = Object.assign(
|
|
{},
|
|
{
|
|
caseInsensitive: true,
|
|
order: [
|
|
{
|
|
by: 'title',
|
|
dir: orderDir,
|
|
},
|
|
],
|
|
},
|
|
options
|
|
);
|
|
|
|
let folders = await Folder.all(folderOptions);
|
|
|
|
if (Setting.value('folders.sortOrder.field') === 'last_note_user_updated_time') {
|
|
folders = await Folder.orderByLastModified(folders, orderDir);
|
|
}
|
|
|
|
if (Setting.value('showNoteCounts')) {
|
|
await Folder.addNoteCounts(folders,
|
|
Setting.value('showCompletedTodos'));
|
|
}
|
|
|
|
return folders;
|
|
}
|
|
|
|
static async refreshFolders() {
|
|
const folders = await this.allForDisplay({ includeConflictFolder: true });
|
|
|
|
this.dispatch({
|
|
type: 'FOLDER_UPDATE_ALL',
|
|
items: folders,
|
|
});
|
|
}
|
|
|
|
static scheduleRefreshFolders() {
|
|
if (this.scheduleRefreshFoldersIID_) clearTimeout(this.scheduleRefreshFoldersIID_);
|
|
|
|
this.scheduleRefreshFoldersIID_ = setTimeout(() => {
|
|
this.scheduleRefreshFoldersIID_ = null;
|
|
this.refreshFolders();
|
|
}, 1000);
|
|
}
|
|
}
|
|
|
|
module.exports = { FoldersScreenUtils };
|