mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-18 09:35:20 +02:00
a616dc3cd2
Co-authored-by: Laurent Cozic <laurent22@users.noreply.github.com>
46 lines
1.6 KiB
TypeScript
46 lines
1.6 KiB
TypeScript
import activateMainMenuItem from '../util/activateMainMenuItem';
|
|
import type MainScreen from './MainScreen';
|
|
import { ElectronApplication, Locator, Page } from '@playwright/test';
|
|
|
|
export default class Sidebar {
|
|
public readonly container: Locator;
|
|
public readonly allNotes: Locator;
|
|
|
|
public constructor(page: Page, private mainScreen: MainScreen) {
|
|
this.container = page.locator('.rli-sideBar');
|
|
this.allNotes = this.container.getByText('All notes');
|
|
}
|
|
|
|
public async createNewFolder(title: string) {
|
|
const newFolderButton = this.container.getByRole('button', { name: 'New' });
|
|
await newFolderButton.click();
|
|
|
|
const titleInput = this.mainScreen.dialog.getByLabel('Title');
|
|
await titleInput.fill(title);
|
|
|
|
const submitButton = this.mainScreen.dialog.getByRole('button', { name: 'OK' });
|
|
await submitButton.click();
|
|
|
|
return this.container.getByRole('treeitem', { name: title });
|
|
}
|
|
|
|
private async sortBy(electronApp: ElectronApplication, option: string) {
|
|
await activateMainMenuItem(electronApp, option, 'Sort notebooks by');
|
|
}
|
|
|
|
public async sortByDate(electronApp: ElectronApplication) {
|
|
return this.sortBy(electronApp, 'Updated date');
|
|
}
|
|
|
|
public async sortByTitle(electronApp: ElectronApplication) {
|
|
return this.sortBy(electronApp, 'Title');
|
|
}
|
|
|
|
public async forceUpdateSorting(electronApp: ElectronApplication) {
|
|
// By default, notebooks will not be in the correct position in the list for about 1 second.
|
|
// Change the notebook list sort order to force an immediate refresh.
|
|
await this.sortByDate(electronApp);
|
|
await this.sortByTitle(electronApp);
|
|
}
|
|
}
|