请我需要能够显示一个表格单元格的颜色。我有代码存储在mongodb沿着说明。我需要一个库,可以检测是否rgb或十六进制从颜色代码提供的 prop 和渲染。
如上所示,我希望颜色字段显示代码字段中指定的颜色。即使我没有得到一个库来检测颜色,我也很感激。我不介意做一些繁重的工作。到目前为止,这是我的代码的样子。
const ColorList = () => {
const dispatch = useDispatch();
const { user } = useSelector((state) => state.auth);
React.useEffect(() => {
dispatch(getColors(user?.refreshToken));
}, [dispatch]);
const { colors } = useSelector((state) => state.color);
return (
<div className="container-xxl">
<div className="row">
<div className="col-12">
<table className="table table-striped table-hover table">
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">Name</th>
<th scope="col">Code</th>
<th scope="col">Color</th>
</tr>
</thead>
<tbody>
{colors.map(({ color, name }, index) => (
<tr key={index}>
<th scope="row">{index + 1}</th>
<td>{name}</td>
<td>{color}</td>
<td>
<span
style={{
backgroundColor: { color },
width: "6px",
height: "2px",
}}
></span>
</td>
</tr>
))}
</tbody>
</table>
</div>
</div>
</div>
);
};
1条答案
按热度按时间y1aodyip1#
问题是如何将值放入
backgroundColor
中。您可以选择像数组或单个字符串("217,22,3"
或使用代码值rbg(217,22,3)
)那样存储颜色代码,然后拆分字符串更新版本:
您可以在这里找到实时代码:https://codesandbox.io/s/colortest-8w777x?file=/src/App.tsx