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.
27 } from 'design-system';
28 import * as React from 'react';
29 import { FormattedMessage } from 'react-intl';
30 import { useDocUrl } from '../../../../helpers/docs';
31 import { translate, translateWithParameters } from '../../../../helpers/l10n';
32 import { AlmBindingDefinitionBase } from '../../../../types/alm-settings';
33 import '../../styles.css';
35 export interface AlmBindingDefinitionFormFieldProps<B extends AlmBindingDefinitionBase> {
37 help?: React.ReactNode;
42 onFieldChange: (id: keyof B, value: string) => void;
44 overwriteOnly?: boolean;
50 export function AlmBindingDefinitionFormField<B extends AlmBindingDefinitionBase>(
51 props: Readonly<AlmBindingDefinitionFormFieldProps<B>>,
61 overwriteOnly = false,
66 const [showField, setShowField] = React.useState(!overwriteOnly);
68 const toStatic = useDocUrl('/instance-administration/security/#settings-encryption');
73 label={translate('settings.almintegration.form', id)}
78 {!showField && overwriteOnly && (
79 <div className="sw-flex sw-items-center">
80 <p className="sw-mr-2">{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')}
95 {showField && isTextArea && (
98 maxLength={maxLength || 2000}
99 onChange={(e) => props.onFieldChange(propKey, e.currentTarget.value)}
104 isInvalid={isInvalid}
107 {showField && !isTextArea && (
109 autoFocus={autoFocus}
111 maxLength={maxLength || 100}
113 onChange={(e) => props.onFieldChange(propKey, e.currentTarget.value)}
117 isInvalid={isInvalid}
120 {showField && isSecret && (
121 <FlagMessage variant="info" className="sw-mt-2">
124 id="settings.almintegration.form.secret.can_encrypt"
125 defaultMessage={translate('settings.almintegration.form.secret.can_encrypt')}
127 learn_more: <Link to={toStatic}>{translate('learn_more')}</Link>,