1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-06 00:07:44 +01:00
unleash.unleash/frontend/src/component/feature/FeatureToggleList/BulkEnableDialog.tsx

121 lines
4.0 KiB
TypeScript
Raw Normal View History

2023-05-18 08:07:56 +02:00
import { useState } from 'react';
import { Box, styled, Typography } from '@mui/material';
import { Dialogue } from 'component/common/Dialogue/Dialogue';
import GeneralSelect from 'component/common/GeneralSelect/GeneralSelect';
import useToast from 'hooks/useToast';
import type { FeatureSchema } from 'openapi';
import { formatUnknownError } from 'utils/formatUnknownError';
import useFeatureApi from 'hooks/api/actions/useFeatureApi/useFeatureApi';
import useProject from 'hooks/api/getters/useProject/useProject';
import { useChangeRequestsEnabled } from 'hooks/useChangeRequestsEnabled';
import { useChangeRequestApi } from 'hooks/api/actions/useChangeRequestApi/useChangeRequestApi';
import { usePendingChangeRequests } from 'hooks/api/getters/usePendingChangeRequests/usePendingChangeRequests';
2023-05-18 08:07:56 +02:00
interface IExportDialogProps {
showExportDialog: boolean;
data: Pick<FeatureSchema, 'name'>[];
onClose: () => void;
onConfirm?: () => void;
environments: string[];
projectId: string;
}
const StyledSelect = styled(GeneralSelect)(({ theme }) => ({
minWidth: '250px',
marginTop: theme.spacing(2),
}));
export const BulkEnableDialog = ({
showExportDialog,
data,
onClose,
onConfirm,
environments,
projectId,
}: IExportDialogProps) => {
const [selected, setSelected] = useState(environments[0]);
const { bulkToggleFeaturesEnvironmentOn } = useFeatureApi();
const { addChange } = useChangeRequestApi();
const { refetch: refetchProject } = useProject(projectId);
const { setToastApiError, setToastData } = useToast();
const { isChangeRequestConfigured } = useChangeRequestsEnabled(projectId);
const { refetch: refetchChangeRequests } =
usePendingChangeRequests(projectId);
2023-05-18 08:07:56 +02:00
const getOptions = () =>
environments.map(env => ({
key: env,
label: env,
}));
const onClick = async () => {
try {
if (isChangeRequestConfigured(selected)) {
await addChange(
projectId,
selected,
data.map(feature => ({
action: 'updateEnabled',
feature: feature.name,
payload: { enabled: true },
}))
);
refetchChangeRequests();
setToastData({
text: 'Your enable feature toggles changes have been added to change request',
type: 'success',
title: 'Changes added to a draft',
});
} else {
await bulkToggleFeaturesEnvironmentOn(
projectId,
data.map(feature => feature.name),
selected
);
refetchProject();
setToastData({
text: 'Your feature toggles have been enabled',
type: 'success',
title: 'Features enabled',
});
}
2023-05-18 08:07:56 +02:00
onClose();
onConfirm?.();
} catch (e: unknown) {
setToastApiError(formatUnknownError(e));
}
};
const buttonText = isChangeRequestConfigured(selected)
? 'Add to change request'
: 'Enabled toggles';
2023-05-18 08:07:56 +02:00
return (
<Dialogue
open={showExportDialog}
title="Enable feature toggles"
onClose={onClose}
onClick={onClick}
primaryButtonText={buttonText}
2023-05-18 08:07:56 +02:00
secondaryButtonText="Cancel"
>
<Box>
You have selected <b>{data.length}</b> feature toggles to
enable.
<br />
<br />
<Typography>
Select which environment to enable the features for:
</Typography>
<StyledSelect
options={getOptions()}
value={selected}
onChange={(option: string) => setSelected(option)}
/>
</Box>
</Dialogue>
);
};