mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
f7131b720b
* Implement onboarding video tour split test: - Add split test infrastructure - Create new `OnboardingVideoTourModal` component - Place the component inside the editor pug template with a split test * add event segmentation for `onboarding-video-tour-close-button-click` event: 1. video: `first` | `second` 2. firstVideoWatchingTimeInSecond: total time watching first video 2. secondVideoWatchingTimeInSecond: total time watching second video (0 if skipped) * add event segmentation for: 1. `onboarding-video-tour-dismiss-button-click` 2. `onboarding-video-tour-next-button-click` 3. `onboarding-video-tour-done-button-click` with these key/value: 1. firstVideoWatchingTimeInSecond: total time watching first video 2. secondVideoWatchingTimeInSecond: total time watching second video (0 if skipped/not watched yet) * Use contentful to host video assets GitOrigin-RevId: 27a6f38d15d7a03b07455e216dda63d99983ca80
65 lines
1.9 KiB
TypeScript
65 lines
1.9 KiB
TypeScript
/* eslint-disable jsx-a11y/media-has-caption */
|
|
import { useCallback, useRef } from 'react'
|
|
import { Modal } from 'react-bootstrap'
|
|
import { Trans } from 'react-i18next'
|
|
import type { OnboardingVideoStep } from '../utils/onboarding-video-step'
|
|
|
|
type OnboardingVideoTourModalBodyProps = {
|
|
step: OnboardingVideoStep
|
|
}
|
|
|
|
export default function OnboardingVideoTourModalBody({
|
|
step,
|
|
}: OnboardingVideoTourModalBodyProps) {
|
|
const firstVideoRef = useRef<HTMLVideoElement>(null)
|
|
const secondVideoRef = useRef<HTMLVideoElement>(null)
|
|
|
|
const handleCanPlayFirstVideo = useCallback(() => {
|
|
if (firstVideoRef.current) {
|
|
firstVideoRef.current.playbackRate = 1.5
|
|
}
|
|
}, [firstVideoRef])
|
|
|
|
const handleCanPlaySecondVideo = useCallback(() => {
|
|
if (secondVideoRef.current) {
|
|
secondVideoRef.current.playbackRate = 3.0
|
|
}
|
|
}, [secondVideoRef])
|
|
|
|
return (
|
|
<Modal.Body>
|
|
<p>
|
|
{step === 'first' ? (
|
|
<Trans
|
|
i18nKey="edit_in_the_left_pane_click_recompile"
|
|
components={[<strong />]} // eslint-disable-line react/jsx-key
|
|
/>
|
|
) : (
|
|
<Trans
|
|
i18nKey="edit_in_source_to_see_your_entire_latex_code"
|
|
components={[<strong />]} // eslint-disable-line react/jsx-key
|
|
/>
|
|
)}
|
|
</p>
|
|
{step === 'first' ? (
|
|
<video
|
|
onCanPlay={handleCanPlayFirstVideo}
|
|
ref={firstVideoRef}
|
|
autoPlay
|
|
loop
|
|
width="100%"
|
|
src="https://videos.ctfassets.net/nrgyaltdicpt/7MgWt7UdNv4yJcG2OrUene/387ab289e0e408511996f1152fc856d9/onboarding-tour-step-1.mp4"
|
|
/>
|
|
) : (
|
|
<video
|
|
onCanPlay={handleCanPlaySecondVideo}
|
|
ref={secondVideoRef}
|
|
autoPlay
|
|
loop
|
|
width="100%"
|
|
src="https://videos.ctfassets.net/nrgyaltdicpt/2wYrdDqILSXaWP1LZScaDd/86a38effaeb400f42b480dba68a84b06/onboarding-tour-step-2.mp4"
|
|
/>
|
|
)}
|
|
</Modal.Body>
|
|
)
|
|
}
|