/
githubmirror
/
components
Обзор
Документация
Войти
/
githubmirror
/
components
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/material/chips/testing/chip-grid-harness.ts
68 строк
2 KB
Naji
docs: replace angular.io links with angular.dev (#29734)
19 сен 2024, 13:57
Не верифицирован
19 сен 2024, 13:57
5782834
Код
Авторство
О чём код?
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import { ComponentHarness, ComponentHarnessConstructor, HarnessPredicate, } from '@angular/cdk/testing'; import { ChipGridHarnessFilters, ChipInputHarnessFilters, ChipRowHarnessFilters, } from './chip-harness-filters'; import {MatChipInputHarness} from './chip-input-harness'; import {MatChipRowHarness} from './chip-row-harness'; /** Harness for interacting with a mat-chip-grid in tests. */ export class MatChipGridHarness extends ComponentHarness { static hostSelector = '.mat-mdc-chip-grid'; /** * Gets a `HarnessPredicate` that can be used to search for a chip grid with specific attributes. * @param options Options for filtering which chip grid instances are considered a match. * @return a `HarnessPredicate` configured with the given options. */ static with<T extends MatChipGridHarness>( this: ComponentHarnessConstructor<T>, options: ChipGridHarnessFilters = {}, ): HarnessPredicate<T> { return new HarnessPredicate(this, options).addOption( 'disabled', options.disabled, async (harness, disabled) => { return (await harness.isDisabled()) === disabled; }, ); } /** Gets whether the chip grid is disabled. */ async isDisabled(): Promise<boolean> { return (await (await this.host()).getAttribute('aria-disabled')) === 'true'; } /** Gets whether the chip grid is required. */ async isRequired(): Promise<boolean> { return await (await this.host()).hasClass('mat-mdc-chip-list-required'); } /** Gets whether the chip grid is invalid. */ async isInvalid(): Promise<boolean> { return (await (await this.host()).getAttribute('aria-invalid')) === 'true'; } /** Gets promise of the harnesses for the chip rows. */ getRows(filter: ChipRowHarnessFilters = {}): Promise<MatChipRowHarness[]> { return this.locatorForAll(MatChipRowHarness.with(filter))(); } /** Gets promise of the chip text input harness. */ getInput(filter: ChipInputHarnessFilters = {}): Promise<MatChipInputHarness | null> { return this.locatorFor(MatChipInputHarness.with(filter))(); } }