]> jfr.im git - irc/quakenet/qwebirc.git/blobdiff - js/ui/qui.js
Try not to corrupt the namespaces.
[irc/quakenet/qwebirc.git] / js / ui / qui.js
index d1ddbfa68a8a0705006a4a244cd819e8dccd7b36..959b83694e7d295ae937921c3dc6fb5ef413e2ed 100644 (file)
-var QUIWindow = new Class({
-  Extends: UIWindow,
-  
-  initialize: function(parentObject, client, type, name) {
-    this.parent(parentObject, client, type, name);
-        
-    this.outerContainer = new Element("div");
-    this.outerContainer.addClass("outercontainer");
-    this.outerContainer.addClass("tab-invisible");
+qwebirc.ui.QUI = new Class({
+  Extends: qwebirc.ui.NewLoginUI,
+  initialize: function(parentElement, theme) {
+    this.parent(parentElement, qwebirc.ui.QUI.Window, "qui");
+    this.theme = theme;
+    this.parentElement = parentElement;
+  },
+  postInitialize: function() {
+    this.qjsui = new qwebirc.ui.QUI.JSUI("qwebirc-qui", this.parentElement);
     
-    parentObject.container.appendChild(this.outerContainer);
+    this.qjsui.top.addClass("tabbar");
     
-    if(type == WINDOW_CHANNEL) {
-      this.nicklist = new Element("div");
-      this.nicklist.addClass("nicklist");
+    this.qjsui.bottom.addClass("input");
+    this.qjsui.right.addClass("nicklist");
+    this.qjsui.topic.addClass("topic");
+    this.qjsui.middle.addClass("lines");
+    
+    this.tabs = this.qjsui.top;
+    this.origtopic = this.topic = this.qjsui.topic;
+    this.origlines = this.lines = this.qjsui.middle;
+    this.orignicklist = this.nicklist = this.qjsui.right;
+    
+    this.input = this.qjsui.bottom;
+    this.reflow = this.qjsui.reflow.bind(this.qjsui);
+    
+    this.createInput();
+    this.reflow();
+  },
+  createInput: function() {
+    var form = new Element("form");
+    this.input.appendChild(form);
+    form.addClass("input");
+    
+    var inputbox = new Element("input");
+    form.appendChild(inputbox);
+    this.inputbox = inputbox;
+    
+    form.addEvent("submit", function(e) {
+      new Event(e).stop();
+    
+      if(inputbox.value == "")
+        return;
+        
+      this.getActiveWindow().historyExec(inputbox.value);
+      inputbox.value = "";
+    }.bind(this));
+    
+    inputbox.addEvent("keydown", function(e) {
+      var resultfn;
+      var cvalue = inputbox.value;
+
+      if(e.key == "up") {
+        resultfn = this.commandhistory.upLine;
+      } else if(e.key == "down") {
+        resultfn = this.commandhistory.downLine;
+      } else {
+        return;
+      }
+      
+      if((cvalue != "") && (this.lastcvalue != cvalue))
+        this.commandhistory.addLine(cvalue, true);
       
-      this.outerContainer.appendChild(this.nicklist);
+      var result = resultfn.bind(this.commandhistory)();
+      
+      new Event(e).stop();
+      if(!result)
+        result = "";
+      this.lastcvalue = result;
+        
+      inputbox.value = result;
+      setAtEnd(inputbox);
+    }.bind(this));
+  },
+  setLines: function(lines) {
+    this.lines.parentNode.replaceChild(lines, this.lines);
+    this.qjsui.middle = this.lines = lines;
+  },
+  setChannelItems: function(nicklist, topic) {
+    if(!$defined(nicklist)) {
+      nicklist = this.orignicklist;
+      topic = this.origtopic;
     }
+    this.nicklist.parentNode.replaceChild(nicklist, this.nicklist);
+    this.qjsui.right = this.nicklist = nicklist;
+
+    this.topic.parentNode.replaceChild(topic, this.topic);
+    this.qjsui.topic = this.topic = topic;
+  }
+});
+
+qwebirc.ui.QUI.JSUI = new Class({
+  initialize: function(class_, parent, sizer) {
+    this.parent = parent;
+    this.sizer = $defined(sizer)?sizer:parent;
     
-    var innerContainer = new Element("div");
-    innerContainer.addClass("innercontainer");
-    this.outerContainer.appendChild(innerContainer);
+    this.class_ = class_;
+    this.create();
     
-    if(type == WINDOW_CHANNEL) {
-      this.topic = new Element("div");
-      this.topic.addClass("topic");
-      innerContainer.appendChild(this.topic);
+    this.reflowevent = null;
+    
+    window.addEvent("resize", function() {
+      this.reflow(100);
+    }.bind(this));
+  },
+  applyClasses: function(pos, l) {
+    l.addClass("dynamicpanel");    
+    l.addClass(this.class_);
+
+    if(pos == "middle") {
+      l.addClass("leftboundpanel");
+    } else if(pos == "top") {
+      l.addClass("topboundpanel");
+      l.addClass("widepanel");
+    } else if(pos == "topic") {
+      l.addClass("widepanel");
+    } else if(pos == "right") {
+      l.addClass("rightboundpanel");
+    } else if(pos == "bottom") {
+      l.addClass("bottomboundpanel");
+      l.addClass("widepanel");
     }
+  },
+  create: function() {
+    var XE = function(pos) {
+      var element = new Element("div");
+      this.applyClasses(pos, element);
+      
+      this.parent.appendChild(element);
+      return element;
+    }.bind(this);
     
-    this.lines = new Element("div");
-    this.lines.addClass("lines");
-    innerContainer.appendChild(this.lines);
+    this.top = XE("top");
+    this.topic = XE("topic");
+    this.middle = XE("middle");
+    this.right = XE("right");
+    this.bottom = XE("bottom");
+  },
+  reflow: function(delay) {
+    if(!delay)
+      delay = 1;
+      
+    if(this.reflowevent)
+      $clear(this.reflowevent);
+    this.__reflow();
+    this.reflowevent = this.__reflow.delay(delay, this);
+  },
+  __reflow: function() {
+    var bottom = this.bottom;
+    var middle = this.middle;
+    var right = this.right;
+    var topic = this.topic;
+    var top = this.top;
+    
+    var topicsize = topic.getSize();
+    var topsize = top.getSize();
+    var rightsize = right.getSize();
+    var bottomsize = bottom.getSize();
+    var docsize = this.sizer.getSize();
+    
+    var mheight = (docsize.y - topsize.y - bottomsize.y - topicsize.y);
+    var mwidth = (docsize.x - rightsize.x);
+
+    topic.setStyle("top", topsize.y + "px");
+    
+    middle.setStyle("top", (topsize.y + topicsize.y) + "px");
+    if(mheight > 0) {
+      middle.setStyle("height", mheight + "px");
+      right.setStyle("height", mheight + "px");
+    }
     
-    this.tab = new Element("span");
+    if(mwidth > 0)
+      middle.setStyle("width", mwidth + "px");
+    right.setStyle("top", (topsize.y + topicsize.y) + "px");
+    right.setStyle("left", mwidth + "px");
+    
+    bottom.setStyle("top", (docsize.y - bottomsize.y) + "px");
+  },
+  showChannel: function(state) {
+    var display = "none";
+    if(state)
+      display = "block";
+
+    this.right.setStyle("display", display);
+    this.topic.setStyle("display", display);
+  },
+  showInput: function(state) {
+    this.bottom.setStyle("display", state?"block":"none");
+  }
+});
+
+qwebirc.ui.QUI.Window = new Class({
+  Extends: qwebirc.ui.Window,
+  
+  initialize: function(parentObject, client, type, name) {
+    this.parent(parentObject, client, type, name);
+
+    this.tab = new Element("a", {"href": "#"});
     this.tab.addClass("tab");
+    parentObject.tabs.appendChild(this.tab);
     
     this.tab.appendText(name);
-    this.tab.addEvent("click", function() {
+    this.tab.addEvent("click", function(e) {
+      new Event(e).stop();
       parentObject.selectWindow(this);
     }.bind(this));
-
-    parentObject.tabs.appendChild(this.tab);
     
-    if(type != WINDOW_STATUS) {
-      tabclose = new Element("span");
+    if(type != qwebirc.ui.WINDOW_STATUS && type != qwebirc.ui.WINDOW_CONNECT) {
+      var tabclose = new Element("span");
+      tabclose.set("text", "X");
       tabclose.addClass("tabclose");
       tabclose.addEvent("click", function(e) {
         new Event(e).stop();
         
-        if(type == WINDOW_CHANNEL)
+        if(type == qwebirc.ui.WINDOW_CHANNEL)
           this.client.exec("/PART " + name);
 
         this.close();
       }.bind(this));
-      tabclose.set("text", "X");
+
       this.tab.appendChild(tabclose);
     }
+
+    this.lines = new Element("div");
+    this.parentObject.qjsui.applyClasses("middle", this.lines);
+    this.lines.addClass("lines");
+    
+    this.lines.addEvent("scroll", function() {
+      this.scrolleddown = this.scrolledDown();
+    }.bind(this));
+    
+    if(type == qwebirc.ui.WINDOW_CHANNEL) {
+      this.topic = new Element("div");
+      this.topic.addClass("topic");
+      this.topic.addClass("tab-invisible");
+      this.topic.set("html", " ");
+      this.parentObject.qjsui.applyClasses("topic", this.topic);
+      
+      this.nicklist = new Element("div");
+      this.nicklist.addClass("nicklist");
+      this.nicklist.addClass("tab-invisible");
+      this.parentObject.qjsui.applyClasses("nicklist", this.nicklist);
+    }
+    
+    if(type == qwebirc.ui.WINDOW_CHANNEL) {
+      this.updateTopic("");
+    } else {
+      this.reflow();
+    }
+  },
+  reflow: function() {
+    this.parentObject.reflow();
+  },
+  onResize: function() {
+    if(this.scrolleddown)
+      this.scrollToBottom();
   },
   updateNickList: function(nicks) {
     this.parent(nicks);
@@ -77,32 +275,46 @@ var QUIWindow = new Class({
     while(t.firstChild)
       t.removeChild(t.firstChild);
 
-    Colourise(topic, t);
+    if(topic) {
+      Colourise("[" + topic + "]", t);
+    } else {
+      var e = new Element("div");
+      e.set("text", "(no topic set)");
+      e.addClass("emptytopic");
+      t.appendChild(e);
+    }
+    this.reflow();
   },
   select: function() {
-    this.parent();
+    var inputVisible = this.type != qwebirc.ui.WINDOW_CONNECT && this.type != qwebirc.ui.WINDOW_CUSTOM;
     
-    this.outerContainer.removeClass("tab-invisible");
     this.tab.removeClass("tab-unselected");
-    this.tab.removeClass("tab-highlighted");
     this.tab.addClass("tab-selected");
+
+    this.parentObject.setLines(this.lines);
+    this.parentObject.setChannelItems(this.nicklist, this.topic);
+    this.parentObject.qjsui.showInput(inputVisible);
+    this.parentObject.qjsui.showChannel($defined(this.nicklist));
+
+    this.reflow();
+    
+    this.parent();
+    
+    if(inputVisible)
+      this.parentObject.inputbox.focus();
   },
   deselect: function() {
     this.parent();
     
-    this.outerContainer.addClass("tab-invisible");
     this.tab.removeClass("tab-selected");
     this.tab.addClass("tab-unselected");
   },
   close: function() {
     this.parent();
     
-    this.parentObject.container.removeChild(this.outerContainer);
     this.parentObject.tabs.removeChild(this.tab);
   },
   addLine: function(type, line, colour) {
-    this.parent(type, line, colour);
-    
     var e = new Element("div");
 
     if(colour) {
@@ -112,64 +324,17 @@ var QUIWindow = new Class({
     } else {
       e.addClass("linestyle2");
     }
-    
-    if(type)
-      line = this.parentObject.theme.message(type, line);
-    
-    Colourise(IRCTimestamp(new Date()) + " " + line, e);
-    
     this.lastcolour = !this.lastcolour;
-    
-    var prev = this.lines.getScroll();
-    var prevbottom = this.lines.getScrollSize().y;
-    var prevsize = this.lines.getSize();
-    this.lines.appendChild(e);
-    
-    if(prev.y + prevsize.y == prevbottom)
-      this.lines.scrollTo(prev.x, this.lines.getScrollSize().y);
-      
-    if(!this.active)
-      this.tab.addClass("tab-highlighted");
-  }
-});
 
-var QUI = new Class({
-  Extends: UI,
-  initialize: function(parentElement, theme) {
-    this.parent(parentElement, UglyUIWindow, "uglyui");
-    this.theme = theme;
-    this.parentElement = parentElement;
+    this.parent(type, line, colour, e);
   },
-  postInitialize: function() {    
-    this.tabs = new Element("div");
-    this.tabs.addClass("tabbar");
+  setHilighted: function(state) {
+    this.parent(state);
     
-    this.parentElement.appendChild(this.tabs);
-    
-    this.container = new Element("div");
-    this.container.addClass("container");
-    
-    this.parentElement.appendChild(this.container);
-  
-    var form = new Element("form");
-    var inputbox = new Element("input");
-    inputbox.addClass("input");
-  
-    form.addEvent("submit", function(e) {
-      new Event(e).stop();
-    
-      this.getActiveWindow().client.exec(inputbox.value);
-      inputbox.value = "";
-    }.bind(this));
-    this.parentElement.appendChild(form);  
-    form.appendChild(inputbox);
-    inputbox.focus();
-  },
-  loginBox: function(callbackfn, intialNickname, initialChannels) {
-    this.parent(function(options) {
-      this.postInitialize();
-      callbackfn(options);
-    }.bind(this), intialNickname, initialChannels);
+    if(state) {
+      this.tab.addClass("tab-hilighted");
+    } else {
+      this.tab.removeClass("tab-hilighted");
+    }
   }
 });
-