aboutsummaryrefslogtreecommitdiff
path: root/web/app/AttributeFormatter.js
blob: ecab9fdb724a68311a8c81114b15e090b09408b3 (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
132
133
134
135
136
/*
 * Copyright 2015 - 2016 Anton Tananaev (anton@traccar.org)
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 */

Ext.define('Traccar.AttributeFormatter', {
    singleton: true,

    coordinateFormatter: function (key, value) {
        return Ext.getStore('CoordinateFormats').formatValue(key, value, Traccar.app.getPreference('coordinateFormat'));
    },

    speedFormatter: function (value) {
        return Ext.getStore('SpeedUnits').formatValue(value, Traccar.app.getPreference('speedUnit'));
    },

    courseFormatter: function (value) {
        var courseValues = ['N', 'NE', 'E', 'SE', 'S', 'SW', 'W', 'NW'];
        return courseValues[Math.floor(value / 45)];
    },

    distanceFormatter: function (value) {
        return Ext.getStore('DistanceUnits').formatValue(value, Traccar.app.getPreference('distanceUnit'));
    },

    voltageFormatter: function (value) {
        return Number(value.toFixed(Traccar.Style.numberPrecision)) + ' ' + Strings.sharedVoltAbbreviation;
    },

    percentageFormatter: function (value) {
        return Number(value.toFixed(Traccar.Style.numberPrecision)) + ' &#37;';
    },

    temperatureFormatter: function (value) {
        return Number(value.toFixed(Traccar.Style.numberPrecision)) + ' &deg;C';
    },

    volumeFormatter: function (value) {
        return Number(value.toFixed(Traccar.Style.numberPrecision)) + ' ' + Strings.sharedLiterAbbreviation;
    },

    consumptionFormatter: function (value) {
        return Number(value.toFixed(Traccar.Style.numberPrecision)) + ' ' + Strings.sharedLiterPerHourAbbreviation;
    },

    hoursFormatter: function (value) {
        var hours = Math.round(value / 3600000);
        return (hours + ' ' + Strings.sharedHourAbbreviation);
    },

    durationFormatter: function (value) {
        var hours, minutes;
        hours = Math.floor(value / 3600000);
        minutes = Math.round((value % 3600000) / 60000);
        return (hours + ' ' + Strings.sharedHourAbbreviation + ' ' + minutes + ' ' + Strings.sharedMinuteAbbreviation);
    },

    deviceIdFormatter: function (value) {
        return Ext.getStore('Devices').getById(value).get('name');
    },

    defaultFormatter: function (value) {
        if (typeof value === 'number') {
            return Number(value.toFixed(Traccar.Style.numberPrecision));
        } else if (typeof value === 'boolean') {
            return value ? Ext.Msg.buttonText.yes : Ext.Msg.buttonText.no;
        } else if (value instanceof Date) {
            if (Traccar.app.getPreference('twelveHourFormat', false)) {
                return Ext.Date.format(value, Traccar.Style.dateTimeFormat12);
            } else {
                return Ext.Date.format(value, Traccar.Style.dateTimeFormat24);
            }
        }
        return value;
    },

    getFormatter: function (key) {
        var self = this;
        if (key === 'latitude' || key === 'longitude') {
            return function (value) {
                return self.coordinateFormatter(key, value);
            };
        } else if (key === 'speed') {
            return this.speedFormatter;
        } else if (key === 'course') {
            return this.courseFormatter;
        } else if (key === 'accuracy') {
            return this.distanceFormatter;
        } else if (key === 'hours') {
            return this.hoursFormatter;
        } else if (key === 'duration') {
            return this.durationFormatter;
        } else if (key === 'deviceId') {
            return this.deviceIdFormatter;
        } else {
            return this.defaultFormatter;
        }
    },

    getAttributeFormatter: function (key) {
        var dataType = Ext.getStore('PositionAttributes').getAttributeDataType(key);
        if (!dataType) {
            return this.defaultFormatter;
        } else {
            if (dataType === 'distance') {
                return this.distanceFormatter;
            } else if (dataType === 'speed') {
                return this.speedFormatter;
            } else if (dataType === 'voltage') {
                return this.voltageFormatter;
            } else if (dataType === 'percentage') {
                return this.percentageFormatter;
            } else if (dataType === 'temperature') {
                return this.temperatureFormatter;
            } else if (dataType === 'volume') {
                return this.volumeFormatter;
            } else if (dataType === 'consumption') {
                return this.consumptionFormatter;
            } else {
                return this.defaultFormatter;
            }
        }
    }
});