75 lines
2.1 KiB
React
Raw Normal View History

2022-09-12 01:30:42 -05:00
import useSWR from "swr";
import { useTranslation } from "react-i18next";
import Widget from "../widget";
import Block from "../block";
import { formatApiUrl } from "utils/api-helpers";
export default function CoinMarketCap({ service, state }) {
2022-09-12 01:30:42 -05:00
const { t } = useTranslation();
const config = service.widget;
2022-09-12 12:38:50 +03:00
const currencyCode = config.currency ?? "USD";
const { symbols } = config;
2022-09-12 01:30:42 -05:00
const { data: statsData, error: statsError } = useSWR(
formatApiUrl(config, `v1/cryptocurrency/quotes/latest?symbol=${symbols.join(",")}&convert=${currencyCode}`)
);
if (!symbols || symbols.length === 0) {
return (
<Widget>
<Block value={t("coinmarketcap.configure")} />
</Widget>
);
2022-09-12 01:30:42 -05:00
}
if (statsError) {
return <Widget error={t("widget.api_error")} />;
}
if (!statsData) {
return (
<Widget>
<Block value={t("coinmarketcap.configure")} />
</Widget>
);
}
const { data } = statsData;
2022-09-12 12:38:50 +03:00
return (
<Widget>
<div className="flex flex-col w-full">
{symbols.map((key) => (
2022-09-12 01:30:42 -05:00
<div
2022-09-12 12:38:50 +03:00
key={data[key].symbol}
className="bg-theme-200/50 dark:bg-theme-900/20 rounded m-1 flex-1 flex flex-row items-center justify-between p-1 text-xs"
2022-09-12 01:30:42 -05:00
>
2022-09-12 12:38:50 +03:00
<div className="font-thin pl-2">{data[key].name}</div>
<div className="flex flex-row text-right">
<div className="font-bold mr-2">
{t("common.number", {
value: data[key].quote[currencyCode].price,
style: "currency",
currency: currencyCode,
})}
2022-09-12 12:38:50 +03:00
</div>
<div
className={`font-bold w-10 mr-2 ${
data[key].quote[currencyCode][`percent_change_${state.value.value}`] > 0
? "text-emerald-300"
: "text-rose-300"
2022-09-12 12:38:50 +03:00
}`}
>
{data[key].quote[currencyCode][`percent_change_${state.value.value}`].toFixed(2)}%
2022-09-12 12:38:50 +03:00
</div>
</div>
2022-09-12 01:30:42 -05:00
</div>
2022-09-12 12:38:50 +03:00
))}
2022-09-12 01:30:42 -05:00
</div>
</Widget>
2022-09-12 12:38:50 +03:00
);
2022-09-12 01:30:42 -05:00
}