1
Fork 0
mirror of https://github.com/pds-nest/nest.git synced 2024-11-22 21:14:18 +00:00
pds-2021-g2-nest/nest_frontend/components/interactive/BoxVisualizationWordcloud.js

23 lines
613 B
JavaScript
Raw Normal View History

2021-05-20 10:15:13 +00:00
import React, { useContext } from "react"
2021-05-20 09:39:40 +00:00
import BoxWordcloud from "../base/BoxWordcloud"
import ContextLanguage from "../../contexts/ContextLanguage"
2021-05-20 13:34:05 +00:00
import BoxFull from "../base/BoxFull"
import Empty from "./Empty"
2021-05-20 09:39:40 +00:00
2021-05-20 10:15:13 +00:00
export default function BoxVisualizationWordcloud({ words, ...props }) {
2021-05-20 10:16:01 +00:00
const { strings } = useContext(ContextLanguage)
2021-05-20 09:39:40 +00:00
2021-05-20 13:34:05 +00:00
if(words.length === 0) {
return (
<BoxFull header={strings.wordcloud} {...props}>
<Empty/>
</BoxFull>
)
}
2021-05-20 09:39:40 +00:00
return (
<BoxWordcloud header={strings.wordcloud} words={words} {...props}/>
)
}