e587c53e18
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
40 lines
1.3 KiB
TypeScript
40 lines
1.3 KiB
TypeScript
import { t } from "@lingui/macro";
|
|
|
|
import { TemplateResult, html } from "lit";
|
|
import { customElement } from "lit/decorators.js";
|
|
|
|
import { Flow, FlowsApi } from "@goauthentik/api";
|
|
|
|
import { DEFAULT_CONFIG } from "../../api/Config";
|
|
import { Form } from "../../elements/forms/Form";
|
|
import "../../elements/forms/HorizontalFormElement";
|
|
|
|
@customElement("ak-flow-import-form")
|
|
export class FlowImportForm extends Form<Flow> {
|
|
getSuccessMessage(): string {
|
|
return t`Successfully imported flow.`;
|
|
}
|
|
|
|
// eslint-disable-next-line
|
|
send = (data: Flow): Promise<void> => {
|
|
const file = this.getFormFile();
|
|
if (!file) {
|
|
throw new Error("No form data");
|
|
}
|
|
return new FlowsApi(DEFAULT_CONFIG).flowsInstancesImportFlowCreate({
|
|
file: file,
|
|
});
|
|
};
|
|
|
|
renderForm(): TemplateResult {
|
|
return html`<form class="pf-c-form pf-m-horizontal">
|
|
<ak-form-element-horizontal label=${t`Flow`} name="flow">
|
|
<input type="file" value="" class="pf-c-form-control" />
|
|
<p class="pf-c-form__helper-text">
|
|
${t`.akflow files, which can be found on goauthentik.io and can be exported by authentik.`}
|
|
</p>
|
|
</ak-form-element-horizontal>
|
|
</form>`;
|
|
}
|
|
}
|