1
Fork 0
mirror of https://github.com/pds-nest/nest.git synced 2025-03-11 02:57:39 +00:00
pds-2021-g2-nest/nest_frontend/components/interactive/BoxVisualizationWordcloud.js

23 lines
613 B
JavaScript
Raw Normal View History

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