diff options
author | Abyss777 <abyss@fox5.ru> | 2017-03-29 10:59:51 +0500 |
---|---|---|
committer | Abyss777 <abyss@fox5.ru> | 2017-03-29 10:59:51 +0500 |
commit | e37d175f5bb0613a9b64bc34368fa14e60bdb800 (patch) | |
tree | 77bd639583cb828fbebad1ea719c2218e3abc240 /web/app/view/edit/DevicesController.js | |
parent | c6a1dc961500b62379b70b8629fc5c8da688db0b (diff) | |
download | trackermap-web-e37d175f5bb0613a9b64bc34368fa14e60bdb800.tar.gz trackermap-web-e37d175f5bb0613a9b64bc34368fa14e60bdb800.tar.bz2 trackermap-web-e37d175f5bb0613a9b64bc34368fa14e60bdb800.zip |
Move edit windows to edit subdirectory
Diffstat (limited to 'web/app/view/edit/DevicesController.js')
-rw-r--r-- | web/app/view/edit/DevicesController.js | 135 |
1 files changed, 135 insertions, 0 deletions
diff --git a/web/app/view/edit/DevicesController.js b/web/app/view/edit/DevicesController.js new file mode 100644 index 00000000..895f0fbd --- /dev/null +++ b/web/app/view/edit/DevicesController.js @@ -0,0 +1,135 @@ +/* + * 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.edit.DevicesController', { + extend: 'Traccar.view.edit.ToolbarController', + 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(); + } +}); |