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