File size: 1,069 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 |
import { useEffect, useRef } from 'react'
import { useLocation } from '@remix-run/react'
export const WidgetCarbon = () => {
const location = useLocation()
const ref = useRef<HTMLDivElement>(null!)
const hasInserted = useRef(false)
useEffect(() => {
if (
typeof window !== 'undefined' &&
window.env.ENABLE_CARBON === 'true' &&
!hasInserted.current
) {
hasInserted.current = true
ref.current.innerHTML = ''
const s = document.createElement('script')
s.defer = true
s.async = true
s.id = '_carbonads_js'
s.type = 'text/javascript'
s.src = `//cdn.carbonads.com/carbon.js?serve=CEAIPK7I&placement=react-springdev`
ref.current.appendChild(s)
}
}, [hasInserted])
useEffect(() => {
const element = document.getElementById('carbonads')
if (typeof window._carbonads !== 'undefined' && element) {
window._carbonads.remove(element)
window._carbonads.refresh()
}
}, [location.pathname])
return <div className="flex justify-center my-2" ref={ref} />
}
|