mirror of
https://github.com/Unleash/unleash.git
synced 2025-10-27 11:02:16 +01:00
Follows up on https://github.com/Unleash/unleash/pull/4853 to add Biome to the frontend as well.  Added a few `biome-ignore` to speed up the process but we may want to check and fix them in the future.
75 lines
3.0 KiB
TypeScript
75 lines
3.0 KiB
TypeScript
import React, { useContext } from 'react';
|
||
import { useRequiredPathParam } from 'hooks/useRequiredPathParam';
|
||
import useProject, {
|
||
useProjectNameOrId,
|
||
} from 'hooks/api/getters/useProject/useProject';
|
||
import AccessContext from 'contexts/AccessContext';
|
||
import { usePageTitle } from 'hooks/usePageTitle';
|
||
import { PageContent } from 'component/common/PageContent/PageContent';
|
||
import { PageHeader } from 'component/common/PageHeader/PageHeader';
|
||
import { UPDATE_PROJECT } from 'component/providers/AccessProvider/permissions';
|
||
import { Alert, styled } from '@mui/material';
|
||
import ProjectEnvironment from './ProjectEnvironment/ProjectEnvironment';
|
||
import { Route, Routes, useNavigate } from 'react-router-dom';
|
||
import { SidebarModal } from '../../../../common/SidebarModal/SidebarModal';
|
||
import EditDefaultStrategy from './ProjectEnvironment/ProjectEnvironmentDefaultStrategy/EditDefaultStrategy';
|
||
|
||
const StyledAlert = styled(Alert)(({ theme }) => ({
|
||
marginBottom: theme.spacing(4),
|
||
}));
|
||
export const ProjectDefaultStrategySettings = () => {
|
||
const projectId = useRequiredPathParam('projectId');
|
||
const projectName = useProjectNameOrId(projectId);
|
||
const { hasAccess } = useContext(AccessContext);
|
||
const { project } = useProject(projectId);
|
||
const navigate = useNavigate();
|
||
usePageTitle(`Project default strategy configuration – ${projectName}`);
|
||
|
||
if (!hasAccess(UPDATE_PROJECT, projectId)) {
|
||
return (
|
||
<PageContent
|
||
header={<PageHeader title='Default Strategy configuration' />}
|
||
>
|
||
<Alert severity='error'>
|
||
You need project owner permissions to access this section.
|
||
</Alert>
|
||
</PageContent>
|
||
);
|
||
}
|
||
|
||
const path = `/projects/${projectId}/settings/default-strategy`;
|
||
const onSidebarClose = () => navigate(path);
|
||
|
||
return (
|
||
<>
|
||
<PageContent header={<PageHeader title={`Default Strategy`} />}>
|
||
<StyledAlert severity='info'>
|
||
Here you can customize your default strategy for each
|
||
specific environment. These will be used when you enable a
|
||
toggle environment that has no strategies defined
|
||
</StyledAlert>
|
||
{project?.environments.map((environment) => (
|
||
<ProjectEnvironment
|
||
environment={environment}
|
||
key={environment.environment}
|
||
/>
|
||
))}
|
||
</PageContent>
|
||
<Routes>
|
||
<Route
|
||
path='edit'
|
||
element={
|
||
<SidebarModal
|
||
label='Edit feature strategy'
|
||
onClose={onSidebarClose}
|
||
open
|
||
>
|
||
<EditDefaultStrategy />
|
||
</SidebarModal>
|
||
}
|
||
/>
|
||
</Routes>
|
||
</>
|
||
);
|
||
};
|