3ec64c989b
* Add flight level field to PIREP field closes #401 * Default value for distance 0 closes #400 * Block airline deletion if assets exist #367 * Formatting * Move some of the base exception classes * Fix skin references to use settings table * Set default for theme name if setting is wrong
63 lines
1.0 KiB
JavaScript
63 lines
1.0 KiB
JavaScript
|
|
const rivets = require('rivets');
|
|
|
|
/**
|
|
* Generic formatter to prepend
|
|
*
|
|
* @param value
|
|
* @param prepend
|
|
*
|
|
* @returns {*}
|
|
*/
|
|
rivets.formatters.prepend = function (value, prepend) {
|
|
return prepend + value;
|
|
};
|
|
|
|
/**
|
|
* Format minutes into HHh MMm
|
|
*
|
|
* @param value
|
|
*
|
|
* @returns {string}
|
|
*/
|
|
rivets.formatters.time_hm = function (value) {
|
|
const hours = Math.floor(value / 60);
|
|
const mins = value % 60;
|
|
return `${hours}h ${mins}m`;
|
|
};
|
|
|
|
/**
|
|
*
|
|
* @param value
|
|
* @param len
|
|
*
|
|
* @returns {boolean}
|
|
*/
|
|
rivets.formatters.gt = (value, len) => value.length > len;
|
|
|
|
/**
|
|
*
|
|
* @param value
|
|
* @param len
|
|
*
|
|
* @returns {boolean}
|
|
*/
|
|
rivets.formatters.lt = (value, len) => value.length < len;
|
|
|
|
/**
|
|
*
|
|
* @param value
|
|
* @param len
|
|
*
|
|
* @returns {boolean}
|
|
*/
|
|
rivets.formatters.eq = (value, len) => value.length > len;
|
|
|
|
/**
|
|
* Use a default value if value is null or blank
|
|
*
|
|
* @param value Value to use
|
|
* @param def Default value to use if value is null
|
|
*/
|
|
rivets.formatters.fallback = (value, def) => value || def;
|