]> git.proxmox.com Git - pmg-gui.git/blob - js/QuarantineView.js
jslint: rework icon_status_map to avoid type confusion
[pmg-gui.git] / js / QuarantineView.js
1 /*global Proxmox*/
2 Ext.define('PMG.QuarantineNavigationTree', {
3 extend: 'Ext.list.Tree',
4 xtype: 'quarantinenavigationtree',
5
6 select: function(path) {
7 var me = this;
8 var item = me.getStore().findRecord('path', path, 0, false, true, true);
9 me.setSelection(item);
10 },
11
12 store: {
13 root: {
14 expanded: true,
15 children: [
16 {
17 text: gettext('Spam Quarantine'),
18 iconCls: 'fa fa-cubes',
19 path: 'pmgSpamQuarantine',
20 expanded: true,
21 children: [
22 {
23 text: gettext('Whitelist'),
24 //iconCls: 'fa fa-cubes',
25 path: 'pmgUserWhitelist',
26 leaf: true
27 },
28 {
29 text: gettext('Blacklist'),
30 //iconCls: 'fa fa-cubes',
31 path: 'pmgUserBlacklist',
32 leaf: true
33 }
34 ]
35 }
36 ]
37 }
38 },
39
40 animation: false,
41 expanderOnly: true,
42 expanderFirst: false,
43 ui: 'nav'
44 });
45
46 Ext.define('PMG.QuarantineView', {
47 extend: 'Ext.container.Container',
48 xtype: 'quarantineview',
49
50 title: 'Proxmox Mail Gateway Quarantine',
51
52 controller: {
53 xclass: 'Ext.app.ViewController',
54 routes: {
55 ':path:subpath': {
56 action: 'changePath',
57 before: 'beforeChangePath',
58 conditions : {
59 ':path' : '(?:([%a-zA-Z0-9\-\_\s,]+))',
60 ':subpath' : '(?:(?::)([%a-zA-Z0-9\-\_\s,]+))?'
61 }
62 }
63 },
64
65 beforeChangePath: function(path, subpath, action) {
66 var me = this;
67
68 if (!Ext.ClassManager.getByAlias('widget.'+ path)) {
69 console.warn('xtype "'+path+'" not found');
70 action.stop();
71 return;
72 }
73
74 var lastpanel = me.lookupReference('contentpanel').getLayout().getActiveItem();
75 if (lastpanel && lastpanel.xtype === path) {
76 // we have the right component already,
77 // we just need to select the correct tab
78 // default to the first
79 subpath = subpath || 0;
80 if (lastpanel.getActiveTab) {
81 // we assume lastpanel is a tabpanel
82 if (lastpanel.getActiveTab().getItemId() === subpath) {
83 // we are already there
84 } else {
85 // set the active tab
86 lastpanel.setActiveTab(subpath);
87 }
88 }
89 action.stop();
90 return;
91 }
92
93 action.resume();
94 },
95
96 changePath: function(path,subpath) {
97 var me = this;
98 var contentpanel = me.lookupReference('contentpanel');
99 var lastpanel = contentpanel.getLayout().getActiveItem();
100
101 var obj = contentpanel.add({ xtype: path, cselect: subpath });
102 var treelist = me.lookupReference('navtree');
103
104 treelist.suspendEvents();
105 treelist.select(path);
106 treelist.resumeEvents();
107
108 if (Ext.isFunction(obj.setActiveTab)) {
109 obj.setActiveTab(subpath || 0);
110 obj.addListener('tabchange', function(tabpanel, newc, oldc) {
111 var newpath = path;
112
113 // only add the subpath part for the
114 // non-default tabs
115 if (tabpanel.items.findIndex('id', newc.id) !== 0) {
116 newpath += ":" + newc.getItemId();
117 }
118
119 me.redirectTo(newpath);
120 });
121 }
122
123 contentpanel.setActiveItem(obj);
124
125 if (lastpanel) {
126 contentpanel.remove(lastpanel, { destroy: true });
127 }
128 },
129
130 logout: function() {
131 PMG.app.logout();
132 },
133
134 navigate: function(treelist, item) {
135 this.redirectTo(item.get('path'));
136 },
137
138 execQuarantineAction: function(qa) {
139 PMG.Utils.doQuarantineAction(qa.action, qa.cselect);
140 },
141
142 control: {
143 'button[reference=logoutButton]': {
144 click: 'logout'
145 }
146 },
147
148 init: function(view) {
149 var me = this;
150
151 // load username
152 var username = Proxmox.UserName.replace(/\@quarantine$/, '');
153 me.lookupReference('usernameinfo').update({username: username});
154
155 // show login on requestexception
156 // fixme: what about other errors
157 Ext.Ajax.on('requestexception', function(conn, response, options) {
158 if (response.status == 401) { // auth failure
159 me.logout();
160 }
161 });
162
163 var qa = PMG.Utils.extractQuarantineAction();
164 var token;
165 if (qa) {
166 token = 'pmgSpamQuarantine';
167 if (qa.action === 'blacklist') { token = 'pmgUserBlacklist'; }
168 if (qa.action === 'whitelist') { token = 'pmgUserWhitelist'; }
169 if (qa.cselect) {
170 token += ':' + qa.cselect;
171 }
172 this.redirectTo(token, true);
173 if (qa.action) {
174 me.execQuarantineAction(qa);
175 }
176 } else {
177 // select treeitem and load page from url fragment
178
179 token = Ext.util.History.getToken() || 'pmgSpamQuarantine';
180 this.redirectTo(token, true);
181 }
182 }
183 },
184
185 plugins: 'viewport',
186
187 layout: {
188 type: 'border'
189 },
190
191 items: [
192 {
193 region: 'north',
194 xtype: 'container',
195 layout: {
196 type: 'hbox',
197 align: 'middle'
198 },
199 margin: '2 5 2 5',
200 height: 38,
201 items: [
202 {
203 xtype: 'proxmoxlogo'
204 },
205 {
206 xtype: 'versioninfo'
207 },
208 {
209 flex: 1
210 },
211 {
212 baseCls: 'x-plain',
213 reference: 'usernameinfo',
214 padding: '0 5',
215 tpl: Ext.String.format(gettext("You are logged in as '{0}'"), '{username}')
216 },
217 {
218 reference: 'logoutButton',
219 xtype: 'button',
220 iconCls: 'fa fa-sign-out',
221 text: gettext('Logout')
222 }
223 ]
224 },
225 {
226 xtype: 'quarantinenavigationtree',
227 reference: 'navtree',
228 minWidth: 177,
229 border: false,
230 region: 'west',
231 // we have to define it here until extjs 6.2
232 // because of a bug where a viewcontroller does not detect
233 // the selectionchange event of a treelist
234 listeners: {
235 selectionchange: 'navigate'
236 }
237 },
238 {
239 xtype: 'panel',
240 layout: {
241 type: 'card'
242 },
243 region: 'center',
244 border: false,
245 reference: 'contentpanel'
246 }
247 ]
248 });