drone/web/src/pages/RepositorySettings/RepositorySettings.tsx
Ritik Kapoor de91e0ddef feat: [CODE-2765]: add Branch rules support on Account, Org, and Project level (#3143)
* fix: [CODE-2765] prettier
* fix: [CODE-2765] fix lint
* feat: [CODE-1509] added BranchProtectionHeader with permission utils
* feat: [CODE-1509] added BranchProtectionForm with permissions props
* feat: [CODE-1509] added BranchProtectionHeader with permission util abstracted
* feat: [CODE-1509] added BranchProtectionListing with permission props
* feat: [CODE-1509] added BranchProtectionHeader with permission props
* fix: [CODE-1509] lint
* feat: [CODE-1509] permission utility
* feat: [CODE-2765]: add Branch rules support on Account, Org, and Project level
2024-12-17 08:27:43 +00:00

145 lines
5.0 KiB
TypeScript

/*
* Copyright 2023 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 cx from 'classnames'
import { PageBody, Container, Tabs } from '@harnessio/uicore'
import { useHistory } from 'react-router-dom'
import { useGetRepositoryMetadata } from 'hooks/useGetRepositoryMetadata'
import { useDisableCodeMainLinks } from 'hooks/useDisableCodeMainLinks'
import { useGetResourceContent } from 'hooks/useGetResourceContent'
import { useStrings } from 'framework/strings'
import { RepositoryPageHeader } from 'components/RepositoryPageHeader/RepositoryPageHeader'
import { LabelsPageScope, getErrorMessage, voidFn } from 'utils/Utils'
import { LoadingSpinner } from 'components/LoadingSpinner/LoadingSpinner'
// import Webhooks from 'pages/Webhooks/Webhooks'
import { useAppContext } from 'AppContext'
import BranchProtectionListing from 'components/BranchProtection/BranchProtectionListing'
import { SettingsTab, normalizeGitRef } from 'utils/GitUtils'
import SecurityScanSettings from 'pages/RepositorySettings/SecurityScanSettings/SecurityScanSettings'
import LabelsListing from 'pages/Labels/LabelsListing'
import { useGetSpaceParam } from 'hooks/useGetSpaceParam'
import GeneralSettingsContent from './GeneralSettingsContent/GeneralSettingsContent'
import css from './RepositorySettings.module.scss'
export default function RepositorySettings() {
const { repoMetadata, error, loading, refetch, settingSection, gitRef, resourcePath } = useGetRepositoryMetadata()
const space = useGetSpaceParam()
const history = useHistory()
const { routes, hooks, standalone } = useAppContext()
const { CODE_PULLREQ_LABELS: isLabelEnabled } = hooks?.useFeatureFlags()
const [activeTab, setActiveTab] = React.useState<string>(settingSection || SettingsTab.general)
const { getString } = useStrings()
const { isRepositoryEmpty } = useGetResourceContent({
repoMetadata,
gitRef: normalizeGitRef(gitRef) as string,
resourcePath
})
useDisableCodeMainLinks(!!isRepositoryEmpty)
const tabListArray = [
{
id: SettingsTab.general,
title: getString('settings'),
panel: (
<Container padding={'large'}>
<GeneralSettingsContent
repoMetadata={repoMetadata}
refetch={refetch}
gitRef={gitRef}
isRepositoryEmpty={isRepositoryEmpty}
/>
</Container>
)
},
...(isLabelEnabled || standalone
? [
{
id: SettingsTab.labels,
title: getString('labels.labels'),
panel: (
<LabelsListing
activeTab={activeTab}
repoMetadata={repoMetadata}
currentPageScope={LabelsPageScope.REPOSITORY}
space={space}
/>
)
}
]
: []),
{
id: SettingsTab.branchProtection,
title: getString('branchProtection.title'),
panel: (
<BranchProtectionListing
repoMetadata={repoMetadata}
activeTab={activeTab}
currentPageScope={LabelsPageScope.REPOSITORY}
/>
)
},
{
id: SettingsTab.security,
title: getString('security'),
panel: <SecurityScanSettings repoMetadata={repoMetadata} activeTab={activeTab} />
}
// {
// id: SettingsTab.webhooks,
// title: getString('webhooks'),
// panel: (
// <Container padding={'large'}>
// <Webhooks />
// </Container>
// )
// }
]
return (
<Container className={css.main}>
<RepositoryPageHeader
className={css.headerContainer}
repoMetadata={repoMetadata}
title={getString('manageRepository')}
dataTooltipId="repositorySettings"
/>
<PageBody error={getErrorMessage(error)} retryOnError={voidFn(refetch)}>
<LoadingSpinner visible={loading} />
{repoMetadata && (
<Container className={cx(css.main, css.tabsContainer)}>
<Tabs
id="SettingsTabs"
large={false}
defaultSelectedTabId={activeTab}
animate={false}
onChange={(id: string) => {
setActiveTab(id)
history.replace(
routes.toCODESettings({
repoPath: repoMetadata?.path as string,
settingSection: id !== SettingsTab.general ? (id as string) : ''
})
)
}}
tabList={tabListArray}></Tabs>
</Container>
)}
</PageBody>
</Container>
)
}