From 80fc64fb46255c40729fa78e730a19cc9e5203cd Mon Sep 17 00:00:00 2001 From: Abyss777 Date: Wed, 31 Aug 2016 10:16:29 +0500 Subject: Added other missed imports --- web/app/controller/Root.js | 3 ++- web/app/view/AttributesController.js | 3 ++- web/app/view/DevicesController.js | 5 ++++- web/app/view/GeofencesController.js | 2 +- web/app/view/GroupsController.js | 4 +++- web/app/view/NotificationsController.js | 4 ++++ web/app/view/ReportController.js | 1 + web/app/view/StateController.js | 5 +++++ web/app/view/UsersController.js | 3 ++- 9 files changed, 24 insertions(+), 6 deletions(-) diff --git a/web/app/controller/Root.js b/web/app/controller/Root.js index 9ca7c9e40..dc759a08b 100644 --- a/web/app/controller/Root.js +++ b/web/app/controller/Root.js @@ -20,7 +20,8 @@ Ext.define('Traccar.controller.Root', { requires: [ 'Traccar.view.Login', 'Traccar.view.Main', - 'Traccar.view.MainMobile' + 'Traccar.view.MainMobile', + 'Traccar.model.Position' ], init: function () { diff --git a/web/app/view/AttributesController.js b/web/app/view/AttributesController.js index 5be94dec3..91d69a8e2 100644 --- a/web/app/view/AttributesController.js +++ b/web/app/view/AttributesController.js @@ -20,7 +20,8 @@ Ext.define('Traccar.view.AttributesController', { requires: [ 'Traccar.view.AttributeDialog', - 'Traccar.store.Attributes' + 'Traccar.store.Attributes', + 'Traccar.model.Attribute' ], init: function () { diff --git a/web/app/view/DevicesController.js b/web/app/view/DevicesController.js index 8058db376..17f98629f 100644 --- a/web/app/view/DevicesController.js +++ b/web/app/view/DevicesController.js @@ -21,7 +21,10 @@ Ext.define('Traccar.view.DevicesController', { requires: [ 'Traccar.view.CommandDialog', 'Traccar.view.DeviceDialog', - 'Traccar.view.DeviceGeofences' + 'Traccar.view.DeviceGeofences', + 'Traccar.view.BaseWindow', + 'Traccar.model.Device', + 'Traccar.model.Command' ], config: { diff --git a/web/app/view/GeofencesController.js b/web/app/view/GeofencesController.js index 59e416d56..5faee139f 100644 --- a/web/app/view/GeofencesController.js +++ b/web/app/view/GeofencesController.js @@ -20,7 +20,7 @@ Ext.define('Traccar.view.GeofencesController', { requires: [ 'Traccar.view.GeofenceDialog', - 'Traccar.view.BaseWindow' + 'Traccar.model.Geofence' ], init: function () { diff --git a/web/app/view/GroupsController.js b/web/app/view/GroupsController.js index 7413f64a8..f1d6e53f3 100644 --- a/web/app/view/GroupsController.js +++ b/web/app/view/GroupsController.js @@ -20,7 +20,9 @@ Ext.define('Traccar.view.GroupsController', { requires: [ 'Traccar.view.GroupDialog', - 'Traccar.view.GroupGeofences' + 'Traccar.view.GroupGeofences', + 'Traccar.view.BaseWindow', + 'Traccar.model.Group' ], onAddClick: function () { diff --git a/web/app/view/NotificationsController.js b/web/app/view/NotificationsController.js index 628343a84..d880c5d41 100644 --- a/web/app/view/NotificationsController.js +++ b/web/app/view/NotificationsController.js @@ -18,6 +18,10 @@ Ext.define('Traccar.view.NotificationsController', { extend: 'Ext.app.ViewController', alias: 'controller.notificationsController', + requires: [ + 'Traccar.store.Notifications' + ], + init: function () { this.userId = this.getView().user.getData().id; this.getView().getStore().load({ diff --git a/web/app/view/ReportController.js b/web/app/view/ReportController.js index 28227e24d..3a3345d83 100644 --- a/web/app/view/ReportController.js +++ b/web/app/view/ReportController.js @@ -20,6 +20,7 @@ Ext.define('Traccar.view.ReportController', { alias: 'controller.report', requires: [ + 'Traccar.AttributeFormatter', 'Traccar.view.ReportConfigDialog', 'Traccar.store.ReportEventTypes' ], diff --git a/web/app/view/StateController.js b/web/app/view/StateController.js index 01df6645d..fca41bbc7 100644 --- a/web/app/view/StateController.js +++ b/web/app/view/StateController.js @@ -17,6 +17,11 @@ Ext.define('Traccar.view.StateController', { extend: 'Ext.app.ViewController', alias: 'controller.state', + + requires: [ + 'Traccar.AttributeFormatter', + 'Traccar.model.Attribute' + ], config: { listen: { diff --git a/web/app/view/UsersController.js b/web/app/view/UsersController.js index 73088a40e..da7dd8f13 100644 --- a/web/app/view/UsersController.js +++ b/web/app/view/UsersController.js @@ -24,7 +24,8 @@ Ext.define('Traccar.view.UsersController', { 'Traccar.view.UserGroups', 'Traccar.view.UserGeofences', 'Traccar.view.Notifications', - 'Traccar.view.BaseWindow' + 'Traccar.view.BaseWindow', + 'Traccar.model.User' ], init: function () { -- cgit v1.2.3