refactor: repo (#1070)
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
import { WebApplication } from '@/Application/Application'
|
||||
import { getWindowUrlParams, isDesktopApplication } from '@/Utils'
|
||||
|
||||
export const getPurchaseFlowUrl = async (application: WebApplication): Promise<string | undefined> => {
|
||||
const currentUrl = window.location.origin
|
||||
const successUrl = isDesktopApplication() ? 'standardnotes://' : currentUrl
|
||||
if (application.noAccount()) {
|
||||
return `${window.purchaseUrl}/offline?&success_url=${successUrl}`
|
||||
}
|
||||
const token = await application.getNewSubscriptionToken()
|
||||
if (token) {
|
||||
return `${window.purchaseUrl}?subscription_token=${token}&success_url=${successUrl}`
|
||||
}
|
||||
return undefined
|
||||
}
|
||||
|
||||
export const loadPurchaseFlowUrl = async (application: WebApplication): Promise<boolean> => {
|
||||
const url = await getPurchaseFlowUrl(application)
|
||||
const params = getWindowUrlParams()
|
||||
const period = params.get('period') ? `&period=${params.get('period')}` : ''
|
||||
const plan = params.get('plan') ? `&plan=${params.get('plan')}` : ''
|
||||
if (url) {
|
||||
window.location.assign(`${url}${period}${plan}`)
|
||||
return true
|
||||
}
|
||||
return false
|
||||
}
|
||||
Reference in New Issue
Block a user