web: fix FlowExecutor not setting title
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
parent
fe7f23238c
commit
8a451bb5f6
|
@ -38,6 +38,7 @@ import { Challenge, ChallengeTypeEnum, Config, FlowsApi, RootApi } from "authent
|
||||||
import { DEFAULT_CONFIG } from "../api/Config";
|
import { DEFAULT_CONFIG } from "../api/Config";
|
||||||
import { ifDefined } from "lit-html/directives/if-defined";
|
import { ifDefined } from "lit-html/directives/if-defined";
|
||||||
import { until } from "lit-html/directives/until";
|
import { until } from "lit-html/directives/until";
|
||||||
|
import { TITLE_SUFFIX } from "../elements/router/RouterOutlet";
|
||||||
|
|
||||||
@customElement("ak-flow-executor")
|
@customElement("ak-flow-executor")
|
||||||
export class FlowExecutor extends LitElement implements StageHost {
|
export class FlowExecutor extends LitElement implements StageHost {
|
||||||
|
@ -92,6 +93,17 @@ export class FlowExecutor extends LitElement implements StageHost {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private postUpdate(): void {
|
||||||
|
if (this.challenge?.background) {
|
||||||
|
this.setBackground(this.challenge.background);
|
||||||
|
}
|
||||||
|
if (this.challenge?.title) {
|
||||||
|
document.title = `${this.challenge.title} - ${TITLE_SUFFIX}`;
|
||||||
|
} else {
|
||||||
|
document.title = TITLE_SUFFIX;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
submit<T>(formData?: T): Promise<void> {
|
submit<T>(formData?: T): Promise<void> {
|
||||||
this.loading = true;
|
this.loading = true;
|
||||||
return new FlowsApi(DEFAULT_CONFIG).flowsExecutorSolveRaw({
|
return new FlowsApi(DEFAULT_CONFIG).flowsExecutorSolveRaw({
|
||||||
|
@ -101,9 +113,7 @@ export class FlowExecutor extends LitElement implements StageHost {
|
||||||
return challengeRaw.raw.json();
|
return challengeRaw.raw.json();
|
||||||
}).then((data) => {
|
}).then((data) => {
|
||||||
this.challenge = data;
|
this.challenge = data;
|
||||||
if (this.challenge?.background) {
|
this.postUpdate();
|
||||||
this.setBackground(this.challenge.background);
|
|
||||||
}
|
|
||||||
}).catch((e) => {
|
}).catch((e) => {
|
||||||
this.errorMessage(e);
|
this.errorMessage(e);
|
||||||
}).finally(() => {
|
}).finally(() => {
|
||||||
|
@ -122,9 +132,7 @@ export class FlowExecutor extends LitElement implements StageHost {
|
||||||
return challengeRaw.raw.json();
|
return challengeRaw.raw.json();
|
||||||
}).then((challenge) => {
|
}).then((challenge) => {
|
||||||
this.challenge = challenge as Challenge;
|
this.challenge = challenge as Challenge;
|
||||||
if (this.challenge?.background) {
|
this.postUpdate();
|
||||||
this.setBackground(this.challenge.background);
|
|
||||||
}
|
|
||||||
}).catch((e) => {
|
}).catch((e) => {
|
||||||
// Catch JSON or Update errors
|
// Catch JSON or Update errors
|
||||||
this.errorMessage(e);
|
this.errorMessage(e);
|
||||||
|
|
Reference in New Issue