]> git.proxmox.com Git - pve-manager.git/blob - www/manager6/Toolkit.js
ext6: datepicker workaround
[pve-manager.git] / www / manager6 / Toolkit.js
1 // ExtJS related things
2
3 PVE.Utils.toolkit = 'extjs',
4
5 // do not send '_dc' parameter
6 Ext.Ajax.disableCaching = false;
7
8 // custom Vtypes
9 Ext.apply(Ext.form.field.VTypes, {
10 IPAddress: function(v) {
11 return IP4_match.test(v);
12 },
13 IPAddressText: gettext('Example') + ': 192.168.1.1',
14 IPAddressMask: /[\d\.]/i,
15
16 IPCIDRAddress: function(v) {
17 return IP4_cidr_match.test(v);
18 },
19 IPCIDRAddressText: gettext('Example') + ': 192.168.1.1/24',
20 IPCIDRAddressMask: /[\d\.\/]/i,
21
22 IP6Address: function(v) {
23 return IP6_match.test(v);
24 },
25 IP6AddressText: gettext('Example') + ': 2001:DB8::42',
26 IP6AddressMask: /[A-Fa-f0-9:]/,
27
28 IP6CIDRAddress: function(v) {
29 return IP6_cidr_match.test(v);
30 },
31 IP6CIDRAddressText: gettext('Example') + ': 2001:DB8::42/64',
32 IP6CIDRAddressMask: /[A-Fa-f0-9:\/]/,
33
34 IP6PrefixLength: function(v) {
35 return v >= 0 && v <= 128;
36 },
37 IP6PrefixLengthText: gettext('Example') + ': X, where 0 <= X <= 128',
38 IP6PrefixLengthMask: /[0-9]/,
39
40 IP64Address: function(v) {
41 return IP64_match.test(v);
42 },
43 IP64AddressText: gettext('Example') + ': 192.168.1.1 2001:DB8::42',
44 IP64AddressMask: /[A-Fa-f0-9\.:]/,
45
46 MacAddress: function(v) {
47 return (/^([a-fA-F0-9]{2}:){5}[a-fA-F0-9]{2}$/).test(v);
48 },
49 MacAddressMask: /[a-fA-F0-9:]/,
50 MacAddressText: gettext('Example') + ': 01:23:45:67:89:ab',
51
52 BridgeName: function(v) {
53 return (/^vmbr\d{1,4}$/).test(v);
54 },
55 BridgeNameText: gettext('Format') + ': vmbr<b>N</b>, where 0 <= <b>N</b> <= 9999',
56
57 BondName: function(v) {
58 return (/^bond\d{1,4}$/).test(v);
59 },
60 BondNameText: gettext('Format') + ': bond<b>N</b>, where 0 <= <b>N</b> <= 9999',
61
62 InterfaceName: function(v) {
63 return (/^[a-z][a-z0-9_]{1,20}$/).test(v);
64 },
65 InterfaceNameText: gettext('Format') + ': [a-z][a-z0-9_]{1,20}',
66
67
68 QemuStartDate: function(v) {
69 return (/^(now|\d{4}-\d{1,2}-\d{1,2}(T\d{1,2}:\d{1,2}:\d{1,2})?)$/).test(v);
70 },
71 QemuStartDateText: gettext('Format') + ': "now" or "2006-06-17T16:01:21" or "2006-06-17"',
72
73 StorageId: function(v) {
74 return (/^[a-z][a-z0-9\-\_\.]*[a-z0-9]$/i).test(v);
75 },
76 StorageIdText: gettext("Allowed characters") + ": 'A-Z', 'a-z', '0-9', '-', '_', '.'",
77
78 ConfigId: function(v) {
79 return (/^[a-z][a-z0-9\_]+$/i).test(v);
80 },
81 ConfigIdText: gettext("Allowed characters") + ": 'A-Z', 'a-z', '0-9', '_'",
82
83 HttpProxy: function(v) {
84 return (/^http:\/\/.*$/).test(v);
85 },
86 HttpProxyText: gettext('Example') + ": http://username:password&#64;host:port/",
87
88 DnsName: function(v) {
89 return (/^(([a-zA-Z0-9]([a-zA-Z0-9\-]*[a-zA-Z0-9])?)\.)*([A-Za-z0-9]([A-Za-z0-9\-]*[A-Za-z0-9])?)$/).test(v);
90 },
91 DnsNameText: gettext('This is not a valid DNS name'),
92
93 // workaround for https://www.sencha.com/forum/showthread.php?302150
94 pveMail: function(v) {
95 return (/^(\w+)([\-+.][\w]+)*@(\w[\-\w]*\.){1,5}([A-Za-z]){2,63}$/).test(v);
96 },
97 pveMailText: gettext('This field should be an e-mail address in the format "user@example.com"'),
98 });
99
100 // ExtJs 5-6 has an issue with caching
101 // see https://www.sencha.com/forum/showthread.php?308989
102 Ext.define('PVE.UnderlayPool', {
103 override: 'Ext.dom.UnderlayPool',
104
105 checkOut: function () {
106 var cache = this.cache,
107 len = cache.length,
108 el;
109
110 // do cleanup because some of the objects might have been destroyed
111 while (len--) {
112 if (cache[len].destroyed) {
113 cache.splice(len, 1);
114 }
115 }
116 // end do cleanup
117
118 el = cache.shift();
119
120 if (!el) {
121 el = Ext.Element.create(this.elementConfig);
122 el.setVisibilityMode(2);
123 //<debug>
124 // tell the spec runner to ignore this element when checking if the dom is clean
125 el.dom.setAttribute('data-sticky', true);
126 //</debug>
127 }
128
129 return el;
130 }
131 });
132
133 // should be fixed with ExtJS 6.0.2, see:
134 // https://www.sencha.com/forum/showthread.php?307244-Bug-with-datefield-in-window-with-scroll
135 Ext.define('PVE.Datepicker', {
136 override: 'Ext.picker.Date',
137 hideMode: 'visibility'
138 });
139
140 Ext.define('Ext.ux.IFrame', {
141 extend: 'Ext.Component',
142
143 alias: 'widget.uxiframe',
144
145 loadMask: 'Loading...',
146
147 src: 'about:blank',
148
149 renderTpl: [
150 '<iframe src="{src}" id="{id}-iframeEl" data-ref="iframeEl" name="{frameName}" width="100%" height="100%" frameborder="0" allowfullscreen="true"></iframe>'
151 ],
152 childEls: ['iframeEl'],
153
154 initComponent: function () {
155 this.callParent();
156
157 this.frameName = this.frameName || this.id + '-frame';
158 },
159
160 initEvents : function() {
161 var me = this;
162 me.callParent();
163 me.iframeEl.on('load', me.onLoad, me);
164 },
165
166 initRenderData: function() {
167 return Ext.apply(this.callParent(), {
168 src: this.src,
169 frameName: this.frameName
170 });
171 },
172
173 getBody: function() {
174 var doc = this.getDoc();
175 return doc.body || doc.documentElement;
176 },
177
178 getDoc: function() {
179 try {
180 return this.getWin().document;
181 } catch (ex) {
182 return null;
183 }
184 },
185
186 getWin: function() {
187 var me = this,
188 name = me.frameName,
189 win = Ext.isIE
190 ? me.iframeEl.dom.contentWindow
191 : window.frames[name];
192 return win;
193 },
194
195 getFrame: function() {
196 var me = this;
197 return me.iframeEl.dom;
198 },
199
200 beforeDestroy: function () {
201 this.cleanupListeners(true);
202 this.callParent();
203 },
204
205 cleanupListeners: function(destroying){
206 var doc, prop;
207
208 if (this.rendered) {
209 try {
210 doc = this.getDoc();
211 if (doc) {
212 Ext.get(doc).un(this._docListeners);
213 if (destroying) {
214 for (prop in doc) {
215 if (doc.hasOwnProperty && doc.hasOwnProperty(prop)) {
216 delete doc[prop];
217 }
218 }
219 }
220 }
221 } catch(e) { }
222 }
223 },
224
225 onLoad: function() {
226 var me = this,
227 doc = me.getDoc(),
228 fn = me.onRelayedEvent;
229
230 if (doc) {
231 try {
232 // These events need to be relayed from the inner document (where they stop
233 // bubbling) up to the outer document. This has to be done at the DOM level so
234 // the event reaches listeners on elements like the document body. The effected
235 // mechanisms that depend on this bubbling behavior are listed to the right
236 // of the event.
237 Ext.get(doc).on(
238 me._docListeners = {
239 mousedown: fn, // menu dismisal (MenuManager) and Window onMouseDown (toFront)
240 mousemove: fn, // window resize drag detection
241 mouseup: fn, // window resize termination
242 click: fn, // not sure, but just to be safe
243 dblclick: fn, // not sure again
244 scope: me
245 }
246 );
247 } catch(e) {
248 // cannot do this xss
249 }
250
251 // We need to be sure we remove all our events from the iframe on unload or we're going to LEAK!
252 Ext.get(this.getWin()).on('beforeunload', me.cleanupListeners, me);
253
254 this.el.unmask();
255 this.fireEvent('load', this);
256
257 } else if (me.src) {
258
259 this.el.unmask();
260 this.fireEvent('error', this);
261 }
262
263
264 },
265
266 onRelayedEvent: function (event) {
267 // relay event from the iframe's document to the document that owns the iframe...
268
269 var iframeEl = this.iframeEl,
270
271 // Get the left-based iframe position
272 iframeXY = iframeEl.getTrueXY(),
273 originalEventXY = event.getXY(),
274
275 // Get the left-based XY position.
276 // This is because the consumer of the injected event will
277 // perform its own RTL normalization.
278 eventXY = event.getTrueXY();
279
280 // the event from the inner document has XY relative to that document's origin,
281 // so adjust it to use the origin of the iframe in the outer document:
282 event.xy = [iframeXY[0] + eventXY[0], iframeXY[1] + eventXY[1]];
283
284 event.injectEvent(iframeEl); // blame the iframe for the event...
285
286 event.xy = originalEventXY; // restore the original XY (just for safety)
287 },
288
289 load: function (src) {
290 var me = this,
291 text = me.loadMask,
292 frame = me.getFrame();
293
294 if (me.fireEvent('beforeload', me, src) !== false) {
295 if (text && me.el) {
296 me.el.mask(text);
297 }
298
299 frame.src = me.src = (src || me.src);
300 }
301 }
302 });