1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
lens/dashboard/client/components/+user-management-roles/add-role-dialog.tsx
Jari Kolehmainen 1d0815abd2
Lens app source code (#119)
Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com>
2020-03-15 09:52:02 +02:00

80 lines
1.9 KiB
TypeScript

import "./add-role-dialog.scss"
import * as React from "react";
import { observable } from "mobx";
import { observer } from "mobx-react";
import { t, Trans } from "@lingui/macro";
import { _i18n } from "../../i18n";
import { Dialog, DialogProps } from "../dialog";
import { Wizard, WizardStep } from "../wizard";
import { Notifications } from "../notifications";
import { rolesStore } from "./roles.store";
import { Input } from "../input";
import { showDetails } from "../../navigation";
interface Props extends Partial<DialogProps> {
}
@observer
export class AddRoleDialog extends React.Component<Props> {
@observable static isOpen = false;
@observable roleName = "";
static open() {
AddRoleDialog.isOpen = true;
}
static close() {
AddRoleDialog.isOpen = false;
}
close = () => {
AddRoleDialog.close();
}
reset = () => {
this.roleName = ""
}
createRole = async () => {
try {
const role = await rolesStore.create({ name: this.roleName });
showDetails(role.selfLink);
this.reset();
this.close();
} catch (err) {
Notifications.error(err.toString());
}
}
render() {
const { ...dialogProps } = this.props;
const header = <h5><Trans>Create Role</Trans></h5>;
return (
<Dialog
{...dialogProps}
className="AddRoleDialog"
isOpen={AddRoleDialog.isOpen}
close={this.close}
>
<Wizard header={header} done={this.close}>
<WizardStep
contentClass="flex gaps column"
nextLabel={<Trans>Create</Trans>}
next={this.createRole}
>
<Input
required autoFocus
placeholder={_i18n._(t`Role name`)}
iconLeft="supervisor_account"
value={this.roleName}
onChange={v => this.roleName = v}
/>
</WizardStep>
</Wizard>
</Dialog>
)
}
}