mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-22 05:31:35 +03:00
24e0c5797c
doc property upgraded to use orm. The visibility of the property are simplified to three types: `always show`, `always hide`, `hide when empty`, and the default is `always show`. ![CleanShot 2024-10-14 at 15 34 52](https://github.com/user-attachments/assets/748b8b80-061f-4d6a-8579-52e59df717c2) Added a sidebar view to manage properties ![CleanShot 2024-10-14 at 15 35 58](https://github.com/user-attachments/assets/bffa9b1a-a1a5-4708-b2e8-4963120f3af9) new property ui in workspace settings ![CleanShot 2024-10-14 at 15 36 44](https://github.com/user-attachments/assets/572d8dcc-9b3d-462a-9bcc-5f5fa8e622da) Property lists can be collapsed ![CleanShot 2024-10-14 at 15 37 59](https://github.com/user-attachments/assets/2b20be1a-8141-478a-8fe7-405aff6d04fd)
135 lines
4.5 KiB
TypeScript
135 lines
4.5 KiB
TypeScript
import { test } from '@affine-test/kit/playwright';
|
|
import { openHomePage } from '@affine-test/kit/utils/load-page';
|
|
import {
|
|
clickNewPageButton,
|
|
clickPageMoreActions,
|
|
getBlockSuiteEditorTitle,
|
|
getPageByTitle,
|
|
getPageOperationButton,
|
|
waitForEmptyEditor,
|
|
} from '@affine-test/kit/utils/page-logic';
|
|
import {
|
|
addCustomProperty,
|
|
closeTagsEditor,
|
|
ensurePagePropertiesVisible,
|
|
expectTagsVisible,
|
|
filterTags,
|
|
removeSelectedTag,
|
|
} from '@affine-test/kit/utils/properties';
|
|
import { getCurrentDocIdFromUrl } from '@affine-test/kit/utils/url';
|
|
import { expect, type Page } from '@playwright/test';
|
|
|
|
const searchAndCreateTag = async (page: Page, name: string) => {
|
|
await filterTags(page, name);
|
|
await page
|
|
.locator(
|
|
'[data-testid="tags-editor-popup"] [data-testid="tag-selector-item"]:has-text("Create ")'
|
|
)
|
|
.click();
|
|
};
|
|
|
|
test.beforeEach(async ({ page }) => {
|
|
await openHomePage(page);
|
|
await clickNewPageButton(page);
|
|
await waitForEmptyEditor(page);
|
|
await ensurePagePropertiesVisible(page);
|
|
await getBlockSuiteEditorTitle(page).click();
|
|
await getBlockSuiteEditorTitle(page).fill('this is a new page');
|
|
});
|
|
|
|
test('New a page and open it ,then open info modal in the title bar', async ({
|
|
page,
|
|
}) => {
|
|
await page.getByTestId('header-info-button').click();
|
|
|
|
const infoModal = page.getByTestId('info-modal');
|
|
await expect(infoModal).toBeVisible();
|
|
const title = page.getByTestId('info-modal-title');
|
|
await expect(title).toHaveText('this is a new page');
|
|
});
|
|
|
|
test('New a page and open it ,then open info modal in the title bar more action button', async ({
|
|
page,
|
|
}) => {
|
|
await clickPageMoreActions(page);
|
|
await page.getByTestId('editor-option-menu-info').click();
|
|
|
|
const infoModal = page.getByTestId('info-modal');
|
|
await expect(infoModal).toBeVisible();
|
|
const title = page.getByTestId('info-modal-title');
|
|
await expect(title).toHaveText('this is a new page');
|
|
});
|
|
|
|
test('New a page, then open info modal from all doc', async ({ page }) => {
|
|
const newPageId = getCurrentDocIdFromUrl(page);
|
|
|
|
await page.getByTestId('all-pages').click();
|
|
const cell = getPageByTitle(page, 'this is a new page');
|
|
expect(cell).not.toBeUndefined();
|
|
await getPageOperationButton(page, newPageId).click();
|
|
await page.getByRole('menuitem', { name: 'View Info' }).click();
|
|
|
|
const infoModal = page.getByTestId('info-modal');
|
|
await expect(infoModal).toBeVisible();
|
|
const title = page.getByTestId('info-modal-title');
|
|
await expect(title).toHaveText('this is a new page');
|
|
});
|
|
|
|
test('New a page and add to favourites, then open info modal from sidebar', async ({
|
|
page,
|
|
}) => {
|
|
const newPageId = getCurrentDocIdFromUrl(page);
|
|
|
|
await clickPageMoreActions(page);
|
|
await page.getByTestId('editor-option-menu-favorite').click();
|
|
|
|
await page.getByTestId('all-pages').click();
|
|
const favoriteListItemInSidebar = page.locator(
|
|
`[data-testid="explorer-favorites"] [data-testid="explorer-doc-${newPageId}"]`
|
|
);
|
|
expect(await favoriteListItemInSidebar.textContent()).toBe(
|
|
'this is a new page'
|
|
);
|
|
await favoriteListItemInSidebar.hover();
|
|
await favoriteListItemInSidebar
|
|
.getByTestId('explorer-tree-node-operation-button')
|
|
.click();
|
|
const infoBtn = page.getByText('View Info');
|
|
await infoBtn.click();
|
|
|
|
const infoModal = page.getByTestId('info-modal');
|
|
await expect(infoModal).toBeVisible();
|
|
const title = page.getByTestId('info-modal-title');
|
|
await expect(title).toHaveText('this is a new page');
|
|
});
|
|
|
|
test('allow create tag', async ({ page }) => {
|
|
await page.getByTestId('header-info-button').click();
|
|
|
|
const infoModal = page.getByTestId('info-modal');
|
|
await expect(infoModal).toBeVisible();
|
|
await infoModal.getByTestId('property-tags-value').click();
|
|
await searchAndCreateTag(page, 'Test1');
|
|
await searchAndCreateTag(page, 'Test2');
|
|
await closeTagsEditor(page);
|
|
await expectTagsVisible(infoModal, ['Test1', 'Test2']);
|
|
|
|
await infoModal.getByTestId('property-tags-value').click();
|
|
await removeSelectedTag(page, 'Test1');
|
|
await closeTagsEditor(page);
|
|
await expectTagsVisible(infoModal, ['Test2']);
|
|
});
|
|
|
|
test('add custom property', async ({ page }) => {
|
|
await page.getByTestId('header-info-button').click();
|
|
|
|
const infoModal = page.getByTestId('info-modal');
|
|
await expect(infoModal).toBeVisible();
|
|
await addCustomProperty(page, infoModal, 'text');
|
|
await addCustomProperty(page, infoModal, 'number');
|
|
await addCustomProperty(page, infoModal, 'date');
|
|
await addCustomProperty(page, infoModal, 'checkbox');
|
|
await addCustomProperty(page, infoModal, 'createdBy');
|
|
await addCustomProperty(page, infoModal, 'updatedBy');
|
|
});
|