Add typing to KeyValueDelete.ts.
This commit is contained in:
parent
bb6e5a7310
commit
8b0512a3ec
|
@ -1,5 +1,5 @@
|
||||||
import { HomePage } from "./pages/Home";
|
import { HomePage } from "./pages/Home";
|
||||||
import { KeyValueDeletePage } from "./pages/KeyValue/KeyValueDelete.js";
|
import { KeyValueDeletePage } from "./pages/KeyValue/KeyValueDelete";
|
||||||
import { KeyValueNewPage } from "./pages/KeyValue/KeyValueNew";
|
import { KeyValueNewPage } from "./pages/KeyValue/KeyValueNew";
|
||||||
import { KeyValueSecretEditPage } from "./pages/KeyValue/KeyValueSecretsEdit";
|
import { KeyValueSecretEditPage } from "./pages/KeyValue/KeyValueSecretsEdit";
|
||||||
import { KeyValueSecretPage } from "./pages/KeyValue/KeyValueSecret";
|
import { KeyValueSecretPage } from "./pages/KeyValue/KeyValueSecret";
|
||||||
|
|
|
@ -2,14 +2,14 @@ import { Page } from "../../types/Page";
|
||||||
import { changePage, setPageContent, setTitleElement } from "../../pageUtils";
|
import { changePage, setPageContent, setTitleElement } from "../../pageUtils";
|
||||||
import { deleteSecret } from "../../api/deleteSecret";
|
import { deleteSecret } from "../../api/deleteSecret";
|
||||||
import { makeElement } from "../../htmlUtils";
|
import { makeElement } from "../../htmlUtils";
|
||||||
import { pageState } from "../../globalPageState.ts";
|
import { pageState } from "../../globalPageState";
|
||||||
import i18next from 'i18next';
|
import i18next from 'i18next';
|
||||||
|
|
||||||
export class KeyValueDeletePage extends Page {
|
export class KeyValueDeletePage extends Page {
|
||||||
constructor() {
|
constructor() {
|
||||||
super();
|
super();
|
||||||
}
|
}
|
||||||
goBack() {
|
goBack(): void {
|
||||||
if (pageState.currentSecretVersion != null) {
|
if (pageState.currentSecretVersion != null) {
|
||||||
pageState.currentSecretVersion = null;
|
pageState.currentSecretVersion = null;
|
||||||
changePage("KEY_VALUE_SECRET");
|
changePage("KEY_VALUE_SECRET");
|
||||||
|
@ -18,7 +18,7 @@ export class KeyValueDeletePage extends Page {
|
||||||
changePage("KEY_VALUE_VIEW");
|
changePage("KEY_VALUE_VIEW");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
render() {
|
render(): void {
|
||||||
setTitleElement(pageState);
|
setTitleElement(pageState);
|
||||||
setPageContent(makeElement({
|
setPageContent(makeElement({
|
||||||
tag: "div",
|
tag: "div",
|
||||||
|
@ -46,10 +46,10 @@ export class KeyValueDeletePage extends Page {
|
||||||
]
|
]
|
||||||
}));
|
}));
|
||||||
}
|
}
|
||||||
get titleSuffix() {
|
get titleSuffix(): string {
|
||||||
return i18next.t("kv_delete_suffix");
|
return i18next.t("kv_delete_suffix");
|
||||||
}
|
}
|
||||||
get name() {
|
get name(): string {
|
||||||
return i18next.t("kv_delete_title");
|
return i18next.t("kv_delete_title");
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in a new issue