thelounge/client/js/chat.js

223 lines
4.6 KiB
JavaScript
Raw Normal View History

2014-03-06 16:11:25 +01:00
$(function() {
var socket = io.connect("");
2014-03-12 14:10:53 +01:00
$.each([
2014-03-14 22:57:54 +01:00
"NETWORKS",
"CHANNELS",
"MESSAGES",
"USERS"
2014-03-12 14:10:53 +01:00
], function(i, type) {
socket.on(type, function(data) {
render(type, data);
});
2014-03-07 04:18:53 +01:00
});
2014-03-06 16:11:25 +01:00
var chat = $("#chat");
var sidebar = $("#sidebar");
2014-03-14 20:21:00 +01:00
2014-03-06 16:11:25 +01:00
// Templates
var networks = $("#networks").html();
var channels = $("#channels").html();
var messages = $("#messages").html();
var users = $("#users").html()
2014-03-12 14:10:53 +01:00
function render(type, data) {
var target;
if (typeof data.target !== "undefined") {
target = $(".window[data-id='" + data.target + "']");
}
switch (type) {
2014-03-14 22:57:54 +01:00
case "NETWORKS":
2014-03-12 14:10:53 +01:00
var partials = {
users: users,
messages: messages
};
chat.html("");
data.forEach(function(network) {
chat.append(Mustache.render(channels, network, partials));
});
2014-03-16 21:07:27 +01:00
sidebar.find("#list").html(
2014-03-12 14:10:53 +01:00
Mustache.render(networks, {
networks: data
})
2014-03-14 20:21:00 +01:00
).find(".channel")
.last()
.addClass("active");
2014-03-12 14:10:53 +01:00
chat.find(".messages").sticky().scrollToBottom();
chat.find(".window")
// Sort windows by `data-id` value.
.sort(function(a, b) { return ($(a).data("id") - $(b).data("id")); })
.last()
2014-03-14 20:21:00 +01:00
.bringToTop();
2014-03-12 14:10:53 +01:00
break;
2014-03-14 22:57:54 +01:00
case "USERS":
2014-03-12 14:10:53 +01:00
target = target.find(".users");
target.html(Mustache.render(users, {users: data.data}));
break;
2014-03-14 22:57:54 +01:00
case "MESSAGES":
2014-03-15 17:14:05 +01:00
var message = data.data;
2014-03-16 17:19:53 +01:00
if (message.type == "error" || message.type == "notice") {
2014-03-15 17:14:05 +01:00
target = target.parent().find(".active");
}
2014-03-12 14:10:53 +01:00
target = target.find(".messages");
2014-03-15 17:14:05 +01:00
target.append(Mustache.render(messages, {messages: message}));
2014-03-12 14:10:53 +01:00
break;
}
2014-03-07 04:18:53 +01:00
}
2014-03-15 16:51:21 +01:00
sidebar.on("click", ".channel", function(e) {
e.preventDefault();
2014-03-16 21:07:27 +01:00
sidebar.find("#list .active").removeClass("active");
2014-03-15 16:51:21 +01:00
var item = $(this)
.addClass("active")
.find(".badge")
.html("")
.end();
var id = item.data("id");
chat.find(".window[data-id='" + id + "']")
.bringToTop();
});
2014-03-16 21:07:27 +01:00
sidebar.find("input[type=checkbox]").each(function() {
var input = $(this);
var value = input.val();
input.prop("checked", true).wrap("<label>").parent().append(value);
input.on("change", function() {
chat.toggleClass(
"hide-" + value,
!input.prop("checked")
);
});
});
2014-03-06 16:11:25 +01:00
chat.on("submit", "form", function() {
var input = $(this).find(".input");
var text = input.val();
if (text != "") {
input.val("");
socket.emit("input", {
id: input.data("target"),
text: text
});
}
});
2014-03-15 16:51:21 +01:00
2014-03-14 22:57:54 +01:00
chat.on("click", ".close", function() {
var btn = $(this);
btn.prop("disabled", true);
socket.emit("input", {
id: btn.closest(".window").data("id"),
2014-03-15 16:51:21 +01:00
text: "/LEAVE"
2014-03-14 22:57:54 +01:00
});
});
2014-03-15 16:51:21 +01:00
2014-03-15 16:07:49 +01:00
chat.on("append", ".window", function() {
var id = $(this).data("id");
var badge = sidebar.find(".channel[data-id='" + id + "']:not(.active) .badge");
badge.html((parseInt(badge.html()) + 1) || "1");
});
2014-03-15 16:51:21 +01:00
chat.on("click", ".user", function(e) {
2014-03-14 22:57:54 +01:00
e.preventDefault();
2014-03-15 16:51:21 +01:00
});
chat.on("dblclick", ".user", function() {
var user = $(this);
var id = user.closest(".window").data("id");
var name = user.attr("href");
var channel = sidebar
.find(".channel[data-id='" + id + "']")
.siblings(".channel[data-name='" + name + "']");
if (channel.size() != 0) {
channel.trigger("click");
return;
}
socket.emit("input", {
id: id,
text: "/QUERY " + name
});
2014-03-06 16:11:25 +01:00
});
});
2014-03-09 19:39:25 +01:00
(function($) {
2014-03-06 16:11:25 +01:00
var highest = 1;
$.fn.bringToTop = function() {
2014-03-14 20:21:00 +01:00
return this.css('z-index', highest++)
.addClass("active")
.find(".input")
.focus()
.end()
.siblings()
.removeClass("active")
.end();
2014-03-06 16:11:25 +01:00
};
2014-03-09 19:39:25 +01:00
})(jQuery);
// Sticky plugin
// https://github.com/erming/sticky
(function($) {
var append = $.fn.append;
$.fn.append = function() {
return append.apply(this, arguments).trigger("append");
};
$.fn.sticky = function() {
var self = this;
if (self.size() > 1) {
return self.each(function() {
$(this).sticky();
});
}
2014-03-14 03:00:01 +01:00
var timer;
var resizing = false;
$(window).on("resize", function() {
// This will prevent the scroll event from triggering
// while resizing the window.
resizing = true;
clearTimeout(timer);
timer = setTimeout(function() {
resizing = false;
}, 100);
if (sticky) {
self.scrollToBottom();
}
});
2014-03-09 19:39:25 +01:00
var sticky = false;
self.on("scroll", function() {
2014-03-14 03:00:01 +01:00
if (!resizing) {
sticky = self.isScrollAtBottom();
}
2014-03-09 19:39:25 +01:00
});
self.trigger("scroll");
self.on("append", function() {
if (sticky) {
self.scrollToBottom();
}
});
return this;
};
2014-03-06 19:53:02 +01:00
$.fn.scrollToBottom = function() {
2014-03-16 20:00:57 +01:00
return this.each(function() {
this.scrollTop = this.scrollHeight;
});
2014-03-06 19:53:02 +01:00
};
2014-03-09 19:39:25 +01:00
$.fn.isScrollAtBottom = function() {
2014-03-16 20:00:57 +01:00
if ((this.scrollTop() + this.outerHeight() + 1) >= this.prop("scrollHeight")) {
2014-03-06 19:53:02 +01:00
return true;
}
};
2014-03-16 20:00:57 +01:00
})(jQuery);