web: use FlowURLManager for cancel links
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
parent
e621eb7455
commit
1a53bc3de5
|
@ -106,7 +106,11 @@ export class AppURLManager {
|
||||||
export class FlowURLManager {
|
export class FlowURLManager {
|
||||||
|
|
||||||
static configure(stageUuid: string, rest: string): string {
|
static configure(stageUuid: string, rest: string): string {
|
||||||
return `-/configure/${stageUuid}/${rest}`;
|
return `/flows/-/configure/${stageUuid}/${rest}`;
|
||||||
|
}
|
||||||
|
|
||||||
|
static cancel(): string {
|
||||||
|
return "/flows/-/cancel/";
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,7 +6,10 @@ import PFBase from "@patternfly/patternfly/patternfly-base.css";
|
||||||
import PFButton from "@patternfly/patternfly/components/Button/button.css";
|
import PFButton from "@patternfly/patternfly/components/Button/button.css";
|
||||||
|
|
||||||
export enum MessageLevel {
|
export enum MessageLevel {
|
||||||
"error", "warning", "success", "info"
|
error = "error",
|
||||||
|
warning = "warning",
|
||||||
|
success = "success",
|
||||||
|
info = "info"
|
||||||
}
|
}
|
||||||
export interface APIMessage {
|
export interface APIMessage {
|
||||||
level: MessageLevel;
|
level: MessageLevel;
|
||||||
|
|
|
@ -12,6 +12,7 @@ import { BaseStage } from "../base";
|
||||||
import "../../../elements/forms/FormElement";
|
import "../../../elements/forms/FormElement";
|
||||||
import "../../../elements/EmptyState";
|
import "../../../elements/EmptyState";
|
||||||
import "../../FormStatic";
|
import "../../FormStatic";
|
||||||
|
import { FlowURLManager } from "../../../api/legacy";
|
||||||
|
|
||||||
export const STATIC_TOKEN_STYLE = css`
|
export const STATIC_TOKEN_STYLE = css`
|
||||||
/* Static OTP Tokens */
|
/* Static OTP Tokens */
|
||||||
|
@ -61,7 +62,7 @@ export class AuthenticatorStaticStage extends BaseStage {
|
||||||
userAvatar="${this.challenge.pending_user_avatar}"
|
userAvatar="${this.challenge.pending_user_avatar}"
|
||||||
user=${this.challenge.pending_user}>
|
user=${this.challenge.pending_user}>
|
||||||
<div slot="link">
|
<div slot="link">
|
||||||
<a href="/flows/-/cancel/">${gettext("Not you?")}</a>
|
<a href="${FlowURLManager.cancel()}">${gettext("Not you?")}</a>
|
||||||
</div>
|
</div>
|
||||||
</ak-form-static>
|
</ak-form-static>
|
||||||
<ak-form-element
|
<ak-form-element
|
||||||
|
|
|
@ -15,6 +15,7 @@ import { showMessage } from "../../../elements/messages/MessageContainer";
|
||||||
import "../../../elements/EmptyState";
|
import "../../../elements/EmptyState";
|
||||||
import "../../FormStatic";
|
import "../../FormStatic";
|
||||||
import { MessageLevel } from "../../../elements/messages/Message";
|
import { MessageLevel } from "../../../elements/messages/Message";
|
||||||
|
import { FlowURLManager } from "../../../api/legacy";
|
||||||
|
|
||||||
export interface AuthenticatorTOTPChallenge extends WithUserInfoChallenge {
|
export interface AuthenticatorTOTPChallenge extends WithUserInfoChallenge {
|
||||||
config_url: string;
|
config_url: string;
|
||||||
|
@ -49,7 +50,7 @@ export class AuthenticatorTOTPStage extends BaseStage {
|
||||||
userAvatar="${this.challenge.pending_user_avatar}"
|
userAvatar="${this.challenge.pending_user_avatar}"
|
||||||
user=${this.challenge.pending_user}>
|
user=${this.challenge.pending_user}>
|
||||||
<div slot="link">
|
<div slot="link">
|
||||||
<a href="/flows/-/cancel/">${gettext("Not you?")}</a>
|
<a href="${FlowURLManager.cancel()}">${gettext("Not you?")}</a>
|
||||||
</div>
|
</div>
|
||||||
</ak-form-static>
|
</ak-form-static>
|
||||||
<input type="hidden" name="otp_uri" value=${this.challenge.config_url} />
|
<input type="hidden" name="otp_uri" value=${this.challenge.config_url} />
|
||||||
|
|
|
@ -13,6 +13,7 @@ import "../../../elements/forms/FormElement";
|
||||||
import "../../../elements/EmptyState";
|
import "../../../elements/EmptyState";
|
||||||
import { PasswordManagerPrefill } from "../identification/IdentificationStage";
|
import { PasswordManagerPrefill } from "../identification/IdentificationStage";
|
||||||
import "../../FormStatic";
|
import "../../FormStatic";
|
||||||
|
import { FlowURLManager } from "../../../api/legacy";
|
||||||
|
|
||||||
@customElement("ak-stage-authenticator-validate-code")
|
@customElement("ak-stage-authenticator-validate-code")
|
||||||
export class AuthenticatorValidateStageWebCode extends BaseStage {
|
export class AuthenticatorValidateStageWebCode extends BaseStage {
|
||||||
|
@ -44,7 +45,7 @@ export class AuthenticatorValidateStageWebCode extends BaseStage {
|
||||||
userAvatar="${this.challenge.pending_user_avatar}"
|
userAvatar="${this.challenge.pending_user_avatar}"
|
||||||
user=${this.challenge.pending_user}>
|
user=${this.challenge.pending_user}>
|
||||||
<div slot="link">
|
<div slot="link">
|
||||||
<a href="/flows/-/cancel/">${gettext("Not you?")}</a>
|
<a href="${FlowURLManager.cancel()}">${gettext("Not you?")}</a>
|
||||||
</div>
|
</div>
|
||||||
</ak-form-static>
|
</ak-form-static>
|
||||||
<ak-form-element
|
<ak-form-element
|
||||||
|
|
|
@ -13,6 +13,7 @@ import { BaseStage } from "../base";
|
||||||
import "../../../elements/forms/FormElement";
|
import "../../../elements/forms/FormElement";
|
||||||
import "../../../elements/EmptyState";
|
import "../../../elements/EmptyState";
|
||||||
import "../../FormStatic";
|
import "../../FormStatic";
|
||||||
|
import { FlowURLManager } from "../../../api/legacy";
|
||||||
|
|
||||||
export interface CaptchaChallenge extends WithUserInfoChallenge {
|
export interface CaptchaChallenge extends WithUserInfoChallenge {
|
||||||
site_key: string;
|
site_key: string;
|
||||||
|
@ -78,7 +79,7 @@ export class CaptchaStage extends BaseStage {
|
||||||
userAvatar="${this.challenge.pending_user_avatar}"
|
userAvatar="${this.challenge.pending_user_avatar}"
|
||||||
user=${this.challenge.pending_user}>
|
user=${this.challenge.pending_user}>
|
||||||
<div slot="link">
|
<div slot="link">
|
||||||
<a href="/flows/-/cancel/">${gettext("Not you?")}</a>
|
<a href="${FlowURLManager.cancel()}">${gettext("Not you?")}</a>
|
||||||
</div>
|
</div>
|
||||||
</ak-form-static>
|
</ak-form-static>
|
||||||
<div class="ak-loading">
|
<div class="ak-loading">
|
||||||
|
|
|
@ -11,6 +11,7 @@ import AKGlobal from "../../../authentik.css";
|
||||||
import { BaseStage } from "../base";
|
import { BaseStage } from "../base";
|
||||||
import "../../../elements/EmptyState";
|
import "../../../elements/EmptyState";
|
||||||
import "../../FormStatic";
|
import "../../FormStatic";
|
||||||
|
import { FlowURLManager } from "../../../api/legacy";
|
||||||
|
|
||||||
export interface Permission {
|
export interface Permission {
|
||||||
name: string;
|
name: string;
|
||||||
|
@ -53,7 +54,7 @@ export class ConsentStage extends BaseStage {
|
||||||
userAvatar="${this.challenge.pending_user_avatar}"
|
userAvatar="${this.challenge.pending_user_avatar}"
|
||||||
user=${this.challenge.pending_user}>
|
user=${this.challenge.pending_user}>
|
||||||
<div slot="link">
|
<div slot="link">
|
||||||
<a href="/flows/-/cancel/">${gettext("Not you?")}</a>
|
<a href="${FlowURLManager.cancel()}">${gettext("Not you?")}</a>
|
||||||
</div>
|
</div>
|
||||||
</ak-form-static>
|
</ak-form-static>
|
||||||
<div class="pf-c-form__group">
|
<div class="pf-c-form__group">
|
||||||
|
|
|
@ -13,6 +13,7 @@ import "../../../elements/forms/FormElement";
|
||||||
import "../../../elements/EmptyState";
|
import "../../../elements/EmptyState";
|
||||||
import { PasswordManagerPrefill } from "../identification/IdentificationStage";
|
import { PasswordManagerPrefill } from "../identification/IdentificationStage";
|
||||||
import "../../FormStatic";
|
import "../../FormStatic";
|
||||||
|
import { FlowURLManager } from "../../../api/legacy";
|
||||||
|
|
||||||
export interface PasswordChallenge extends WithUserInfoChallenge {
|
export interface PasswordChallenge extends WithUserInfoChallenge {
|
||||||
recovery_url?: string;
|
recovery_url?: string;
|
||||||
|
@ -47,7 +48,7 @@ export class PasswordStage extends BaseStage {
|
||||||
userAvatar="${this.challenge.pending_user_avatar}"
|
userAvatar="${this.challenge.pending_user_avatar}"
|
||||||
user=${this.challenge.pending_user}>
|
user=${this.challenge.pending_user}>
|
||||||
<div slot="link">
|
<div slot="link">
|
||||||
<a href="/flows/-/cancel/">${gettext("Not you?")}</a>
|
<a href="${FlowURLManager.cancel()}">${gettext("Not you?")}</a>
|
||||||
</div>
|
</div>
|
||||||
</ak-form-static>
|
</ak-form-static>
|
||||||
<input name="username" autocomplete="username" type="hidden" value="${this.challenge.pending_user}">
|
<input name="username" autocomplete="username" type="hidden" value="${this.challenge.pending_user}">
|
||||||
|
|
Reference in New Issue