thelounge/lib/models.js

132 lines
2.3 KiB
JavaScript
Raw Normal View History

2014-04-19 23:40:36 +02:00
var _ = require("lodash");
2014-03-24 17:47:14 +01:00
var Backbone = require("backbone");
2014-03-06 19:02:43 +01:00
2014-03-24 16:47:29 +01:00
var id = 1;
2014-03-07 22:24:02 +01:00
var models =
module.exports =
{};
2014-03-24 17:47:14 +01:00
models.User = Backbone.Model.extend({
2014-03-07 22:24:02 +01:00
defaults: {
2014-03-15 16:51:21 +01:00
mode: "",
2014-03-24 16:47:29 +01:00
name: "",
2014-03-07 22:24:02 +01:00
}
});
2014-03-06 16:11:25 +01:00
2014-03-24 17:47:14 +01:00
models.Users = Backbone.Collection.extend({
2014-03-12 16:09:37 +01:00
model: models.User,
2014-04-06 17:46:42 +02:00
sort: function() {
2014-03-16 17:19:53 +01:00
this.models = _.sortBy(
this.models,
function(user) {
return user.get("name").toLowerCase();
}
);
2014-04-19 23:40:36 +02:00
this.trigger("sort", {}, this);
2014-03-12 16:09:37 +01:00
}
2014-03-09 22:22:37 +01:00
});
2014-03-24 17:47:14 +01:00
models.Message = Backbone.Model.extend({
2014-03-07 22:24:02 +01:00
defaults: {
2014-04-21 00:12:07 +02:00
type: "",
time: "",
from: "-!-",
text: "",
2014-03-12 16:09:37 +01:00
},
initialize: function() {
2014-04-19 23:40:36 +02:00
this.set("time", require("moment")().format("HH:mm"));
2014-03-07 22:24:02 +01:00
}
});
2014-03-06 19:02:43 +01:00
2014-03-24 17:47:14 +01:00
models.Messages = Backbone.Collection.extend({
2014-03-09 22:22:37 +01:00
model: models.Message
});
2014-03-24 17:47:14 +01:00
models.Channel = Backbone.Model.extend({
2014-03-07 22:24:02 +01:00
defaults: {
2014-03-06 23:36:56 +01:00
type: "channel",
2014-03-24 17:47:14 +01:00
name: "",
},
2014-03-07 22:24:02 +01:00
initialize: function() {
2014-04-19 23:40:36 +02:00
var users = new models.Users;
2014-03-30 00:59:28 +01:00
users.on("all", function(action, data) {
2014-03-24 16:47:29 +01:00
this.trigger("user", {
2014-04-19 23:40:36 +02:00
action: action,
2014-03-16 17:19:53 +01:00
target: this.get("id"),
2014-03-30 00:59:28 +01:00
data: users,
2014-04-19 23:40:36 +02:00
});
}, this);
var messages = new models.Messages;
messages.on("all", function(action, data) {
this.trigger("message", {
2014-03-24 17:47:14 +01:00
action: action,
2014-04-19 23:40:36 +02:00
target: this.get("id"),
data: data,
2014-03-16 17:19:53 +01:00
});
}, this);
2014-04-19 23:40:36 +02:00
this.set({
id: id++,
users: users,
messages: messages,
});
2014-03-07 22:24:02 +01:00
}
});
2014-03-06 16:11:25 +01:00
2014-03-24 17:47:14 +01:00
models.Channels = Backbone.Collection.extend({
2014-03-07 22:24:02 +01:00
model: models.Channel
});
2014-03-06 16:11:25 +01:00
2014-03-24 17:47:14 +01:00
models.Network = Backbone.Model.extend({
2014-03-07 22:24:02 +01:00
defaults: {
2014-04-19 23:40:36 +02:00
host: "",
2014-03-30 00:59:28 +01:00
client: null,
2014-03-07 22:24:02 +01:00
},
initialize: function() {
this.set({
2014-03-24 17:47:14 +01:00
id: id++,
channels: new models.Channels,
2014-03-07 22:24:02 +01:00
});
2014-04-19 23:40:36 +02:00
2014-03-17 17:24:32 +01:00
this.get("channels").on("all", function(action, data) {
2014-03-29 16:36:12 +01:00
if (action == "message"
|| action == "user") {
return this.trigger(action, data);
}
2014-03-24 17:47:14 +01:00
this.trigger("channel", {
2014-04-19 23:40:36 +02:00
action: action,
2014-03-24 17:47:14 +01:00
target: this.get("id"),
data: data,
});
2014-03-13 13:44:54 +01:00
}, this);
2014-04-19 23:40:36 +02:00
this.get("channels").add({
2014-03-10 00:14:22 +01:00
type: "network",
name: this.get("host")
2014-03-24 17:47:14 +01:00
});
2014-03-30 00:59:28 +01:00
},
toJSON: function() {
return _.omit(this.attributes, "client");
2014-03-07 22:24:02 +01:00
}
});
2014-03-07 04:18:53 +01:00
2014-03-24 17:47:14 +01:00
models.Networks = Backbone.Collection.extend({
2014-03-07 22:24:02 +01:00
model: models.Network,
initialize: function() {
2014-03-24 17:47:14 +01:00
this.add({host: "Status"});
2014-03-09 20:27:44 +01:00
},
2014-03-09 22:22:37 +01:00
find: function(id) {
2014-03-30 05:12:29 +02:00
var i = this.models.length;
while (i--) {
var find = this.models[i].get("channels").findWhere({id: id});
2014-03-09 20:27:44 +01:00
if (find) {
2014-03-09 22:22:37 +01:00
return {
2014-03-30 05:12:29 +02:00
network: this.models[i],
2014-03-09 22:22:37 +01:00
channel: find
};
2014-03-09 20:27:44 +01:00
}
}
2014-03-07 22:24:02 +01:00
}
});