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}/>
|
|
|
|
)
|
|
|
|
}
|