mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-24 09:52:49 +08:00
fix(editor): add recent open doc with mode button (#11419)
Closes: [BS-3013](https://linear.app/affine-design/issue/BS-3013/open-doc-分开两个按钮:一个快捷按钮和一个菜单) Split into two buttons: `recent open doc with mode button` and `open doc with dropdown menu`.
This commit is contained in:
@@ -190,7 +190,7 @@ test('outline viewer should be useable in doc peek preview', async ({
|
||||
const toolbar = page.locator('affine-toolbar-widget editor-toolbar');
|
||||
await expect(toolbar).toBeVisible();
|
||||
|
||||
await toolbar.getByLabel(/^Open doc$/).click();
|
||||
await toolbar.getByLabel(/^Open doc with$/).click();
|
||||
await toolbar
|
||||
.getByLabel('Open doc menu')
|
||||
.getByLabel('Open in center peek')
|
||||
|
||||
@@ -1054,11 +1054,18 @@ test('should save open doc mode of internal links', async ({ page }) => {
|
||||
const inlineLink = page.locator('affine-reference');
|
||||
await inlineLink.hover();
|
||||
|
||||
const openDocBtn = toolbar.getByLabel(/^Open doc$/);
|
||||
await expect(openDocBtn).toHaveAttribute(
|
||||
'data-open-doc-mode',
|
||||
const recentOpenModeBtn = toolbar.locator(
|
||||
'editor-icon-button:has-text("Open")'
|
||||
);
|
||||
await expect(recentOpenModeBtn).toHaveAttribute(
|
||||
'aria-label',
|
||||
'Open this doc'
|
||||
);
|
||||
await expect(
|
||||
recentOpenModeBtn.locator('span.label:has-text("Open")')
|
||||
).toBeVisible();
|
||||
|
||||
const openDocBtn = toolbar.getByLabel(/^Open doc with$/);
|
||||
await openDocBtn.click();
|
||||
|
||||
const openDocMenu = toolbar.getByLabel('Open doc menu');
|
||||
@@ -1081,8 +1088,8 @@ test('should save open doc mode of internal links', async ({ page }) => {
|
||||
await inlineLink.hover();
|
||||
|
||||
await expect(toolbar).toBeVisible();
|
||||
await expect(openDocBtn).toHaveAttribute(
|
||||
'data-open-doc-mode',
|
||||
await expect(recentOpenModeBtn).toHaveAttribute(
|
||||
'aria-label',
|
||||
'Open in center peek'
|
||||
);
|
||||
|
||||
@@ -1090,8 +1097,8 @@ test('should save open doc mode of internal links', async ({ page }) => {
|
||||
await cardViewBtn.click();
|
||||
|
||||
await expect(toolbar).toBeVisible();
|
||||
await expect(openDocBtn).toHaveAttribute(
|
||||
'data-open-doc-mode',
|
||||
await expect(recentOpenModeBtn).toHaveAttribute(
|
||||
'aria-label',
|
||||
'Open in center peek'
|
||||
);
|
||||
|
||||
@@ -1099,8 +1106,8 @@ test('should save open doc mode of internal links', async ({ page }) => {
|
||||
await embedViewBtn.click();
|
||||
|
||||
await expect(toolbar).toBeVisible();
|
||||
await expect(openDocBtn).toHaveAttribute(
|
||||
'data-open-doc-mode',
|
||||
await expect(recentOpenModeBtn).toHaveAttribute(
|
||||
'aria-label',
|
||||
'Open in center peek'
|
||||
);
|
||||
|
||||
@@ -1112,8 +1119,8 @@ test('should save open doc mode of internal links', async ({ page }) => {
|
||||
await page.waitForTimeout(250);
|
||||
|
||||
await expect(toolbar).toBeVisible();
|
||||
await expect(openDocBtn).toHaveAttribute(
|
||||
'data-open-doc-mode',
|
||||
await expect(recentOpenModeBtn).toHaveAttribute(
|
||||
'aria-label',
|
||||
'Open in center peek'
|
||||
);
|
||||
});
|
||||
|
||||
@@ -28,7 +28,7 @@ test('can open peek view via link popover', async ({ page }) => {
|
||||
const toolbar = page.locator('affine-toolbar-widget editor-toolbar');
|
||||
await expect(toolbar).toBeVisible();
|
||||
|
||||
await toolbar.getByLabel(/^Open doc$/).click();
|
||||
await toolbar.getByLabel(/^Open doc with$/).click();
|
||||
await toolbar
|
||||
.getByLabel('Open doc menu')
|
||||
.getByLabel('Open in center peek')
|
||||
|
||||
Reference in New Issue
Block a user