c4832206fa
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
157 lines
6.5 KiB
TypeScript
157 lines
6.5 KiB
TypeScript
import { t } from "@lingui/macro";
|
|
import { CSSResult, customElement, html, property, TemplateResult } from "lit-element";
|
|
import { AKResponse } from "../../../api/Client";
|
|
import PFDescriptionList from "@patternfly/patternfly/components/DescriptionList/description-list.css";
|
|
|
|
import "../../../elements/forms/DeleteBulkForm";
|
|
import "../../../elements/forms/ModalForm";
|
|
import "../../../elements/buttons/ModalButton";
|
|
import "../../../elements/buttons/Dropdown";
|
|
import "../../../elements/buttons/TokenCopyButton";
|
|
import { Table, TableColumn } from "../../../elements/table/Table";
|
|
import { PAGE_SIZE } from "../../../constants";
|
|
import { CoreApi, IntentEnum, Token } from "@goauthentik/api";
|
|
import { DEFAULT_CONFIG } from "../../../api/Config";
|
|
import "./UserTokenForm";
|
|
import { IntentToLabel } from "../../tokens/TokenListPage";
|
|
|
|
@customElement("ak-user-token-list")
|
|
export class UserTokenList extends Table<Token> {
|
|
searchEnabled(): boolean {
|
|
return true;
|
|
}
|
|
|
|
expandable = true;
|
|
checkbox = true;
|
|
|
|
@property()
|
|
order = "expires";
|
|
|
|
apiEndpoint(page: number): Promise<AKResponse<Token>> {
|
|
return new CoreApi(DEFAULT_CONFIG).coreTokensList({
|
|
ordering: this.order,
|
|
page: page,
|
|
pageSize: PAGE_SIZE,
|
|
search: this.search || "",
|
|
});
|
|
}
|
|
|
|
columns(): TableColumn[] {
|
|
return [new TableColumn(t`Identifier`, "identifier"), new TableColumn("")];
|
|
}
|
|
|
|
static get styles(): CSSResult[] {
|
|
return super.styles.concat(PFDescriptionList);
|
|
}
|
|
|
|
renderToolbar(): TemplateResult {
|
|
return html`
|
|
<ak-forms-modal>
|
|
<span slot="submit"> ${t`Create`} </span>
|
|
<span slot="header"> ${t`Create Token`} </span>
|
|
<ak-user-token-form intent=${IntentEnum.Api} slot="form"> </ak-user-token-form>
|
|
<button slot="trigger" class="pf-c-button pf-m-secondary">
|
|
${t`Create Token`}
|
|
</button>
|
|
</ak-forms-modal>
|
|
<ak-forms-modal>
|
|
<span slot="submit"> ${t`Create`} </span>
|
|
<span slot="header"> ${t`Create App password`} </span>
|
|
<ak-user-token-form intent=${IntentEnum.AppPassword} slot="form">
|
|
</ak-user-token-form>
|
|
<button slot="trigger" class="pf-c-button pf-m-secondary">
|
|
${t`Create App password`}
|
|
</button>
|
|
</ak-forms-modal>
|
|
${super.renderToolbar()}
|
|
`;
|
|
}
|
|
|
|
renderExpanded(item: Token): TemplateResult {
|
|
return html` <td role="cell" colspan="3">
|
|
<div class="pf-c-table__expandable-row-content">
|
|
<dl class="pf-c-description-list pf-m-horizontal">
|
|
<div class="pf-c-description-list__group">
|
|
<dt class="pf-c-description-list__term">
|
|
<span class="pf-c-description-list__text">${t`User`}</span>
|
|
</dt>
|
|
<dd class="pf-c-description-list__description">
|
|
<div class="pf-c-description-list__text">
|
|
${item.user?.username}
|
|
</div>
|
|
</dd>
|
|
</div>
|
|
<div class="pf-c-description-list__group">
|
|
<dt class="pf-c-description-list__term">
|
|
<span class="pf-c-description-list__text">${t`Expiring`}</span>
|
|
</dt>
|
|
<dd class="pf-c-description-list__description">
|
|
<div class="pf-c-description-list__text">
|
|
${item.expiring ? t`Yes` : t`No`}
|
|
</div>
|
|
</dd>
|
|
</div>
|
|
<div class="pf-c-description-list__group">
|
|
<dt class="pf-c-description-list__term">
|
|
<span class="pf-c-description-list__text">${t`Expiring`}</span>
|
|
</dt>
|
|
<dd class="pf-c-description-list__description">
|
|
<div class="pf-c-description-list__text">
|
|
${item.expiring ? item.expires?.toLocaleString() : "-"}
|
|
</div>
|
|
</dd>
|
|
</div>
|
|
<div class="pf-c-description-list__group">
|
|
<dt class="pf-c-description-list__term">
|
|
<span class="pf-c-description-list__text">${t`Intent`}</span>
|
|
</dt>
|
|
<dd class="pf-c-description-list__description">
|
|
<div class="pf-c-description-list__text">
|
|
${IntentToLabel(item.intent || IntentEnum.Api)}
|
|
</div>
|
|
</dd>
|
|
</div>
|
|
</dl>
|
|
</div>
|
|
</td>
|
|
<td></td>`;
|
|
}
|
|
|
|
renderToolbarSelected(): TemplateResult {
|
|
const disabled = this.selectedElements.length < 1;
|
|
return html`<ak-forms-delete-bulk
|
|
objectLabel=${t`Token(s)`}
|
|
.objects=${this.selectedElements}
|
|
.delete=${(item: Token) => {
|
|
return new CoreApi(DEFAULT_CONFIG).coreTokensDestroy({
|
|
identifier: item.identifier,
|
|
});
|
|
}}
|
|
>
|
|
<button ?disabled=${disabled} slot="trigger" class="pf-c-button pf-m-danger">
|
|
${t`Delete`}
|
|
</button>
|
|
</ak-forms-delete-bulk>`;
|
|
}
|
|
|
|
row(item: Token): TemplateResult[] {
|
|
return [
|
|
html`${item.identifier}`,
|
|
html`
|
|
<ak-forms-modal>
|
|
<span slot="submit"> ${t`Update`} </span>
|
|
<span slot="header"> ${t`Update Token`} </span>
|
|
<ak-user-token-form slot="form" .instancePk=${item.identifier}>
|
|
</ak-user-token-form>
|
|
<button slot="trigger" class="pf-c-button pf-m-plain">
|
|
<i class="fas fa-edit"></i>
|
|
</button>
|
|
</ak-forms-modal>
|
|
<ak-token-copy-button identifier="${item.identifier}">
|
|
${t`Copy Key`}
|
|
</ak-token-copy-button>
|
|
`,
|
|
];
|
|
}
|
|
}
|