aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-ui-common/components/controls/ValidationModal.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'server/sonar-ui-common/components/controls/ValidationModal.tsx')
-rw-r--r--server/sonar-ui-common/components/controls/ValidationModal.tsx83
1 files changed, 0 insertions, 83 deletions
diff --git a/server/sonar-ui-common/components/controls/ValidationModal.tsx b/server/sonar-ui-common/components/controls/ValidationModal.tsx
deleted file mode 100644
index 7dd77c81eea..00000000000
--- a/server/sonar-ui-common/components/controls/ValidationModal.tsx
+++ /dev/null
@@ -1,83 +0,0 @@
-/*
- * SonarQube
- * Copyright (C) 2009-2021 SonarSource SA
- * mailto:info AT sonarsource DOT com
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 3 of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public License
- * along with this program; if not, write to the Free Software Foundation,
- * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
- */
-import * as React from 'react';
-import { translate } from '../../helpers/l10n';
-import DeferredSpinner from '../ui/DeferredSpinner';
-import { ResetButtonLink, SubmitButton } from './buttons';
-import Modal, { ModalProps } from './Modal';
-import ValidationForm, { ChildrenProps } from './ValidationForm';
-
-interface Props<V> extends ModalProps {
- children: (props: ChildrenProps<V>) => React.ReactNode;
- confirmButtonText: string;
- header: string;
- initialValues: V;
- isDestructive?: boolean;
- isInitialValid?: boolean;
- onClose: () => void;
- onSubmit: (data: V) => Promise<void>;
- validate: (data: V) => { [P in keyof V]?: string };
-}
-
-export default class ValidationModal<V> extends React.PureComponent<Props<V>> {
- handleSubmit = (data: V) => {
- return this.props.onSubmit(data).then(() => {
- this.props.onClose();
- });
- };
-
- render() {
- return (
- <Modal
- contentLabel={this.props.header}
- noBackdrop={this.props.noBackdrop}
- onRequestClose={this.props.onClose}
- size={this.props.size}>
- <ValidationForm
- initialValues={this.props.initialValues}
- isInitialValid={this.props.isInitialValid}
- onSubmit={this.handleSubmit}
- validate={this.props.validate}>
- {(props) => (
- <>
- <header className="modal-head">
- <h2>{this.props.header}</h2>
- </header>
-
- <div className="modal-body">{this.props.children(props)}</div>
-
- <footer className="modal-foot">
- <DeferredSpinner className="spacer-right" loading={props.isSubmitting} />
- <SubmitButton
- className={this.props.isDestructive ? 'button-red' : undefined}
- disabled={props.isSubmitting || !props.isValid || !props.dirty}>
- {this.props.confirmButtonText}
- </SubmitButton>
- <ResetButtonLink disabled={props.isSubmitting} onClick={this.props.onClose}>
- {translate('cancel')}
- </ResetButtonLink>
- </footer>
- </>
- )}
- </ValidationForm>
- </Modal>
- );
- }
-}