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-21 14:37:30 +00:00
|
|
|
import ContextRepositoryViewer from "../../contexts/ContextRepositoryViewer"
|
2021-05-21 15:35:33 +00:00
|
|
|
import { ContainsFilter } from "../../utils/Filter"
|
2021-05-20 09:39:40 +00:00
|
|
|
|
|
|
|
|
2021-05-21 14:37:30 +00:00
|
|
|
export default function BoxVisualizationWordcloud({ ...props }) {
|
2021-05-20 10:16:01 +00:00
|
|
|
const { strings } = useContext(ContextLanguage)
|
2021-05-21 15:35:33 +00:00
|
|
|
const {words, appendFilter} = useContext(ContextRepositoryViewer)
|
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-21 15:35:33 +00:00
|
|
|
const onWordClick = word => {
|
|
|
|
appendFilter(new ContainsFilter(false, word.text))
|
|
|
|
}
|
|
|
|
|
2021-05-20 09:39:40 +00:00
|
|
|
return (
|
2021-05-21 15:35:33 +00:00
|
|
|
<BoxWordcloud
|
|
|
|
header={strings.wordcloud}
|
|
|
|
words={words}
|
|
|
|
callbacks={{onWordClick}}
|
|
|
|
{...props}
|
|
|
|
/>
|
2021-05-20 09:39:40 +00:00
|
|
|
)
|
|
|
|
}
|