Skip to content

Instantly share code, notes, and snippets.

@davidjb
Created August 18, 2020 05:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davidjb/17dc9259ae4fbe38f6d2887944ab8a5c to your computer and use it in GitHub Desktop.
Save davidjb/17dc9259ae4fbe38f6d2887944ab8a5c to your computer and use it in GitHub Desktop.
Reloadable react-wordcloud
import React, { useState } from 'react'
import { useInterval, useBoolean } from 'react-use'
import { Row, Col, Alert, Button } from 'react-bootstrap'
import ReactWordcloud from 'react-wordcloud'
import 'tippy.js/dist/tippy.css'
import 'tippy.js/animations/scale.css'
function isCanvasAllowed() {
return (
typeof document !== 'undefined' &&
document
.createElement('canvas')
.getContext('2d')
.getImageData(0, 0, 1, 1)
.data.every(v => v === 0)
)
}
export default function Wordcloud(props) {
const [canvasAllowed, setCanvasAllowed] = useState(isCanvasAllowed())
const [isRunning, setIsRunning] = useBoolean(false)
useInterval(
() => {
if (isCanvasAllowed()) {
setIsRunning(false)
setCanvasAllowed(true)
}
},
isRunning ? 1000 : null
)
if (!canvasAllowed) {
return (
<Row className="justify-content-center">
<Col md={10} lg={6}>
<Alert variant="warning">
<p>
This word cloud requires access to your browser's canvas image
data. Please allow access in your browser before continuing.
</p>
<Button
onClick={() => {
isCanvasAllowed() // Prompt for canvas access
setIsRunning(true)
}}
>
Allow data access
</Button>
</Alert>
</Col>
</Row>
)
}
return <ReactWordcloud {...props} />
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment