mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-25 00:07:47 +01:00
4167a60588
Follows up on https://github.com/Unleash/unleash/pull/4853 to add Biome to the frontend as well. ![image](https://github.com/Unleash/unleash/assets/14320932/1906faf1-fc29-4172-a4d4-b2716d72cd65) Added a few `biome-ignore` to speed up the process but we may want to check and fix them in the future.
80 lines
2.2 KiB
TypeScript
80 lines
2.2 KiB
TypeScript
import { Alert } from '@mui/material';
|
|
import { useSegmentLimits } from 'hooks/api/getters/useSegmentLimits/useSegmentLimits';
|
|
|
|
export const SegmentDocsValuesInfo = () => {
|
|
const { segmentValuesLimit } = useSegmentLimits();
|
|
|
|
if (typeof segmentValuesLimit === 'undefined') {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<Alert severity='info'>
|
|
A segment can have{' '}
|
|
<a
|
|
href='https://docs.getunleash.io/reference/segments#segment-limits'
|
|
target='_blank'
|
|
rel='noreferrer'
|
|
>
|
|
at most {segmentValuesLimit} across all of its contraints
|
|
</a>
|
|
. <SegmentLimitsLink />
|
|
</Alert>
|
|
);
|
|
};
|
|
|
|
export const SegmentDocsValuesError = (props: { values: number }) => {
|
|
const { segmentValuesLimit } = useSegmentLimits();
|
|
|
|
if (typeof segmentValuesLimit === 'undefined') {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<Alert severity='error'>
|
|
A segment can have{' '}
|
|
<a
|
|
href='https://docs.getunleash.io/reference/segments#segment-limits'
|
|
target='_blank'
|
|
rel='noreferrer'
|
|
>
|
|
at most {segmentValuesLimit} across all of its contraints
|
|
</a>
|
|
. This segment has {props.values}{' '}
|
|
{props.values === 1 ? 'value' : 'values'}.
|
|
</Alert>
|
|
);
|
|
};
|
|
|
|
export const SegmentDocsStrategyWarning = () => {
|
|
const { strategySegmentsLimit } = useSegmentLimits();
|
|
|
|
if (typeof strategySegmentsLimit === 'undefined') {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<Alert severity='warning'>
|
|
You can't apply more than {strategySegmentsLimit} segments to a
|
|
strategy. <SegmentLimitsLink />
|
|
</Alert>
|
|
);
|
|
};
|
|
|
|
const SegmentLimitsLink = () => {
|
|
return (
|
|
<>
|
|
<a
|
|
href='https://slack.unleash.run'
|
|
target='_blank'
|
|
rel='noreferrer'
|
|
>
|
|
Get in touch
|
|
</a>{' '}
|
|
if you'd like to increase this limit.
|
|
</>
|
|
);
|
|
};
|
|
|
|
export const segmentsDocsLink = 'https://docs.getunleash.io/reference/segments';
|