Files
SCM-Manager/scm-ui/src/permissions/components/CreatePermissionForm.js

108 lines
2.5 KiB
JavaScript
Raw Normal View History

// @flow
import React from "react";
import { translate } from "react-i18next";
2018-08-30 11:33:40 +02:00
import { Checkbox, InputField } from "../../components/forms";
import TypeSelector from "./TypeSelector";
import type {PermissionEntry} from "../types/Permissions";
2018-08-30 11:33:40 +02:00
import { SubmitButton } from "../../components/buttons";
type Props = {
2018-08-30 11:33:40 +02:00
t: string => string,
createPermission: (permission: PermissionEntry) => void,
loading: boolean
};
type State = {
2018-08-30 11:33:40 +02:00
name: string,
type: string,
groupPermission: boolean
};
class CreatePermissionForm extends React.Component<Props, State> {
constructor(props: Props) {
super(props);
this.state = {
2018-08-30 11:33:40 +02:00
name: "",
type: "READ",
groupPermission: false
};
}
render() {
const { t, loading } = this.props;
2018-08-30 11:33:40 +02:00
const { name, type, groupPermission } = this.state;
return (
<div>
<h2 className="subtitle">
{t("add-permission.add-permission-heading")}
</h2>
<table className="table">
<tbody>
<tr>
<td>{t("permission.name")}</td>
<td>
<InputField
value={name ? name : ""}
onChange={this.handleNameChange}
/>
</td>
</tr>
<tr>
<td>{t("permission.group-permission")}</td>
<td>
<Checkbox
checked={groupPermission ? groupPermission : false}
onChange={this.handleGroupPermissionChange}
/>
</td>
</tr>
<tr>
<td>{t("permission.type")}</td>
<td>
<TypeSelector
handleTypeChange={this.handleTypeChange}
type={type ? type : "READ"}
/>
</td>
</tr>
</tbody>
</table>
<SubmitButton
label={t("add-permission.submit-button")}
action={this.submit}
loading={loading}
2018-08-30 11:33:40 +02:00
/>
</div>
);
}
2018-08-30 11:33:40 +02:00
submit = () => {
this.props.createPermission({
name: this.state.name,
type: this.state.type,
groupPermission: this.state.groupPermission
});
};
handleTypeChange = (type: string) => {
this.setState({
type: type
});
};
handleNameChange = (name: string) => {
this.setState({
name: name
});
};
handleGroupPermissionChange = (groupPermission: boolean) => {
this.setState({
groupPermission: groupPermission
});
};
}
export default translate("permissions")(CreatePermissionForm);