123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165 |
- import {
- DecimalCount,
- deprecationWarning,
- formattedValueToString,
- getValueFormat,
- getValueFormats,
- getValueFormatterIndex,
- stringToJsRegex,
- TimeRange,
- ValueFormatterIndex,
- rangeUtil,
- } from '@grafana/data';
- const kbn = {
- valueFormats: {} as ValueFormatterIndex,
- intervalRegex: /(\d+(?:\.\d+)?)(ms|[Mwdhmsy])/,
- intervalsInSeconds: {
- y: 31536000,
- M: 2592000,
- w: 604800,
- d: 86400,
- h: 3600,
- m: 60,
- s: 1,
- ms: 0.001,
- } as { [index: string]: number },
- regexEscape: (value: string) => value.replace(/[\\^$*+?.()|[\]{}\/]/g, '\\$&'),
- /** @deprecated since 7.2, use grafana/data */
- roundInterval: (interval: number) => {
- deprecationWarning('kbn.ts', 'kbn.roundInterval()', '@grafana/data');
- return rangeUtil.roundInterval(interval);
- },
- /** @deprecated since 7.2, use grafana/data */
- secondsToHms: (s: number) => {
- deprecationWarning('kbn.ts', 'kbn.secondsToHms()', '@grafana/data');
- return rangeUtil.secondsToHms(s);
- },
- secondsToHhmmss: (seconds: number) => {
- const strings: string[] = [];
- const numHours = Math.floor(seconds / 3600);
- const numMinutes = Math.floor((seconds % 3600) / 60);
- const numSeconds = Math.floor((seconds % 3600) % 60);
- numHours > 9 ? strings.push('' + numHours) : strings.push('0' + numHours);
- numMinutes > 9 ? strings.push('' + numMinutes) : strings.push('0' + numMinutes);
- numSeconds > 9 ? strings.push('' + numSeconds) : strings.push('0' + numSeconds);
- return strings.join(':');
- },
- toPercent: (nr: number, outOf: number) => Math.floor((nr / outOf) * 10000) / 100 + '%',
- addSlashes: (str: string) => str.replace(/[\'\"\\0]/g, '\\$&'),
- /** @deprecated since 7.2, use grafana/data */
- describeInterval: (str: string) => {
- deprecationWarning('kbn.ts', 'kbn.describeInterval()', '@grafana/data');
- return rangeUtil.describeInterval(str);
- },
- /** @deprecated since 7.2, use grafana/data */
- intervalToSeconds: (str: string) => {
- deprecationWarning('kbn.ts', 'rangeUtil.intervalToSeconds()', '@grafana/data');
- return rangeUtil.intervalToSeconds(str);
- },
- /** @deprecated since 7.2, use grafana/data */
- intervalToMs: (str: string) => {
- deprecationWarning('kbn.ts', 'rangeUtil.intervalToMs()', '@grafana/data');
- return rangeUtil.intervalToMs(str);
- },
- /** @deprecated since 7.2, use grafana/data */
- calculateInterval: (range: TimeRange, resolution: number, lowLimitInterval?: string) => {
- deprecationWarning('kbn.ts', 'kbn.calculateInterval()', '@grafana/data');
- return rangeUtil.calculateInterval(range, resolution, lowLimitInterval);
- },
- queryColorDot: (color: string, diameter: string) => {
- return (
- '<div class="icon-circle" style="' +
- ['display:inline-block', 'color:' + color, 'font-size:' + diameter + 'px'].join(';') +
- '"></div>'
- );
- },
- slugifyForUrl: (str: string) => {
- return str
- .toLowerCase()
- .replace(/[^\w ]+/g, '')
- .replace(/ +/g, '-');
- },
- /** @deprecated since 6.1, use grafana/data */
- stringToJsRegex: (str: string) => {
- deprecationWarning('kbn.ts', 'kbn.stringToJsRegex()', '@grafana/data');
- return stringToJsRegex(str);
- },
- toFixed: (value: number | null, decimals: number) => {
- if (value === null) {
- return '';
- }
- const factor = decimals ? Math.pow(10, Math.max(0, decimals)) : 1;
- const formatted = String(Math.round(value * factor) / factor);
- // if exponent return directly
- if (formatted.indexOf('e') !== -1 || value === 0) {
- return formatted;
- }
- // If tickDecimals was specified, ensure that we have exactly that
- // much precision; otherwise default to the value's own precision.
- if (decimals != null) {
- const decimalPos = formatted.indexOf('.');
- const precision = decimalPos === -1 ? 0 : formatted.length - decimalPos - 1;
- if (precision < decimals) {
- return (precision ? formatted : formatted + '.') + String(factor).slice(1, decimals - precision + 1);
- }
- }
- return formatted;
- },
- toFixedScaled: (
- value: number,
- decimals: number,
- scaledDecimals: number | null,
- additionalDecimals: number,
- ext: number
- ) => {
- if (scaledDecimals === null) {
- return kbn.toFixed(value, decimals) + ext;
- } else {
- return kbn.toFixed(value, scaledDecimals + additionalDecimals) + ext;
- }
- },
- roundValue: (num: number, decimals: number) => {
- if (num === null) {
- return null;
- }
- const n = Math.pow(10, decimals);
- const formatted = (n * num).toFixed(decimals);
- return Math.round(parseFloat(formatted)) / n;
- },
- // FORMAT MENU
- getUnitFormats: getValueFormats,
- };
- /**
- * Backward compatible layer for value formats to support old plugins
- */
- if (typeof Proxy !== 'undefined') {
- kbn.valueFormats = new Proxy(kbn.valueFormats, {
- get(target, name, receiver) {
- if (typeof name !== 'string') {
- throw { message: `Value format ${String(name)} is not a string` };
- }
- const formatter = getValueFormat(name);
- if (formatter) {
- // Return the results as a simple string
- return (value: number, decimals?: DecimalCount, scaledDecimals?: DecimalCount, isUtc?: boolean) => {
- return formattedValueToString(formatter(value, decimals, scaledDecimals, isUtc ? 'utc' : 'browser'));
- };
- }
- // default to look here
- return Reflect.get(target, name, receiver);
- },
- });
- } else {
- kbn.valueFormats = getValueFormatterIndex();
- }
- export default kbn;
|