aboutsummaryrefslogtreecommitdiff
path: root/web/app/view/SettingsMenuController.js
diff options
context:
space:
mode:
Diffstat (limited to 'web/app/view/SettingsMenuController.js')
-rw-r--r--web/app/view/SettingsMenuController.js176
1 files changed, 0 insertions, 176 deletions
diff --git a/web/app/view/SettingsMenuController.js b/web/app/view/SettingsMenuController.js
deleted file mode 100644
index c8018f66..00000000
--- a/web/app/view/SettingsMenuController.js
+++ /dev/null
@@ -1,176 +0,0 @@
-/*
- * Copyright 2015 - 2018 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.SettingsMenuController', {
- extend: 'Ext.app.ViewController',
- alias: 'controller.settings',
-
- requires: [
- 'Traccar.view.dialog.LoginController',
- 'Traccar.view.dialog.User',
- 'Traccar.view.dialog.Server',
- 'Traccar.view.edit.Users',
- 'Traccar.view.edit.Groups',
- 'Traccar.view.edit.Geofences',
- 'Traccar.view.edit.Drivers',
- 'Traccar.view.edit.Notifications',
- 'Traccar.view.edit.ComputedAttributes',
- 'Traccar.view.Statistics',
- 'Traccar.view.edit.Calendars',
- 'Traccar.view.edit.SavedCommands',
- 'Traccar.view.edit.Maintenances',
- 'Traccar.view.BaseWindow'
- ],
-
- init: function () {
- var admin, manager, readonly;
- admin = Traccar.app.getUser().get('administrator');
- manager = Traccar.app.getUser().get('userLimit') !== 0;
- readonly = Traccar.app.getPreference('readonly', false);
- if (admin) {
- this.lookupReference('settingsServerButton').setHidden(false);
- this.lookupReference('settingsStatisticsButton').setHidden(false);
- this.lookupReference('settingsComputedAttributesButton').setHidden(
- Traccar.app.getBooleanAttributePreference('ui.disableComputedAttributes'));
- }
- if (admin || manager) {
- this.lookupReference('settingsUsersButton').setHidden(false);
- }
- if (admin || !readonly) {
- this.lookupReference('settingsUserButton').setHidden(false);
- this.lookupReference('settingsGroupsButton').setHidden(false);
- this.lookupReference('settingsGeofencesButton').setHidden(false);
- this.lookupReference('settingsNotificationsButton').setHidden(false);
- this.lookupReference('settingsCalendarsButton').setHidden(
- Traccar.app.getBooleanAttributePreference('ui.disableCalendars'));
- this.lookupReference('settingsDriversButton').setHidden(
- Traccar.app.getVehicleFeaturesDisabled() || Traccar.app.getBooleanAttributePreference('ui.disableDrivers'));
- this.lookupReference('settingsCommandsButton').setHidden(Traccar.app.getPreference('limitCommands', false));
- this.lookupReference('settingsMaintenancesButton').setHidden(
- Traccar.app.getVehicleFeaturesDisabled() || Traccar.app.getBooleanAttributePreference('ui.disableMaintenance'));
- }
- },
-
- onUserClick: function () {
- var dialog = Ext.create('Traccar.view.dialog.User', {
- selfEdit: true
- });
- dialog.down('form').loadRecord(Traccar.app.getUser());
- dialog.lookupReference('testNotificationButton').setHidden(false);
- dialog.show();
- },
-
- onGroupsClick: function () {
- Ext.create('Traccar.view.BaseWindow', {
- title: Strings.settingsGroups,
- items: {
- xtype: 'groupsView'
- }
- }).show();
- },
-
- onGeofencesClick: function () {
- Ext.create('Traccar.view.BaseWindow', {
- title: Strings.sharedGeofences,
- items: {
- xtype: 'geofencesView'
- }
- }).show();
- },
-
- onServerClick: function () {
- var dialog = Ext.create('Traccar.view.dialog.Server');
- dialog.down('form').loadRecord(Traccar.app.getServer());
- dialog.show();
- },
-
- onUsersClick: function () {
- Ext.create('Traccar.view.BaseWindow', {
- title: Strings.settingsUsers,
- items: {
- xtype: 'usersView'
- }
- }).show();
- },
-
- onNotificationsClick: function () {
- Ext.create('Traccar.view.BaseWindow', {
- title: Strings.sharedNotifications,
- items: {
- xtype: 'notificationsView'
- }
- }).show();
- },
-
- onComputedAttributesClick: function () {
- Ext.create('Traccar.view.BaseWindow', {
- title: Strings.sharedComputedAttributes,
- items: {
- xtype: 'computedAttributesView'
- }
- }).show();
- },
-
- onStatisticsClick: function () {
- Ext.create('Traccar.view.BaseWindow', {
- title: Strings.statisticsTitle,
- items: {
- xtype: 'statisticsView'
- }
- }).show();
- },
-
- onCalendarsClick: function () {
- Ext.create('Traccar.view.BaseWindow', {
- title: Strings.sharedCalendars,
- items: {
- xtype: 'calendarsView'
- }
- }).show();
- },
-
- onDriversClick: function () {
- Ext.create('Traccar.view.BaseWindow', {
- title: Strings.sharedDrivers,
- items: {
- xtype: 'driversView'
- }
- }).show();
- },
-
- onCommandsClick: function () {
- Ext.create('Traccar.view.BaseWindow', {
- title: Strings.sharedSavedCommands,
- items: {
- xtype: 'savedCommandsView'
- }
- }).show();
- },
-
- onMaintenancesClick: function () {
- Ext.create('Traccar.view.BaseWindow', {
- title: Strings.sharedMaintenance,
- items: {
- xtype: 'maintenancesView'
- }
- }).show();
- },
-
- onLogoutClick: function () {
- Ext.create('Traccar.view.dialog.LoginController').logout();
- }
-});