Files
clash-verge-rev-lite/src/components/rule/rule-item.tsx
2022-11-23 15:29:42 +08:00

72 lines
1.4 KiB
TypeScript

import { styled, Box, Typography } from "@mui/material";
const Item = styled(Box)(({ theme }) => ({
display: "flex",
padding: "4px 16px",
color: theme.palette.text.primary,
}));
const COLOR = [
"primary",
"secondary",
"info",
"warning",
"error",
"success",
"text",
];
interface Props {
index: number;
value: IRuleItem;
}
const parseColor = (text: string) => {
let sum = 0;
for (let i = 0; i < text.length; i++) {
sum += text.charCodeAt(i);
}
return COLOR[sum % COLOR.length];
};
const RuleItem = (props: Props) => {
const { index, value } = props;
return (
<Item>
<Typography
color="text.secondary"
variant="body2"
sx={{ lineHeight: 2, minWidth: 30, mr: 2.25, textAlign: "center" }}
>
{index}
</Typography>
<Box>
<Typography component="h6" variant="subtitle1" color="text.primary">
{value.payload || "-"}
</Typography>
<Typography
component="span"
variant="body2"
color="text.secondary"
sx={{ mr: 3, minWidth: 120, display: "inline-block" }}
>
{value.type}
</Typography>
<Typography
component="span"
variant="body2"
color={parseColor(value.proxy)}
>
{value.proxy}
</Typography>
</Box>
</Item>
);
};
export default RuleItem;