]> jfr.im git - irc/quakenet/qwebirc.git/blame - js/ui/frontends/qui.js
Add feedback support.
[irc/quakenet/qwebirc.git] / js / ui / frontends / qui.js
CommitLineData
e20e5a6b
CP
1qwebirc.ui.QUI = new Class({
2 Extends: qwebirc.ui.NewLoginUI,
2cad083e
CP
3 initialize: function(parentElement, theme, options) {
4 this.parent(parentElement, qwebirc.ui.QUI.Window, "qui", options);
e20e5a6b
CP
5 this.theme = theme;
6 this.parentElement = parentElement;
7 },
8 postInitialize: function() {
9 this.qjsui = new qwebirc.ui.QUI.JSUI("qwebirc-qui", this.parentElement);
bfbe72f9
CP
10 this.qjsui.addEvent("reflow", function() {
11 var w = this.getActiveWindow();
12 if($defined(w))
13 w.onResize();
14 }.bind(this));
941e1642 15 this.qjsui.top.addClass("outertabbar");
e20e5a6b
CP
16
17 this.qjsui.bottom.addClass("input");
18 this.qjsui.right.addClass("nicklist");
19 this.qjsui.topic.addClass("topic");
20 this.qjsui.middle.addClass("lines");
21
941e1642
CP
22 this.outerTabs = this.qjsui.top;
23 this.__createDropdown();
24
25 this.tabs = new Element("div");
26 this.tabs.addClass("tabbar");
27 this.outerTabs.appendChild(this.tabs);
e20e5a6b
CP
28 this.origtopic = this.topic = this.qjsui.topic;
29 this.origlines = this.lines = this.qjsui.middle;
30 this.orignicklist = this.nicklist = this.qjsui.right;
31
32 this.input = this.qjsui.bottom;
33 this.reflow = this.qjsui.reflow.bind(this.qjsui);
34
ff4befd8
CP
35 this.tabs.addEvent("mousewheel", function(x) {
36 var event = new Event(x);
37
38 /* up */
39 if(event.wheel > 0) {
40 this.nextWindow();
41 } else if(event.wheel < 0) {
42 /* down */
b35116e2 43 this.prevWindow();
ff4befd8
CP
44 }
45 event.stop();
46 }.bind(this));
47
e20e5a6b
CP
48 this.createInput();
49 this.reflow();
50 },
43cb8910
CP
51 __createDropdown: function() {
52 var dropdownMenu = new Element("div");
53 dropdownMenu.addClass("dropdownmenu");
54 var surface = new Element("div");
55 surface.addClass("surface");
43cb8910
CP
56 dropdownMenu.hide = function(noRemove) {
57 dropdownMenu.setStyle("display", "none");
58 dropdownMenu.visible = false;
59 if(!noRemove)
60 this.parentElement.removeChild(surface);
61 }.bind(this);
62 surface.addEvent("click", function() {
63 dropdownMenu.hide();
64 });
65
66 dropdownMenu.hide(true);
67 this.parentElement.appendChild(dropdownMenu);
68
69 this.UICommands.forEach(function(x) {
70 var text = x[0];
71 var fn = this[x[1] + "Window"].bind(this);
72 var e = new Element("a");
73 e.addEvent("click", function() {
74 dropdownMenu.hide();
75 fn();
76 });
77 e.set("text", text);
78 dropdownMenu.appendChild(e);
79 }.bind(this));
80
941e1642 81 var dropdown = new Element("div");
43cb8910 82 dropdown.addClass("dropdown-tab");
941e1642 83 dropdown.appendChild(new Element("img", {src: "images/favicon.png", title: "menu", alt: "menu"}));
391f51ff
CP
84 dropdown.setStyle("opacity", 1);
85
86 var dropdownEffect = new Fx.Tween(dropdown, {duration: "long", property: "opacity", link: "chain"});
87 dropdownEffect.start(0.25);
88 dropdownEffect.start(1);
89 dropdownEffect.start(0.33);
90 dropdownEffect.start(1);
91
941e1642 92 this.outerTabs.appendChild(dropdown);
43cb8910
CP
93 dropdownMenu.show = function(x){
94 new Event(x).stop();
95
96 if(dropdownMenu.visible) {
97 dropdownMenu.hide();
98 return;
99 }
100 this.parentElement.appendChild(surface);
4355d625 101/*
43cb8910
CP
102 var left = x.client.x;
103 var top = x.client.y;
4355d625
CP
104 */
105 /* -1 == border */
391f51ff 106 var top = this.tabs.getSize().y;
43cb8910 107
941e1642 108 dropdownMenu.setStyle("left", 0);
43cb8910
CP
109 dropdownMenu.setStyle("top", top);
110 dropdownMenu.setStyle("display", "inline-block");
111 dropdownMenu.visible = true;
112 }.bind(this);
113 dropdown.addEvent("click", dropdownMenu.show);
114
115 var dropdownhint = new Element("div");
116 dropdownhint.addClass("dropdownhint");
391f51ff
CP
117 dropdownhint.set("text", "Click the icon for the main menu.");
118
119 new Fx.Morph(dropdownhint, {duration: "normal", transition: Fx.Transitions.Sine.easeOut}).start({left: [900, 5]});
120
43cb8910 121 var hider = function() {
391f51ff
CP
122 new Fx.Morph(dropdownhint, {duration: "long"}).start({left: [5, -900]});
123 }.delay(4000, this);
124 var hider2 = function() {
125 if(dropdownhint.hidden)
126 return;
127 this.parentElement.removeChild(dropdownhint);
128 dropdownhint.hidden = 1;
129 }.bind(this);
130 hider2.delay(4000);
131
132 document.addEvent("mousedown", hider2);
133 document.addEvent("keypress", hider2);
134
43cb8910
CP
135 this.parentElement.appendChild(dropdownhint);
136 },
e20e5a6b
CP
137 createInput: function() {
138 var form = new Element("form");
139 this.input.appendChild(form);
140 form.addClass("input");
141
142 var inputbox = new Element("input");
143 form.appendChild(inputbox);
144 this.inputbox = inputbox;
145
146 form.addEvent("submit", function(e) {
147 new Event(e).stop();
148
149 if(inputbox.value == "")
150 return;
151
3184781b 152 this.resetTabComplete();
e20e5a6b
CP
153 this.getActiveWindow().historyExec(inputbox.value);
154 inputbox.value = "";
155 }.bind(this));
156
3184781b
CP
157 inputbox.addEvent("focus", this.resetTabComplete.bind(this));
158 inputbox.addEvent("mousedown", this.resetTabComplete.bind(this));
159
e20e5a6b
CP
160 inputbox.addEvent("keydown", function(e) {
161 var resultfn;
162 var cvalue = inputbox.value;
3184781b 163
e20e5a6b
CP
164 if(e.key == "up") {
165 resultfn = this.commandhistory.upLine;
166 } else if(e.key == "down") {
167 resultfn = this.commandhistory.downLine;
3184781b
CP
168 } else if(e.key == "tab") {
169 new Event(e).stop();
170 this.tabComplete(inputbox);
171 return;
e20e5a6b 172 } else {
3184781b
CP
173 /* ideally alt and other keys wouldn't break this */
174 this.resetTabComplete();
e20e5a6b
CP
175 return;
176 }
177
3184781b 178 this.resetTabComplete();
e20e5a6b
CP
179 if((cvalue != "") && (this.lastcvalue != cvalue))
180 this.commandhistory.addLine(cvalue, true);
181
182 var result = resultfn.bind(this.commandhistory)();
183
184 new Event(e).stop();
185 if(!result)
186 result = "";
187 this.lastcvalue = result;
188
189 inputbox.value = result;
1d6756bc 190 qwebirc.util.setAtEnd(inputbox);
e20e5a6b
CP
191 }.bind(this));
192 },
193 setLines: function(lines) {
194 this.lines.parentNode.replaceChild(lines, this.lines);
195 this.qjsui.middle = this.lines = lines;
196 },
197 setChannelItems: function(nicklist, topic) {
198 if(!$defined(nicklist)) {
199 nicklist = this.orignicklist;
200 topic = this.origtopic;
201 }
202 this.nicklist.parentNode.replaceChild(nicklist, this.nicklist);
203 this.qjsui.right = this.nicklist = nicklist;
204
205 this.topic.parentNode.replaceChild(topic, this.topic);
206 this.qjsui.topic = this.topic = topic;
207 }
208});
209
210qwebirc.ui.QUI.JSUI = new Class({
bfbe72f9 211 Implements: [Events],
b1ee83f3
CP
212 initialize: function(class_, parent, sizer) {
213 this.parent = parent;
214 this.sizer = $defined(sizer)?sizer:parent;
215
24ede2cb
CP
216 this.class_ = class_;
217 this.create();
218
6c19eb8f
CP
219 this.reflowevent = null;
220
b1ee83f3 221 window.addEvent("resize", function() {
6c19eb8f 222 this.reflow(100);
b1ee83f3
CP
223 }.bind(this));
224 },
24ede2cb 225 applyClasses: function(pos, l) {
6c19eb8f 226 l.addClass("dynamicpanel");
24ede2cb 227 l.addClass(this.class_);
6c19eb8f 228
24ede2cb
CP
229 if(pos == "middle") {
230 l.addClass("leftboundpanel");
231 } else if(pos == "top") {
232 l.addClass("topboundpanel");
233 l.addClass("widepanel");
234 } else if(pos == "topic") {
235 l.addClass("widepanel");
236 } else if(pos == "right") {
237 l.addClass("rightboundpanel");
238 } else if(pos == "bottom") {
239 l.addClass("bottomboundpanel");
240 l.addClass("widepanel");
241 }
242 },
243 create: function() {
244 var XE = function(pos) {
245 var element = new Element("div");
246 this.applyClasses(pos, element);
b1ee83f3 247
24ede2cb
CP
248 this.parent.appendChild(element);
249 return element;
b1ee83f3
CP
250 }.bind(this);
251
24ede2cb
CP
252 this.top = XE("top");
253 this.topic = XE("topic");
254 this.middle = XE("middle");
255 this.right = XE("right");
256 this.bottom = XE("bottom");
b1ee83f3 257 },
6c19eb8f
CP
258 reflow: function(delay) {
259 if(!delay)
260 delay = 1;
261
262 if(this.reflowevent)
263 $clear(this.reflowevent);
264 this.__reflow();
265 this.reflowevent = this.__reflow.delay(delay, this);
266 },
267 __reflow: function() {
b1ee83f3
CP
268 var bottom = this.bottom;
269 var middle = this.middle;
270 var right = this.right;
271 var topic = this.topic;
272 var top = this.top;
273
274 var topicsize = topic.getSize();
275 var topsize = top.getSize();
276 var rightsize = right.getSize();
277 var bottomsize = bottom.getSize();
278 var docsize = this.sizer.getSize();
279
280 var mheight = (docsize.y - topsize.y - bottomsize.y - topicsize.y);
281 var mwidth = (docsize.x - rightsize.x);
282
283 topic.setStyle("top", topsize.y + "px");
284
285 middle.setStyle("top", (topsize.y + topicsize.y) + "px");
286 if(mheight > 0) {
287 middle.setStyle("height", mheight + "px");
288 right.setStyle("height", mheight + "px");
289 }
290
6c19eb8f 291 if(mwidth > 0)
b1ee83f3 292 middle.setStyle("width", mwidth + "px");
b1ee83f3
CP
293 right.setStyle("top", (topsize.y + topicsize.y) + "px");
294 right.setStyle("left", mwidth + "px");
295
296 bottom.setStyle("top", (docsize.y - bottomsize.y) + "px");
bfbe72f9 297 this.fireEvent("reflow");
b1ee83f3
CP
298 },
299 showChannel: function(state) {
300 var display = "none";
301 if(state)
302 display = "block";
303
304 this.right.setStyle("display", display);
305 this.topic.setStyle("display", display);
6c19eb8f
CP
306 },
307 showInput: function(state) {
941e1642 308 this.bottom.isVisible = state;
6c19eb8f 309 this.bottom.setStyle("display", state?"block":"none");
b1ee83f3
CP
310 }
311});
35155ba7 312
e20e5a6b
CP
313qwebirc.ui.QUI.Window = new Class({
314 Extends: qwebirc.ui.Window,
f4ae92cc 315
f74802c5
CP
316 initialize: function(parentObject, client, type, name, identifier) {
317 this.parent(parentObject, client, type, name, identifier);
be0bd774 318
66de775f 319 this.tab = new Element("a", {"href": "#"});
f4ae92cc 320 this.tab.addClass("tab");
fd60516d
CP
321 this.tab.addEvent("focus", function() { this.blur() }.bind(this.tab));;
322
35155ba7 323 parentObject.tabs.appendChild(this.tab);
f4ae92cc
CP
324
325 this.tab.appendText(name);
66de775f
CP
326 this.tab.addEvent("click", function(e) {
327 new Event(e).stop();
f84bf379
CP
328
329 if(this.closed)
330 return;
331
f4ae92cc
CP
332 parentObject.selectWindow(this);
333 }.bind(this));
f4ae92cc 334
e20e5a6b
CP
335 if(type != qwebirc.ui.WINDOW_STATUS && type != qwebirc.ui.WINDOW_CONNECT) {
336 var tabclose = new Element("span");
337 tabclose.set("text", "X");
f4ae92cc 338 tabclose.addClass("tabclose");
f84bf379 339 var close = function(e) {
f4ae92cc
CP
340 new Event(e).stop();
341
f84bf379
CP
342 if(this.closed)
343 return;
344
e20e5a6b 345 if(type == qwebirc.ui.WINDOW_CHANNEL)
f4ae92cc
CP
346 this.client.exec("/PART " + name);
347
348 this.close();
3184781b 349
941e1642 350 //parentObject.inputbox.focus();
f84bf379
CP
351 }.bind(this);
352
353 tabclose.addEvent("click", close);
354 this.tab.addEvent("mouseup", function(e) {
b46f79e6
CP
355 var button = 1;
356
357 if(Browser.Engine.trident)
358 button = 4;
359
360 if(e.event.button == button)
f84bf379 361 close(e);
f4ae92cc 362 }.bind(this));
52090a1f 363
f4ae92cc
CP
364 this.tab.appendChild(tabclose);
365 }
be0bd774 366
be0bd774 367 this.lines = new Element("div");
6c19eb8f 368 this.parentObject.qjsui.applyClasses("middle", this.lines);
be0bd774 369 this.lines.addClass("lines");
e82478eb
CP
370 if(type != qwebirc.ui.WINDOW_CUSTOM && type != qwebirc.ui.WINDOW_CONNECT)
371 this.lines.addClass("ircwindow");
6c19eb8f 372
b1ee83f3
CP
373 this.lines.addEvent("scroll", function() {
374 this.scrolleddown = this.scrolledDown();
ff6a32cc 375 this.scrollpos = this.getScrollParent().getScroll();
be0bd774 376 }.bind(this));
be0bd774 377
e20e5a6b 378 if(type == qwebirc.ui.WINDOW_CHANNEL) {
be0bd774
CP
379 this.topic = new Element("div");
380 this.topic.addClass("topic");
b1ee83f3 381 this.topic.addClass("tab-invisible");
be0bd774 382 this.topic.set("html", "&nbsp;");
6c19eb8f 383 this.parentObject.qjsui.applyClasses("topic", this.topic);
be0bd774 384
52090a1f 385 this.prevNick = null;
66de775f
CP
386 this.nicklist = new Element("div");
387 this.nicklist.addClass("nicklist");
b1ee83f3 388 this.nicklist.addClass("tab-invisible");
cffd43cf 389 this.nicklist.addEvent("click", this.removePrevMenu.bind(this));
6c19eb8f 390 this.parentObject.qjsui.applyClasses("nicklist", this.nicklist);
be0bd774 391 }
b1ee83f3 392
e20e5a6b 393 if(type == qwebirc.ui.WINDOW_CHANNEL) {
359b7edd
CP
394 this.updateTopic("");
395 } else {
396 this.reflow();
397 }
b1ee83f3
CP
398 },
399 reflow: function() {
400 this.parentObject.reflow();
35155ba7
CP
401 },
402 onResize: function() {
ff6a32cc
CP
403 if(this.scrolleddown) {
404 if(Browser.Engine.trident) {
405 this.scrollToBottom.delay(5, this);
406 } else {
407 this.scrollToBottom();
408 }
409 } else if($defined(this.scrollpos)) {
410 if(Browser.Engine.trident) {
411 this.getScrollParent().scrollTo(this.scrollpos.x, this.scrollpos.y);
412 } else {
413 this.getScrollParent().scrollTo.delay(5, this, [this.scrollpos.x, this.scrollpos.y]);
414 }
415 }
359b7edd 416 },
cffd43cf 417 createMenu: function(nick, parent) {
d2512acf 418 var e = new Element("div");
cffd43cf
CP
419 parent.appendChild(e);
420 e.addClass("menu");
421
422 qwebirc.ui.MENU_ITEMS.forEach(function(x) {
d2512acf 423 var e2 = new Element("a");
cffd43cf
CP
424 e.appendChild(e2);
425
426 e2.href = "#";
427 e2.set("text", "- " + x[0]);
428
429 e2.addEvent("focus", function() { this.blur() }.bind(e2));
430 e2.addEvent("click", function(ev) { new Event(ev.stop()); this.menuClick(x[1]); }.bind(this));
431 }.bind(this));
432 return e;
433 },
434 menuClick: function(fn) {
435 /*
436 this.prevNick.removeChild(this.prevNick.menu);
437 this.prevNick.menu = null;
438 */
439 fn.bind(this)(this.prevNick.realNick);
440 this.removePrevMenu();
441 },
d8272bcb
CP
442 moveMenuClass: function() {
443 if(!this.prevNick)
444 return;
445 if(this.nicklist.firstChild == this.prevNick) {
446 this.prevNick.removeClass("selected-middle");
447 } else {
448 this.prevNick.addClass("selected-middle");
449 }
450 },
cffd43cf
CP
451 removePrevMenu: function() {
452 if(!this.prevNick)
453 return;
454
455 this.prevNick.removeClass("selected");
d8272bcb 456 this.prevNick.removeClass("selected-middle");
cffd43cf
CP
457 if(this.prevNick.menu)
458 this.prevNick.removeChild(this.prevNick.menu);
459 this.prevNick = null;
460 },
52090a1f
CP
461 nickListAdd: function(nick, position) {
462 var e = new Element("a");
463 qwebirc.ui.insertAt(position, this.nicklist, e);
f4ae92cc 464
52090a1f
CP
465 e.href = "#";
466 e.appendChild(document.createTextNode(nick));
467
468 e.realNick = this.client.stripPrefix(nick);
469
470 e.addEvent("click", function(x) {
aab6d06a
CP
471 if(this.prevNick == e) {
472 this.removePrevMenu();
473 return;
474 }
475
cffd43cf 476 this.removePrevMenu();
52090a1f
CP
477 this.prevNick = e;
478 e.addClass("selected");
d8272bcb 479 this.moveMenuClass();
cffd43cf 480 e.menu = this.createMenu(x.realNick, e);
52090a1f
CP
481 new Event(x).stop();
482 }.bind(this));
483 e.addEvent("dblclick", function(x) {
484 new Event(x).stop();
485 this.client.exec("/QUERY " + e.realNick);
486 }.bind(this));
487
fd60516d 488 e.addEvent("focus", function() { this.blur() }.bind(e));
d8272bcb 489 this.moveMenuClass();
52090a1f
CP
490 return e;
491 },
492 nickListRemove: function(nick, stored) {
493 this.nicklist.removeChild(stored);
d8272bcb 494 this.moveMenuClass();
f4ae92cc
CP
495 },
496 updateTopic: function(topic) {
f4ae92cc
CP
497 var t = this.topic;
498
499 while(t.firstChild)
500 t.removeChild(t.firstChild);
501
66de775f 502 if(topic) {
1f06a70a 503 this.parent(topic, t);
66de775f 504 } else {
359b7edd
CP
505 var e = new Element("div");
506 e.set("text", "(no topic set)");
66de775f 507 e.addClass("emptytopic");
359b7edd 508 t.appendChild(e);
66de775f 509 }
359b7edd 510 this.reflow();
f4ae92cc
CP
511 },
512 select: function() {
e20e5a6b 513 var inputVisible = this.type != qwebirc.ui.WINDOW_CONNECT && this.type != qwebirc.ui.WINDOW_CUSTOM;
6c19eb8f 514
f4ae92cc 515 this.tab.removeClass("tab-unselected");
f4ae92cc 516 this.tab.addClass("tab-selected");
359b7edd 517
6c19eb8f
CP
518 this.parentObject.setLines(this.lines);
519 this.parentObject.setChannelItems(this.nicklist, this.topic);
520 this.parentObject.qjsui.showInput(inputVisible);
521 this.parentObject.qjsui.showChannel($defined(this.nicklist));
522
523 this.reflow();
24ede2cb 524
7c633700 525 this.parent();
25be5960 526
6c19eb8f
CP
527 if(inputVisible)
528 this.parentObject.inputbox.focus();
f4ae92cc
CP
529 },
530 deselect: function() {
531 this.parent();
532
f4ae92cc
CP
533 this.tab.removeClass("tab-selected");
534 this.tab.addClass("tab-unselected");
535 },
536 close: function() {
537 this.parent();
538
f4ae92cc
CP
539 this.parentObject.tabs.removeChild(this.tab);
540 },
b35116e2 541 addLine: function(type, line, colourClass) {
f4ae92cc
CP
542 var e = new Element("div");
543
b35116e2
CP
544 if(colourClass) {
545 e.addClass(colourClass);
f4ae92cc
CP
546 } else if(this.lastcolour) {
547 e.addClass("linestyle1");
548 } else {
549 e.addClass("linestyle2");
550 }
f4ae92cc 551 this.lastcolour = !this.lastcolour;
35155ba7 552
b35116e2 553 this.parent(type, line, colourClass, e);
be0bd774
CP
554 },
555 setHilighted: function(state) {
96f28062
CP
556 laststate = this.hilighted;
557
be0bd774 558 this.parent(state);
96f28062
CP
559
560 if(state == laststate)
561 return;
562
563 this.tab.removeClass("tab-hilight-activity");
564 this.tab.removeClass("tab-hilight-us");
565 this.tab.removeClass("tab-hilight-speech");
f4ae92cc 566
96f28062
CP
567 switch(this.hilighted) {
568 case qwebirc.ui.HILIGHT_US:
569 this.tab.addClass("tab-hilight-us");
570 break;
571 case qwebirc.ui.HILIGHT_SPEECH:
572 this.tab.addClass("tab-hilight-speech");
573 break;
574 case qwebirc.ui.HILIGHT_ACTIVITY:
575 this.tab.addClass("tab-hilight-activity");
576 break;
be0bd774 577 }
f4ae92cc
CP
578 }
579});