]> git.proxmox.com Git - proxmox-backup.git/blame - www/MainView.js
www/DataStoreConfig.js - add title
[proxmox-backup.git] / www / MainView.js
CommitLineData
5c7a1b15
DM
1Ext.define('PBS.MainView', {
2 extend: 'Ext.container.Container',
3 xtype: 'mainview',
4
5 title: 'Proxmox Backup Server',
6
7 controller: {
8 xclass: 'Ext.app.ViewController',
9 routes: {
10 ':path:subpath': {
11 action: 'changePath',
12 before: 'beforeChangePath',
13 conditions : {
14 ':path' : '(?:([%a-zA-Z0-9\\-\\_\\s,]+))',
15 ':subpath' : '(?:(?::)([%a-zA-Z0-9\\-\\_\\s,]+))?'
16 }
17 }
18 },
19
20 beforeChangePath: function(path, subpath, action) {
21 var me = this;
22
b0ee976f
DM
23 if (!Ext.ClassManager.getByAlias('widget.'+ path)) {
24 console.warn('xtype "'+path+'" not found');
25 action.stop();
26 return;
27 }
28
29 var lastpanel = me.lookupReference('contentpanel').getLayout().getActiveItem();
30 if (lastpanel && lastpanel.xtype === path) {
31 // we have the right component already,
32 // we just need to select the correct tab
33 // default to the first
34 subpath = subpath || 0;
35 if (lastpanel.getActiveTab) {
36 // we assume lastpanel is a tabpanel
37 if (lastpanel.getActiveTab().getItemId() !== subpath) {
38 // set the active tab
39 lastpanel.setActiveTab(subpath);
40 }
41 // else we are already there
42 }
43 action.stop();
44 return;
45 }
46
5c7a1b15
DM
47 action.resume();
48 },
49
b0ee976f 50 changePath: function(path,subpath) {
5c7a1b15
DM
51 var me = this;
52 var contentpanel = me.lookupReference('contentpanel');
53 var lastpanel = contentpanel.getLayout().getActiveItem();
54
b0ee976f
DM
55 var obj = contentpanel.add({ xtype: path });
56 var treelist = me.lookupReference('navtree');
57
58 treelist.suspendEvents();
59 treelist.select(path);
60 treelist.resumeEvents();
61
62 if (Ext.isFunction(obj.setActiveTab)) {
63 obj.setActiveTab(subpath || 0);
64 obj.addListener('tabchange', function(tabpanel, newc, oldc) {
65 var newpath = path;
66
67 // only add the subpath part for the
68 // non-default tabs
69 if (tabpanel.items.findIndex('id', newc.id) !== 0) {
70 newpath += ":" + newc.getItemId();
71 }
72
73 me.redirectTo(newpath);
74 });
75 }
76
77 contentpanel.setActiveItem(obj);
78
79 if (lastpanel) {
80 contentpanel.remove(lastpanel, { destroy: true });
81 }
82
83 },
84
34f956bc
DM
85 logout: function() {
86 PBS.app.logout();
87 },
88
b0ee976f
DM
89 navigate: function(treelist, item) {
90 this.redirectTo(item.get('path'));
5c7a1b15
DM
91 },
92
34f956bc
DM
93 control: {
94 'button[reference=logoutButton]': {
95 click: 'logout'
96 }
97 },
98
5c7a1b15
DM
99 init: function(view) {
100 var me = this;
101 console.log("init");
102
103 }
104 },
105
106 plugins: 'viewport',
107
108 layout: { type: 'border' },
109
110 items: [
111 {
112 region: 'north',
113 xtype: 'container',
114 layout: {
115 type: 'hbox',
116 align: 'middle'
117 },
118 margin: '2 5 2 5',
119 height: 38,
120 items: [
121 {
122 xtype: 'proxmoxlogo'
123 },
124 {
e4dc0a14 125 xtype: 'versioninfo'
5c7a1b15
DM
126 },
127 {
128 flex: 1
129 },
130 {
131 baseCls: 'x-plain',
132 reference: 'usernameinfo',
133 padding: '0 5',
134 tpl: Ext.String.format(gettext("You are logged in as {0}"), "'{username}'")
135 },
136 {
137 reference: 'logoutButton',
138 xtype: 'button',
139 iconCls: 'fa fa-sign-out',
140 text: gettext('Logout')
141 }
142 ]
143 },
144 {
145 xtype: 'panel',
146 scrollable: 'y',
147 border: false,
148 region: 'west',
149 layout: {
150 type: 'vbox',
151 align: 'stretch'
152 },
b0ee976f
DM
153 items: [{
154 xtype: 'navigationtree',
155 minWidth: 180,
156 reference: 'navtree',
157 // we have to define it here until extjs 6.2
158 // because of a bug where a viewcontroller does not detect
159 // the selectionchange event of a treelist
160 listeners: {
161 selectionchange: 'navigate'
162 }
163 }, {
164 xtype: 'box',
165 cls: 'x-treelist-nav',
166 flex: 1
167 }]
5c7a1b15
DM
168 },
169 {
170 xtype: 'panel',
171 layout: { type: 'card' },
172 region: 'center',
173 border: false,
174 reference: 'contentpanel'
175 }
176 ]
177});
178
179