mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
94 lines
3.1 KiB
94 lines
3.1 KiB
1 year ago
|
import BasePage from '../../../Base';
|
||
|
import { TopbarPage } from '../Topbar';
|
||
|
import { Locator } from '@playwright/test';
|
||
|
|
||
|
export class TopbarSharePage extends BasePage {
|
||
|
readonly topbar: TopbarPage;
|
||
|
|
||
|
constructor(topbar: TopbarPage) {
|
||
|
super(topbar.rootPage);
|
||
|
this.topbar = topbar;
|
||
|
}
|
||
|
|
||
|
get() {
|
||
|
return this.rootPage.locator(`.nc-modal-share-collaborate`).locator('.ant-modal-content');
|
||
|
}
|
||
|
|
||
|
async clickShareView() {
|
||
|
await this.get().waitFor();
|
||
|
// collapse header 0: Share Project, 1: Share View
|
||
|
await this.get().locator(`.ant-collapse-header`).nth(1).click();
|
||
|
}
|
||
|
|
||
|
async clickShareProject() {
|
||
|
await this.get().locator(`[data-testid="docs-share-dlg-share-project"]`).click();
|
||
|
}
|
||
|
|
||
|
async clickShareViewPublicAccess() {
|
||
|
await this.get().locator(`[data-testid="share-view-toggle"]`).click();
|
||
|
}
|
||
|
|
||
|
async clickCopyLink() {
|
||
|
await this.get().locator(`[data-testid="docs-share-page-copy-link"]`).click();
|
||
|
}
|
||
|
|
||
|
async closeModal() {
|
||
|
// await this.rootPage.keyboard.press('Escape');
|
||
|
await this.get().locator('.ant-btn.ant-btn-secondary:has-text("Close")').click();
|
||
|
}
|
||
|
|
||
|
async clickShareViewWithPassword({ password }: { password: string }) {
|
||
|
await this.get().locator(`[data-testid="share-password-toggle"]`).click();
|
||
|
await this.get().locator('[data-testid="nc-modal-share-view__password"]').fill(password);
|
||
|
}
|
||
|
|
||
|
async clickShareViewWithCSVDownload() {
|
||
|
await this.get().locator(`[data-testid="share-download-toggle"]`).click();
|
||
|
}
|
||
|
|
||
|
async clickShareBase() {
|
||
|
await this.get().locator(`[data-testid="db-share-base"]`).click();
|
||
|
}
|
||
|
|
||
|
async clickShareBasePublicAccess() {
|
||
|
await this.get().locator(`[data-testid="nc-share-base-sub-modal"]`).locator('.ant-switch').nth(0).click();
|
||
|
}
|
||
|
|
||
|
async clickShareBaseEditorAccess() {
|
||
|
await this.get().locator(`[data-testid="nc-share-base-sub-modal"]`).locator('.ant-switch').nth(1).click();
|
||
|
}
|
||
|
|
||
|
async clickShareViewSurveyMode() {
|
||
|
await this.get().locator(`[data-testid="nc-modal-share-view__surveyMode"]`).click();
|
||
|
}
|
||
|
|
||
|
async invite({ email, role }: { email: string; role: string }) {
|
||
|
const emailField: Locator = this.get().locator('[data-testid="docs-share-dlg-share-project-collaborate-emails"]');
|
||
|
await emailField.fill(email);
|
||
|
|
||
|
if (role === 'editor') {
|
||
|
const roleField: Locator = this.get().locator('[data-testid="docs-share-dlg-share-project-collaborate-role"]');
|
||
|
await roleField.click();
|
||
|
|
||
|
const roleOptionsMenu: Locator = this.rootPage.locator('.ant-select-dropdown.nc-dropdown-user-role');
|
||
|
console.log(await roleOptionsMenu.locator(`.nc-role-option`).count());
|
||
|
await roleOptionsMenu
|
||
|
.locator(`.nc-role-option`)
|
||
|
.nth(role === 'editor' ? 0 : 1)
|
||
|
.click();
|
||
|
}
|
||
|
|
||
|
await this.get().locator('[data-testid="docs-share-btn"]').click();
|
||
|
}
|
||
|
|
||
|
async getInvitationUrl() {
|
||
|
await this.get().locator('[data-testid="docs-share-invitation-copy"]').click();
|
||
|
const url = await this.get().locator('[data-invite-link="data-invite-link"]').innerText();
|
||
|
await this.rootPage.keyboard.press('Escape');
|
||
|
|
||
|
// TODO: fix this; text wasn't copied to clipboard
|
||
|
// return await this.getClipboardText();
|
||
|
return url;
|
||
|
}
|
||
|
}
|