mirror of
				https://github.com/Unleash/unleash.git
				synced 2025-10-27 11:02:16 +01:00 
			
		
		
		
	feat: connect lead time with backend (#6629)
This commit is contained in:
		
							parent
							
								
									6dc6e36084
								
							
						
					
					
						commit
						99b5db1691
					
				@ -1,18 +1,11 @@
 | 
			
		||||
import { screen } from '@testing-library/react';
 | 
			
		||||
import { render } from 'utils/testRenderer';
 | 
			
		||||
import { testServerRoute, testServerSetup } from 'utils/testServer';
 | 
			
		||||
import type { ProjectDoraMetricsSchema } from 'openapi';
 | 
			
		||||
import { LeadTimeForChanges } from './LeadTimeForChanges';
 | 
			
		||||
import { Route, Routes } from 'react-router-dom';
 | 
			
		||||
 | 
			
		||||
const server = testServerSetup();
 | 
			
		||||
 | 
			
		||||
const setupApi = (outdatedSdks: ProjectDoraMetricsSchema) => {
 | 
			
		||||
    testServerRoute(server, '/api/admin/projects/default/dora', outdatedSdks);
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
test('Show outdated SDKs and apps using them', async () => {
 | 
			
		||||
    setupApi({
 | 
			
		||||
    const leadTime: ProjectDoraMetricsSchema = {
 | 
			
		||||
        features: [
 | 
			
		||||
            {
 | 
			
		||||
                name: 'ABCD',
 | 
			
		||||
@ -20,12 +13,12 @@ test('Show outdated SDKs and apps using them', async () => {
 | 
			
		||||
            },
 | 
			
		||||
        ],
 | 
			
		||||
        projectAverage: 67,
 | 
			
		||||
    });
 | 
			
		||||
    };
 | 
			
		||||
    render(
 | 
			
		||||
        <Routes>
 | 
			
		||||
            <Route
 | 
			
		||||
                path={'/projects/:projectId'}
 | 
			
		||||
                element={<LeadTimeForChanges />}
 | 
			
		||||
                element={<LeadTimeForChanges leadTime={leadTime} />}
 | 
			
		||||
            />
 | 
			
		||||
        </Routes>,
 | 
			
		||||
        {
 | 
			
		||||
 | 
			
		||||
@ -1,6 +1,4 @@
 | 
			
		||||
import { Box, styled, Tooltip, Typography, useMediaQuery } from '@mui/material';
 | 
			
		||||
import { useProjectDoraMetrics } from 'hooks/api/getters/useProjectDoraMetrics/useProjectDoraMetrics';
 | 
			
		||||
import { useRequiredPathParam } from 'hooks/useRequiredPathParam';
 | 
			
		||||
import { useMemo } from 'react';
 | 
			
		||||
import { useTable, useGlobalFilter, useSortBy } from 'react-table';
 | 
			
		||||
import {
 | 
			
		||||
@ -15,6 +13,7 @@ import { ConditionallyRender } from 'component/common/ConditionallyRender/Condit
 | 
			
		||||
import { Badge } from 'component/common/Badge/Badge';
 | 
			
		||||
import { useConditionallyHiddenColumns } from 'hooks/useConditionallyHiddenColumns';
 | 
			
		||||
import theme from 'themes/theme';
 | 
			
		||||
import type { ProjectDoraMetricsSchema } from '../../../../../openapi';
 | 
			
		||||
 | 
			
		||||
const Container = styled(Box)(({ theme }) => ({
 | 
			
		||||
    display: 'flex',
 | 
			
		||||
@ -41,22 +40,11 @@ const resolveDoraMetrics = (input: number) => {
 | 
			
		||||
    }
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
export const LeadTimeForChanges = () => {
 | 
			
		||||
    const projectId = useRequiredPathParam('projectId');
 | 
			
		||||
 | 
			
		||||
    const { dora, loading } = useProjectDoraMetrics(projectId);
 | 
			
		||||
 | 
			
		||||
    const data = useMemo(() => {
 | 
			
		||||
        if (loading) {
 | 
			
		||||
            return Array(5).fill({
 | 
			
		||||
                name: 'Featurename',
 | 
			
		||||
                timeToProduction: 'Data for production',
 | 
			
		||||
            });
 | 
			
		||||
interface ILeadTimeForChangesProps {
 | 
			
		||||
    leadTime: ProjectDoraMetricsSchema;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
        return dora.features;
 | 
			
		||||
    }, [dora, loading]);
 | 
			
		||||
 | 
			
		||||
export const LeadTimeForChanges = ({ leadTime }: ILeadTimeForChangesProps) => {
 | 
			
		||||
    const columns = useMemo(
 | 
			
		||||
        () => [
 | 
			
		||||
            {
 | 
			
		||||
@ -117,7 +105,7 @@ export const LeadTimeForChanges = () => {
 | 
			
		||||
                Cell: ({ row: { original } }: any) => (
 | 
			
		||||
                    <Tooltip
 | 
			
		||||
                        title={`Deviation from project average. Average for this project is: ${
 | 
			
		||||
                            dora.projectAverage || 0
 | 
			
		||||
                            leadTime.projectAverage || 0
 | 
			
		||||
                        } days`}
 | 
			
		||||
                        arrow
 | 
			
		||||
                    >
 | 
			
		||||
@ -129,8 +117,8 @@ export const LeadTimeForChanges = () => {
 | 
			
		||||
                            data-loading
 | 
			
		||||
                        >
 | 
			
		||||
                            {Math.round(
 | 
			
		||||
                                (dora.projectAverage
 | 
			
		||||
                                    ? dora.projectAverage
 | 
			
		||||
                                (leadTime.projectAverage
 | 
			
		||||
                                    ? leadTime.projectAverage
 | 
			
		||||
                                    : 0) - original.timeToProduction,
 | 
			
		||||
                            )}{' '}
 | 
			
		||||
                            days
 | 
			
		||||
@ -166,7 +154,7 @@ export const LeadTimeForChanges = () => {
 | 
			
		||||
                disableSortBy: true,
 | 
			
		||||
            },
 | 
			
		||||
        ],
 | 
			
		||||
        [JSON.stringify(dora.features), loading],
 | 
			
		||||
        [JSON.stringify(leadTime.features)],
 | 
			
		||||
    );
 | 
			
		||||
 | 
			
		||||
    const initialState = useMemo(
 | 
			
		||||
@ -194,7 +182,7 @@ export const LeadTimeForChanges = () => {
 | 
			
		||||
    } = useTable(
 | 
			
		||||
        {
 | 
			
		||||
            columns: columns as any[],
 | 
			
		||||
            data,
 | 
			
		||||
            data: leadTime.features,
 | 
			
		||||
            initialState,
 | 
			
		||||
            autoResetGlobalFilter: false,
 | 
			
		||||
            autoResetSortBy: false,
 | 
			
		||||
 | 
			
		||||
@ -52,7 +52,7 @@ export const ProjectInsights = () => {
 | 
			
		||||
                <ProjectHealth health={data.health} />
 | 
			
		||||
            </MediumWideContainer>
 | 
			
		||||
            <WideContainer>
 | 
			
		||||
                <LeadTimeForChanges />
 | 
			
		||||
                <LeadTimeForChanges leadTime={data.leadTime} />
 | 
			
		||||
            </WideContainer>
 | 
			
		||||
            <NarrowContainer>
 | 
			
		||||
                <FlagTypesUsed featureTypeCounts={data.featureTypeCounts} />
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user