Files
SCM-Manager/scm-ui/ui-components/src/config/Configuration.tsx

220 lines
5.8 KiB
TypeScript
Raw Normal View History

/*
* 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.
*/
2019-11-26 15:22:22 +01:00
import React, { FormEvent } from "react";
import { WithTranslation, withTranslation } from "react-i18next";
import { Links, Link } from "@scm-manager/ui-types";
2019-11-26 15:22:22 +01:00
import { apiClient, Level, SubmitButton, Loading, ErrorNotification } from "../";
2018-11-13 13:09:59 +01:00
type RenderProps = {
readOnly: boolean;
initialConfiguration: ConfigurationType;
onConfigurationChange: (p1: ConfigurationType, p2: boolean) => void;
2018-11-13 13:09:59 +01:00
};
type Props = WithTranslation & {
link: string;
render: (props: RenderProps) => any; // ???
2018-11-13 13:09:59 +01:00
};
type ConfigurationType = {
_links: Links;
} & object;
2018-11-13 13:09:59 +01:00
type State = {
error?: Error;
fetching: boolean;
modifying: boolean;
contentType?: string | null;
configChanged: boolean;
configuration?: ConfigurationType;
modifiedConfiguration?: ConfigurationType;
valid: boolean;
2018-11-13 13:09:59 +01:00
};
/**
* GlobalConfiguration uses the render prop pattern to encapsulate the logic for
* synchronizing the configuration with the backend.
*/
class Configuration extends React.Component<Props, State> {
constructor(props: Props) {
super(props);
this.state = {
fetching: true,
modifying: false,
configChanged: false,
valid: false
2018-11-13 13:09:59 +01:00
};
}
componentDidMount() {
const { link } = this.props;
apiClient
.get(link)
2018-11-13 13:09:59 +01:00
.then(this.captureContentType)
.then(response => response.json())
.then(this.loadConfig)
.catch(this.handleError);
}
captureContentType = (response: Response) => {
const contentType = response.headers.get("Content-Type");
2018-11-13 13:09:59 +01:00
this.setState({
contentType
2018-11-13 13:09:59 +01:00
});
return response;
};
getContentType = (): string => {
const { contentType } = this.state;
return contentType ? contentType : "application/json";
2018-11-13 13:09:59 +01:00
};
handleError = (error: Error) => {
this.setState({
error,
fetching: false,
modifying: false
2018-11-13 13:09:59 +01:00
});
};
loadConfig = (configuration: ConfigurationType) => {
this.setState({
configuration,
fetching: false,
error: undefined
2018-11-13 13:09:59 +01:00
});
};
getModificationUrl = (): string | undefined => {
2018-11-13 13:09:59 +01:00
const { configuration } = this.state;
if (configuration) {
const links = configuration._links;
if (links && links.update) {
const link = links.update as Link;
return link.href;
2018-11-13 13:09:59 +01:00
}
}
};
isReadOnly = (): boolean => {
const modificationUrl = this.getModificationUrl();
return !modificationUrl;
};
configurationChanged = (configuration: ConfigurationType, valid: boolean) => {
this.setState({
modifiedConfiguration: configuration,
valid
2018-11-13 13:09:59 +01:00
});
};
modifyConfiguration = (event: FormEvent) => {
2018-11-13 13:09:59 +01:00
event.preventDefault();
this.setState({
modifying: true,
error: undefined
});
2018-11-13 13:09:59 +01:00
const { modifiedConfiguration } = this.state;
2018-11-13 13:09:59 +01:00
const modificationUrl = this.getModificationUrl();
if (modificationUrl) {
2019-10-21 10:57:56 +02:00
apiClient
.put(modificationUrl, modifiedConfiguration, this.getContentType())
.then(() =>
this.setState({
modifying: false,
configChanged: true,
valid: false
})
)
.catch(this.handleError);
} else {
this.setState({
error: new Error("no modification link available")
});
}
2018-11-13 13:09:59 +01:00
};
renderConfigChangedNotification = () => {
if (this.state.configChanged) {
return (
<div className="notification is-primary">
<button
className="delete"
onClick={() =>
this.setState({
configChanged: false
})
}
/>
{this.props.t("config.form.submit-success-notification")}
</div>
);
}
return null;
};
2018-11-13 13:09:59 +01:00
render() {
const { t } = this.props;
const { fetching, error, configuration, modifying, valid } = this.state;
if (fetching || !configuration) {
2018-11-13 13:09:59 +01:00
return <Loading />;
} else {
const readOnly = this.isReadOnly();
const renderProps: RenderProps = {
readOnly,
initialConfiguration: configuration,
onConfigurationChange: this.configurationChanged
2018-11-13 13:09:59 +01:00
};
return (
<>
{this.renderConfigChangedNotification()}
<form onSubmit={this.modifyConfiguration}>
{this.props.render(renderProps)}
{error && (
<>
<hr />
<ErrorNotification error={error} />
</>
)}
<hr />
2019-11-26 15:22:22 +01:00
<Level
right={<SubmitButton label={t("config.form.submit")} disabled={!valid || readOnly} loading={modifying} />}
/>
</form>
</>
2018-11-13 13:09:59 +01:00
);
}
}
}
export default withTranslation("config")(Configuration);