-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathHeaderWithCreateButon.tsx
More file actions
130 lines (119 loc) · 5.01 KB
/
HeaderWithCreateButon.tsx
File metadata and controls
130 lines (119 loc) · 5.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
/*
* Copyright (c) 2024. Devtron 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 { useLocation } from 'react-router-dom'
import { SERVER_MODE, URLS } from '@Common/Constants'
import { noop } from '@Common/Helper'
import { BreadCrumb, BreadcrumbText, useBreadcrumb } from '@Common/index'
import { ActionMenu } from '@Shared/Components/ActionMenu'
import { ButtonComponentType } from '@Shared/Components/Button'
import Button from '@Shared/Components/Button/Button.component'
import { DOCUMENTATION } from '@Shared/Components/DocLink'
import { Icon } from '@Shared/Components/Icon'
import { ComponentSizeType } from '@Shared/constants'
import { useMainContext } from '@Shared/Providers'
import { getApplicationManagementBreadcrumb } from '@PagesDevtron2.0/ApplicationManagement'
import { getInfrastructureManagementBreadcrumb } from '@PagesDevtron2.0/InfrastructureManagement'
import { getAutomationEnablementBreadcrumbConfig } from '@PagesDevtron2.0/InfrastructureManagement/utils'
import PageHeader from '../PageHeader'
import { HeaderWithCreateButtonProps } from './types'
import { getCreateActionMenuOptions } from './utils'
export const HeaderWithCreateButton = ({ viewType }: HeaderWithCreateButtonProps) => {
// HOOKS
const location = useLocation()
const { serverMode } = useMainContext()
// CONSTANTS
const createCustomAppURL = `${URLS.APPLICATION_MANAGEMENT_CREATE_DEVTRON_APP}${location.search}`
const renderActionButtons = () =>
serverMode === SERVER_MODE.FULL ? (
<ActionMenu
id="page-header-create-app-action-menu"
alignment="end"
onClick={noop}
options={getCreateActionMenuOptions(createCustomAppURL)}
buttonProps={{
text: 'Create',
dataTestId: 'create-app-button-on-header',
endIcon: <Icon name="ic-caret-down-small" color={null} />,
size: ComponentSizeType.small,
}}
/>
) : (
<Button
text="Deploy helm charts"
component={ButtonComponentType.link}
linkProps={{ to: URLS.INFRASTRUCTURE_MANAGEMENT_CHART_STORE_DISCOVER }}
dataTestId="deploy-helm-chart-on-header"
size={ComponentSizeType.small}
/>
)
const getBreadcrumbs = () => {
switch (viewType) {
case 'jobs':
return getAutomationEnablementBreadcrumbConfig()
case 'infra-apps':
return {
...getInfrastructureManagementBreadcrumb(),
apps: { component: <BreadcrumbText isActive heading="Applications" /> },
':appType(helm|argocd|fluxcd)': null,
}
case 'apps':
default:
return {
...getApplicationManagementBreadcrumb(),
'devtron-app': { component: <BreadcrumbText isActive heading="Devtron Applications" /> },
list: null,
}
}
}
const { breadcrumbs } = useBreadcrumb(
{
alias: getBreadcrumbs(),
},
[location.pathname],
)
const renderBreadcrumbs = () => <BreadCrumb breadcrumbs={breadcrumbs} />
const getDocPath = () => {
if (viewType === 'jobs') {
return DOCUMENTATION.AUTOMATION_AND_ENABLEMENT
}
if (viewType === 'infra-apps') {
return DOCUMENTATION.INFRA_MANAGEMENT
}
return DOCUMENTATION.APP_MANAGEMENT
}
return (
<div className="create-button-container dc__position-sticky dc__top-0 bg__primary dc__zi-4">
<PageHeader
isBreadcrumbs
breadCrumbs={renderBreadcrumbs}
renderActionButtons={renderActionButtons}
{...(viewType === 'jobs'
? {
tippyProps: {
isTippyCustomized: true,
tippyRedirectLink: 'JOBS',
tippyMessage:
'Job allows execution of repetitive tasks in a manual or automated manner. Execute custom tasks or choose from a library of preset plugins in your job pipeline.',
tippyHeader: 'Job',
},
}
: {})}
docPath={getDocPath()}
/>
</div>
)
}
export default HeaderWithCreateButton