mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-13 17:05:43 +01:00
* prepare license-maven-plugin for license migration * added license mapping for tsx files and added some more excludes * Changeover to MIT license * Fix build problems * Delete old remaining licenses * Add more exclude path for license checker * Rename included netbeans license, add exclude .m2/repository/ * Specify .m2 exclude because not only repository/, also wrapper/ must match * Add .cache/ exclude for license check * Modify formatting of license in java classes to comply with convention and IDE * Add IntelliJ documentation for license configuration * Update CHANGELOG.md * Exclude tmp/workspace/ dir for license check * Edit README.md Co-authored-by: Sebastian Sdorra <sebastian.sdorra@cloudogu.com>
185 lines
5.1 KiB
TypeScript
185 lines
5.1 KiB
TypeScript
/*
|
|
* MIT License
|
|
*
|
|
* Copyright (c) 2020-present Cloudogu GmbH and Contributors
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
* in the Software without restriction, including without limitation the rights
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in all
|
|
* copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
* SOFTWARE.
|
|
*/
|
|
import React from "react";
|
|
import { connect } from "react-redux";
|
|
import { WithTranslation, withTranslation } from "react-i18next";
|
|
import { Link } from "@scm-manager/ui-types";
|
|
import { ErrorNotification, Level, Notification, SubmitButton } from "@scm-manager/ui-components";
|
|
import { getLink } from "../../modules/indexResource";
|
|
import { loadPermissionsForEntity, setPermissions } from "./handlePermissions";
|
|
import PermissionsWrapper from "./PermissionsWrapper";
|
|
|
|
type Props = WithTranslation & {
|
|
availablePermissionLink: string;
|
|
selectedPermissionsLink: Link;
|
|
};
|
|
|
|
type State = {
|
|
permissions: {
|
|
[key: string]: boolean;
|
|
};
|
|
loading: boolean;
|
|
error?: Error;
|
|
permissionsChanged: boolean;
|
|
permissionsSubmitted: boolean;
|
|
overwritePermissionsLink?: Link;
|
|
};
|
|
|
|
class SetPermissions extends React.Component<Props, State> {
|
|
constructor(props: Props) {
|
|
super(props);
|
|
|
|
this.state = {
|
|
permissions: {},
|
|
loading: true,
|
|
permissionsChanged: false,
|
|
permissionsSubmitted: false,
|
|
overwritePermissionsLink: undefined
|
|
};
|
|
}
|
|
|
|
setLoadingState = () => {
|
|
this.setState({
|
|
loading: true
|
|
});
|
|
};
|
|
|
|
setErrorState = (error: Error) => {
|
|
this.setState({
|
|
error: error,
|
|
loading: false
|
|
});
|
|
};
|
|
|
|
setSuccessfulState = () => {
|
|
this.setState({
|
|
loading: false,
|
|
error: undefined,
|
|
permissionsSubmitted: true,
|
|
permissionsChanged: false
|
|
});
|
|
};
|
|
|
|
componentDidMount(): void {
|
|
loadPermissionsForEntity(this.props.availablePermissionLink, this.props.selectedPermissionsLink.href).then(
|
|
response => {
|
|
const { permissions, overwriteLink } = response;
|
|
this.setState({
|
|
permissions: permissions,
|
|
loading: false,
|
|
overwritePermissionsLink: overwriteLink
|
|
});
|
|
}
|
|
);
|
|
}
|
|
|
|
submit = (event: Event) => {
|
|
event.preventDefault();
|
|
if (this.state.permissions) {
|
|
const { permissions } = this.state;
|
|
this.setLoadingState();
|
|
const selectedPermissions = Object.entries(permissions)
|
|
.filter(e => e[1])
|
|
.map(e => e[0]);
|
|
if (this.state.overwritePermissionsLink) {
|
|
setPermissions(this.state.overwritePermissionsLink.href, selectedPermissions)
|
|
.then(result => {
|
|
this.setSuccessfulState();
|
|
})
|
|
.catch(err => {
|
|
this.setErrorState(err);
|
|
});
|
|
}
|
|
}
|
|
};
|
|
|
|
render() {
|
|
const { t } = this.props;
|
|
const { loading, permissionsSubmitted, error } = this.state;
|
|
|
|
let message = null;
|
|
|
|
if (permissionsSubmitted) {
|
|
message = (
|
|
<Notification
|
|
type={"success"}
|
|
children={t("setPermissions.setPermissionsSuccessful")}
|
|
onClose={() => this.onClose()}
|
|
/>
|
|
);
|
|
} else if (error) {
|
|
message = <ErrorNotification error={error} />;
|
|
}
|
|
|
|
return (
|
|
<form onSubmit={this.submit}>
|
|
{message}
|
|
{this.renderPermissions()}
|
|
<Level
|
|
right={
|
|
<SubmitButton
|
|
disabled={!this.state.permissionsChanged}
|
|
loading={loading}
|
|
label={t("setPermissions.button")}
|
|
/>
|
|
}
|
|
/>
|
|
</form>
|
|
);
|
|
}
|
|
|
|
renderPermissions = () => {
|
|
const { overwritePermissionsLink, permissions } = this.state;
|
|
return (
|
|
<PermissionsWrapper permissions={permissions} onChange={this.valueChanged} disabled={!overwritePermissionsLink} />
|
|
);
|
|
};
|
|
|
|
valueChanged = (value: boolean, name: string) => {
|
|
this.setState(state => {
|
|
const newPermissions = state.permissions;
|
|
newPermissions[name] = value;
|
|
return {
|
|
permissions: newPermissions,
|
|
permissionsChanged: true
|
|
};
|
|
});
|
|
};
|
|
|
|
onClose = () => {
|
|
this.setState({
|
|
permissionsSubmitted: false
|
|
});
|
|
};
|
|
}
|
|
|
|
const mapStateToProps = (state: any) => {
|
|
const availablePermissionLink = getLink(state, "permissions");
|
|
return {
|
|
availablePermissionLink
|
|
};
|
|
};
|
|
|
|
export default connect(mapStateToProps)(withTranslation("permissions")(SetPermissions));
|