mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-25 00:07:47 +01:00
fix: laggy switch (#3814)
<!-- Thanks for creating a PR! To make it easier for reviewers and everyone else to understand what your changes relate to, please add some relevant content to the headings below. Feel free to ignore or delete sections that you don't think are relevant. Thank you! ❤️ --> Fixes laggy environment switch ## About the changes <!-- Describe the changes introduced. What are they and why are they being introduced? Feel free to also add screenshots or steps to view the changes if they're visual. --> Stabilising the functions with useCallback seems necessary in the table view Changed the `checked` property to be dependent on `isChecked` which wraps the value in useOptimisticUpdate hook made the most difference <!-- Does it close an issue? Multiple? --> Closes #(1-942)[https://linear.app/unleash/issue/1-942/bug-laggy-environment-toggles-in-the-ui] <!-- (For internal contributors): Does it relate to an issue on public roadmap? --> <!-- Relates to [roadmap](https://github.com/orgs/Unleash/projects/10) item: # --> ### Important files <!-- PRs can contain a lot of changes, but not all changes are equally important. Where should a reviewer start looking to get an overview of the changes? Are any files particularly important? --> ## Discussion points <!-- Anything about the PR you'd like to discuss before it gets merged? Got any questions or doubts? --> --------- Signed-off-by: andreas-unleash <andreas@getunleash.ai>
This commit is contained in:
parent
6e2cd602c4
commit
e1dd1701cc
@ -1,4 +1,4 @@
|
||||
import { useState, VFC } from 'react';
|
||||
import { useCallback, useState, VFC } from 'react';
|
||||
import { Box, styled } from '@mui/material';
|
||||
import PermissionSwitch from 'component/common/PermissionSwitch/PermissionSwitch';
|
||||
import { UPDATE_FEATURE_ENVIRONMENT } from 'component/providers/AccessProvider/permissions';
|
||||
@ -68,37 +68,45 @@ export const FeatureToggleSwitch: VFC<IFeatureToggleSwitchProps> = ({
|
||||
onToggle(projectId, feature.name, environmentName, !isChecked);
|
||||
};
|
||||
|
||||
const handleToggleEnvironmentOn = async (
|
||||
shouldActivateDisabled = false
|
||||
) => {
|
||||
try {
|
||||
setIsChecked(!isChecked);
|
||||
await toggleFeatureEnvironmentOn(
|
||||
projectId,
|
||||
feature.name,
|
||||
environmentName,
|
||||
shouldActivateDisabled
|
||||
);
|
||||
setToastData({
|
||||
type: 'success',
|
||||
title: `Available in ${environmentName}`,
|
||||
text: `${feature.name} is now available in ${environmentName} based on its defined strategies.`,
|
||||
});
|
||||
callback();
|
||||
} catch (error: unknown) {
|
||||
if (
|
||||
error instanceof Error &&
|
||||
error.message === ENVIRONMENT_STRATEGY_ERROR
|
||||
) {
|
||||
showInfoBox && showInfoBox();
|
||||
} else {
|
||||
setToastApiError(formatUnknownError(error));
|
||||
const handleToggleEnvironmentOn = useCallback(
|
||||
async (shouldActivateDisabled = false) => {
|
||||
try {
|
||||
setIsChecked(!isChecked);
|
||||
await toggleFeatureEnvironmentOn(
|
||||
projectId,
|
||||
feature.name,
|
||||
environmentName,
|
||||
shouldActivateDisabled
|
||||
);
|
||||
setToastData({
|
||||
type: 'success',
|
||||
title: `Available in ${environmentName}`,
|
||||
text: `${feature.name} is now available in ${environmentName} based on its defined strategies.`,
|
||||
});
|
||||
callback();
|
||||
} catch (error: unknown) {
|
||||
if (
|
||||
error instanceof Error &&
|
||||
error.message === ENVIRONMENT_STRATEGY_ERROR
|
||||
) {
|
||||
showInfoBox && showInfoBox();
|
||||
} else {
|
||||
setToastApiError(formatUnknownError(error));
|
||||
}
|
||||
rollbackIsChecked();
|
||||
}
|
||||
rollbackIsChecked();
|
||||
}
|
||||
};
|
||||
},
|
||||
[
|
||||
rollbackIsChecked,
|
||||
setToastApiError,
|
||||
showInfoBox,
|
||||
setToastData,
|
||||
toggleFeatureEnvironmentOn,
|
||||
setIsChecked,
|
||||
]
|
||||
);
|
||||
|
||||
const handleToggleEnvironmentOff = async () => {
|
||||
const handleToggleEnvironmentOff = useCallback(async () => {
|
||||
try {
|
||||
setIsChecked(!isChecked);
|
||||
await toggleFeatureEnvironmentOff(
|
||||
@ -116,54 +124,15 @@ export const FeatureToggleSwitch: VFC<IFeatureToggleSwitchProps> = ({
|
||||
setToastApiError(formatUnknownError(error));
|
||||
rollbackIsChecked();
|
||||
}
|
||||
};
|
||||
}, [
|
||||
toggleFeatureEnvironmentOff,
|
||||
setToastData,
|
||||
setToastApiError,
|
||||
rollbackIsChecked,
|
||||
setIsChecked,
|
||||
]);
|
||||
|
||||
const onClick = async (e: React.MouseEvent) => {
|
||||
if (isChangeRequestConfigured(environmentName)) {
|
||||
e.preventDefault();
|
||||
if (featureHasOnlyDisabledStrategies()) {
|
||||
setShowEnabledDialog(true);
|
||||
} else {
|
||||
onChangeRequestToggle(
|
||||
feature.name,
|
||||
environmentName,
|
||||
!value,
|
||||
false
|
||||
);
|
||||
}
|
||||
return;
|
||||
}
|
||||
if (value) {
|
||||
await handleToggleEnvironmentOff();
|
||||
return;
|
||||
}
|
||||
|
||||
if (featureHasOnlyDisabledStrategies()) {
|
||||
setShowEnabledDialog(true);
|
||||
} else {
|
||||
await handleToggleEnvironmentOn();
|
||||
}
|
||||
};
|
||||
|
||||
const onActivateStrategies = async () => {
|
||||
if (isChangeRequestConfigured(environmentName)) {
|
||||
onChangeRequestToggle(feature.name, environmentName, !value, true);
|
||||
} else {
|
||||
await handleToggleEnvironmentOn(true);
|
||||
}
|
||||
setShowEnabledDialog(false);
|
||||
};
|
||||
|
||||
const onAddDefaultStrategy = async () => {
|
||||
if (isChangeRequestConfigured(environmentName)) {
|
||||
onChangeRequestToggle(feature.name, environmentName, !value, false);
|
||||
} else {
|
||||
await handleToggleEnvironmentOn();
|
||||
}
|
||||
setShowEnabledDialog(false);
|
||||
};
|
||||
|
||||
const featureHasOnlyDisabledStrategies = () => {
|
||||
const featureHasOnlyDisabledStrategies = useCallback(() => {
|
||||
const featureEnvironment = feature?.environments?.find(
|
||||
env => env.name === environmentName
|
||||
);
|
||||
@ -172,7 +141,69 @@ export const FeatureToggleSwitch: VFC<IFeatureToggleSwitchProps> = ({
|
||||
featureEnvironment?.strategies?.length > 0 &&
|
||||
featureEnvironment?.strategies?.every(strategy => strategy.disabled)
|
||||
);
|
||||
};
|
||||
}, [environmentName]);
|
||||
|
||||
const onClick = useCallback(
|
||||
async (e: React.MouseEvent) => {
|
||||
if (isChangeRequestConfigured(environmentName)) {
|
||||
e.preventDefault();
|
||||
if (featureHasOnlyDisabledStrategies()) {
|
||||
setShowEnabledDialog(true);
|
||||
} else {
|
||||
onChangeRequestToggle(
|
||||
feature.name,
|
||||
environmentName,
|
||||
!value,
|
||||
false
|
||||
);
|
||||
}
|
||||
return;
|
||||
}
|
||||
if (value) {
|
||||
await handleToggleEnvironmentOff();
|
||||
return;
|
||||
}
|
||||
|
||||
if (featureHasOnlyDisabledStrategies()) {
|
||||
setShowEnabledDialog(true);
|
||||
} else {
|
||||
await handleToggleEnvironmentOn();
|
||||
}
|
||||
},
|
||||
[
|
||||
isChangeRequestConfigured,
|
||||
onChangeRequestToggle,
|
||||
handleToggleEnvironmentOff,
|
||||
setShowEnabledDialog,
|
||||
]
|
||||
);
|
||||
|
||||
const onActivateStrategies = useCallback(async () => {
|
||||
if (isChangeRequestConfigured(environmentName)) {
|
||||
onChangeRequestToggle(feature.name, environmentName, !value, true);
|
||||
} else {
|
||||
await handleToggleEnvironmentOn(true);
|
||||
}
|
||||
setShowEnabledDialog(false);
|
||||
}, [
|
||||
handleToggleEnvironmentOn,
|
||||
setShowEnabledDialog,
|
||||
isChangeRequestConfigured,
|
||||
onChangeRequestToggle,
|
||||
]);
|
||||
|
||||
const onAddDefaultStrategy = useCallback(async () => {
|
||||
if (isChangeRequestConfigured(environmentName)) {
|
||||
onChangeRequestToggle(feature.name, environmentName, !value, false);
|
||||
} else {
|
||||
await handleToggleEnvironmentOn();
|
||||
}
|
||||
setShowEnabledDialog(false);
|
||||
}, [
|
||||
isChangeRequestConfigured,
|
||||
onChangeRequestToggle,
|
||||
handleToggleEnvironmentOn,
|
||||
]);
|
||||
|
||||
const key = `${feature.name}-${environmentName}`;
|
||||
|
||||
@ -188,7 +219,7 @@ export const FeatureToggleSwitch: VFC<IFeatureToggleSwitchProps> = ({
|
||||
? `Disable feature in ${environmentName}`
|
||||
: `Enable feature in ${environmentName}`
|
||||
}
|
||||
checked={value}
|
||||
checked={isChecked}
|
||||
environmentId={environmentName}
|
||||
projectId={projectId}
|
||||
permission={UPDATE_FEATURE_ENVIRONMENT}
|
||||
|
Loading…
Reference in New Issue
Block a user