mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
* remove tsconfig.base as per eslint schematics * add schematics * upgrade demoshell to eslint * fix eslint issues for demoshell * integrate eslint for ADF core and fix some issues * turn into warn * fix code * workaround for Chrome clipboard issue * exclude e2e tests * exclude e2e
196 lines
7.8 KiB
TypeScript
196 lines
7.8 KiB
TypeScript
/*!
|
|
* @license
|
|
* Copyright 2019 Alfresco Software, Ltd.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
import { BrowserActions, BrowserVisibility, DataTableComponentPage, DropdownPage } from '@alfresco/adf-testing';
|
|
import { $, $$, browser, by, element, ElementFinder, protractor } from 'protractor';
|
|
|
|
export class DataTablePage {
|
|
|
|
columns = {
|
|
id: 'Id',
|
|
name: 'Name',
|
|
createdBy: 'Created By',
|
|
json: 'Json'
|
|
};
|
|
|
|
data = {
|
|
copyClipboardDataTable: 'copyClipboard-datatable',
|
|
defaultTable: 'datatable'
|
|
};
|
|
|
|
dataTable: DataTableComponentPage;
|
|
multiSelect = $(`div[data-automation-id='multiselect'] label > .mat-checkbox-inner-container`);
|
|
reset = element(by.xpath(`//span[contains(text(),'Reset to default')]/..`));
|
|
allSelectedRows = $$(`adf-datatable-row[class*='is-selected']`);
|
|
selectedRowNumber = $(`adf-datatable-row[class*='is-selected'] div[data-automation-id*='text_']`);
|
|
selectAll = $(`div[class*='header'] label`);
|
|
addRowElement = element(by.xpath(`//span[contains(text(),'Add row')]/..`));
|
|
replaceRowsElement = element(by.xpath(`//span[contains(text(),'Replace rows')]/..`));
|
|
replaceColumnsElement = element(by.xpath(`//span[contains(text(),'Replace columns')]/..`));
|
|
createdOnColumn = $(`div[data-automation-id='auto_id_createdOn']`);
|
|
idColumnHeader = $(`div[data-automation-id='auto_id_id']`);
|
|
pasteClipboardInput = $(`input[data-automation-id='paste clipboard input']`);
|
|
|
|
selectModeDropdown = new DropdownPage($(`mat-select[data-automation-id='datatable-selection-mode']`));
|
|
|
|
constructor(data?) {
|
|
if (this.data[data]) {
|
|
this.dataTable = new DataTableComponentPage($(`div[data-automation-id='` + this.data[data] + `']`));
|
|
} else {
|
|
this.dataTable = new DataTableComponentPage($(`div[data-automation-id='` + this.data.defaultTable + `']`));
|
|
}
|
|
}
|
|
|
|
async insertFilter(filterText: string): Promise<void> {
|
|
const inputFilter = $(`#adf-datatable-filter-input`);
|
|
await BrowserActions.clearSendKeys(inputFilter, filterText);
|
|
}
|
|
|
|
async addRow(): Promise<void> {
|
|
await BrowserActions.click(this.addRowElement);
|
|
}
|
|
|
|
async replaceRows(id: string): Promise<void> {
|
|
const rowID = this.dataTable.getCellElementByValue(this.columns.id, id);
|
|
await BrowserVisibility.waitUntilElementIsVisible(rowID);
|
|
await BrowserActions.click(this.replaceRowsElement);
|
|
await BrowserVisibility.waitUntilElementIsNotVisible(rowID);
|
|
}
|
|
|
|
async replaceColumns(): Promise<void> {
|
|
await BrowserActions.click(this.replaceColumnsElement);
|
|
await BrowserVisibility.waitUntilElementIsNotVisible(this.createdOnColumn);
|
|
}
|
|
|
|
async clickMultiSelect(): Promise<void> {
|
|
await BrowserActions.click(this.multiSelect);
|
|
}
|
|
|
|
async clickReset(): Promise<void> {
|
|
await BrowserActions.click(this.reset);
|
|
}
|
|
|
|
async checkRowIsNotSelected(rowNumber: string): Promise<void> {
|
|
const isRowSelected = this.dataTable.getCellElementByValue(this.columns.id, rowNumber)
|
|
.element(by.xpath(`ancestor::adf-datatable-row[contains(@class, 'adf-datatable-row custom-row-style ng-star-inserted is-selected')]`));
|
|
await BrowserVisibility.waitUntilElementIsNotVisible(isRowSelected);
|
|
}
|
|
|
|
async checkNoRowIsSelected(): Promise<void> {
|
|
await BrowserVisibility.waitUntilElementIsNotVisible(this.selectedRowNumber);
|
|
}
|
|
|
|
async checkAllRows(): Promise<void> {
|
|
await BrowserActions.click(this.selectAll);
|
|
}
|
|
|
|
async checkRowIsChecked(rowNumber: string): Promise<void> {
|
|
await BrowserVisibility.waitUntilElementIsVisible(this.getRowCheckbox(rowNumber));
|
|
}
|
|
|
|
async checkRowIsNotChecked(rowNumber: string): Promise<void> {
|
|
await BrowserVisibility.waitUntilElementIsNotVisible(this.getRowCheckbox(rowNumber));
|
|
}
|
|
|
|
async getNumberOfSelectedRows(): Promise<number> {
|
|
return this.allSelectedRows.count();
|
|
}
|
|
|
|
async clickCheckbox(rowNumber: string): Promise<void> {
|
|
await BrowserActions.closeMenuAndDialogs();
|
|
const checkbox = this.dataTable.getCellElementByValue(this.columns.id, rowNumber)
|
|
.element(by.xpath(`ancestor::adf-datatable-row[contains(@class, 'adf-datatable-row')]//mat-checkbox/label`));
|
|
await BrowserActions.click(checkbox);
|
|
}
|
|
|
|
async selectRow(rowNumber: string): Promise<void> {
|
|
const row = this.dataTable.getCellElementByValue(this.columns.id, rowNumber);
|
|
await BrowserActions.click(row);
|
|
}
|
|
|
|
async selectRowWithKeyboard(rowNumber: string): Promise<void> {
|
|
await browser.actions().sendKeys(protractor.Key.COMMAND).perform();
|
|
await this.selectRow(rowNumber);
|
|
await browser.actions().sendKeys(protractor.Key.NULL).perform();
|
|
}
|
|
|
|
async selectSelectionMode(selectionMode: string): Promise<void> {
|
|
await this.selectModeDropdown.selectDropdownOption(selectionMode);
|
|
}
|
|
|
|
getRowCheckbox(rowNumber: string): ElementFinder {
|
|
return this.dataTable.getCellElementByValue(this.columns.id, rowNumber).element(by.xpath(`ancestor::adf-datatable-row/div/mat-checkbox[contains(@class, 'mat-checkbox-checked')]`));
|
|
}
|
|
|
|
async getCopyContentTooltip(): Promise<string> {
|
|
return this.dataTable.getCopyContentTooltip();
|
|
}
|
|
|
|
async mouseOverNameColumn(name: string): Promise<void> {
|
|
await this.dataTable.mouseOverColumn(this.columns.name, name);
|
|
}
|
|
|
|
async mouseOverCreatedByColumn(name: string): Promise<void> {
|
|
await this.dataTable.mouseOverColumn(this.columns.createdBy, name);
|
|
}
|
|
|
|
async mouseOverIdColumn(name: string): Promise<void> {
|
|
await this.dataTable.mouseOverColumn(this.columns.id, name);
|
|
}
|
|
|
|
async mouseOverJsonColumn(rowNumber: number): Promise<void> {
|
|
const cell = this.dataTable.getCellByRowNumberAndColumnName(rowNumber - 1, this.columns.json);
|
|
await BrowserVisibility.waitUntilElementIsVisible(cell);
|
|
await browser.actions().mouseMove(cell).perform();
|
|
}
|
|
|
|
getDropTargetIdColumnCell(rowNumber: number): ElementFinder {
|
|
return this.dataTable.getCellByRowNumberAndColumnName(rowNumber - 1, this.columns.id);
|
|
}
|
|
|
|
getDropTargetIdColumnHeader(): ElementFinder {
|
|
return this.idColumnHeader;
|
|
}
|
|
|
|
async clickOnIdColumn(name: string): Promise<void> {
|
|
await this.dataTable.clickColumn(this.columns.id, name);
|
|
}
|
|
|
|
async clickOnJsonColumn(rowNumber: number): Promise<void> {
|
|
await BrowserActions.click(this.dataTable.getCellByRowNumberAndColumnName(rowNumber - 1, this.columns.json));
|
|
}
|
|
|
|
async clickOnNameColumn(name: string): Promise<void> {
|
|
await this.dataTable.clickColumn(this.columns.name, name);
|
|
}
|
|
|
|
async clickOnCreatedByColumn(name: string): Promise<void> {
|
|
await this.dataTable.clickColumn(this.columns.createdBy, name);
|
|
}
|
|
|
|
async pasteClipboard(): Promise<void> {
|
|
await this.pasteClipboardInput.clear();
|
|
await BrowserActions.click(this.pasteClipboardInput);
|
|
await this.pasteClipboardInput.sendKeys(protractor.Key.chord(protractor.Key.SHIFT, protractor.Key.INSERT));
|
|
}
|
|
|
|
async getClipboardInputText(): Promise<string> {
|
|
const inputValue = await BrowserActions.getInputValue(this.pasteClipboardInput);
|
|
return inputValue.match(/\d/).toString();
|
|
}
|
|
}
|