mirror of
https://github.com/enso-org/enso.git
synced 2024-12-21 12:51:37 +03:00
c44b7f2c2d
Closes #9009 - [x] Fixed big white space above full screen viz. - [x] Escape closes the full screen visualization. - [x] Viz shortcuts (Shift-Space for toggling fullscreen vis, Ctrl-Space for switching vis type) are implemented. - [x] The width of visualizations is preserved across project reopens (do we need height as well?) New video: https://github.com/enso-org/enso/assets/6566674/d9036ce9-57a4-429b-9bd9-6392782136ea Older videos: https://github.com/enso-org/enso/assets/6566674/d7129307-0626-4343-8a76-b9bf764c6a5b https://github.com/enso-org/enso/assets/6566674/0518d3d8-9ed1-4e6c-bbe0-b7ed00bf7db3 # Important Notes - Metadata format changed in backward-compatible way
58 lines
2.1 KiB
TypeScript
58 lines
2.1 KiB
TypeScript
import { expect, test } from '@playwright/test'
|
|
import assert from 'assert'
|
|
import * as actions from './actions'
|
|
import * as customExpect from './customExpect'
|
|
import * as locate from './locate'
|
|
|
|
test('Selecting nodes by click', async ({ page }) => {
|
|
await actions.goToGraph(page)
|
|
const node1 = locate.graphNodeByBinding(page, 'five')
|
|
const node2 = locate.graphNodeByBinding(page, 'ten')
|
|
await customExpect.not.toBeSelected(node1)
|
|
await customExpect.not.toBeSelected(node2)
|
|
|
|
await locate.graphNodeIcon(node1).click()
|
|
await customExpect.toBeSelected(node1)
|
|
await customExpect.not.toBeSelected(node2)
|
|
|
|
await locate.graphNodeIcon(node2).click()
|
|
await customExpect.not.toBeSelected(node1)
|
|
await customExpect.toBeSelected(node2)
|
|
|
|
await page.waitForTimeout(600) // Avoid double clicks
|
|
await locate.graphNodeIcon(node1).click({ modifiers: ['Shift'] })
|
|
await customExpect.toBeSelected(node1)
|
|
await customExpect.toBeSelected(node2)
|
|
|
|
await locate.graphNodeIcon(node2).click()
|
|
await customExpect.not.toBeSelected(node1)
|
|
await customExpect.toBeSelected(node2)
|
|
|
|
await page.mouse.click(200, 200)
|
|
await customExpect.not.toBeSelected(node1)
|
|
await customExpect.not.toBeSelected(node2)
|
|
})
|
|
|
|
test('Selecting nodes by area drag', async ({ page }) => {
|
|
await actions.goToGraph(page)
|
|
const node1 = locate.graphNodeByBinding(page, 'five')
|
|
const node2 = locate.graphNodeByBinding(page, 'ten')
|
|
await customExpect.not.toBeSelected(node1)
|
|
await customExpect.not.toBeSelected(node2)
|
|
|
|
const node1BBox = await node1.locator('.selection').boundingBox()
|
|
const node2BBox = await node2.boundingBox()
|
|
assert(node1BBox)
|
|
assert(node2BBox)
|
|
await page.mouse.move(node1BBox.x - 50, node1BBox.y - 50)
|
|
await page.mouse.down()
|
|
await page.mouse.move(node1BBox.x - 49, node1BBox.y - 49)
|
|
await expect(page.locator('.SelectionBrush')).toBeVisible()
|
|
await page.mouse.move(node2BBox.x + node2BBox.width, node2BBox.y + node2BBox.height)
|
|
await customExpect.toBeSelected(node1)
|
|
await customExpect.toBeSelected(node2)
|
|
await page.mouse.up()
|
|
await customExpect.toBeSelected(node1)
|
|
await customExpect.toBeSelected(node2)
|
|
})
|