mirror of
https://github.com/grafana/grafana.git
synced 2025-08-02 00:55:16 +08:00

* i18n: removes useTranslate hook * chore: fix duplicate imports * chore: fix import sorting and hook dependencies
89 lines
2.3 KiB
TypeScript
89 lines
2.3 KiB
TypeScript
import { css } from '@emotion/css';
|
|
|
|
import { GrafanaTheme2 } from '@grafana/data';
|
|
import { t } from '@grafana/i18n';
|
|
import { IconButton, Text, Stack, Card } from '@grafana/ui';
|
|
|
|
export interface Props {
|
|
step: string;
|
|
index: number;
|
|
currentStep: number;
|
|
onStepClick: (index: number) => void;
|
|
styles: ReturnType<typeof getStyles>;
|
|
}
|
|
|
|
export const SidebarItem = ({ step, index, currentStep, onStepClick, styles }: Props) => {
|
|
const isCompleted = index < currentStep;
|
|
const isCurrent = index === currentStep;
|
|
const isPending = index > currentStep;
|
|
|
|
const getStepStatus = () => {
|
|
if (isCompleted) {
|
|
return {
|
|
icon: 'check-circle' as const,
|
|
color: 'success',
|
|
label: t('provisioning.sidebar-item.label-completed-step', 'Completed step'),
|
|
};
|
|
}
|
|
if (isCurrent) {
|
|
return {
|
|
icon: 'circle' as const,
|
|
color: 'primary',
|
|
label: t('provisioning.sidebar-item.label-current-step', 'Current step'),
|
|
};
|
|
}
|
|
return {
|
|
icon: 'circle' as const,
|
|
color: 'secondary',
|
|
label: t('provisioning.sidebar-item.label-pending-step', 'Pending step'),
|
|
};
|
|
};
|
|
|
|
const { icon, color, label } = getStepStatus();
|
|
|
|
const handleClick = () => onStepClick(index);
|
|
const handleIconClick = (e: React.MouseEvent) => {
|
|
e.stopPropagation();
|
|
onStepClick(index);
|
|
};
|
|
|
|
return (
|
|
<Card
|
|
className={`${styles.stepItem} ${isCurrent ? styles.activeStep : ''} ${styles.plainCard}`}
|
|
onClick={handleClick}
|
|
>
|
|
<Stack direction="row" alignItems="center" gap={2}>
|
|
<IconButton
|
|
name={icon}
|
|
size="sm"
|
|
variant={isPending ? 'secondary' : 'primary'}
|
|
color={color}
|
|
aria-label={label}
|
|
onClick={handleIconClick}
|
|
/>
|
|
<Text color={isCurrent ? 'primary' : 'secondary'} weight={isCurrent ? 'medium' : 'regular'}>
|
|
{step}
|
|
</Text>
|
|
</Stack>
|
|
</Card>
|
|
);
|
|
};
|
|
|
|
export const getStyles = (theme: GrafanaTheme2) => ({
|
|
stepItem: css({
|
|
padding: theme.spacing(1),
|
|
cursor: 'pointer',
|
|
'&:hover': {
|
|
background: theme.colors.action.hover,
|
|
},
|
|
}),
|
|
activeStep: css({
|
|
color: theme.colors.primary.text,
|
|
}),
|
|
plainCard: css({
|
|
background: 'transparent',
|
|
border: 'none',
|
|
boxShadow: 'none',
|
|
}),
|
|
});
|