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 | 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 2x 1x 2x 3x 3x 3x 3x 2x | /*
* 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, { useMemo } from 'react'
import { useParams } from 'react-router-dom'
import moment from 'moment'
import { Color } from '@harness/design-system'
import { Card, Container, Layout, Text } from '@wings-software/uicore'
import { GetServicesGrowthTrendQueryParams, useGetServicesGrowthTrend } from 'services/cd-ng'
import { useStrings } from 'framework/strings'
import type { ModulePathParams, ProjectPathProps } from '@common/interfaces/RouteInterfaces'
import { SparklineChart } from '@common/components/SparklineChart/SparklineChart'
import { TrendPopover } from '@cd/components/TrendPopover/TrendPopover'
import { PieChart } from '@cd/components/PieChart/PieChart'
import { numberFormatter } from '@cd/components/Services/common'
import css from '@cd/components/Services/ServiceInstancesWidget/ServiceInstancesWidget.module.scss'
export interface ServiceInstanceWidgetProps {
serviceCount: number
serviceInstancesCount: number
prodCount: number
nonProdCount: number
}
export const ServiceInstancesWidget: React.FC<ServiceInstanceWidgetProps> = props => {
const { serviceCount, serviceInstancesCount, prodCount, nonProdCount } = props
const { getString } = useStrings()
const { accountId, orgIdentifier, projectIdentifier } = useParams<ProjectPathProps & ModulePathParams>()
const queryParams: GetServicesGrowthTrendQueryParams = useMemo(
() => ({
accountIdentifier: accountId,
orgIdentifier,
projectIdentifier,
startTime: moment().utc().startOf('day').subtract(6, 'months').toDate().getTime(),
endTime: moment().utc().startOf('day').toDate().getTime(),
timeGroupByType: 'DAY'
}),
[accountId, orgIdentifier, projectIdentifier]
)
const { data } = useGetServicesGrowthTrend({ queryParams })
const trendData: number[] = useMemo(() => {
const timeValuePairList = data?.data?.timeValuePairList || []
// istanbul ignore else
if (!timeValuePairList.length) {
return []
}
timeValuePairList.sort((prev, curr) => (prev.timestamp || 0) - (curr.timestamp || 0))
return timeValuePairList.map(timeValuePair => timeValuePair.value || 0)
}, [data])
const pieChartData = useMemo(
() => [
{
label: getString('cd.serviceDashboard.nonProd'),
value: nonProdCount,
formattedValue: numberFormatter(nonProdCount),
color: 'var(--primary-2)'
},
{
label: getString('cd.serviceDashboard.prod'),
value: prodCount,
formattedValue: numberFormatter(prodCount),
color: 'var(--primary-7)'
}
],
// eslint-disable-next-line react-hooks/exhaustive-deps
[prodCount, nonProdCount]
)
const title = getString('cd.serviceDashboard.servicesInLast', {
period: getString('common.duration.6months')
})
return (
<Card className={css.card}>
<Layout.Vertical width={248}>
<Layout.Horizontal className={css.topSection}>
<Layout.Vertical width={'100%'}>
<Text font={{ weight: 'bold' }} color={Color.GREY_600}>
{getString('services')}
</Text>
<Layout.Horizontal flex={{ distribution: 'space-between' }}>
<Text color={Color.BLACK} font={{ weight: 'bold' }} className={css.text}>
{numberFormatter(serviceCount)}
</Text>
{trendData.length ? (
<TrendPopover title={title} data={trendData}>
<SparklineChart
title={getString('cd.serviceDashboard.6monthTrend')}
data={trendData}
options={{ chart: { width: 80, height: 50 } }}
sparklineChartContainerStyles={css.hover}
/>
</TrendPopover>
) : (
<></>
)}
</Layout.Horizontal>
</Layout.Vertical>
</Layout.Horizontal>
<Layout.Vertical className={css.bottomSection}>
<Layout.Vertical margin={{ bottom: 'medium' }}>
<Text font={{ weight: 'bold' }} color={Color.GREY_600} margin={{ bottom: 'xsmall' }}>
{getString('cd.serviceDashboard.serviceInstances')}
</Text>
<Layout.Horizontal flex={{ alignItems: 'center', distribution: 'space-between' }}>
<Text color={Color.BLACK} font={{ weight: 'bold' }} className={css.text}>
{numberFormatter(serviceInstancesCount)}
</Text>
{serviceInstancesCount ? (
<Container height={65}>
<PieChart size={65} items={pieChartData} showLabels={false}></PieChart>
</Container>
) : (
<></>
)}
</Layout.Horizontal>
</Layout.Vertical>
{serviceInstancesCount ? (
<Layout.Horizontal flex={{ distribution: 'space-between' }}>
{pieChartData.map(pieChartDataItem => {
return (
<Layout.Horizontal key={pieChartDataItem.label} flex={{ alignItems: 'center' }}>
<div className={css.circle} style={{ background: pieChartDataItem.color }}></div>
<Text font={{ size: 'small', weight: 'semi-bold' }} color={Color.GREY_500}>{`${
pieChartDataItem.label
} (${pieChartDataItem.formattedValue ?? pieChartDataItem.value})`}</Text>
</Layout.Horizontal>
)
})}
</Layout.Horizontal>
) : (
<></>
)}
</Layout.Vertical>
</Layout.Vertical>
</Card>
)
}
|