]> git.proxmox.com Git - pve-manager.git/blame - www/manager6/Workspace.js
ui: eslint fixes
[pve-manager.git] / www / manager6 / Workspace.js
CommitLineData
787ae72a
DM
1/*
2 * Workspace base class
3 *
4 * popup login window when auth fails (call onLogin handler)
5 * update (re-login) ticket every 15 minutes
6 *
7 */
8
9Ext.define('PVE.Workspace', {
10 extend: 'Ext.container.Viewport',
11
12 title: 'Proxmox Virtual Environment',
13
14 loginData: null, // Data from last login call
15
063997ed
TL
16 onLogin: function(loginData) {
17 // override me
18 },
787ae72a
DM
19
20 // private
21 updateLoginData: function(loginData) {
063997ed 22 let me = this;
787ae72a 23 me.loginData = loginData;
24d2ed8c 24 Proxmox.Utils.setAuthData(loginData);
787ae72a 25
063997ed 26 let rt = me.down('pveResourceTree');
3d7b2aa9 27 rt.setDatacenterText(loginData.clustername);
9ebe2165 28 PVE.ClusterName = loginData.clustername;
3d7b2aa9 29
787ae72a
DM
30 if (loginData.cap) {
31 Ext.state.Manager.set('GuiCap', loginData.cap);
32 }
1370f628 33 me.response401count = 0;
787ae72a 34
787ae72a
DM
35 me.onLogin(loginData);
36 },
37
38 // private
39 showLogin: function() {
063997ed 40 let me = this;
787ae72a 41
e7ade592 42 Proxmox.Utils.authClear();
9fd1198e 43 Ext.state.Manager.clear('GuiCap');
35a04562 44 Proxmox.UserName = null;
787ae72a
DM
45 me.loginData = null;
46
47 if (!me.login) {
48 me.login = Ext.create('PVE.window.LoginWindow', {
49 handler: function(data) {
50 me.login = null;
51 me.updateLoginData(data);
063997ed 52 Proxmox.Utils.checked_command(Ext.emptyFn); // display subscription status
f6710aac 53 },
787ae72a
DM
54 });
55 }
56 me.onLogin(null);
57 me.login.show();
58 },
59
8058410f 60 initComponent: function() {
063997ed 61 let me = this;
787ae72a
DM
62
63 Ext.tip.QuickTipManager.init();
64
65 // fixme: what about other errors
66 Ext.Ajax.on('requestexception', function(conn, response, options) {
063997ed 67 if ((response.status === 401 || response.status === '401') && !PVE.Utils.silenceAuthFailures) { // auth failure
1370f628
TL
68 // don't immediately show as logged out to cope better with some big
69 // upgrades, which may temporarily produce a false positive 401 err
70 me.response401count++;
71 if (me.response401count > 5) {
72 me.showLogin();
73 }
787ae72a
DM
74 }
75 });
76
787ae72a
DM
77 me.callParent();
78
e7ade592 79 if (!Proxmox.Utils.authOK()) {
787ae72a 80 me.showLogin();
063997ed
TL
81 } else if (me.loginData) {
82 me.onLogin(me.loginData);
787ae72a
DM
83 }
84
85 Ext.TaskManager.start({
86 run: function() {
063997ed 87 let ticket = Proxmox.Utils.authOK();
35a04562 88 if (!ticket || !Proxmox.UserName) {
787ae72a
DM
89 return;
90 }
91
92 Ext.Ajax.request({
7c8051b4 93 params: {
35a04562 94 username: Proxmox.UserName,
f6710aac 95 password: ticket,
787ae72a
DM
96 },
97 url: '/api2/json/access/ticket',
98 method: 'POST',
99 success: function(response, opts) {
063997ed 100 let obj = Ext.decode(response.responseText);
787ae72a 101 me.updateLoginData(obj.data);
f6710aac 102 },
787ae72a
DM
103 });
104 },
063997ed 105 interval: 15 * 60 * 1000,
787ae72a 106 });
f6710aac 107 },
787ae72a
DM
108});
109
787ae72a
DM
110Ext.define('PVE.StdWorkspace', {
111 extend: 'PVE.Workspace',
112
113 alias: ['widget.pveStdWorkspace'],
114
115 // private
116 setContent: function(comp) {
063997ed 117 let me = this;
7c8051b4 118
063997ed
TL
119 let view = me.child('#content');
120 let layout = view.getLayout();
121 let current = layout.getActiveItem();
787ae72a
DM
122
123 if (comp) {
063997ed 124 Proxmox.Utils.setErrorMask(view, false);
787ae72a 125 comp.border = false;
063997ed
TL
126 view.add(comp);
127 if (current !== null && layout.getNext()) {
128 layout.next();
129 let task = Ext.create('Ext.util.DelayedTask', function() {
130 view.remove(current);
834ba9e4
DC
131 });
132 task.delay(10);
133 }
8058410f 134 } else {
063997ed 135 view.removeAll(); // helper for cleaning the content when logging out
de7eeaac 136 }
787ae72a
DM
137 },
138
139 selectById: function(nodeid) {
063997ed
TL
140 let me = this;
141 me.down('pveResourceTree').selectById(nodeid);
787ae72a
DM
142 },
143
787ae72a 144 onLogin: function(loginData) {
063997ed 145 let me = this;
787ae72a
DM
146
147 me.updateUserInfo();
148
149 if (loginData) {
150 PVE.data.ResourceStore.startUpdate();
151
e7ade592 152 Proxmox.Utils.API2Request({
787ae72a
DM
153 url: '/version',
154 method: 'GET',
155 success: function(response) {
156 PVE.VersionInfo = response.result.data;
157 me.updateVersionInfo();
f6710aac 158 },
787ae72a 159 });
f1ca55fb
AD
160
161 Proxmox.Utils.API2Request({
162 url: '/cluster/sdn',
163 method: 'GET',
164 success: function(response) {
165 PVE.SDNInfo = response.result.data;
35ffde01
TL
166 },
167 failure: function(response) {
168 PVE.SDNInfo = null;
169 let ui = Ext.ComponentQuery.query('treelistitem[text="SDN"]')[0];
170 if (ui) {
171 ui.addCls('x-hidden-display');
172 }
173 },
f1ca55fb 174 });
787ae72a
DM
175 }
176 },
177
178 updateUserInfo: function() {
063997ed
TL
179 let me = this;
180 let ui = me.query('#userinfo')[0];
1011b569 181 ui.setText(Ext.String.htmlEncode(Proxmox.UserName || ''));
6a71fe01 182 ui.updateLayout();
787ae72a
DM
183 },
184
185 updateVersionInfo: function() {
063997ed 186 let me = this;
787ae72a 187
063997ed 188 let ui = me.query('#versioninfo')[0];
787ae72a
DM
189
190 if (PVE.VersionInfo) {
063997ed 191 let version = PVE.VersionInfo.version;
55d727ca 192 ui.update('Virtual Environment ' + version);
787ae72a 193 } else {
55d727ca 194 ui.update('Virtual Environment');
787ae72a 195 }
6a71fe01 196 ui.updateLayout();
787ae72a
DM
197 },
198
8058410f 199 initComponent: function() {
063997ed 200 let me = this;
787ae72a
DM
201
202 Ext.History.init();
203
063997ed
TL
204 let appState = Ext.create('PVE.StateProvider');
205 Ext.state.Manager.setProvider(appState);
787ae72a 206
063997ed 207 let selview = Ext.create('PVE.form.ViewSelector');
787ae72a 208
063997ed 209 let rtree = Ext.createWidget('pveResourceTree', {
787ae72a
DM
210 viewFilter: selview.getViewFilter(),
211 flex: 1,
aeb5e2f6
EK
212 selModel: {
213 selType: 'treemodel',
787ae72a
DM
214 listeners: {
215 selectionchange: function(sm, selected) {
063997ed
TL
216 if (selected.length <= 0) {
217 return;
787ae72a 218 }
063997ed
TL
219 let treeNode = selected[0];
220 let treeTypeToClass = {
221 root: 'PVE.dc.Config',
222 node: 'PVE.node.Config',
223 qemu: 'PVE.qemu.Config',
224 lxc: 'PVE.lxc.Config',
225 storage: 'PVE.storage.Browser',
226 sdn: 'PVE.sdn.Browser',
227 pool: 'pvePoolConfig',
228 };
229 PVE.curSelectedNode = treeNode;
230 me.setContent({
231 xtype: treeTypeToClass[treeNode.data.type || 'root'] || 'pvePanelConfig',
232 showSearch: treeNode.data.id === 'root' || Ext.isDefined(treeNode.data.groupbyid),
233 pveSelNode: treeNode,
234 workspace: me,
235 viewFilter: selview.getViewFilter(),
236 });
f6710aac
TL
237 },
238 },
239 },
787ae72a
DM
240 });
241
7c8051b4 242 selview.on('select', function(combo, records) {
fb387756 243 if (records) {
063997ed 244 let view = combo.getViewFilter();
787ae72a
DM
245 rtree.setViewFilter(view);
246 }
247 });
248
063997ed 249 let caps = appState.get('GuiCap');
787ae72a 250
063997ed 251 let createVM = Ext.createWidget('button', {
787ae72a 252 pack: 'end',
f01259ee 253 margin: '3 5 0 0',
787ae72a 254 baseCls: 'x-btn',
d1f155b8 255 iconCls: 'fa fa-desktop',
787ae72a
DM
256 text: gettext("Create VM"),
257 disabled: !caps.vms['VM.Allocate'],
258 handler: function() {
063997ed 259 let wiz = Ext.create('PVE.qemu.CreateWizard', {});
787ae72a 260 wiz.show();
f6710aac 261 },
787ae72a
DM
262 });
263
063997ed 264 let createCT = Ext.createWidget('button', {
787ae72a 265 pack: 'end',
f01259ee 266 margin: '3 5 0 0',
787ae72a 267 baseCls: 'x-btn',
d1f155b8 268 iconCls: 'fa fa-cube',
787ae72a
DM
269 text: gettext("Create CT"),
270 disabled: !caps.vms['VM.Allocate'],
271 handler: function() {
063997ed 272 let wiz = Ext.create('PVE.lxc.CreateWizard', {});
787ae72a 273 wiz.show();
f6710aac 274 },
787ae72a
DM
275 });
276
063997ed 277 appState.on('statechange', function(sp, key, value) {
787ae72a
DM
278 if (key === 'GuiCap' && value) {
279 caps = value;
280 createVM.setDisabled(!caps.vms['VM.Allocate']);
281 createCT.setDisabled(!caps.vms['VM.Allocate']);
282 }
283 });
284
285 Ext.apply(me, {
286 layout: { type: 'border' },
287 border: false,
288 items: [
289 {
290 region: 'north',
7c8051b4 291 layout: {
787ae72a 292 type: 'hbox',
f6710aac 293 align: 'middle',
787ae72a 294 },
7c8051b4 295 baseCls: 'x-plain',
787ae72a 296 defaults: {
f6710aac 297 baseCls: 'x-plain',
787ae72a
DM
298 },
299 border: false,
f76884fd 300 margin: '2 0 2 5',
787ae72a
DM
301 items: [
302 {
d1efcadf 303 xtype: 'proxmoxlogo',
787ae72a
DM
304 },
305 {
bbcfa5ab 306 minWidth: 150,
787ae72a 307 id: 'versioninfo',
f6710aac 308 html: 'Virtual Environment',
787ae72a 309 },
4d1bb8e5
TL
310 {
311 padding: 5,
2c55daab 312 html: '<a href="https://bugzilla.proxmox.com" target="_blank">BETA</a>',
4d1bb8e5 313 },
839eed58
DC
314 {
315 xtype: 'pveGlobalSearchField',
f6710aac 316 tree: rtree,
839eed58
DC
317 },
318 {
f6710aac 319 flex: 1,
839eed58 320 },
3ef58611 321 {
672a6270 322 xtype: 'proxmoxHelpButton',
3ef58611 323 hidden: false,
1e4a853c 324 baseCls: 'x-btn',
41e024ee 325 iconCls: 'fa fa-book x-btn-icon-el-default-toolbar-small ',
3ef58611 326 listenToGlobalEvent: false,
c8802a60 327 onlineHelp: 'pve_documentation_index',
41e024ee 328 text: gettext('Documentation'),
f6710aac 329 margin: '0 5 0 0',
3ef58611 330 },
7c8051b4 331 createVM,
6a7465ae 332 createCT,
787ae72a
DM
333 {
334 pack: 'end',
f76884fd 335 margin: '0 5 0 0',
d962846d 336 id: 'userinfo',
787ae72a
DM
337 xtype: 'button',
338 baseCls: 'x-btn',
404bf6c8
TL
339 style: {
340 // proxmox dark grey p light grey as border
341 backgroundColor: '#464d4d',
f6710aac 342 borderColor: '#ABBABA',
404bf6c8 343 },
d962846d
DC
344 iconCls: 'fa fa-user',
345 menu: [
346 {
347 iconCls: 'fa fa-gear',
348 text: gettext('My Settings'),
349 handler: function() {
350 var win = Ext.create('PVE.window.Settings');
351 win.show();
f6710aac 352 },
d962846d
DC
353 },
354 {
355 text: gettext('Password'),
356 iconCls: 'fa fa-fw fa-key',
357 handler: function() {
358 var win = Ext.create('Proxmox.window.PasswordEdit', {
f6710aac 359 userid: Proxmox.UserName,
d962846d
DC
360 });
361 win.show();
f6710aac 362 },
d962846d
DC
363 },
364 {
365 text: 'TFA',
366 iconCls: 'fa fa-fw fa-lock',
367 handler: function(btn, event, rec) {
f6710aac
TL
368 var win = Ext.create('PVE.window.TFAEdit', {
369 userid: Proxmox.UserName,
d962846d
DC
370 });
371 win.show();
f6710aac 372 },
d962846d 373 },
428d5e78
DC
374 {
375 iconCls: 'fa fa-language',
376 text: gettext('Language'),
377 handler: function() {
378 Ext.create('Proxmox.window.LanguageEditWindow')
379 .show();
380 },
381 },
d962846d
DC
382 '-',
383 {
384 iconCls: 'fa fa-fw fa-sign-out',
385 text: gettext("Logout"),
386 handler: function() {
387 PVE.data.ResourceStore.loadData([], false);
388 me.showLogin();
389 me.setContent(null);
390 var rt = me.down('pveResourceTree');
391 rt.setDatacenterText(undefined);
392 rt.clearTree();
393
394 // empty the stores of the StatusPanel child items
395 var statusPanels = Ext.ComponentQuery.query('pveStatusPanel grid');
396 Ext.Array.forEach(statusPanels, function(comp) {
397 if (comp.getStore()) {
398 comp.getStore().loadData([], false);
399 }
400 });
f6710aac
TL
401 },
402 },
403 ],
404 },
405 ],
787ae72a
DM
406 },
407 {
408 region: 'center',
29aedb75
DC
409 stateful: true,
410 stateId: 'pvecenter',
411 minWidth: 100,
412 minHeight: 100,
787ae72a
DM
413 id: 'content',
414 xtype: 'container',
834ba9e4 415 layout: { type: 'card' },
787ae72a 416 border: false,
f01259ee 417 margin: '0 5 0 0',
f6710aac 418 items: [],
787ae72a
DM
419 },
420 {
421 region: 'west',
29aedb75
DC
422 stateful: true,
423 stateId: 'pvewest',
424 itemId: 'west',
787ae72a
DM
425 xtype: 'container',
426 border: false,
427 layout: { type: 'vbox', align: 'stretch' },
f01259ee 428 margin: '0 0 0 5',
787ae72a
DM
429 split: true,
430 width: 200,
8058410f 431 items: [selview, rtree],
29aedb75
DC
432 listeners: {
433 resize: function(panel, width, height) {
434 var viewWidth = me.getSize().width;
435 if (width > viewWidth - 100) {
436 panel.setWidth(viewWidth - 100);
437 }
f6710aac
TL
438 },
439 },
787ae72a
DM
440 },
441 {
80e8b725 442 xtype: 'pveStatusPanel',
29aedb75
DC
443 stateful: true,
444 stateId: 'pvesouth',
445 itemId: 'south',
787ae72a 446 region: 'south',
8058410f 447 margin: '0 5 5 5',
6a87871f
DC
448 title: gettext('Logs'),
449 collapsible: true,
450 header: false,
29aedb75 451 height: 200,
8058410f 452 split: true,
29aedb75
DC
453 listeners: {
454 resize: function(panel, width, height) {
29aedb75 455 var viewHeight = me.getSize().height;
53e3ea84 456 if (height > viewHeight - 150) {
29aedb75
DC
457 panel.setHeight(viewHeight - 150);
458 }
f6710aac
TL
459 },
460 },
461 },
462 ],
787ae72a
DM
463 });
464
465 me.callParent();
466
467 me.updateUserInfo();
6c18be66
DC
468
469 // on resize, center all modal windows
8058410f 470 Ext.on('resize', function() {
063997ed
TL
471 let modalWindows = Ext.ComponentQuery.query('window[modal]');
472 if (modalWindows.length > 0) {
473 modalWindows.forEach(win => win.alignTo(me, 'c-c'));
6c18be66
DC
474 }
475 });
f6710aac 476 },
787ae72a
DM
477});
478