aboutsummaryrefslogtreecommitdiff
path: root/web/app/view/DevicesController.js
diff options
context:
space:
mode:
authorAbyss777 <abyss@fox5.ru>2017-03-29 10:59:51 +0500
committerAbyss777 <abyss@fox5.ru>2017-03-29 10:59:51 +0500
commite37d175f5bb0613a9b64bc34368fa14e60bdb800 (patch)
tree77bd639583cb828fbebad1ea719c2218e3abc240 /web/app/view/DevicesController.js
parentc6a1dc961500b62379b70b8629fc5c8da688db0b (diff)
downloadetbsa-traccar-web-e37d175f5bb0613a9b64bc34368fa14e60bdb800.tar.gz
etbsa-traccar-web-e37d175f5bb0613a9b64bc34368fa14e60bdb800.tar.bz2
etbsa-traccar-web-e37d175f5bb0613a9b64bc34368fa14e60bdb800.zip
Move edit windows to edit subdirectory
Diffstat (limited to 'web/app/view/DevicesController.js')
-rw-r--r--web/app/view/DevicesController.js135
1 files changed, 0 insertions, 135 deletions
diff --git a/web/app/view/DevicesController.js b/web/app/view/DevicesController.js
deleted file mode 100644
index 51fd378..0000000
--- a/web/app/view/DevicesController.js
+++ /dev/null
@@ -1,135 +0,0 @@
-/*
- * Copyright 2015 - 2017 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.view.DevicesController', {
- extend: 'Traccar.view.EditToolbarController',
- alias: 'controller.devices',
-
- requires: [
- 'Traccar.view.dialog.Command',
- 'Traccar.view.dialog.Device',
- 'Traccar.view.permissions.DeviceGeofences',
- 'Traccar.view.BaseWindow',
- 'Traccar.model.Device',
- 'Traccar.model.Command'
- ],
-
- config: {
- listen: {
- controller: {
- '*': {
- selectreport: 'selectReport'
- },
- 'map': {
- selectdevice: 'selectDevice',
- deselectfeature: 'deselectFeature'
- }
- },
- store: {
- '#Devices': {
- update: 'onUpdateDevice'
- }
- }
- }
- },
-
- objectModel: 'Traccar.model.Device',
- objectDialog: 'Traccar.view.dialog.Device',
- removeTitle: Strings.sharedDevice,
-
- init: function () {
- var readonly, deviceReadonly;
- deviceReadonly = Traccar.app.getPreference('deviceReadonly', false) && !Traccar.app.getUser().get('admin');
- readonly = Traccar.app.getPreference('readonly', false) && !Traccar.app.getUser().get('admin');
- this.lookupReference('toolbarAddButton').setDisabled(readonly || deviceReadonly);
- },
-
- onGeofencesClick: function () {
- var device = this.getView().getSelectionModel().getSelection()[0];
- Ext.create('Traccar.view.BaseWindow', {
- title: Strings.sharedGeofences,
- items: {
- xtype: 'deviceGeofencesView',
- baseObjectName: 'deviceId',
- linkObjectName: 'geofenceId',
- storeName: 'Geofences',
- urlApi: 'api/devices/geofences',
- baseObject: device.getId()
- }
- }).show();
- },
-
- onCommandClick: function () {
- var device, deviceId, command, dialog, typesStore, online;
- device = this.getView().getSelectionModel().getSelection()[0];
- online = device.get('status') === 'online';
- deviceId = device.get('id');
-
- command = Ext.create('Traccar.model.Command');
- command.set('deviceId', deviceId);
- command.set('textChannel', !online);
-
- dialog = Ext.create('Traccar.view.dialog.Command');
-
- typesStore = dialog.lookupReference('commandType').getStore();
- typesStore.getProxy().setExtraParam('deviceId', deviceId);
-
- dialog.down('form').loadRecord(command);
- dialog.lookupReference('textChannelCheckBox').setDisabled(!online);
- dialog.show();
- },
-
- updateButtons: function (selected) {
- var readonly, deviceReadonly, empty;
- deviceReadonly = Traccar.app.getPreference('deviceReadonly', false) && !Traccar.app.getUser().get('admin');
- readonly = Traccar.app.getPreference('readonly', false) && !Traccar.app.getUser().get('admin');
- empty = selected.getCount() === 0;
- this.lookupReference('toolbarEditButton').setDisabled(empty || readonly || deviceReadonly);
- this.lookupReference('toolbarRemoveButton').setDisabled(empty || readonly || deviceReadonly);
- this.lookupReference('toolbarGeofencesButton').setDisabled(empty || readonly);
- this.lookupReference('deviceCommandButton').setDisabled(empty || readonly);
- },
-
- onSelectionChange: function (selected) {
- this.updateButtons(selected);
- if (selected.getCount() > 0) {
- this.fireEvent('selectdevice', selected.getLastSelected(), true);
- } else {
- this.fireEvent('deselectfeature');
- }
- },
-
- selectDevice: function (device, center) {
- this.getView().getSelectionModel().select([device], false, true);
- this.updateButtons(this.getView().getSelectionModel());
- this.getView().getView().focusRow(device);
- },
-
- selectReport: function (position) {
- if (position !== undefined) {
- this.deselectFeature();
- }
- },
-
- onUpdateDevice: function (store, data) {
- this.updateButtons(this.getView().getSelectionModel());
- },
-
- deselectFeature: function () {
- this.getView().getSelectionModel().deselectAll();
- }
-});