mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
487ff4f505
GitOrigin-RevId: 66a0a423fe48a8a8a7ddd292ba218cd5038dfdb1
43 lines
1.3 KiB
JavaScript
43 lines
1.3 KiB
JavaScript
import { updateGroupModalPlanPricing } from '../../../../features/plans/group-plan-modal'
|
|
|
|
function changeGroupPlanModalRadioInputData(plan) {
|
|
const groupPlan = plan.split('_')[1]
|
|
|
|
const groupModalRadioInputEl = document.querySelector(
|
|
`[data-ol-group-plan-code="${groupPlan}"]`
|
|
)
|
|
|
|
groupModalRadioInputEl.checked = true
|
|
updateGroupModalPlanPricing()
|
|
}
|
|
|
|
function showGroupPlanModal(el) {
|
|
const plan = el.getAttribute('data-ol-start-new-subscription')
|
|
|
|
changeGroupPlanModalRadioInputData(plan)
|
|
|
|
const modalEl = $('[data-ol-group-plan-modal]')
|
|
modalEl
|
|
.on('shown.bs.modal', function () {
|
|
const path = `${window.location.pathname}${window.location.search}`
|
|
history.replaceState(null, document.title, path + '#groups')
|
|
})
|
|
.on('hidden.bs.modal', function () {
|
|
history.replaceState(null, document.title, window.location.pathname)
|
|
})
|
|
|
|
modalEl.modal()
|
|
}
|
|
|
|
export function setUpGroupSubscriptionButtonAction() {
|
|
document.querySelectorAll('[data-ol-start-new-subscription]').forEach(el => {
|
|
const plan = el.getAttribute('data-ol-start-new-subscription')
|
|
|
|
if (plan === 'group_collaborator' || plan === 'group_professional') {
|
|
el.addEventListener('click', e => {
|
|
e.preventDefault()
|
|
showGroupPlanModal(el)
|
|
})
|
|
}
|
|
})
|
|
}
|