121 lines
3.2 KiB
JavaScript
121 lines
3.2 KiB
JavaScript
var moment = require('moment')
|
|
var format = {}
|
|
|
|
module.exports = format
|
|
|
|
// Convert a snake-case phrase (eg. 'requested_by_customer') to a readable phrase (eg. 'Requested by customer')
|
|
format.snake_to_words = function(snake, options) {
|
|
if(!snake) return snake
|
|
return snake.replace(/_/g, ' ').replace(/^./, function(m) {return m.toUpperCase()})
|
|
}
|
|
|
|
format.camelToWords = function(str, os) {
|
|
if(!str) return str
|
|
return str.replace(/([A-Z])/g, " $1")
|
|
}
|
|
|
|
format.dollarsToCents = function(dollars) {
|
|
dollars = dollars.toString().replace(/[$,]/g, '')
|
|
if(isNaN(dollars) || !dollars.match(/^-?\d+(\.\d\d)?$/)) throw "Invalid dollar amount: " + dollars
|
|
return Math.round(Number(dollars) * 100)
|
|
}
|
|
|
|
format.centsToDollars = function(cents, options={}) {
|
|
if(cents === undefined) return '0'
|
|
return format.numberWithCommas((Number(cents) / 100.0).toFixed(options.noCents ? 0 : 2).toString()).replace(/\.00$/,'')
|
|
}
|
|
|
|
format.weeklyToMonthly = function(amount) {
|
|
if (amount === undefined) return 0;
|
|
return Math.round(4.3 * amount);
|
|
}
|
|
|
|
|
|
|
|
format.numberWithCommas = function(n) {
|
|
return String(n).replace(/\B(?=(\d{3})+(?!\d))/g, ",")
|
|
}
|
|
|
|
format.percent = function(x, y) {
|
|
if(!x || !y) return 0
|
|
return Math.round(y / x * 100)
|
|
}
|
|
|
|
format.pluralize = function(quantity, plural_word) {
|
|
if(quantity === undefined || quantity === null) return '0 '+plural_word
|
|
var str = String(quantity) + ' '
|
|
if(quantity !== 1) return str+plural_word
|
|
else return str + appl.to_singular(plural_word)
|
|
}
|
|
|
|
format.capitalize = function (string) {
|
|
return string.split(' ')
|
|
.map(function(s) { return s.charAt(0).toUpperCase() + s.slice(1) })
|
|
.join(' ')
|
|
}
|
|
|
|
format.toSentence = function(arr) {
|
|
if(arr.length < 2) return arr
|
|
if(arr.length === 2) return arr[0] + ' and ' + arr[1]
|
|
var last = arr.length - 1
|
|
return arr.slice(0, last).join(', ') + ', and ' + arr[last]
|
|
}
|
|
|
|
format.zeroPad = function(num, size) {
|
|
var str = num + ""
|
|
while(str.length < size) str = "0" + str
|
|
return str
|
|
}
|
|
|
|
format.sanitizeHtml = function(html) {
|
|
if(!html) return
|
|
var tagBody = '(?:[^"\'>]|"[^"]*"|\'[^\']*\')*'
|
|
var tagOrComment = new RegExp(
|
|
'<(?:'
|
|
// Comment body.
|
|
+ '!--(?:(?:-*[^->])*--+|-?)'
|
|
// Special "raw text" elements whose content should be elided.
|
|
+ '|script\\b' + tagBody + '>[\\s\\S]*?</script\\s*'
|
|
+ '|style\\b' + tagBody + '>[\\s\\S]*?</style\\s*'
|
|
// Regular name
|
|
+ '|/?[a-z]'
|
|
+ tagBody
|
|
+ ')>',
|
|
'gi')
|
|
return html.replace(tagOrComment, '').replace(/</g, '<')
|
|
}
|
|
|
|
format.sql = {}
|
|
|
|
format.sql.format_sql_array = function(str) {
|
|
if(!str) return ''
|
|
return format.toSentence(
|
|
str.replace(/[""{}]/g,'')
|
|
.split(',')
|
|
.filter(function(str) {return str !== 'NULL'})
|
|
)
|
|
}
|
|
|
|
format.date = {}
|
|
|
|
format.date.readableWithTime = function(str) {
|
|
return moment(str).format("YYYY-MM-DD h:MMa")
|
|
}
|
|
|
|
format.date.toStandard = function(str) {
|
|
return moment(str).format("YYYY-MM-DD")
|
|
}
|
|
|
|
format.date.toSimple = function(str) {
|
|
if(!str || !str.length) return ''
|
|
var d = new Date(str)
|
|
return format.zeroPad(d.getMonth() + 1, 2) + '/' +
|
|
format.zeroPad(d.getDate(), 2) + '/' +
|
|
format.zeroPad(d.getFullYear(), 2)
|
|
}
|
|
|
|
format.geography = {}
|
|
|
|
format.geography.isUS = function(str) {
|
|
return Boolean(str.match(/(^united states( of america)?$)|(^u\.?s\.?a?\.?$)/i))
|
|
}
|