Add labs preview modal to editor GitOrigin-RevId: 0df33135febc8e94129bcdfdfb5c4981326dfab0
124 lines
3.4 KiB
TypeScript
124 lines
3.4 KiB
TypeScript
import { ReactNode, useCallback } from 'react'
|
|
import { useTranslation } from 'react-i18next'
|
|
import OLBadge from '@/shared/components/ol/ol-badge'
|
|
import { postJSON } from '@/infrastructure/fetch-json'
|
|
import OLButton from '@/shared/components/ol/ol-button'
|
|
import getMeta from '@/utils/meta'
|
|
import Notification from '../notification'
|
|
import { LabsEnableButton } from '@/shared/components/labs/labs-enable-button'
|
|
|
|
export type LabsExperimentWidgetProps = {
|
|
logo: ReactNode
|
|
title: string
|
|
description: string | ReactNode
|
|
optedInDescription?: string | ReactNode
|
|
helpPath?: string
|
|
labsEnabled?: boolean
|
|
experimentName: string
|
|
setErrorMessage: (message: string) => void
|
|
optedIn: boolean
|
|
setOptedIn: (optedIn: boolean) => void
|
|
feedbackLink?: string
|
|
}
|
|
|
|
/** @knipignore */
|
|
export function LabsExperimentWidget({
|
|
logo,
|
|
title,
|
|
description,
|
|
optedInDescription,
|
|
helpPath,
|
|
labsEnabled,
|
|
experimentName,
|
|
setErrorMessage,
|
|
optedIn,
|
|
setOptedIn,
|
|
feedbackLink,
|
|
}: LabsExperimentWidgetProps) {
|
|
const { t } = useTranslation()
|
|
|
|
const experimentsErrorMessage = t(
|
|
'we_are_unable_to_opt_you_into_this_experiment'
|
|
)
|
|
|
|
const allowedExperiments = getMeta('ol-allowedExperiments')
|
|
const disabled = !allowedExperiments.includes(experimentName) && !optedIn
|
|
|
|
const handleEnable = useCallback(async () => {
|
|
try {
|
|
const enablePath = `/labs/participate/experiments/${experimentName}/opt-in`
|
|
await postJSON(enablePath)
|
|
setOptedIn(true)
|
|
} catch (err) {
|
|
setErrorMessage(experimentsErrorMessage)
|
|
}
|
|
}, [experimentName, setErrorMessage, experimentsErrorMessage, setOptedIn])
|
|
|
|
const handleDisable = useCallback(async () => {
|
|
try {
|
|
const disablePath = `/labs/participate/experiments/${experimentName}/opt-out`
|
|
await postJSON(disablePath)
|
|
setOptedIn(false)
|
|
} catch (err) {
|
|
setErrorMessage(experimentsErrorMessage)
|
|
}
|
|
}, [experimentName, setErrorMessage, experimentsErrorMessage, setOptedIn])
|
|
|
|
return (
|
|
<div
|
|
className={`labs-experiment-widget-container ${disabled ? 'disabled-experiment' : ''}`}
|
|
>
|
|
<div className="experiment-logo-container">{logo}</div>
|
|
<div className="description-container">
|
|
<div className="title-row">
|
|
<h3 className="h4">{title}</h3>
|
|
{optedIn && <OLBadge bg="info">{t('enabled')}</OLBadge>}
|
|
</div>
|
|
<div className="small">
|
|
{optedIn && optedInDescription ? optedInDescription : description}{' '}
|
|
{helpPath && (
|
|
<a href={helpPath} target="_blank" rel="noreferrer">
|
|
{t('learn_more')}
|
|
</a>
|
|
)}
|
|
</div>
|
|
</div>
|
|
<div>
|
|
{optedIn && feedbackLink && (
|
|
<OLButton
|
|
variant="ghost"
|
|
href={feedbackLink}
|
|
target="_blank"
|
|
rel="noreferrer"
|
|
>
|
|
{t('give_feedback')}
|
|
</OLButton>
|
|
)}
|
|
</div>
|
|
<div>
|
|
{labsEnabled && (
|
|
<LabsEnableButton
|
|
optedIn={optedIn}
|
|
disabled={disabled}
|
|
handleEnable={handleEnable}
|
|
handleDisable={handleDisable}
|
|
/>
|
|
)}
|
|
</div>
|
|
{disabled && (
|
|
<>
|
|
<div />
|
|
<Notification
|
|
type="info"
|
|
content={t('experiment_full_check_back_soon')}
|
|
/>
|
|
<div />
|
|
<div />
|
|
</>
|
|
)}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default LabsExperimentWidget
|