mirror of
https://github.com/enso-org/enso.git
synced 2024-12-23 10:42:05 +03:00
b0589d267d
Fixes #10088, #10154 Implemented figma tooltip design through Vue components and store. Attached tooltips to all existing SVG buttons, based on assigned label property. https://github.com/enso-org/enso/assets/919491/85f5fef7-c6df-471b-b544-b45f45f4f51e # Important Notes Removed all usages of `v-bind` in styles due to issues during hot reloading when updating stores. The internal CSS binding composable sometimes crashes when the component is being unmounted due to hot reload.
147 lines
5.7 KiB
TypeScript
147 lines
5.7 KiB
TypeScript
import { test, type Page } from '@playwright/test'
|
|
import * as actions from './actions'
|
|
import { expect } from './customExpect'
|
|
import { mockCollapsedFunctionInfo } from './expressionUpdates'
|
|
import { CONTROL_KEY } from './keyboard'
|
|
import * as locate from './locate'
|
|
|
|
const MAIN_FILE_NODES = 12
|
|
|
|
const COLLAPSE_SHORTCUT = `${CONTROL_KEY}+G`
|
|
|
|
test('Entering nodes', async ({ page }) => {
|
|
await actions.goToGraph(page)
|
|
await mockCollapsedFunctionInfo(page, 'final', 'func1')
|
|
await expectInsideMain(page)
|
|
await expect(locate.navBreadcrumb(page)).toHaveText(['Mock Project'])
|
|
|
|
await locate.graphNodeByBinding(page, 'final').dblclick()
|
|
await mockCollapsedFunctionInfo(page, 'f2', 'func2')
|
|
await expectInsideFunc1(page)
|
|
await expect(locate.navBreadcrumb(page)).toHaveText(['Mock Project', 'func1'])
|
|
|
|
await locate.graphNodeByBinding(page, 'f2').dblclick()
|
|
await expectInsideFunc2(page)
|
|
await expect(locate.navBreadcrumb(page)).toHaveText(['Mock Project', 'func1', 'func2'])
|
|
})
|
|
|
|
test('Leaving entered nodes', async ({ page }) => {
|
|
await actions.goToGraph(page)
|
|
await enterToFunc2(page)
|
|
|
|
await actions.exitFunction(page)
|
|
await expectInsideFunc1(page)
|
|
|
|
await actions.exitFunction(page)
|
|
await expectInsideMain(page)
|
|
})
|
|
|
|
test('Using breadcrumbs to navigate', async ({ page }) => {
|
|
await actions.goToGraph(page)
|
|
await enterToFunc2(page)
|
|
await actions.exitFunction(page)
|
|
await expectInsideFunc1(page)
|
|
await actions.exitFunction(page)
|
|
await expectInsideMain(page)
|
|
// Breadcrumbs still have all the crumbs, but the last two are dimmed.
|
|
await expect(locate.navBreadcrumb(page)).toHaveText(['Mock Project', 'func1', 'func2'])
|
|
await expect(locate.navBreadcrumb(page, (f) => f.class('inactive'))).toHaveText([
|
|
'func1',
|
|
'func2',
|
|
])
|
|
|
|
await locate.navBreadcrumb(page).filter({ hasText: 'func2' }).click()
|
|
await expectInsideFunc2(page)
|
|
|
|
await locate.navBreadcrumb(page).filter({ hasText: 'Mock Project' }).click()
|
|
await expectInsideMain(page)
|
|
|
|
await locate.navBreadcrumb(page).filter({ hasText: 'func1' }).click()
|
|
await expectInsideFunc1(page)
|
|
})
|
|
|
|
test('Collapsing nodes', async ({ page }) => {
|
|
await actions.goToGraph(page)
|
|
const initialNodesCount = await locate.graphNode(page).count()
|
|
await mockCollapsedFunctionInfo(page, 'final', 'func1')
|
|
|
|
// Widgets may "steal" clicks, so we always click at icon.
|
|
await locate
|
|
.graphNodeByBinding(page, 'prod')
|
|
.locator('.icon')
|
|
.click({ modifiers: ['Shift'] })
|
|
await locate
|
|
.graphNodeByBinding(page, 'sum')
|
|
.locator('.icon')
|
|
.click({ modifiers: ['Shift'] })
|
|
await locate
|
|
.graphNodeByBinding(page, 'ten')
|
|
.locator('.icon')
|
|
.click({ modifiers: ['Shift'] })
|
|
|
|
await page.getByLabel('Group Selected Components').click()
|
|
await expect(locate.graphNode(page)).toHaveCount(initialNodesCount - 2)
|
|
const collapsedNode = locate.graphNodeByBinding(page, 'prod')
|
|
await expect(collapsedNode.locator('.WidgetToken')).toHaveText(['Main', '.', 'collapsed', 'five'])
|
|
await mockCollapsedFunctionInfo(page, 'prod', 'collapsed')
|
|
|
|
await locate.graphNodeIcon(collapsedNode).dblclick()
|
|
await expect(locate.graphNode(page)).toHaveCount(4)
|
|
await expect(locate.graphNodeByBinding(page, 'ten')).toExist()
|
|
await expect(locate.graphNodeByBinding(page, 'sum')).toExist()
|
|
await expect(locate.graphNodeByBinding(page, 'prod')).toExist()
|
|
|
|
await locate
|
|
.graphNodeByBinding(page, 'ten')
|
|
.locator('.icon')
|
|
.click({ modifiers: ['Shift'] })
|
|
// Wait till node is selected.
|
|
await expect(locate.graphNodeByBinding(page, 'ten').and(page.locator('.selected'))).toHaveCount(1)
|
|
await page.keyboard.press(COLLAPSE_SHORTCUT)
|
|
await expect(locate.graphNode(page)).toHaveCount(4)
|
|
|
|
const secondCollapsedNode = locate.graphNodeByBinding(page, 'ten')
|
|
await expect(secondCollapsedNode.locator('.WidgetToken')).toHaveText(['Main', '.', 'collapsed1'])
|
|
await mockCollapsedFunctionInfo(page, 'ten', 'collapsed1')
|
|
await secondCollapsedNode.dblclick()
|
|
await expect(locate.graphNode(page)).toHaveCount(2)
|
|
await expect(locate.graphNodeByBinding(page, 'ten')).toExist()
|
|
})
|
|
|
|
async function expectInsideMain(page: Page) {
|
|
await actions.expectNodePositionsInitialized(page, 72)
|
|
await expect(locate.graphNode(page)).toHaveCount(MAIN_FILE_NODES)
|
|
await expect(locate.graphNodeByBinding(page, 'five')).toExist()
|
|
await expect(locate.graphNodeByBinding(page, 'ten')).toExist()
|
|
await expect(locate.graphNodeByBinding(page, 'sum')).toExist()
|
|
await expect(locate.graphNodeByBinding(page, 'prod')).toExist()
|
|
await expect(locate.graphNodeByBinding(page, 'final')).toExist()
|
|
await expect(locate.graphNodeByBinding(page, 'list')).toExist()
|
|
await expect(locate.graphNodeByBinding(page, 'data')).toExist()
|
|
await expect(locate.graphNodeByBinding(page, 'aggregated')).toExist()
|
|
await expect(locate.graphNodeByBinding(page, 'filtered')).toExist()
|
|
await expect(locate.graphNodeByBinding(page, 'autoscoped')).toExist()
|
|
}
|
|
|
|
async function expectInsideFunc1(page: Page) {
|
|
await actions.expectNodePositionsInitialized(page, 216)
|
|
await expect(locate.graphNode(page)).toHaveCount(3)
|
|
await expect(locate.graphNodeByBinding(page, 'f2')).toExist()
|
|
await expect(locate.graphNodeByBinding(page, 'result')).toExist()
|
|
}
|
|
|
|
async function expectInsideFunc2(page: Page) {
|
|
await actions.expectNodePositionsInitialized(page, 144)
|
|
await expect(locate.graphNode(page)).toHaveCount(2)
|
|
await expect(locate.graphNodeByBinding(page, 'r')).toExist()
|
|
}
|
|
|
|
async function enterToFunc2(page: Page) {
|
|
await mockCollapsedFunctionInfo(page, 'final', 'func1')
|
|
await locate.graphNodeByBinding(page, 'final').dblclick()
|
|
await expectInsideFunc1(page)
|
|
await mockCollapsedFunctionInfo(page, 'f2', 'func2')
|
|
await locate.graphNodeByBinding(page, 'f2').dblclick()
|
|
await expectInsideFunc2(page)
|
|
}
|