3 * Copyright (C) 2009-2023 SonarSource SA
4 * mailto:info AT sonarsource DOT com
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 3 of the License, or (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public License
17 * along with this program; if not, write to the Free Software Foundation,
18 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20 import * as React from 'react';
21 import { FormattedMessage } from 'react-intl';
22 import DocLink from '../../../../components/common/DocLink';
23 import ValidationInput, {
24 ValidationInputErrorPlacement,
25 } from '../../../../components/controls/ValidationInput';
26 import { ButtonLink } from '../../../../components/controls/buttons';
27 import { Alert } from '../../../../components/ui/Alert';
28 import MandatoryFieldMarker from '../../../../components/ui/MandatoryFieldMarker';
29 import { translate, translateWithParameters } from '../../../../helpers/l10n';
30 import { AlmBindingDefinitionBase } from '../../../../types/alm-settings';
31 import '../../styles.css';
33 export interface AlmBindingDefinitionFormFieldProps<B extends AlmBindingDefinitionBase> {
36 help?: React.ReactNode;
41 onFieldChange: (id: keyof B, value: string) => void;
43 overwriteOnly?: boolean;
49 export function AlmBindingDefinitionFormField<B extends AlmBindingDefinitionBase>(
50 props: Readonly<AlmBindingDefinitionFormFieldProps<B>>,
61 overwriteOnly = false,
66 const [showField, setShowField] = React.useState(!overwriteOnly);
69 <div className="settings-definition">
70 <div className="settings-definition-left">
71 <label className="h3" htmlFor={id}>
72 {translate('settings.almintegration.form', id)}
74 {!optional && <MandatoryFieldMarker />}
75 {help && <div className="markdown small spacer-top">{help}</div>}
77 <div className="settings-definition-right big-padded-top display-flex-column">
78 {!showField && overwriteOnly && (
80 <p>{translate('settings.almintegration.form.secret.field')}</p>
82 aria-label={translateWithParameters(
83 'settings.almintegration.form.secret.update_field_x',
84 translate('settings.almintegration.form', id),
87 props.onFieldChange(propKey, '');
91 {translate('settings.almintegration.form.secret.update_field')}
96 {showField && isTextArea && (
100 maxLength={maxLength || 2000}
101 onChange={(e) => props.onFieldChange(propKey, e.currentTarget.value)}
108 {showField && !isTextArea && (
111 errorPlacement={ValidationInputErrorPlacement.Bottom}
113 isInvalid={isInvalid}
116 className="width-100"
117 autoFocus={autoFocus}
119 maxLength={maxLength || 100}
121 onChange={(e) => props.onFieldChange(propKey, e.currentTarget.value)}
129 {showField && isSecret && (
130 <Alert variant="info" className="spacer-top">
132 id="settings.almintegration.form.secret.can_encrypt"
133 defaultMessage={translate('settings.almintegration.form.secret.can_encrypt')}
136 <DocLink to="/instance-administration/security/#settings-encryption">
137 {translate('learn_more')}