mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
5ae4e68380
[web] old plans page: fix event segmentation for plans-page-click GitOrigin-RevId: 9be23a9cf9d92b88d6fbe8c6e2b941cf3ac63344
202 lines
6.2 KiB
JavaScript
202 lines
6.2 KiB
JavaScript
import '../../../marketing'
|
|
import '../../../features/plans/group-plan-modal'
|
|
import * as eventTracking from '../../../infrastructure/event-tracking'
|
|
import getMeta from '../../../utils/meta'
|
|
|
|
let currentView = getMeta('ol-currentView')
|
|
let currentCurrencyCode = getMeta('ol-recommendedCurrency')
|
|
const plansPageLayoutV3Variant =
|
|
getMeta('ol-splitTestVariants')?.['plans-page-layout-v3'] ?? 'default'
|
|
|
|
if (window.location.href.includes('validate-pre-rendering=true')) {
|
|
validatePreRendering()
|
|
}
|
|
|
|
function selectView(view) {
|
|
document.querySelectorAll('[data-ol-view-tab]').forEach(el => {
|
|
if (el.getAttribute('data-ol-view-tab') === view) {
|
|
el.classList.add('active')
|
|
} else {
|
|
el.classList.remove('active')
|
|
}
|
|
})
|
|
|
|
document.querySelectorAll('[data-ol-view]').forEach(el => {
|
|
el.hidden = el.getAttribute('data-ol-view') !== view
|
|
})
|
|
|
|
updateAnnualSavingBanner(view)
|
|
currentView = view
|
|
updateLinkTargets()
|
|
}
|
|
|
|
function setUpViewSwitching(liEl) {
|
|
liEl.querySelector('button').addEventListener('click', function (e) {
|
|
e.preventDefault()
|
|
|
|
const view = liEl.getAttribute('data-ol-view-tab')
|
|
eventTracking.send('subscription-funnel', 'plans-page', `${view}-prices`)
|
|
eventTracking.sendMB('plans-page-toggle', {
|
|
button: view,
|
|
'plans-page-layout-v3': plansPageLayoutV3Variant,
|
|
})
|
|
selectView(view)
|
|
})
|
|
}
|
|
|
|
function setUpCurrencySwitching(linkEl) {
|
|
linkEl.addEventListener('click', function (e) {
|
|
e.preventDefault()
|
|
|
|
const currencyCode = linkEl.getAttribute('data-ol-currencyCode-switch')
|
|
document.querySelectorAll('[data-ol-currencyCode]').forEach(el => {
|
|
el.hidden = el.getAttribute('data-ol-currencyCode') !== currencyCode
|
|
})
|
|
currentCurrencyCode = currencyCode
|
|
eventTracking.sendMB('plans-page-currency', { currency: currencyCode })
|
|
updateLinkTargets()
|
|
})
|
|
}
|
|
|
|
function setUpSubscriptionTracking(linkEl) {
|
|
linkEl.addEventListener('click', function () {
|
|
const plansPageLayoutV3Variant =
|
|
getMeta('ol-splitTestVariants')?.['plans-page-layout-v3'] ?? 'default'
|
|
|
|
const plan =
|
|
linkEl.getAttribute('data-ol-tracking-plan') ||
|
|
linkEl.getAttribute('data-ol-start-new-subscription')
|
|
|
|
const location = linkEl.getAttribute('data-ol-location')
|
|
const period = linkEl.getAttribute('data-ol-item-view') || currentView
|
|
|
|
const DEFAULT_EVENT_TRACKING_KEY = 'plans-page-click'
|
|
|
|
const eventTrackingKey =
|
|
linkEl.getAttribute('data-ol-event-tracking-key') ||
|
|
DEFAULT_EVENT_TRACKING_KEY
|
|
|
|
const eventTrackingSegmentation = {
|
|
button: plan,
|
|
location,
|
|
'billing-period': period,
|
|
}
|
|
|
|
if (eventTrackingKey === DEFAULT_EVENT_TRACKING_KEY) {
|
|
eventTrackingSegmentation['plans-page-layout-v3'] =
|
|
plansPageLayoutV3Variant
|
|
}
|
|
|
|
const customLabel = linkEl.getAttribute('data-ol-tracking-label')
|
|
const computedLabel = currentView === 'annual' ? `${plan}_annual` : plan
|
|
const label = customLabel || computedLabel
|
|
|
|
eventTracking.sendMB('plans-page-start-trial') // deprecated by plans-page-click
|
|
eventTracking.send('subscription-funnel', 'sign_up_now_button', label) // deprecated by plans-page-click
|
|
eventTracking.sendMB(eventTrackingKey, eventTrackingSegmentation)
|
|
})
|
|
}
|
|
|
|
const searchParams = new URLSearchParams(window.location.search)
|
|
|
|
export function updateLinkTargets() {
|
|
document.querySelectorAll('[data-ol-start-new-subscription]').forEach(el => {
|
|
if (el.hasAttribute('data-ol-has-custom-href')) return
|
|
|
|
const plan = el.getAttribute('data-ol-start-new-subscription')
|
|
const view = el.getAttribute('data-ol-item-view') || currentView
|
|
const suffix = view === 'annual' ? `-annual` : `_free_trial_7_days`
|
|
const planCode = `${plan}${suffix}`
|
|
|
|
const location = el.getAttribute('data-ol-location')
|
|
const itmCampaign = searchParams.get('itm_campaign') || 'plans'
|
|
const itmContent =
|
|
itmCampaign === 'plans' ? location : searchParams.get('itm_content')
|
|
|
|
const queryString = new URLSearchParams({
|
|
planCode,
|
|
currency: currentCurrencyCode,
|
|
itm_campaign: itmCampaign,
|
|
})
|
|
|
|
if (itmContent) {
|
|
queryString.set('itm_content', itmContent)
|
|
}
|
|
|
|
if (searchParams.get('itm_referrer')) {
|
|
queryString.set('itm_referrer', searchParams.get('itm_referrer'))
|
|
}
|
|
|
|
el.href = `/user/subscription/new?${queryString.toString()}`
|
|
})
|
|
}
|
|
|
|
function updateAnnualSavingBanner(view) {
|
|
const tooltipEl = document.querySelector('[data-ol-annual-saving-tooltip]')
|
|
|
|
if (view === 'annual') {
|
|
tooltipEl.classList.add('annual-selected')
|
|
} else {
|
|
tooltipEl.classList.remove('annual-selected')
|
|
}
|
|
}
|
|
|
|
function selectViewFromHash() {
|
|
try {
|
|
const params = new URLSearchParams(window.location.hash.substring(1))
|
|
const view = params.get('view')
|
|
if (view) {
|
|
// make sure the selected view is valid
|
|
if (document.querySelector(`[data-ol-view-tab="${view}"]`)) {
|
|
selectView(view)
|
|
// clear the hash so it doesn't persist when switching plans
|
|
window.location.hash = ''
|
|
}
|
|
}
|
|
} catch {
|
|
// do nothing
|
|
}
|
|
}
|
|
|
|
function validatePreRendering() {
|
|
document.querySelectorAll('[data-ol-view-tab]').forEach(el => {
|
|
console.assert(
|
|
(el.getAttribute('data-ol-view-tab') === currentView) ===
|
|
el.classList.contains('active'),
|
|
el
|
|
)
|
|
})
|
|
|
|
document.querySelectorAll('[data-ol-view]').forEach(el => {
|
|
console.assert(
|
|
(el.hidden === el.getAttribute('data-ol-view')) !== currentView,
|
|
el
|
|
)
|
|
})
|
|
|
|
const plansPageLayoutV3Variant = getMeta('ol-splitTestVariants')?.[
|
|
'plans-page-layout-v3'
|
|
]
|
|
if (plansPageLayoutV3Variant !== 'new-plans-page') {
|
|
const tooltipEl = document.querySelector('[data-ol-annual-saving-tooltip]')
|
|
console.assert(
|
|
(currentView === 'annual') ===
|
|
tooltipEl.classList.contains('annual-selected'),
|
|
tooltipEl
|
|
)
|
|
}
|
|
|
|
console.log('validated pre-rendering')
|
|
}
|
|
|
|
document.querySelectorAll('[data-ol-view-tab]').forEach(setUpViewSwitching)
|
|
document
|
|
.querySelectorAll('[data-ol-currencyCode-switch]')
|
|
.forEach(setUpCurrencySwitching)
|
|
document
|
|
.querySelectorAll('[data-ol-start-new-subscription]')
|
|
.forEach(setUpSubscriptionTracking)
|
|
updateLinkTargets()
|
|
|
|
selectViewFromHash()
|
|
window.addEventListener('hashchange', selectViewFromHash)
|