diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2015-06-07 16:41:46 +1200 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2015-06-07 16:41:46 +1200 |
commit | 4a91ebb7535b8e199b8c9cce041757eeedd350ce (patch) | |
tree | 2a02d2937732ba6960cf1c834192d43abbec4597 /web/app/view | |
parent | 1680d3d0234d9d1e2152e644882a9c1fb39a8a47 (diff) | |
download | trackermap-server-4a91ebb7535b8e199b8c9cce041757eeedd350ce.tar.gz trackermap-server-4a91ebb7535b8e199b8c9cce041757eeedd350ce.tar.bz2 trackermap-server-4a91ebb7535b8e199b8c9cce041757eeedd350ce.zip |
Add device status panel
Diffstat (limited to 'web/app/view')
-rw-r--r-- | web/app/view/main/Main.js | 19 | ||||
-rw-r--r-- | web/app/view/state/State.js | 35 | ||||
-rw-r--r-- | web/app/view/state/StateController.js | 24 |
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() { + } + +}); |