/* * SonarQube * Copyright (C) 2009-2024 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 { Link } from 'design-system'; import * as React from 'react'; import { FormattedMessage } from 'react-intl'; import { ALM_DOCUMENTATION_PATHS } from '../../../../helpers/constants'; import { useDocUrl } from '../../../../helpers/docs'; import { translate } from '../../../../helpers/l10n'; import { AlmKeys, AzureBindingDefinition } from '../../../../types/alm-settings'; import { AlmBindingDefinitionFormField } from './AlmBindingDefinitionFormField'; export interface AzureFormProps { formData: AzureBindingDefinition; onFieldChange: (fieldId: keyof AzureBindingDefinition, value: string) => void; } export default function AzureForm(props: AzureFormProps) { const { formData, onFieldChange } = props; const toStatic = useDocUrl(ALM_DOCUMENTATION_PATHS[AlmKeys.Azure]); return ( <> {translate('settings.almintegration.form.url.azure.help1')}
https://ado.your-company.com/your_collection

{translate('settings.almintegration.form.url.azure.help2')}
https://dev.azure.com/your_organization

{translate('settings.almintegration.form.url.pat_warning')} } id="url.azure" maxLength={2000} onFieldChange={onFieldChange} propKey="url" value={formData.url || ''} /> {translate('settings.almintegration.form.personal_access_token.azure.help.url')} ), permission: {'Code > Read & Write'}, doc_link: {translate('learn_more')}, }} /> } id="personal_access_token" isTextArea onFieldChange={onFieldChange} overwriteOnly={Boolean(formData.key)} propKey="personalAccessToken" value={formData.personalAccessToken} maxLength={2000} isSecret /> ); }