Press n or j to go to the next uncovered block, b, p or k for the previous block.
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 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 | 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 32x 30x 30x 30x 30x 30x 30x 30x 30x 30x 24x 30x 30x 30x 26x 26x 30x 4x 4x 4x 4x 30x 30x 10x | /* * Copyright 2021 Harness Inc. All rights reserved. * Use of this source code is governed by the PolyForm Shield 1.0.0 license * that can be found in the licenses directory at the root of this repository, also available at * https://polyformproject.org/wp-content/uploads/2020/06/PolyForm-Shield-1.0.0.txt. */ import React, { useEffect, useState } from 'react' import { useHistory, useParams } from 'react-router-dom' import { defaultTo } from 'lodash-es' import { Page, ButtonVariation, Layout, Select, GridListToggle, Views, SelectOption, Heading, HarnessDocTooltip } from '@wings-software/uicore' import { FontVariation } from '@harness/design-system' import { useStrings } from 'framework/strings' import { ResourceType } from '@rbac/interfaces/ResourceType' import { PermissionIdentifier } from '@rbac/interfaces/PermissionIdentifier' import { useGetMonitoredServiceListEnvironments, useGetCountOfServices } from 'services/cv' import routes from '@common/RouteDefinitions' import { useQueryParams } from '@common/hooks' import { NGBreadcrumbs } from '@common/components/NGBreadcrumbs/NGBreadcrumbs' import RbacButton from '@rbac/components/Button/Button' import type { ProjectPathProps } from '@common/interfaces/RouteInterfaces' import { getCVMonitoringServicesSearchParam, getErrorMessage, getEnvironmentOptions } from '@cv/utils/CommonUtils' import ServiceDependencyGraph from '@cv/pages/monitored-service/CVMonitoredService/components/MonitoredServiceGraphView/MonitoredServiceGraphView' import { getEnvironmentIdentifier } from './CVMonitoredService.utils' import { FilterTypes } from './CVMonitoredService.types' import MonitoredServiceList from './components/MonitoredServiceListView/MonitoredServiceList' import css from './CVMonitoredService.module.scss' const MonitoredService: React.FC = () => { const { getString } = useStrings() const history = useHistory() const { view } = useQueryParams<{ view?: Views.GRID }>() const { accountId, orgIdentifier, projectIdentifier } = useParams<ProjectPathProps>() const pathParams = { accountId, orgIdentifier, projectIdentifier } const [page, setPage] = useState(0) const [selectedView, setSelectedView] = useState<Views>(view === Views.GRID ? Views.GRID : Views.LIST) const [environment, setEnvironment] = useState<SelectOption>() const [selectedFilter, setSelectedFilter] = useState<FilterTypes>(FilterTypes.ALL) useEffect(() => { setPage(0) }, [projectIdentifier]) const { data: environmentDataList, loading: loadingEnvironments } = useGetMonitoredServiceListEnvironments({ queryParams: pathParams }) const { data: serviceCountData, loading: serviceCountLoading, error: serviceCountError, refetch: refetchServiceCountData } = useGetCountOfServices({ queryParams: { ...pathParams, environmentIdentifier: getEnvironmentIdentifier(environment) } }) useEffect(() => { Eif (serviceCountData) { refetchServiceCountData() } // eslint-disable-next-line react-hooks/exhaustive-deps }, [selectedView]) const onFilter = (type: FilterTypes): void => { Eif (type !== selectedFilter) { setPage(0) setSelectedFilter(type) refetchServiceCountData() } } const createButton = ( <RbacButton variation={ButtonVariation.PRIMARY} icon="plus" text={getString('cv.monitoredServices.newMonitoredServices')} onClick={() => { history.push({ pathname: routes.toCVAddMonitoringServicesSetup(pathParams), search: getCVMonitoringServicesSearchParam({ view: selectedView }) }) }} permission={{ permission: PermissionIdentifier.EDIT_MONITORED_SERVICE, resource: { resourceType: ResourceType.MONITOREDSERVICE, resourceIdentifier: projectIdentifier } }} /> ) return ( <> <Page.Header breadcrumbs={<NGBreadcrumbs />} title={ <Heading level={3} font={{ variation: FontVariation.H4 }}> {getString('cv.monitoredServices.title')} <HarnessDocTooltip tooltipId={'monitoredServicesTitle'} useStandAlone /> </Heading> } /> <Page.Header title={createButton} toolbar={ <Layout.Horizontal> <Select value={{ label: `${getString('environment')}: ${defaultTo(environment?.label, getString('all'))}`, value: defaultTo(environment?.value, getString('all')) }} defaultSelectedItem={{ label: getString('all'), value: getString('all') }} items={getEnvironmentOptions(environmentDataList, loadingEnvironments, getString)} onChange={item => { setPage(0) setEnvironment(item) }} className={css.filterSelect} /> <GridListToggle initialSelectedView={selectedView} onViewToggle={setSelectedView} icons={{ left: 'graph' }} /> </Layout.Horizontal> } /> {selectedView === Views.LIST ? ( <MonitoredServiceList page={page} setPage={setPage} environmentIdentifier={getEnvironmentIdentifier(environment)} createButton={createButton} selectedFilter={selectedFilter} onFilter={onFilter} serviceCountData={serviceCountData} serviceCountLoading={serviceCountLoading} serviceCountErrorMessage={getErrorMessage(serviceCountError)} refetchServiceCountData={refetchServiceCountData} /> ) : ( <ServiceDependencyGraph isPageView serviceCountData={serviceCountData} selectedFilter={selectedFilter} onFilter={onFilter} refetchServiceCountData={refetchServiceCountData} serviceCountLoading={serviceCountLoading} createButton={createButton} environmentIdentifier={getEnvironmentIdentifier(environment)} serviceCountErrorMessage={getErrorMessage(serviceCountError)} /> )} </> ) } export default MonitoredService |