mirror of
https://github.com/Unleash/unleash.git
synced 2025-04-01 01:18:10 +02:00
refactor: memoize heavy components in project overview (#5241)
This PR memoizes some of the heavier components in our project overview table
This commit is contained in:
parent
5b41abff97
commit
9cfade926e
frontend/src/component
common/Table/cells/FeatureSeenCell
project/Project/ProjectFeatureToggles
@ -20,3 +20,7 @@ export const FeatureEnvironmentSeenCell: VFC<IFeatureSeenCellProps> = ({
|
|||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export const MemoizedFeatureEnvironmentSeenCell = React.memo(
|
||||||
|
FeatureEnvironmentSeenCell,
|
||||||
|
);
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { useMemo } from 'react';
|
import React, { useMemo } from 'react';
|
||||||
import { styled } from '@mui/material';
|
import { styled } from '@mui/material';
|
||||||
import { flexRow } from 'themes/themeStyles';
|
import { flexRow } from 'themes/themeStyles';
|
||||||
import { ConditionallyRender } from 'component/common/ConditionallyRender/ConditionallyRender';
|
import { ConditionallyRender } from 'component/common/ConditionallyRender/ConditionallyRender';
|
||||||
@ -22,21 +22,25 @@ const StyledSwitchContainer = styled('div', {
|
|||||||
}),
|
}),
|
||||||
}));
|
}));
|
||||||
|
|
||||||
export const createFeatureToggleCell =
|
interface IFeatureToggleCellProps {
|
||||||
(
|
projectId: string;
|
||||||
projectId: string,
|
environmentName: string;
|
||||||
environmentName: string,
|
isChangeRequestEnabled: boolean;
|
||||||
isChangeRequestEnabled: boolean,
|
refetch: () => void;
|
||||||
refetch: () => void,
|
onFeatureToggleSwitch: ReturnType<UseFeatureToggleSwitchType>['onToggle'];
|
||||||
onFeatureToggleSwitch: ReturnType<UseFeatureToggleSwitchType>['onToggle'],
|
|
||||||
) =>
|
|
||||||
({
|
|
||||||
value,
|
|
||||||
row: { original: feature },
|
|
||||||
}: {
|
|
||||||
value: boolean;
|
value: boolean;
|
||||||
row: { original: ListItemType };
|
feature: ListItemType;
|
||||||
}) => {
|
}
|
||||||
|
|
||||||
|
const FeatureToggleCellComponent = ({
|
||||||
|
value,
|
||||||
|
feature,
|
||||||
|
projectId,
|
||||||
|
environmentName,
|
||||||
|
isChangeRequestEnabled,
|
||||||
|
refetch,
|
||||||
|
onFeatureToggleSwitch,
|
||||||
|
}: IFeatureToggleCellProps) => {
|
||||||
const environment = feature.environments[environmentName];
|
const environment = feature.environments[environmentName];
|
||||||
|
|
||||||
const hasWarning = useMemo(
|
const hasWarning = useMemo(
|
||||||
@ -77,3 +81,33 @@ export const createFeatureToggleCell =
|
|||||||
</StyledSwitchContainer>
|
</StyledSwitchContainer>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const MemoizedFeatureToggleCell = React.memo(FeatureToggleCellComponent);
|
||||||
|
|
||||||
|
export const createFeatureToggleCell =
|
||||||
|
(
|
||||||
|
projectId: string,
|
||||||
|
environmentName: string,
|
||||||
|
isChangeRequestEnabled: boolean,
|
||||||
|
refetch: () => void,
|
||||||
|
onFeatureToggleSwitch: ReturnType<UseFeatureToggleSwitchType>['onToggle'],
|
||||||
|
) =>
|
||||||
|
({
|
||||||
|
value,
|
||||||
|
row: { original: feature },
|
||||||
|
}: {
|
||||||
|
value: boolean;
|
||||||
|
row: { original: ListItemType };
|
||||||
|
}) => {
|
||||||
|
return (
|
||||||
|
<MemoizedFeatureToggleCell
|
||||||
|
value={value}
|
||||||
|
feature={feature}
|
||||||
|
projectId={projectId}
|
||||||
|
environmentName={environmentName}
|
||||||
|
isChangeRequestEnabled={isChangeRequestEnabled}
|
||||||
|
refetch={refetch}
|
||||||
|
onFeatureToggleSwitch={onFeatureToggleSwitch}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
@ -159,6 +159,7 @@ export const useFeatureToggleSwitch: UseFeatureToggleSwitchType = (
|
|||||||
config.environmentName,
|
config.environmentName,
|
||||||
shouldActivateDisabledStrategies,
|
shouldActivateDisabledStrategies,
|
||||||
);
|
);
|
||||||
|
|
||||||
setToastData({
|
setToastData({
|
||||||
type: 'success',
|
type: 'success',
|
||||||
title: `Enabled in ${config.environmentName}`,
|
title: `Enabled in ${config.environmentName}`,
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { useCallback, useEffect, useMemo, useState } from 'react';
|
import React, { useCallback, useEffect, useMemo, useState } from 'react';
|
||||||
import {
|
import {
|
||||||
Checkbox,
|
Checkbox,
|
||||||
IconButton,
|
IconButton,
|
||||||
@ -55,10 +55,10 @@ import { useGlobalLocalStorage } from 'hooks/useGlobalLocalStorage';
|
|||||||
import FileDownload from '@mui/icons-material/FileDownload';
|
import FileDownload from '@mui/icons-material/FileDownload';
|
||||||
import useUiConfig from 'hooks/api/getters/useUiConfig/useUiConfig';
|
import useUiConfig from 'hooks/api/getters/useUiConfig/useUiConfig';
|
||||||
import { ExportDialog } from 'component/feature/FeatureToggleList/ExportDialog';
|
import { ExportDialog } from 'component/feature/FeatureToggleList/ExportDialog';
|
||||||
import { RowSelectCell } from './RowSelectCell/RowSelectCell';
|
import { MemoizedRowSelectCell } from './RowSelectCell/RowSelectCell';
|
||||||
import { BatchSelectionActionsBar } from '../../../common/BatchSelectionActionsBar/BatchSelectionActionsBar';
|
import { BatchSelectionActionsBar } from '../../../common/BatchSelectionActionsBar/BatchSelectionActionsBar';
|
||||||
import { ProjectFeaturesBatchActions } from './ProjectFeaturesBatchActions/ProjectFeaturesBatchActions';
|
import { ProjectFeaturesBatchActions } from './ProjectFeaturesBatchActions/ProjectFeaturesBatchActions';
|
||||||
import { FeatureEnvironmentSeenCell } from '../../../common/Table/cells/FeatureSeenCell/FeatureEnvironmentSeenCell';
|
import { MemoizedFeatureEnvironmentSeenCell } from '../../../common/Table/cells/FeatureSeenCell/FeatureEnvironmentSeenCell';
|
||||||
import { useChangeRequestsEnabled } from 'hooks/useChangeRequestsEnabled';
|
import { useChangeRequestsEnabled } from 'hooks/useChangeRequestsEnabled';
|
||||||
import { ListItemType } from './ProjectFeatureToggles.types';
|
import { ListItemType } from './ProjectFeatureToggles.types';
|
||||||
import { createFeatureToggleCell } from './FeatureToggleSwitch/createFeatureToggleCell';
|
import { createFeatureToggleCell } from './FeatureToggleSwitch/createFeatureToggleCell';
|
||||||
@ -161,7 +161,9 @@ export const ProjectFeatureToggles = ({
|
|||||||
<Checkbox {...getToggleAllRowsSelectedProps()} />
|
<Checkbox {...getToggleAllRowsSelectedProps()} />
|
||||||
),
|
),
|
||||||
Cell: ({ row }: any) => (
|
Cell: ({ row }: any) => (
|
||||||
<RowSelectCell {...row?.getToggleRowSelectedProps?.()} />
|
<MemoizedRowSelectCell
|
||||||
|
{...row?.getToggleRowSelectedProps?.()}
|
||||||
|
/>
|
||||||
),
|
),
|
||||||
maxWidth: 50,
|
maxWidth: 50,
|
||||||
disableSortBy: true,
|
disableSortBy: true,
|
||||||
@ -191,7 +193,7 @@ export const ProjectFeatureToggles = ({
|
|||||||
accessor: 'lastSeenAt',
|
accessor: 'lastSeenAt',
|
||||||
Cell: ({ value, row: { original: feature } }: any) => {
|
Cell: ({ value, row: { original: feature } }: any) => {
|
||||||
return showEnvironmentLastSeen ? (
|
return showEnvironmentLastSeen ? (
|
||||||
<FeatureEnvironmentSeenCell feature={feature} />
|
<MemoizedFeatureEnvironmentSeenCell feature={feature} />
|
||||||
) : (
|
) : (
|
||||||
<FeatureSeenCell value={value} />
|
<FeatureSeenCell value={value} />
|
||||||
);
|
);
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
import React from 'react';
|
||||||
import { Box, Checkbox, styled } from '@mui/material';
|
import { Box, Checkbox, styled } from '@mui/material';
|
||||||
import { FC } from 'react';
|
import { FC } from 'react';
|
||||||
import { BATCH_SELECT } from 'utils/testIds';
|
import { BATCH_SELECT } from 'utils/testIds';
|
||||||
@ -23,3 +24,5 @@ export const RowSelectCell: FC<IRowSelectCellProps> = ({
|
|||||||
<Checkbox onChange={onChange} title={title} checked={checked} />
|
<Checkbox onChange={onChange} title={title} checked={checked} />
|
||||||
</StyledBoxCell>
|
</StyledBoxCell>
|
||||||
);
|
);
|
||||||
|
|
||||||
|
export const MemoizedRowSelectCell = React.memo(RowSelectCell);
|
||||||
|
Loading…
Reference in New Issue
Block a user