mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-02 03:25:56 +01:00
84 lines
2.0 KiB
TypeScript
84 lines
2.0 KiB
TypeScript
import React from "react";
|
|
import { WithTranslation, withTranslation } from "react-i18next";
|
|
import { ButtonGroup, Button, SubmitButton, Modal } from "@scm-manager/ui-components";
|
|
import PermissionCheckbox from "../components/PermissionCheckbox";
|
|
|
|
type Props = WithTranslation & {
|
|
readOnly: boolean;
|
|
availableVerbs: string[];
|
|
selectedVerbs: string[];
|
|
onSubmit: (p: string[]) => void;
|
|
onClose: () => void;
|
|
};
|
|
|
|
type State = {
|
|
verbs: any;
|
|
};
|
|
|
|
class AdvancedPermissionsDialog extends React.Component<Props, State> {
|
|
constructor(props: Props) {
|
|
super(props);
|
|
|
|
const verbs = {};
|
|
props.availableVerbs.forEach(
|
|
verb => (verbs[verb] = props.selectedVerbs ? props.selectedVerbs.includes(verb) : false)
|
|
);
|
|
this.state = {
|
|
verbs
|
|
};
|
|
}
|
|
|
|
render() {
|
|
const { t, onClose, readOnly } = this.props;
|
|
const { verbs } = this.state;
|
|
|
|
const verbSelectBoxes = Object.entries(verbs).map(e => (
|
|
<PermissionCheckbox key={e[0]} disabled={readOnly} name={e[0]} checked={e[1]} onChange={this.handleChange} />
|
|
));
|
|
|
|
const submitButton = !readOnly ? <SubmitButton label={t("permission.advanced.dialog.submit")} /> : null;
|
|
|
|
const body = <>{verbSelectBoxes}</>;
|
|
|
|
const footer = (
|
|
<form onSubmit={this.onSubmit}>
|
|
<ButtonGroup>
|
|
{submitButton}
|
|
<Button label={t("permission.advanced.dialog.abort")} action={onClose} />
|
|
</ButtonGroup>
|
|
</form>
|
|
);
|
|
|
|
return (
|
|
<Modal
|
|
title={t("permission.advanced.dialog.title")}
|
|
closeFunction={() => onClose()}
|
|
body={body}
|
|
footer={footer}
|
|
active={true}
|
|
/>
|
|
);
|
|
}
|
|
|
|
handleChange = (value: boolean, name: string) => {
|
|
const { verbs } = this.state;
|
|
const newVerbs = {
|
|
...verbs,
|
|
[name]: value
|
|
};
|
|
this.setState({
|
|
verbs: newVerbs
|
|
});
|
|
};
|
|
|
|
onSubmit = () => {
|
|
this.props.onSubmit(
|
|
Object.entries(this.state.verbs)
|
|
.filter(e => e[1])
|
|
.map(e => e[0])
|
|
);
|
|
};
|
|
}
|
|
|
|
export default withTranslation("repos")(AdvancedPermissionsDialog);
|