/
githubmirror
/
gitness
Обзор
Документация
Войти
/
githubmirror
/
gitness
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
web/src/ar/components/SetupClientButton/SetupClientButton.tsx
53 строки
2 KB
Shivanand Sonnad
fix: [AH-3003]: disable actions when its soft deleted (#5096)
24 мар 2026, 09:49
24 мар 2026, 09:49
393521a
Код
Авторство
О чём код?
/* * Copyright 2024 Harness, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import React from 'react' import { Button, ButtonVariation } from '@harnessio/uicore' import { useStrings } from '@ar/frameworks/strings' import type { RepositoryPackageType } from '@ar/common/types' import { useSetupClientModal } from '@ar/pages/repository-details/hooks/useSetupClientModal/useSetupClientModal' interface SetupClientButtonProps { repositoryIdentifier: string packageType: RepositoryPackageType artifactIdentifier?: string versionIdentifier?: string disabled?: boolean } export default function SetupClientButton(props: SetupClientButtonProps): JSX.Element { const { packageType, disabled } = props const { getString } = useStrings() const [showSetupClientModal] = useSetupClientModal({ repoKey: props.repositoryIdentifier, artifactKey: props.artifactIdentifier, versionKey: props.versionIdentifier, packageType: packageType }) return ( <Button disabled={disabled} variation={ButtonVariation.SECONDARY} text={getString('actions.setupClient')} onClick={() => { showSetupClientModal() }} icon="setting" /> ) }