summaryrefslogtreecommitdiffstats
path: root/glances/outputs/static/js/filters.js
blob: da8002d9ed633aeae56960c133cf58f8bacc2a36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
import { min } from 'lodash';
import sanitizeHtml from 'sanitize-html';

export function bits(bits, low_precision) {
    bits = Math.round(bits) * 8;
    return bytes(bits, low_precision) + 'b';
}

export function bytes(bytes, low_precision) {
    low_precision = low_precision || false;
    if (isNaN(parseFloat(bytes)) || !isFinite(bytes) || bytes == 0) {
        return bytes;
    }

    const symbols = ['Y', 'Z', 'E', 'P', 'T', 'G', 'M', 'K'];
    const prefix = {
        Y: 1208925819614629174706176,
        Z: 1180591620717411303424,
        E: 1152921504606846976,
        P: 1125899906842624,
        T: 1099511627776,
        G: 1073741824,
        M: 1048576,
        K: 1024
    };

    for (var i = 0; i < symbols.length; i++) {
        var symbol = symbols[i];
        var value = bytes / prefix[symbol];

        if (value > 1) {
            var decimal_precision = 0;

            if (value < 10) {
                decimal_precision = 2;
            } else if (value < 100) {
                decimal_precision = 1;
            }

            if (low_precision) {
                if (symbol == 'MK') {
                    decimal_precision = 0;
                } else {
                    decimal_precision = min([1, decimal_precision]);
                }
            } else if (symbol == 'K') {
                decimal_precision = 0;
            }

            return parseFloat(value).toFixed(decimal_precision) + symbol;
        }
    }

    return bytes.toFixed(0);
}

export function exclamation(input) {
    if (input === undefined || input === '') {
        return '?';
    }
    return input;
}

export function leftPad(value, length, chars) {
    length = length || 0;
    chars = chars || ' ';
    return String(value).padStart(length, chars);
}

export function limitTo(value, limit) {
    if (typeof value.slice !== 'function') {
        value = String(value);
    }
    return value.slice(0, limit);
}

export function minSize(input, max, begin = true) {
    max = max || 8;
    if (input.length > max) {
        if (begin) {
            return input.substring(0, max - 1) + '_';
        } else {
            return '_' + input.substring(input.length - max + 1);
        }
    }
    return input;
}

export function nl2br(input) {
    function escapeHTML(html) {
        var div = document.createElement('div');
        div.innerText = html;
        return div.innerHTML;
    }

    if (typeof input === 'undefined') {
        return input;
    }

    var sanitizedInput = escapeHTML(input);
    var html = sanitizedInput.replace(/\n/g, '<br>');

    return sanitizeHtml(html);
}

export function number(value, options) {
    return new Intl.NumberFormat(
        undefined,
        typeof options === 'number' ? { maximumFractionDigits: options } : options
    ).format(value);
}

export function timemillis(array) {
    var sum = 0.0;
    for (var i = 0; i < array.length; i++) {
        sum += array[i] * 1000.0;
    }
    return sum;
}

export function timedelta(value) {
    var sum = timemillis(value);
    var d = new Date(sum);
    var doy = Math.floor((d - new Date(d.getFullYear(), 0, 0)) / 1000 / 60 / 60 / 24);
    return {
        hours: d.getUTCHours() + (doy - 1) * 24,
        minutes: d.getUTCMinutes(),
        seconds: d.getUTCSeconds(),
        milliseconds: parseInt('' + d.getUTCMilliseconds() / 10)
    };
}