Files
overleaf-cep/services/web/app/src/Features/Subscription/SubscriptionFormatters.js
Tyna William f624fc7e24 Merge pull request #13450 from overleaf/tw-add-renewal-time
fix subscription renewal date formatting to include UTC time

GitOrigin-RevId: 15f30c17a4f7fd866c76fdf343f1d1b02b45ba9c
2023-07-17 10:34:52 +00:00

46 lines
870 B
JavaScript

const dateformat = require('dateformat')
const currencySymbols = {
EUR: '€',
USD: '$',
GBP: '£',
SEK: 'kr',
CAD: '$',
NOK: 'kr',
DKK: 'kr',
AUD: '$',
NZD: '$',
CHF: 'Fr',
SGD: '$',
INR: '₹',
}
module.exports = {
formatPrice(priceInCents, currency) {
if (!currency) {
currency = 'USD'
}
let string = String(Math.round(priceInCents))
if (string.length === 2) {
string = `0${string}`
}
if (string.length === 1) {
string = `00${string}`
}
if (string.length === 0) {
string = '000'
}
const cents = string.slice(-2)
const dollars = string.slice(0, -2)
const symbol = currencySymbols[currency]
return `${symbol}${dollars}.${cents}`
},
formatDate(date) {
if (!date) {
return null
}
return dateformat(date, 'mmmm dS, yyyy h:MM TT Z', true)
},
}