mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
781c1c97c7
* Update split test config and infrastructure for plans-page-layout-v3 * Implement view for `old-plans-page-annual` variant of the new split test: - Make `annual` the default view for all elements on the old plans page - Change the tooltip background to green for monthly/student view * Implement a new design for the new plans page: - switch annual and monthly locations (annual on the left now) - change the tooltip background to green color for all choice - make the monthly-annual switch has green background if annual is chosen * Fix mobile view plans page header style GitOrigin-RevId: b2b3c6ac6adbe26bf6def7e072493f503793cfcb
187 lines
5.9 KiB
JavaScript
187 lines
5.9 KiB
JavaScript
import '../../../marketing'
|
|
import '../../../features/plans/group-plan-modal'
|
|
import * as eventTracking from '../../../infrastructure/event-tracking'
|
|
import getMeta from '../../../utils/meta'
|
|
|
|
let currentView = 'monthly'
|
|
let currentCurrencyCode = getMeta('ol-recommendedCurrency')
|
|
|
|
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) {
|
|
const plansPageLayoutV3Variant =
|
|
getMeta('ol-splitTestVariants')?.['plans-page-layout-v3'] ?? 'default'
|
|
|
|
const view = liEl.getAttribute('data-ol-view-tab')
|
|
|
|
liEl.querySelector('button').addEventListener('click', function (e) {
|
|
e.preventDefault()
|
|
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) {
|
|
const currencyCode = linkEl.getAttribute('data-ol-currencyCode-switch')
|
|
|
|
linkEl.addEventListener('click', function (e) {
|
|
e.preventDefault()
|
|
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) {
|
|
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,
|
|
period,
|
|
}
|
|
|
|
if (eventTrackingKey === DEFAULT_EVENT_TRACKING_KEY) {
|
|
eventTrackingSegmentation['plans-page-layout-v3'] = plansPageLayoutV3Variant
|
|
}
|
|
|
|
linkEl.addEventListener('click', function () {
|
|
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 makeAnnualViewAsDefault() {
|
|
const plansPageLayoutV3Variant =
|
|
getMeta('ol-splitTestVariants')?.['plans-page-layout-v3'] ?? 'default'
|
|
|
|
// there are a handful of html elements that will switch between monthly and annual view
|
|
// with the `hidden` attribute.
|
|
// On the variant `old-plans-page-annual`, we want annual as the default.
|
|
// So, instead of changing the pugfiles directly, we change the default with this
|
|
if (plansPageLayoutV3Variant === 'old-plans-page-annual') {
|
|
document.querySelectorAll('[data-ol-view]').forEach(el => {
|
|
const view = el.getAttribute('data-ol-view')
|
|
|
|
el.hidden = view !== 'annual'
|
|
})
|
|
}
|
|
}
|
|
|
|
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
|
|
}
|
|
}
|
|
|
|
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)
|
|
|
|
// only for `old-plans-page-annual` variant of the `plans-page-layout-v3` split test
|
|
makeAnnualViewAsDefault()
|