web/admin: show warning on invitation list when no stage exists or is bound
closes #1720 Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
parent
738e4d5c74
commit
0d3705685e
|
@ -1,7 +1,10 @@
|
||||||
import { t } from "@lingui/macro";
|
import { t } from "@lingui/macro";
|
||||||
|
|
||||||
import { TemplateResult, html } from "lit";
|
import { CSSResult, TemplateResult, html } from "lit";
|
||||||
import { customElement, property } from "lit/decorators";
|
import { customElement, property, state } from "lit/decorators";
|
||||||
|
import { ifDefined } from "lit/directives/if-defined";
|
||||||
|
|
||||||
|
import PFBanner from "@patternfly/patternfly/components/Banner/banner.css";
|
||||||
|
|
||||||
import { Invitation, StagesApi } from "@goauthentik/api";
|
import { Invitation, StagesApi } from "@goauthentik/api";
|
||||||
|
|
||||||
|
@ -34,12 +37,24 @@ export class InvitationListPage extends TablePage<Invitation> {
|
||||||
return "pf-icon pf-icon-migration";
|
return "pf-icon pf-icon-migration";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static get styles(): CSSResult[] {
|
||||||
|
return super.styles.concat(PFBanner);
|
||||||
|
}
|
||||||
|
|
||||||
checkbox = true;
|
checkbox = true;
|
||||||
|
|
||||||
@property()
|
@property()
|
||||||
order = "expires";
|
order = "expires";
|
||||||
|
|
||||||
|
@state()
|
||||||
|
invitationStageExists = false;
|
||||||
|
|
||||||
async apiEndpoint(page: number): Promise<AKResponse<Invitation>> {
|
async apiEndpoint(page: number): Promise<AKResponse<Invitation>> {
|
||||||
|
const stages = await new StagesApi(DEFAULT_CONFIG).stagesInvitationStagesList({
|
||||||
|
noFlows: false,
|
||||||
|
});
|
||||||
|
this.invitationStageExists = stages.pagination.count > 0;
|
||||||
|
this.expandable = this.invitationStageExists;
|
||||||
return new StagesApi(DEFAULT_CONFIG).stagesInvitationInvitationsList({
|
return new StagesApi(DEFAULT_CONFIG).stagesInvitationInvitationsList({
|
||||||
ordering: this.order,
|
ordering: this.order,
|
||||||
page: page,
|
page: page,
|
||||||
|
@ -110,4 +125,23 @@ export class InvitationListPage extends TablePage<Invitation> {
|
||||||
${super.renderToolbar()}
|
${super.renderToolbar()}
|
||||||
`;
|
`;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
render(): TemplateResult {
|
||||||
|
return html`<ak-page-header
|
||||||
|
icon=${this.pageIcon()}
|
||||||
|
header=${this.pageTitle()}
|
||||||
|
description=${ifDefined(this.pageDescription())}
|
||||||
|
>
|
||||||
|
</ak-page-header>
|
||||||
|
${this.invitationStageExists
|
||||||
|
? html``
|
||||||
|
: html`
|
||||||
|
<div class="pf-c-banner pf-m-warning">
|
||||||
|
${t`Warning: No invitation stage is bound to any flow. Invitations will not work as expected.`}
|
||||||
|
</div>
|
||||||
|
`}
|
||||||
|
<section class="pf-c-page__main-section pf-m-no-padding-mobile">
|
||||||
|
<div class="pf-c-card">${this.renderTable()}</div>
|
||||||
|
</section>`;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Reference in New Issue