mirror of
https://github.com/Unleash/unleash.git
synced 2025-11-10 01:19:53 +01:00
feat: archived row styling
This commit is contained in:
parent
8259b9e9f6
commit
e492c05d5e
@ -22,6 +22,7 @@ interface IFeatureNameCellProps {
|
|||||||
| 'tags'
|
| 'tags'
|
||||||
| 'type'
|
| 'type'
|
||||||
| 'dependencyType'
|
| 'dependencyType'
|
||||||
|
| 'archivedAt'
|
||||||
>;
|
>;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
@ -138,6 +139,22 @@ const FeatureName: FC<{
|
|||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const ArchivedFeatureName: FC<{
|
||||||
|
feature: string;
|
||||||
|
searchQuery: string;
|
||||||
|
}> = ({ feature, searchQuery }) => {
|
||||||
|
return (
|
||||||
|
<Box
|
||||||
|
sx={(theme) => ({
|
||||||
|
fontWeight: theme.typography.fontWeightBold,
|
||||||
|
color: theme.palette.neutral.main,
|
||||||
|
})}
|
||||||
|
>
|
||||||
|
<Highlighter search={searchQuery}>{feature}</Highlighter>
|
||||||
|
</Box>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
const RestTags: FC<{ tags: string[]; onClick: (tag: string) => void }> = ({
|
const RestTags: FC<{ tags: string[]; onClick: (tag: string) => void }> = ({
|
||||||
tags,
|
tags,
|
||||||
onClick,
|
onClick,
|
||||||
@ -236,6 +253,7 @@ const DependencyPreview: FC<{ feature: string; project: string }> = ({
|
|||||||
export const PrimaryFeatureInfo: FC<{
|
export const PrimaryFeatureInfo: FC<{
|
||||||
project: string;
|
project: string;
|
||||||
feature: string;
|
feature: string;
|
||||||
|
archivedAt: string | null;
|
||||||
searchQuery: string;
|
searchQuery: string;
|
||||||
type: string;
|
type: string;
|
||||||
dependencyType: string;
|
dependencyType: string;
|
||||||
@ -244,6 +262,7 @@ export const PrimaryFeatureInfo: FC<{
|
|||||||
}> = ({
|
}> = ({
|
||||||
project,
|
project,
|
||||||
feature,
|
feature,
|
||||||
|
archivedAt,
|
||||||
type,
|
type,
|
||||||
searchQuery,
|
searchQuery,
|
||||||
dependencyType,
|
dependencyType,
|
||||||
@ -275,11 +294,19 @@ export const PrimaryFeatureInfo: FC<{
|
|||||||
return (
|
return (
|
||||||
<FeatureNameAndType data-loading>
|
<FeatureNameAndType data-loading>
|
||||||
<TypeIcon />
|
<TypeIcon />
|
||||||
|
{archivedAt ? (
|
||||||
|
<ArchivedFeatureName
|
||||||
|
feature={feature}
|
||||||
|
searchQuery={searchQuery}
|
||||||
|
/>
|
||||||
|
) : (
|
||||||
<FeatureName
|
<FeatureName
|
||||||
project={project}
|
project={project}
|
||||||
feature={feature}
|
feature={feature}
|
||||||
searchQuery={searchQuery}
|
searchQuery={searchQuery}
|
||||||
/>
|
/>
|
||||||
|
)}
|
||||||
|
|
||||||
<ConditionallyRender
|
<ConditionallyRender
|
||||||
condition={Boolean(dependencyType)}
|
condition={Boolean(dependencyType)}
|
||||||
show={
|
show={
|
||||||
@ -305,6 +332,11 @@ export const PrimaryFeatureInfo: FC<{
|
|||||||
</HtmlTooltip>
|
</HtmlTooltip>
|
||||||
}
|
}
|
||||||
/>
|
/>
|
||||||
|
{archivedAt && (
|
||||||
|
<HtmlTooltip arrow title={archivedAt} describeChild>
|
||||||
|
<Badge color='neutral'>Archived</Badge>
|
||||||
|
</HtmlTooltip>
|
||||||
|
)}
|
||||||
</FeatureNameAndType>
|
</FeatureNameAndType>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
@ -343,6 +375,7 @@ export const FeatureOverviewCell =
|
|||||||
<PrimaryFeatureInfo
|
<PrimaryFeatureInfo
|
||||||
project={row.original.project || ''}
|
project={row.original.project || ''}
|
||||||
feature={row.original.name}
|
feature={row.original.name}
|
||||||
|
archivedAt={row.original.archivedAt}
|
||||||
searchQuery={searchQuery}
|
searchQuery={searchQuery}
|
||||||
type={row.original.type || ''}
|
type={row.original.type || ''}
|
||||||
dependencyType={row.original.dependencyType || ''}
|
dependencyType={row.original.dependencyType || ''}
|
||||||
|
|||||||
@ -19,7 +19,7 @@ export interface FeatureSearchResponseSchema {
|
|||||||
* The date the feature was archived
|
* The date the feature was archived
|
||||||
* @nullable
|
* @nullable
|
||||||
*/
|
*/
|
||||||
archivedAt?: string | null;
|
archivedAt: string | null;
|
||||||
/**
|
/**
|
||||||
* The date the feature was created
|
* The date the feature was created
|
||||||
* @nullable
|
* @nullable
|
||||||
|
|||||||
@ -25,6 +25,7 @@ export const featureSearchResponseSchema = {
|
|||||||
'createdBy',
|
'createdBy',
|
||||||
'environments',
|
'environments',
|
||||||
'segments',
|
'segments',
|
||||||
|
'archivedAt',
|
||||||
],
|
],
|
||||||
description: 'A feature flag definition',
|
description: 'A feature flag definition',
|
||||||
properties: {
|
properties: {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user