mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-05-26 17:24:45 +00:00
* add item.id to File Libraries * add method to wait for node to be indexed * create separate methods in queries API to wait for sites or wait for nodes * improvements, renaming * renaming * fix * add tests for actions on search results * add wait and use new method * fix * another fix * use correct method * more fixes * create method for clickView button * fixes * no message
134 lines
3.6 KiB
TypeScript
Executable File
134 lines
3.6 KiB
TypeScript
Executable File
/*!
|
|
* @license
|
|
* Alfresco Example Content Application
|
|
*
|
|
* Copyright (C) 2005 - 2018 Alfresco Software Limited
|
|
*
|
|
* This file is part of the Alfresco Example Content Application.
|
|
* If the software was purchased under a paid Alfresco license, the terms of
|
|
* the paid license agreement will prevail. Otherwise, the software is
|
|
* provided under the following open source license terms:
|
|
*
|
|
* The Alfresco Example Content Application is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Lesser General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* The Alfresco Example Content Application is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
* along with Alfresco. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
import { Header, DataTable, Pagination, Toolbar, Breadcrumb, Sidenav } from '../components/components';
|
|
import { SIDEBAR_LABELS } from './../configs';
|
|
import { Page } from './page';
|
|
|
|
export class BrowsingPage extends Page {
|
|
header = new Header(this.app);
|
|
sidenav = new Sidenav(this.app);
|
|
toolbar = new Toolbar(this.app);
|
|
breadcrumb = new Breadcrumb(this.app);
|
|
dataTable = new DataTable(this.app);
|
|
pagination = new Pagination(this.app);
|
|
|
|
async signOut() {
|
|
await this.header.userInfo.signOut();
|
|
}
|
|
|
|
async isSnackBarPresent() {
|
|
return this.snackBar.isPresent();
|
|
}
|
|
|
|
// helper methods
|
|
|
|
async clickPersonalFiles() {
|
|
await this.sidenav.clickLink(SIDEBAR_LABELS.PERSONAL_FILES);
|
|
}
|
|
|
|
async clickPersonalFilesAndWait() {
|
|
await this.clickPersonalFiles();
|
|
await this.dataTable.waitForHeader();
|
|
}
|
|
|
|
|
|
async clickFileLibraries() {
|
|
await this.sidenav.clickLink(SIDEBAR_LABELS.FILE_LIBRARIES);
|
|
}
|
|
|
|
async clickFileLibrariesAndWait() {
|
|
await this.clickFileLibraries();
|
|
await this.dataTable.waitForHeader();
|
|
}
|
|
|
|
|
|
async goToFavoriteLibraries() {
|
|
if ( !(await this.sidenav.isFileLibrariesMenuExpanded()) ) {
|
|
await this.sidenav.expandFileLibraries();
|
|
}
|
|
await this.sidenav.clickLink(SIDEBAR_LABELS.FAVORITE_LIBRARIES);
|
|
}
|
|
|
|
async goToFavoriteLibrariesAndWait() {
|
|
await this.goToFavoriteLibraries();
|
|
await this.dataTable.waitForHeader();
|
|
}
|
|
|
|
|
|
async goToMyLibraries() {
|
|
if ( !(await this.sidenav.isFileLibrariesMenuExpanded()) ) {
|
|
await this.sidenav.expandFileLibraries();
|
|
}
|
|
await this.sidenav.clickLink(SIDEBAR_LABELS.MY_LIBRARIES);
|
|
}
|
|
|
|
async goToMyLibrariesAndWait() {
|
|
await this.goToMyLibraries();
|
|
await this.dataTable.waitForHeader();
|
|
}
|
|
|
|
|
|
async clickRecentFiles() {
|
|
await this.sidenav.clickLink(SIDEBAR_LABELS.RECENT_FILES);
|
|
}
|
|
|
|
async clickRecentFilesAndWait() {
|
|
await this.clickRecentFiles();
|
|
await this.dataTable.waitForHeader();
|
|
}
|
|
|
|
|
|
async clickSharedFiles() {
|
|
await this.sidenav.clickLink(SIDEBAR_LABELS.SHARED_FILES);
|
|
}
|
|
|
|
async clickSharedFilesAndWait() {
|
|
await this.clickSharedFiles();
|
|
await this.dataTable.waitForHeader();
|
|
}
|
|
|
|
|
|
async clickFavorites() {
|
|
await this.sidenav.clickLink(SIDEBAR_LABELS.FAVORITES);
|
|
}
|
|
|
|
async clickFavoritesAndWait() {
|
|
await this.clickFavorites();
|
|
await this.dataTable.waitForHeader();
|
|
}
|
|
|
|
|
|
async clickTrash() {
|
|
await this.sidenav.clickLink(SIDEBAR_LABELS.TRASH);
|
|
}
|
|
|
|
async clickTrashAndWait() {
|
|
await this.clickTrash();
|
|
await this.dataTable.waitForHeader();
|
|
}
|
|
|
|
}
|