mirror of
https://github.com/enso-org/enso.git
synced 2024-12-23 00:11:45 +03:00
45a54b93cd
Implement changes requested in #10666. #### Align left edge with widget Top-level argument (edge aligned to TLA boundary): <img width="639" alt="Screenshot 2024-08-20 at 10 10 27" src="https://github.com/user-attachments/assets/eb1712bf-1cbc-4a5d-bdb6-7458f94a27f4"> Nested (edge aligned to start of widget text): <img width="519" alt="Screenshot 2024-08-20 at 10 11 47" src="https://github.com/user-attachments/assets/477ffe6e-ac00-41fb-bfb0-4d22c25c0f8b"> #### Adjust height <img width="134" alt="Screenshot 2024-08-20 at 10 06 20" src="https://github.com/user-attachments/assets/17ac485e-deeb-4afd-973b-fc8c182ffb1d"> # Important Notes - Also some HTML/CSS simplification in `CircularMenu`.
176 lines
6.0 KiB
TypeScript
176 lines
6.0 KiB
TypeScript
import { expect, type Locator, type Page } from '@playwright/test'
|
|
import assert from 'assert'
|
|
import cssEscape from 'css.escape'
|
|
|
|
// ==============
|
|
// === Filter ===
|
|
// ==============
|
|
|
|
class Filter {
|
|
constructor(public selector = '') {}
|
|
|
|
visible<T extends { selector: string }>(this: T): Omit<T, 'visible'> {
|
|
return new Filter(this.selector + ':visible') as any
|
|
}
|
|
|
|
first<T extends { selector: string }>(this: T): Omit<T, 'first' | 'last'> {
|
|
return new Filter(this.selector + ':first') as any
|
|
}
|
|
|
|
last<T extends { selector: string }>(this: T): Omit<T, 'first' | 'last'> {
|
|
return new Filter(this.selector + ':last') as any
|
|
}
|
|
|
|
id<T extends { selector: string }>(this: T, id: string): Omit<T, 'id'> {
|
|
return new Filter(this.selector + '#' + cssEscape(id)) as any
|
|
}
|
|
|
|
class(...classes: string[]) {
|
|
return new Filter(this.selector + '.' + classes.map(cssEscape).join('.'))
|
|
}
|
|
|
|
toString() {
|
|
return this.selector
|
|
}
|
|
}
|
|
|
|
// ================
|
|
// === Locators ===
|
|
// ================
|
|
|
|
// === Button locators ===
|
|
|
|
function or(a: (page: Locator | Page) => Locator, b: (page: Locator | Page) => Locator) {
|
|
return (page: Locator | Page) => a(page).or(b(page))
|
|
}
|
|
|
|
export function toggleVisualizationButton(page: Locator | Page) {
|
|
return page.getByLabel('Visualization', { exact: true })
|
|
}
|
|
|
|
export function toggleVisualizationSelectorButton(page: Locator | Page) {
|
|
return page.getByLabel('Visualization Selector')
|
|
}
|
|
|
|
// === Fullscreen ===
|
|
|
|
export function enterFullscreenButton(page: Locator | Page) {
|
|
return page.getByLabel('Fullscreen')
|
|
}
|
|
|
|
export function exitFullscreenButton(page: Locator | Page) {
|
|
return page.getByLabel('Exit Fullscreen')
|
|
}
|
|
|
|
export const toggleFullscreenButton = or(enterFullscreenButton, exitFullscreenButton)
|
|
|
|
// === Nodes ===
|
|
|
|
declare const nodeLocatorBrand: unique symbol
|
|
export type Node = Locator & { [nodeLocatorBrand]: never }
|
|
|
|
export function graphNode(page: Page | Locator): Node {
|
|
return page.locator('.GraphNode') as Node
|
|
}
|
|
export function graphNodeByBinding(page: Locator | Page, binding: string): Node {
|
|
return graphNode(page).filter({ has: page.locator('.binding', { hasText: binding }) }) as Node
|
|
}
|
|
export function graphNodeIcon(node: Node) {
|
|
return node.locator('.nodeCategoryIcon')
|
|
}
|
|
export function selectedNodes(page: Page | Locator): Node {
|
|
return page.locator('.GraphNode.selected') as Node
|
|
}
|
|
export function outputNode(page: Page | Locator): Node {
|
|
return page.locator('.GraphNode.outputNode') as Node
|
|
}
|
|
|
|
// === Data locators ===
|
|
|
|
function componentLocator(locatorStr: string) {
|
|
return (page: Locator | Page, filter?: (f: Filter) => { selector: string }) => {
|
|
return page.locator(`${locatorStr}${filter?.(new Filter()) ?? ''}`)
|
|
}
|
|
}
|
|
|
|
export const graphEditor = componentLocator('.GraphEditor')
|
|
export const codeEditor = componentLocator('.CodeEditor')
|
|
export const anyVisualization = componentLocator('.GraphVisualization > *')
|
|
export const loadingVisualization = componentLocator('.LoadingVisualization')
|
|
export const circularMenu = componentLocator('.CircularMenu')
|
|
export const addNewNodeButton = componentLocator('.PlusButton')
|
|
export const componentBrowser = componentLocator('.ComponentBrowser')
|
|
export const nodeOutputPort = componentLocator('.outputPortHoverArea')
|
|
export const smallPlusButton = componentLocator('.SmallPlusButton')
|
|
export const lexicalContent = componentLocator('.LexicalContent')
|
|
|
|
export function componentBrowserEntry(
|
|
page: Locator | Page,
|
|
filter?: (f: Filter) => { selector: string },
|
|
) {
|
|
return page.locator(
|
|
`.ComponentBrowser .list-variant:not(.selected) .component${filter?.(new Filter()) ?? ''}`,
|
|
)
|
|
}
|
|
|
|
export function componentBrowserSelectedEntry(
|
|
page: Locator | Page,
|
|
filter?: (f: Filter) => { selector: string },
|
|
) {
|
|
return page.locator(
|
|
`.ComponentBrowser .list-variant.selected .component${filter?.(new Filter()) ?? ''}`,
|
|
)
|
|
}
|
|
|
|
export function componentBrowserEntryByLabel(page: Locator | Page, label: string) {
|
|
return componentBrowserEntry(page).filter({ has: page.getByText(label) })
|
|
}
|
|
|
|
export function rightDock(page: Page) {
|
|
return page.getByTestId('rightDock')
|
|
}
|
|
|
|
export function bottomDock(page: Page) {
|
|
return page.getByTestId('bottomDock')
|
|
}
|
|
|
|
export const navBreadcrumb = componentLocator('.NavBreadcrumb')
|
|
export const componentBrowserInput = componentLocator('.ComponentEditor')
|
|
export const jsonVisualization = componentLocator('.JSONVisualization')
|
|
export const tableVisualization = componentLocator('.TableVisualization')
|
|
export const scatterplotVisualization = componentLocator('.ScatterplotVisualization')
|
|
export const histogramVisualization = componentLocator('.HistogramVisualization')
|
|
export const heatmapVisualization = componentLocator('.HeatmapVisualization')
|
|
export const sqlVisualization = componentLocator('.SqlVisualization')
|
|
export const geoMapVisualization = componentLocator('.GeoMapVisualization')
|
|
export const imageBase64Visualization = componentLocator('.ImageBase64Visualization')
|
|
export const warningsVisualization = componentLocator('.WarningsVisualization')
|
|
|
|
// === Edge locators ===
|
|
|
|
export async function edgesFromNodeWithBinding(page: Page, binding: string) {
|
|
const node = graphNodeByBinding(page, binding).first()
|
|
const nodeId = await node.getAttribute('data-node-id')
|
|
return page.locator(`[data-source-node-id="${nodeId}"]`)
|
|
}
|
|
|
|
export async function edgesToNodeWithBinding(page: Page, binding: string) {
|
|
const node = graphNodeByBinding(page, binding).first()
|
|
const nodeId = await node.getAttribute('data-node-id')
|
|
return page.locator(`[data-target-node-id="${nodeId}"]`)
|
|
}
|
|
|
|
// === Output ports ===
|
|
|
|
/** Returns a location that can be clicked to activate an output port.
|
|
* Using a `Locator` would be better, but `position` option of `click` doesn't work.
|
|
*/
|
|
export async function outputPortCoordinates(node: Locator) {
|
|
const outputPortArea = await node.locator('.outputPortHoverArea').boundingBox()
|
|
expect(outputPortArea).not.toBeNull()
|
|
assert(outputPortArea)
|
|
const centerX = outputPortArea.x + outputPortArea.width / 2
|
|
const bottom = outputPortArea.y + outputPortArea.height
|
|
return { x: centerX, y: bottom - 2.0 }
|
|
}
|