Skip to content

Commit

Permalink
feat(addon-doc): render page tabs as soon as possible
Browse files Browse the repository at this point in the history
  • Loading branch information
splincode committed Oct 2, 2024
1 parent c1a6653 commit 72ecdfb
Show file tree
Hide file tree
Showing 11 changed files with 63 additions and 27 deletions.
4 changes: 3 additions & 1 deletion projects/addon-doc/components/demo/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -104,5 +104,7 @@
class="t-resizer"
[tuiResizer]="[1, 0]"
(tuiSizeChange)="updateWidth($event[0])"
></div>
>
-
</div>
</div>
2 changes: 1 addition & 1 deletion projects/addon-doc/components/demo/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ export class TuiDocDemo implements OnInit {
}

protected updateWidth(width = NaN): void {
if (!this.resizer || !this.resizable || !this.content) {
if (!this.resizer || !this.resizable || !this.content || !this.el.clientWidth) {
return;
}

Expand Down
9 changes: 4 additions & 5 deletions projects/addon-doc/components/page/page.template.html
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,9 @@ <h1 class="t-title">
class="t-see-also"
[seeAlso]="seeAlso"
/>
<ng-container *ngFor="let tab of tabConnectors; index as index">
<ng-container
*ngIf="index === activeItemIndex"
[ngTemplateOutlet]="tab.template"
/>
<ng-container *ngFor="let tab of tabConnectors; let index = index">
<div [style.display]="index === activeItemIndex ? 'block' : 'none'">
<ng-container [ngTemplateOutlet]="tab.template" />
</div>
</ng-container>
</div>
1 change: 1 addition & 0 deletions projects/demo-playwright/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ export default defineConfig({
snapshotDir: 'snapshots',
reporter: process.env.CI ? 'github' : [['html', {outputFolder: 'tests-report'}]],
fullyParallel: true,
timeout: 5 * 60 * 1000,
/* Fail the build on CI if you accidentally left test.only in the source code. */
forbidOnly: !!process.env.CI,
retries: process.env.CI ? 2 : 0,
Expand Down
30 changes: 25 additions & 5 deletions projects/demo-playwright/tests/core/dialogs/dialogs.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,11 @@ test.describe('Dialogs', () => {
`${DemoRoute.Dialog}/API?closeable=true&dismissible=false`,
);

await page.locator('tui-doc-page button[data-appearance="primary"]').click();
await page
.locator('button[data-appearance="primary"]:visible')
.getByText('Show')
.click();

await page.mouse.click(100, 100);

await expect(page.locator('tui-dialog')).toHaveCount(1);
Expand All @@ -162,7 +166,11 @@ test.describe('Dialogs', () => {
`${DemoRoute.Dialog}/API?closeable=false&dismissible=true`,
);

await page.locator('tui-doc-page button[data-appearance="primary"]').click();
await page
.locator('button[data-appearance="primary"]:visible')
.getByText('Show')
.click();

await page.mouse.click(100, 100);

await expect(page.locator('tui-dialog')).toHaveCount(0);
Expand All @@ -174,7 +182,11 @@ test.describe('Dialogs', () => {
`${DemoRoute.Dialog}/API?closeable=true&dismissible=false`,
);

await page.locator('tui-doc-page button[data-appearance="primary"]').click();
await page
.locator('button[data-appearance="primary"]:visible')
.getByText('Show')
.click();

await page.mouse.click(100, 100);

await expect(page.locator('tui-dialog')).toHaveCount(1);
Expand All @@ -190,7 +202,11 @@ test.describe('Dialogs', () => {
`${DemoRoute.Dialog}/API?size=fullscreen&dismissible=true`,
);

await page.locator('tui-doc-page button[data-appearance="primary"]').click();
await page
.locator('button[data-appearance="primary"]:visible')
.getByText('Show')
.click();

await page.mouse.click(100, 100);

await expect(page.locator('tui-dialog')).toHaveCount(1);
Expand All @@ -205,7 +221,11 @@ test.describe('Dialogs', () => {
`${DemoRoute.Dialog}/API?size=fullscreen&dismissible=true`,
);

await page.locator('tui-doc-page button[data-appearance="primary"]').click();
await page
.locator('button[data-appearance="primary"]:visible')
.getByText('Show')
.click();

await page.mouse.click(100, 100);

await expect(page.locator('tui-dialog')).toHaveCount(1);
Expand Down
17 changes: 15 additions & 2 deletions projects/demo-playwright/tests/demo/demo.spec.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
import {TuiDocumentationPagePO, tuiGoto, tuiMockImages} from '@demo-playwright/utils';
import {
TuiDocumentationPagePO,
tuiGoto,
tuiMockImages,
waitStableState,
} from '@demo-playwright/utils';
import type {Locator} from '@playwright/test';
import {expect, test} from '@playwright/test';

import {tuiIsFlakyExample} from './is-flaky-examples';
Expand All @@ -24,9 +30,16 @@ test.describe('Demo', () => {
}
}).toPass();

const visibleExamples: Locator[] = [];
const examples = await page.getByTestId('tui-doc-example').all();

for (const [i, example] of examples.entries()) {
for (const example of examples) {
if (await waitStableState(example)) {
visibleExamples.push(example);
}
}

for (const [i, example] of visibleExamples.entries()) {
if (tuiIsFlakyExample(path, i)) {
continue;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ test.describe('Routable', () => {

await expect(page).toHaveURL(/\/dialog\/lazy-routable\/path\/to\/dialog$/);

await page.locator('[automation-id="tui-dialog__close"]').click();
await page.locator('[automation-id="tui-dialog__close"]').nth(1).click();

await expect(page).toHaveURL(/\/dialog\/lazy-routable$/);
});
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
import type {Locator, Page} from '@playwright/test';
import {expect} from '@playwright/test';

import {tuiHideElement} from '../hide-element';
import {waitStableState} from '../wait-stable-state';

export class TuiDocumentationApiPagePO {
public readonly pageExamples: Locator = this.page.locator('tui-doc-example');
public readonly apiPageExample: Locator = this.page.locator('#demo-content');
public readonly apiPageExample: Locator = this.page.locator('#demo-content:visible');

constructor(protected readonly page: Page) {}

Expand Down Expand Up @@ -73,11 +72,6 @@ export class TuiDocumentationApiPagePO {

if ((await this.apiPageExample.all()).length) {
await this.apiPageExample.evaluate((el) => el.scrollIntoView());
await expect(async () => {
expect(
await this.apiPageExample.boundingBox().then((box) => box?.y),
).toBeGreaterThanOrEqual(64);
}).toPass();
}
}

Expand Down
10 changes: 7 additions & 3 deletions projects/demo-playwright/utils/wait-stable-state.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type {Locator} from '@playwright/test';

export async function waitStableState(locator: Locator): Promise<void> {
export async function waitStableState(locator: Locator): Promise<boolean> {
try {
const handle = await locator.elementHandle();

Expand All @@ -12,6 +12,10 @@ export async function waitStableState(locator: Locator): Promise<void> {

// https://playwright.dev/docs/actionability#visible
// Element is considered visible when it has non-empty bounding box
await handle?.waitForElementState('visible');
} catch {}
await handle?.waitForElementState('visible', {timeout: 1000});

return true;
} catch {
return false;
}
}
2 changes: 1 addition & 1 deletion projects/demo/src/modules/components/tabs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@

<ng-template pageTab="Routing">
<tui-doc-example [content]="8 | tuiExample: 'html,ts'">
<router-outlet />
<router-outlet *ngIf="path.url.endsWith('Routing')" />
</tui-doc-example>
</ng-template>
</tui-doc-page>
5 changes: 4 additions & 1 deletion projects/demo/src/modules/components/tabs/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import {Component} from '@angular/core';
import {Component, inject} from '@angular/core';
import {Router} from '@angular/router';
import {changeDetection} from '@demo/emulate/change-detection';
import {TuiDemo} from '@demo/utils';
import {tuiDocExampleOptionsProvider} from '@taiga-ui/addon-doc';
Expand All @@ -14,6 +15,8 @@ import {TuiTabs} from '@taiga-ui/kit';
providers: [tuiDocExampleOptionsProvider({fullsize: true})],
})
export default class Page {
protected readonly path = inject(Router);

protected buttons = ['Button 1', 'Button 2', 'Button 3', 'Button 4'];

protected readonly moreContentVariants = ['', 'And more'];
Expand Down

0 comments on commit 72ecdfb

Please sign in to comment.