diff --git a/packages/react-components/src/components/gif.tsx b/packages/react-components/src/components/gif.tsx index 3ef9a531..9a865f92 100644 --- a/packages/react-components/src/components/gif.tsx +++ b/packages/react-components/src/components/gif.tsx @@ -1,16 +1,9 @@ 'use client' import { giphyBlue, giphyGreen, giphyPurple, giphyRed, giphyYellow } from '@giphy/colors' import { IGif, IUser, ImageAllTypes } from '@giphy/js-types' -import { - Logger, - getAltText, - getBestRendition, - getGifHeight, - constructMoatData, - injectTrackingPixel, -} from '@giphy/js-util' +import { Logger, getAltText, getBestRendition, getGifHeight } from '@giphy/js-util' +import MoatTracking from './moat-tracking' import 'intersection-observer' -import moat from '@giphy/moat-loader' import React, { ElementType, ReactNode, SyntheticEvent, useContext, useEffect, useRef, useState } from 'react' import styled from 'styled-components' import * as pingback from '../util/pingback' @@ -19,8 +12,6 @@ import VerifiedBadge from './attribution/verified-badge' import { PingbackContext } from './pingback-context-manager' import { GifOverlayProps } from './types' -const moatLoader = moat.loadMoatTag('giphydisplay879451385633', 'https://giphyscripts.s3.amazonaws.com/moat/moatad.js') - const Container = styled.div` position: relative; display: block; @@ -60,11 +51,6 @@ export type EventProps = { onGifKeyPress?: (gif: IGif, e: SyntheticEvent) => void } -function useMutableRef(initialValue?: T) { - const [ref] = useState<{ current: T | undefined }>({ current: initialValue }) - return ref -} - type GifProps = { gif: IGif width: number @@ -144,8 +130,6 @@ const Gif = ({ const hoverTimeout = useRef() // fire onseen ref (changes per gif, so need a ref) const sendOnSeen = useRef<(_: IntersectionObserverEntry) => void>(noop) - // moat ad number - const moatAdNumber = useMutableRef() // are we displaying an ad const isAd = Object.keys(bottleData).length > 0 // custom pingback @@ -212,28 +196,8 @@ const Gif = ({ } } - const trackWithMoat = async () => { - if (shouldShowMedia && container.current) { - const { bottle_data: bottleData, response_id } = gif - const moatCompatibleData = constructMoatData(bottleData as any) - if (moatCompatibleData) { - moatCompatibleData.zMoatSession = response_id - await moatLoader - if (container.current) { - moatAdNumber.current = moat.startTracking(container.current, moatCompatibleData) - } - } - } - } - const onImageLoad = (e: SyntheticEvent) => { watchGif() - if (isAd) { - if (moatAdNumber.current === undefined) { - trackWithMoat() - } - injectTrackingPixel(bottleData.tags) - } onGifVisible(gif, e) // gif is visible, perhaps just partially setLoadedClassName(Gif.imgLoadedClassName) } @@ -250,23 +214,6 @@ const Gif = ({ // eslint-disable-next-line react-hooks/exhaustive-deps }, [gif.id]) - const stopTracking = () => { - // if we have a moat ad number - if (moatAdNumber.current !== undefined) { - // stop tracking - moat.stopTracking(moatAdNumber.current) - // remove the moat ad number - moatAdNumber.current = undefined - } - } - - // if this component goes from showing an ad to not an ad - useEffect(() => { - if (!shouldShowMedia) { - return () => stopTracking() - } - }, [shouldShowMedia]) - useEffect(() => { showGifObserver.current = new IntersectionObserver(([entry]: IntersectionObserverEntry[]) => { const { isIntersecting } = entry @@ -283,7 +230,6 @@ const Gif = ({ if (showGifObserver.current) showGifObserver.current.disconnect() if (fullGifObserver.current) fullGifObserver.current.disconnect() if (hoverTimeout.current) clearTimeout(hoverTimeout.current) - stopTracking() } }, []) const height = forcedHeight || getGifHeight(gif, width) @@ -345,6 +291,7 @@ const Gif = ({ onLoad={shouldShowMedia ? onImageLoad : () => {}} /> + {isAd && } {Overlay && ( // only render the overlay on the client since it depends on shouldShowMedia