1
Fork 0
mirror of https://github.com/pds-nest/nest.git synced 2024-11-22 13:04:19 +00:00
pds-2021-g2-nest/nest_frontend/components/interactive/BoxWordcloud.js
2021-05-18 02:48:34 +02:00

36 lines
1.1 KiB
JavaScript

import React, { useContext } from "react"
import BoxFull from "../base/BoxFull"
import ReactWordcloud from "@steffo/nest-react-wordcloud"
import ContextLanguage from "../../contexts/ContextLanguage"
/**
* A Box which displays a wordcloud.
*
* @param words - A list of word objects, made of a string "text" and a number "value"
* @param props - Additional props to pass to the box.
* @returns {JSX.Element}
* @constructor
*/
export default function BoxWordcloud({ words, props }) {
const { strings } = useContext(ContextLanguage)
return (
<BoxFull header={strings.wordcloud} {...props}>
<div style={{ "width": "100%", "height": "100%" }}>
<ReactWordcloud
options={{
colors: [
"var(--fg-primary)",
],
fontFamily: "Bree Serif",
fontSizes: [12, 128],
size: undefined,
deterministic: true,
}}
words={words}
/>
</div>
</BoxFull>
)
}