forked from M-Labs/web2019
18 lines
623 B
JavaScript
18 lines
623 B
JavaScript
import React from "react";
|
|
import {LevelUI} from "./warnings";
|
|
import {useShopStore} from "./shop_store";
|
|
|
|
export function CrateWarnings({crate_index}) {
|
|
const crate = useShopStore(state => (state.crates[crate_index]))
|
|
const crate_warnings = crate.warnings;
|
|
// TODO UI/colors
|
|
return (
|
|
<div className="crate-info">
|
|
{crate_warnings.map((rule, index) => (
|
|
<p key={index} className="rule" style={{'color': LevelUI(rule.level).color}}>
|
|
<img src={LevelUI(rule.level).icon} /> <i>{rule.message}</i>
|
|
</p>
|
|
))}
|
|
</div>
|
|
)
|
|
} |