Merge pull request #19664 from overleaf/jel-plans-js

[web] Fix interstitial payment page when loaded with a hash in the URL

GitOrigin-RevId: 81cdf27cd13aed149f5453a997df05949eb6b01b
This commit is contained in:
Jessica Lawshe 2024-07-30 09:15:54 -05:00 committed by Copybot
parent 2a811e1b20
commit 06b66c7ccc
2 changed files with 27 additions and 14 deletions

View file

@ -7,6 +7,7 @@ export function toggleMonthlyAnnualSwitching(
const containerEl = document.querySelector(
'[data-ol-plans-v2-m-a-switch-container]'
)
if (containerEl) {
const checkbox = containerEl.querySelector('input[type="checkbox"]')
containerEl.classList.toggle('disabled', view === 'group')
@ -15,6 +16,7 @@ export function toggleMonthlyAnnualSwitching(
checkbox.checked = currentMonthlyAnnualSwitchValue === 'monthly'
switchMonthlyAnnual(currentMonthlyAnnualSwitchValue)
}
}
export function switchMonthlyAnnual(currentMonthlyAnnualSwitchValue) {

View file

@ -117,14 +117,24 @@ function selectTab(viewTab) {
el.hidden = el.getAttribute('data-ol-plans-v2-view') !== viewTab
})
document.querySelector('[data-ol-plans-v2-m-a-tooltip]').hidden =
viewTab === 'group'
document.querySelector('[data-ol-plans-v2-license-picker-container]').hidden =
viewTab !== 'group'
const tooltipEl = document.querySelector('[data-ol-plans-v2-m-a-tooltip]')
if (tooltipEl) {
tooltipEl.hidden = viewTab === 'group'
}
document
.querySelector('[data-ol-plans-v2-m-a-switch-container]')
.setAttribute('data-ol-current-view', viewTab)
const licensePickerEl = document.querySelector(
'[data-ol-plans-v2-license-picker-container]'
)
if (licensePickerEl) {
licensePickerEl.hidden = viewTab !== 'group'
}
const monthlyAnnualSwitch = document.querySelector(
'[data-ol-plans-v2-m-a-switch-container]'
)
if (monthlyAnnualSwitch) {
monthlyAnnualSwitch.setAttribute('data-ol-current-view', viewTab)
}
if (viewTab === 'group') {
updateMainGroupPlanPricing()
@ -208,8 +218,9 @@ function setUpGroupPlanPricingChange() {
function toggleUniversityInfo(viewTab) {
const el = document.querySelector('[data-ol-plans-university-info-container]')
if (el) {
el.hidden = viewTab !== 'student'
}
}
// This is the old scheme for hashing redirection