2021-04-30 16:20:16 -04:00
|
|
|
import React, { useCallback } from 'react'
|
|
|
|
import { useTranslation } from 'react-i18next'
|
|
|
|
import { Button } from 'react-bootstrap'
|
|
|
|
import PropTypes from 'prop-types'
|
|
|
|
import * as eventTracking from '../../infrastructure/event-tracking'
|
|
|
|
|
|
|
|
export default function StartFreeTrialButton({
|
|
|
|
buttonStyle = 'info',
|
|
|
|
children,
|
|
|
|
classes = {},
|
|
|
|
setStartedFreeTrial,
|
|
|
|
source,
|
|
|
|
}) {
|
|
|
|
const { t } = useTranslation()
|
|
|
|
|
|
|
|
const handleClick = useCallback(
|
|
|
|
event => {
|
|
|
|
event.preventDefault()
|
|
|
|
|
|
|
|
eventTracking.send('subscription-funnel', 'upgraded-free-trial', source)
|
|
|
|
|
2021-05-07 05:04:51 -04:00
|
|
|
const planCode = 'collaborator_free_trial_7_days'
|
2021-04-30 16:20:16 -04:00
|
|
|
|
2021-05-07 05:04:51 -04:00
|
|
|
eventTracking.sendMB('subscription-start-trial', {
|
|
|
|
source,
|
|
|
|
plan: planCode,
|
|
|
|
})
|
2021-04-30 16:20:16 -04:00
|
|
|
|
|
|
|
if (setStartedFreeTrial) {
|
|
|
|
setStartedFreeTrial(true)
|
|
|
|
}
|
|
|
|
|
|
|
|
const params = new URLSearchParams({
|
2021-05-07 05:04:51 -04:00
|
|
|
planCode,
|
2021-04-30 16:20:16 -04:00
|
|
|
ssp: 'true',
|
|
|
|
itm_campaign: source,
|
|
|
|
})
|
|
|
|
|
|
|
|
window.open(`/user/subscription/new?${params}`)
|
|
|
|
},
|
|
|
|
[setStartedFreeTrial, source]
|
|
|
|
)
|
|
|
|
|
|
|
|
return (
|
|
|
|
<Button
|
|
|
|
bsStyle={buttonStyle}
|
|
|
|
onClick={handleClick}
|
|
|
|
className={classes.button}
|
|
|
|
>
|
|
|
|
{children || t('start_free_trial')}
|
|
|
|
</Button>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
StartFreeTrialButton.propTypes = {
|
|
|
|
buttonStyle: PropTypes.string,
|
|
|
|
children: PropTypes.any,
|
|
|
|
classes: PropTypes.shape({
|
|
|
|
button: PropTypes.string.isRequired,
|
|
|
|
}),
|
|
|
|
setStartedFreeTrial: PropTypes.func,
|
|
|
|
source: PropTypes.string.isRequired,
|
|
|
|
}
|