mirror of
https://github.com/getredash/redash.git
synced 2026-03-22 19:00:09 -04:00
87 lines
2.3 KiB
JavaScript
87 lines
2.3 KiB
JavaScript
import moment from 'moment/moment';
|
|
import numeral from 'numeral';
|
|
import { isString, isArray, isUndefined, isFinite, isNil, toString } from 'lodash';
|
|
|
|
numeral.options.scalePercentBy100 = false;
|
|
|
|
// eslint-disable-next-line
|
|
const urlPattern = /(^|[\s\n]|<br\/?>)((?:https?|ftp):\/\/[\-A-Z0-9+\u0026\u2019@#\/%?=()~_|!:,.;]*[\-A-Z0-9+\u0026@#\/%=~()_|])/gi;
|
|
|
|
const hasOwnProperty = Object.prototype.hasOwnProperty;
|
|
|
|
export function createTextFormatter(highlightLinks) {
|
|
if (highlightLinks) {
|
|
return (value) => {
|
|
if (isString(value)) {
|
|
value = value.replace(urlPattern, '$1<a href="$2" target="_blank">$2</a>');
|
|
}
|
|
return toString(value);
|
|
};
|
|
}
|
|
return value => toString(value);
|
|
}
|
|
|
|
function toMoment(value) {
|
|
if (moment.isMoment(value)) {
|
|
return value;
|
|
}
|
|
if (isFinite(value)) {
|
|
return moment(value);
|
|
}
|
|
// same as default `moment(value)`, but avoid fallback to `new Date()`
|
|
return moment(toString(value), [moment.ISO_8601, moment.RFC_2822]);
|
|
}
|
|
|
|
export function createDateTimeFormatter(format) {
|
|
if (isString(format) && (format !== '')) {
|
|
return (value) => {
|
|
const wrapped = toMoment(value);
|
|
return wrapped.isValid() ? wrapped.format(format) : toString(value);
|
|
};
|
|
}
|
|
return value => toString(value);
|
|
}
|
|
|
|
export function createBooleanFormatter(values) {
|
|
if (isArray(values)) {
|
|
if (values.length >= 2) {
|
|
// Both `true` and `false` specified
|
|
return (value) => {
|
|
if (isNil(value)) {
|
|
return '';
|
|
}
|
|
return '' + values[value ? 1 : 0];
|
|
};
|
|
} else if (values.length === 1) {
|
|
// Only `true`
|
|
return value => (value ? values[0] : '');
|
|
}
|
|
}
|
|
return (value) => {
|
|
if (isNil(value)) {
|
|
return '';
|
|
}
|
|
return value ? 'true' : 'false';
|
|
};
|
|
}
|
|
|
|
export function createNumberFormatter(format) {
|
|
if (isString(format) && (format !== '')) {
|
|
const n = numeral(0); // cache `numeral` instance
|
|
return value => (value === null || value === '' ? '' : n.set(value).format(format));
|
|
}
|
|
return value => toString(value);
|
|
}
|
|
|
|
export function formatSimpleTemplate(str, data) {
|
|
if (!isString(str)) {
|
|
return '';
|
|
}
|
|
return str.replace(/{{\s*([^\s]+?)\s*}}/g, (match, prop) => {
|
|
if (hasOwnProperty.call(data, prop) && !isUndefined(data[prop])) {
|
|
return data[prop];
|
|
}
|
|
return match;
|
|
});
|
|
}
|