/
dimamir
/
authentik
Обзор
Документация
Войти
/
dimamir
/
authentik
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
web/src/admin/applications/ProviderSelectModal.ts
89 строк
3 KB
Ken Sternberg
web: add HTMLTagNameElementMaps to everything to activate lit analyzer (#10217)
15 июл 2024, 20:54
Не верифицирован
15 июл 2024, 20:54
ee58cf0
Код
Авторство
О чём код?
import { DEFAULT_CONFIG } from "@goauthentik/common/api/config"; import "@goauthentik/elements/buttons/SpinnerButton"; import { PaginatedResponse } from "@goauthentik/elements/table/Table"; import { TableColumn } from "@goauthentik/elements/table/Table"; import { TableModal } from "@goauthentik/elements/table/TableModal"; import { msg } from "@lit/localize"; import { TemplateResult, html } from "lit"; import { customElement, property } from "lit/decorators.js"; import { Provider, ProvidersApi } from "@goauthentik/api"; @customElement("ak-provider-select-table") export class ProviderSelectModal extends TableModal<Provider> { checkbox = true; checkboxChip = true; searchEnabled(): boolean { return true; } @property({ type: Boolean }) backchannel?: boolean; @property() confirm!: (selectedItems: Provider[]) => Promise<unknown>; order = "name"; async apiEndpoint(): Promise<PaginatedResponse<Provider>> { return new ProvidersApi(DEFAULT_CONFIG).providersAllList({ ...(await this.defaultEndpointConfig()), backchannel: this.backchannel, }); } columns(): TableColumn[] { return [new TableColumn(msg("Name"), "username"), new TableColumn(msg("Type"))]; } row(item: Provider): TemplateResult[] { return [ html`<div> <div>${item.name}</div> </div>`, html`${item.verboseName}`, ]; } renderSelectedChip(item: Provider): TemplateResult { return html`${item.name}`; } renderModalInner(): TemplateResult { return html`<section class="pf-c-modal-box__header pf-c-page__main-section pf-m-light"> <div class="pf-c-content"> <h1 class="pf-c-title pf-m-2xl"> ${msg("Select providers to add to application")} </h1> </div> </section> <section class="pf-c-modal-box__body pf-m-light">${this.renderTable()}</section> <footer class="pf-c-modal-box__footer"> <ak-spinner-button .callAction=${async () => { await this.confirm(this.selectedElements); this.open = false; }} class="pf-m-primary" > ${msg("Add")} </ak-spinner-button > <ak-spinner-button .callAction=${async () => { this.open = false; }} class="pf-m-secondary" > ${msg("Cancel")} </ak-spinner-button> </footer>`; } } declare global { interface HTMLElementTagNameMap { "ak-provider-select-table": ProviderSelectModal; } }