aboutsummaryrefslogtreecommitdiff
path: root/web/app/view
diff options
context:
space:
mode:
Diffstat (limited to 'web/app/view')
-rw-r--r--web/app/view/main/Main.js19
-rw-r--r--web/app/view/state/State.js35
-rw-r--r--web/app/view/state/StateController.js24
3 files changed, 76 insertions, 2 deletions
diff --git a/web/app/view/main/Main.js b/web/app/view/main/Main.js
index d6a350785..e7dc5f83c 100644
--- a/web/app/view/main/Main.js
+++ b/web/app/view/main/Main.js
@@ -19,6 +19,7 @@ Ext.define('Traccar.view.main.Main', {
requires: [
'Traccar.view.device.Device',
+ 'Traccar.view.state.State',
'Traccar.view.report.Report',
'Traccar.view.map.Map'
],
@@ -32,8 +33,22 @@ Ext.define('Traccar.view.main.Main', {
items: [{
region:'west',
- xtype: 'device-view',
- width: styles.device_width
+ layout: 'border',
+ width: styles.device_width,
+ header: false,
+ defaults: {
+ split: true
+ },
+ items: [{
+ collapsible: false,
+ region: 'center',
+ xtype: 'device-view',
+ flex: 1
+ }, {
+ region: 'south',
+ xtype: 'state-view',
+ flex: 1
+ }]
}, {
region: 'south',
xtype: 'report-view',
diff --git a/web/app/view/state/State.js b/web/app/view/state/State.js
new file mode 100644
index 000000000..de7cab87f
--- /dev/null
+++ b/web/app/view/state/State.js
@@ -0,0 +1,35 @@
+/*
+ * Copyright 2015 Anton Tananaev (anton.tananaev@gmail.com)
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+Ext.define('Traccar.view.state.State', {
+ extend: 'Ext.grid.Panel',
+ xtype: 'state-view',
+
+ requires: [
+ 'Traccar.view.state.StateController'
+ ],
+
+ controller: 'state',
+ //store: 'Parameters',
+
+ title: strings.state_title,
+
+ columns: [
+ { text: strings.state_name, dataIndex: 'name', flex: 1 },
+ { text: strings.state_value, dataIndex: 'value', flex: 1 }
+ ]
+
+});
diff --git a/web/app/view/state/StateController.js b/web/app/view/state/StateController.js
new file mode 100644
index 000000000..8050bcb88
--- /dev/null
+++ b/web/app/view/state/StateController.js
@@ -0,0 +1,24 @@
+/*
+ * Copyright 2015 Anton Tananaev (anton.tananaev@gmail.com)
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+Ext.define('Traccar.view.state.StateController', {
+ extend: 'Ext.app.ViewController',
+ alias: 'controller.state',
+
+ init: function() {
+ }
+
+});