mirror of
https://github.com/photoprism/photoprism.git
synced 2025-12-12 00:34:13 +01:00
183 lines
5.6 KiB
JavaScript
183 lines
5.6 KiB
JavaScript
import { Selector, t } from "testcafe";
|
|
|
|
export default class Page {
|
|
constructor() {
|
|
this.view = Selector("div.p-view-select");
|
|
this.camera = Selector("div.p-camera-select");
|
|
this.countries = Selector("div.p-countries-select");
|
|
this.time = Selector("div.p-time-select");
|
|
this.search1 = Selector("div.input-search input");
|
|
this.toolbarDescription = Selector(".toolbar-details-panel");
|
|
this.toolbarTitle = Selector("#p-navigation div.v-toolbar-title");
|
|
this.toolbarSecondTitle = Selector("header.v-toolbar div.v-toolbar-title");
|
|
this.openMobileToolbar = Selector("button.mobile-menu-trigger");
|
|
this.cardsViewAction = Selector("button.action-view-cards");
|
|
this.mosaicViewAction = Selector("button.action-view-mosaic");
|
|
this.listViewAction = Selector("button.action-view-list");
|
|
}
|
|
|
|
async checkToolbarActionAvailability(action, visible) {
|
|
if (
|
|
(t.browser.platform === "mobile") &
|
|
(action !== "edit") &
|
|
(action !== "share") &
|
|
(action !== "add") &
|
|
(action !== "show-all") &
|
|
(action !== "show-important")
|
|
) {
|
|
if (await this.openMobileToolbar.exists) {
|
|
await t.click(this.openMobileToolbar);
|
|
}
|
|
await this.checkMobileMenuActionAvailability(action, visible);
|
|
await t.click(Selector("#photoprism"), { offsetX: 1, offsetY: 1 });
|
|
} else if (visible) {
|
|
if (
|
|
action === "delete-all" ||
|
|
action === "view-mosaic" ||
|
|
action === "view-list" ||
|
|
action === "view-cards" ||
|
|
action === "add" ||
|
|
action === "show-hidden" ||
|
|
action === "show-all" ||
|
|
action === "show-important"
|
|
) {
|
|
await t.expect(Selector("button.action-" + action).visible).ok();
|
|
} else {
|
|
await t.hover(Selector("button.action-menu__btn"));
|
|
await t.expect(Selector("div.action-" + action).visible).ok();
|
|
}
|
|
} else {
|
|
if (
|
|
action === "delete-all" ||
|
|
action === "view-mosaic" ||
|
|
action === "view-list" ||
|
|
action === "view-cards" ||
|
|
action === "add" ||
|
|
action === "show-hidden" ||
|
|
action === "show-all" ||
|
|
action === "show-important"
|
|
) {
|
|
await t.expect(Selector("button.action-" + action).visible).notOk();
|
|
} else {
|
|
await t.hover(Selector("button.action-menu__btn"));
|
|
await t.expect(Selector("div.action-" + action).visible).notOk();
|
|
}
|
|
}
|
|
}
|
|
|
|
async checkMobileMenuActionAvailability(action, visible) {
|
|
if (
|
|
(action !== "login") &
|
|
(action !== "logout") &
|
|
(action !== "reload") &
|
|
(action !== "logs") &
|
|
(action !== "upload") &
|
|
(action !== "settings")
|
|
) {
|
|
if (visible) {
|
|
await t.expect(Selector("#mobile-menu div.nav-" + action).visible).ok();
|
|
} else {
|
|
await t.expect(Selector("#mobile-menu div.nav-" + action).visible).notOk();
|
|
}
|
|
} else {
|
|
if (visible) {
|
|
await t.expect(Selector("#mobile-menu a.nav-" + action).visible).ok();
|
|
} else {
|
|
await t.expect(Selector("#mobile-menu a.nav-" + action).visible).notOk();
|
|
}
|
|
}
|
|
}
|
|
|
|
async triggerMobileMenuAction(action) {
|
|
if (
|
|
(action !== "login") &
|
|
(action !== "logout") &
|
|
(action !== "reload") &
|
|
(action !== "logs") &
|
|
(action !== "upload") &
|
|
(action !== "settings")
|
|
) {
|
|
await t.click(Selector("#mobile-menu div.nav-" + action + " a"));
|
|
} else {
|
|
await t.click(Selector("#mobile-menu a.nav-" + action));
|
|
}
|
|
}
|
|
|
|
async triggerToolbarAction(action) {
|
|
if (
|
|
(t.browser.platform === "mobile") &
|
|
(action !== "edit") &
|
|
(action !== "share") &
|
|
(action !== "add") &
|
|
(action !== "show-all") &
|
|
(action !== "show-important" || action === "show-important")
|
|
) {
|
|
if (await this.openMobileToolbar.exists) {
|
|
await t.click(this.openMobileToolbar);
|
|
}
|
|
if (await this.openMobileToolbar.exists) {
|
|
await t.click(this.openMobileToolbar);
|
|
}
|
|
await t.click(Selector("button.nav-menu-" + action));
|
|
} else {
|
|
if (
|
|
action === "delete-all" ||
|
|
action === "view-mosaic" ||
|
|
action === "view-list" ||
|
|
action === "view-cards" ||
|
|
action === "add" ||
|
|
action === "show-hidden" ||
|
|
action === "show-all" ||
|
|
action === "show-important"
|
|
) {
|
|
await t.click(Selector("button.action-" + action));
|
|
} else {
|
|
await t.hover(Selector("button.action-menu__btn"));
|
|
await t.click(Selector("div.action-" + action));
|
|
}
|
|
}
|
|
}
|
|
|
|
async search(term) {
|
|
await t.typeText(this.search1, term, { replace: true }).pressKey("enter").wait(6000);
|
|
}
|
|
|
|
async setFilter(filter, option) {
|
|
let filterSelector = "";
|
|
|
|
switch (filter) {
|
|
case "view":
|
|
filterSelector = "div.p-view-select";
|
|
break;
|
|
case "camera":
|
|
filterSelector = "div.p-camera-select";
|
|
break;
|
|
case "time":
|
|
filterSelector = "div.p-time-select";
|
|
break;
|
|
case "countries":
|
|
filterSelector = "div.p-countries-select";
|
|
break;
|
|
case "category":
|
|
filterSelector = "div.p-category-select";
|
|
break;
|
|
default:
|
|
throw "unknown filter";
|
|
}
|
|
if (!(await Selector(filterSelector).visible)) {
|
|
await t.click(Selector("i.mdi-tune"));
|
|
}
|
|
await t.click(filterSelector);
|
|
|
|
if (option) {
|
|
await t.click(Selector('div[role="option"]').withText(option));
|
|
} else {
|
|
await t.click(Selector('div[role="option"]').nth(1));
|
|
}
|
|
|
|
if (await Selector(filterSelector).visible) {
|
|
await t.click(Selector("i.mdi-tune"));
|
|
}
|
|
}
|
|
}
|