import { ScopeMapping, PropertymappingsApi } from "authentik-api"; import { t } from "@lingui/macro"; import { customElement, property } from "lit-element"; import { html, TemplateResult } from "lit-html"; import { DEFAULT_CONFIG } from "../../api/Config"; import { Form } from "../../elements/forms/Form"; import { ifDefined } from "lit-html/directives/if-defined"; import "../../elements/forms/HorizontalFormElement"; import "../../elements/CodeMirror"; @customElement("ak-property-mapping-scope-form") export class PropertyMappingScopeForm extends Form { set mappingUUID(value: string) { new PropertymappingsApi(DEFAULT_CONFIG).propertymappingsScopeRead({ pmUuid: value, }).then(mapping => { this.mapping = mapping; }); } @property({attribute: false}) mapping?: ScopeMapping; getSuccessMessage(): string { if (this.mapping) { return t`Successfully updated mapping.`; } else { return t`Successfully created mapping.`; } } send = (data: ScopeMapping): Promise => { if (this.mapping) { return new PropertymappingsApi(DEFAULT_CONFIG).propertymappingsScopeUpdate({ pmUuid: this.mapping.pk || "", data: data }); } else { return new PropertymappingsApi(DEFAULT_CONFIG).propertymappingsScopeCreate({ data: data }); } }; renderForm(): TemplateResult { return html`

${t`Scope which the client can specify to access these properties.`}

${t`Description shown to the user when consenting. If left empty, the user won't be informed.`}

Expression using Python. See here for a list of all variables.

`; } }