diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2017-04-18 16:11:39 +1200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-18 16:11:39 +1200 |
commit | 648d5fe1e4a0d92b79410572d386dac45b4e8d36 (patch) | |
tree | b5d7911e71da3ec95f32a2f2161f248266363cbe /web/app/store | |
parent | 13b12ad936020476f8911fde498a820f94115a79 (diff) | |
parent | 6c8e4716489bc5d05a0c7794ee1cee342de417e3 (diff) | |
download | trackermap-web-648d5fe1e4a0d92b79410572d386dac45b4e8d36.tar.gz trackermap-web-648d5fe1e4a0d92b79410572d386dac45b4e8d36.tar.bz2 trackermap-web-648d5fe1e4a0d92b79410572d386dac45b4e8d36.zip |
Merge pull request #467 from Abyss777/known_attributes
Known attributes
Diffstat (limited to 'web/app/store')
-rw-r--r-- | web/app/store/DeviceAttributes.js | 52 | ||||
-rw-r--r-- | web/app/store/GeofenceAttributes.js | 28 | ||||
-rw-r--r-- | web/app/store/GroupAttributes.js | 44 | ||||
-rw-r--r-- | web/app/store/ServerAttributes.js | 41 | ||||
-rw-r--r-- | web/app/store/UserAttributes.js | 76 |
5 files changed, 241 insertions, 0 deletions
diff --git a/web/app/store/DeviceAttributes.js b/web/app/store/DeviceAttributes.js new file mode 100644 index 00000000..a4303546 --- /dev/null +++ b/web/app/store/DeviceAttributes.js @@ -0,0 +1,52 @@ +/* + * Copyright 2017 Anton Tananaev (anton@traccar.org) + * Copyright 2017 Andrey Kunitsyn (andrey@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.store.DeviceAttributes', { + extend: 'Ext.data.Store', + model: 'Traccar.model.KnownAttribute', + proxy: 'memory', + + data: [{ + key: 'speedLimit', + name: Strings.attributeSpeedLimit, + type: 'number' + }, { + key: 'report.ignoreOdometer', + name: Strings.attributeReportIgnoreOdometer, + type: 'boolean' + }, { + key: 'maintenance.start', + name: Strings.attributeMaintenanceStart, + type: 'number' + }, { + key: 'maintenance.interval', + name: Strings.attributeMaintenanceInterval, + type: 'number' + }, { + key: 'web.reportColor', + name: Strings.attributeWebReportColor, + type: 'color' + }, { + key: 'devicePassword', + name: Strings.attributeDevicePassword, + type: 'string' + }, { + key: 'processing.copyAttributes', + name: Strings.attributeProcessingCopyAttributes, + type: 'string' + }] +}); diff --git a/web/app/store/GeofenceAttributes.js b/web/app/store/GeofenceAttributes.js new file mode 100644 index 00000000..9034b3f3 --- /dev/null +++ b/web/app/store/GeofenceAttributes.js @@ -0,0 +1,28 @@ +/* + * Copyright 2017 Anton Tananaev (anton@traccar.org) + * Copyright 2017 Andrey Kunitsyn (andrey@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.store.GeofenceAttributes', { + extend: 'Ext.data.Store', + model: 'Traccar.model.KnownAttribute', + proxy: 'memory', + + data: [{ + key: 'color', + name: Strings.attributeColor, + type: 'color' + }] +}); diff --git a/web/app/store/GroupAttributes.js b/web/app/store/GroupAttributes.js new file mode 100644 index 00000000..35caa8c7 --- /dev/null +++ b/web/app/store/GroupAttributes.js @@ -0,0 +1,44 @@ +/* + * Copyright 2017 Anton Tananaev (anton@traccar.org) + * Copyright 2017 Andrey Kunitsyn (andrey@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.store.GroupAttributes', { + extend: 'Ext.data.Store', + model: 'Traccar.model.KnownAttribute', + proxy: 'memory', + + data: [{ + key: 'speedLimit', + name: Strings.attributeSpeedLimit, + type: 'number' + }, { + key: 'report.ignoreOdometer', + name: Strings.attributeReportIgnoreOdometer, + type: 'boolean' + }, { + key: 'maintenance.start', + name: Strings.attributeMaintenanceStart, + type: 'number' + }, { + key: 'maintenance.interval', + name: Strings.attributeMaintenanceInterval, + type: 'number' + }, { + key: 'processing.copyAttributes', + name: Strings.attributeProcessingCopyAttributes, + type: 'string' + }] +}); diff --git a/web/app/store/ServerAttributes.js b/web/app/store/ServerAttributes.js new file mode 100644 index 00000000..71705e04 --- /dev/null +++ b/web/app/store/ServerAttributes.js @@ -0,0 +1,41 @@ +/* + * Copyright 2017 Anton Tananaev (anton@traccar.org) + * Copyright 2017 Andrey Kunitsyn (andrey@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.store.ServerAttributes', { + extend: 'Ext.data.Store', + model: 'Traccar.model.KnownAttribute', + proxy: 'memory', + + data: [{ + key: 'speedLimit', + name: Strings.attributeSpeedLimit, + type: 'number' + }, { + key: 'maintenance.start', + name: Strings.attributeMaintenanceStart, + type: 'number' + }, { + key: 'maintenance.interval', + name: Strings.attributeMaintenanceInterval, + type: 'number' + }, { + key: 'web.liveRouteLength', + name: Strings.attributeWebLiveRouteLength, + type: 'number', + allowDecimals: false + }] +}); diff --git a/web/app/store/UserAttributes.js b/web/app/store/UserAttributes.js new file mode 100644 index 00000000..8649eb8b --- /dev/null +++ b/web/app/store/UserAttributes.js @@ -0,0 +1,76 @@ +/* + * Copyright 2017 Anton Tananaev (anton@traccar.org) + * Copyright 2017 Andrey Kunitsyn (andrey@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.store.UserAttributes', { + extend: 'Ext.data.Store', + model: 'Traccar.model.KnownAttribute', + proxy: 'memory', + + data: [{ + key: 'mail.smtp.host', + name: Strings.attributeMailSmtpHost, + type: 'string' + }, { + key: 'mail.smtp.port', + name: Strings.attributeMailSmtpPort, + type: 'number', + allowDecimals: false, + minValue: 1, + maxValue: 65535 + }, { + key: 'mail.smtp.starttls.enable', + name: Strings.attributeMailSmtpStarttlsEnable, + type: 'boolean' + }, { + key: 'mail.smtp.starttls.required', + name: Strings.attributeMailSmtpStarttlsRequired, + type: 'boolean' + }, { + key: 'mail.smtp.ssl.enable', + name: Strings.attributeMailSmtpSslEnable, + type: 'boolean' + }, { + key: 'mail.smtp.ssl.trust', + name: Strings.attributeMailSmtpSslTrust, + type: 'string' + }, { + key: 'mail.smtp.ssl.protocols', + name: Strings.attributeMailSmtpSslProtocols, + type: 'string' + }, { + key: 'mail.smtp.from', + name: Strings.attributeMailSmtpFrom, + type: 'string' + }, { + key: 'mail.smtp.auth', + name: Strings.attributeMailSmtpAuth, + type: 'boolean' + }, { + key: 'mail.smtp.username', + name: Strings.attributeMailSmtpUsername, + type: 'string' + }, { + key: 'mail.smtp.password', + name: Strings.attributeMailSmtpPassword, + type: 'string' + }, { + key: 'web.liveRouteLength', + name: Strings.attributeWebLiveRouteLength, + type: 'number', + allowDecimals: false + }] +}); |