Shuo/lib/models.js

142 lines
2.6 KiB
JavaScript
Raw Normal View History

2014-03-16 16:19:53 +00:00
var _ = require("lodash");
2014-03-24 15:47:29 +00:00
var backbone = require("backbone");
var moment = require("moment");
2014-03-06 18:02:43 +00:00
2014-03-24 15:47:29 +00:00
var id = 1;
2014-03-07 21:24:02 +00:00
var models =
module.exports =
{};
2014-03-24 15:47:29 +00:00
models.User = backbone.Model.extend({
2014-03-07 21:24:02 +00:00
defaults: {
2014-03-15 15:51:21 +00:00
mode: "",
2014-03-24 15:47:29 +00:00
name: "",
2014-03-07 21:24:02 +00:00
}
});
2014-03-06 15:11:25 +00:00
2014-03-24 15:47:29 +00:00
models.Users = backbone.Collection.extend({
2014-03-12 15:09:37 +00:00
model: models.User,
2014-03-16 16:19:53 +00:00
sort: function(options) {
this.models = _.sortBy(
this.models,
function(user) {
return user.get("name").toLowerCase();
}
);
2014-03-16 20:07:27 +00:00
// Iterate all the modes and move users with these
// modes to the top of the collection.
2014-03-16 16:19:53 +00:00
var modes = ["+", "@"];
for (var i in modes) {
this.models = _.remove(this.models, function(user) {
if (user.get("mode") == modes[i]) {
return true;
}
}).concat(this.models);
}
2014-03-12 15:09:37 +00:00
}
2014-03-09 21:22:37 +00:00
});
2014-03-24 15:47:29 +00:00
models.Message = backbone.Model.extend({
2014-03-07 21:24:02 +00:00
defaults: {
2014-03-24 15:47:29 +00:00
type: "",
2014-03-12 15:09:37 +00:00
time: "",
2014-03-24 15:47:29 +00:00
from: "",
message: "",
2014-03-12 15:09:37 +00:00
},
initialize: function() {
this.set("time", moment().format("HH:mm"));
2014-03-07 21:24:02 +00:00
}
});
2014-03-06 18:02:43 +00:00
2014-03-24 15:47:29 +00:00
models.Messages = backbone.Collection.extend({
2014-03-09 21:22:37 +00:00
model: models.Message
});
2014-03-24 15:47:29 +00:00
models.Channel = backbone.Model.extend({
2014-03-07 21:24:02 +00:00
defaults: {
2014-03-06 22:36:56 +00:00
type: "channel",
2014-03-12 21:58:24 +00:00
name: ""
2014-03-07 21:24:02 +00:00
},
initialize: function() {
this.set({
2014-03-09 23:14:22 +00:00
id: id++
2014-03-07 21:24:02 +00:00
});
2014-03-09 23:14:22 +00:00
2014-03-24 13:44:41 +00:00
this.set("messages", new models.Messages());
2014-03-17 16:24:32 +00:00
this.get("messages").on("all", function(action, data) {
2014-03-24 15:47:29 +00:00
this.trigger("message", {
2014-03-13 12:44:54 +00:00
target: this.get("id"),
2014-03-17 16:24:32 +00:00
type: "message",
data: data,
action: action
2014-03-13 12:44:54 +00:00
});
}, this);
2014-03-16 16:19:53 +00:00
2014-03-24 13:44:41 +00:00
this.set("users", new models.Users());
2014-03-17 16:24:32 +00:00
this.get("users").on("all", function(action) {
2014-03-24 15:47:29 +00:00
this.trigger("user", {
2014-03-16 16:19:53 +00:00
target: this.get("id"),
2014-03-17 16:24:32 +00:00
type: "user",
data: this.get("users"),
action: action
2014-03-16 16:19:53 +00:00
});
}, this);
2014-03-07 21:24:02 +00:00
}
});
2014-03-06 15:11:25 +00:00
2014-03-24 15:47:29 +00:00
models.Channels = backbone.Collection.extend({
2014-03-07 21:24:02 +00:00
model: models.Channel
});
2014-03-06 15:11:25 +00:00
2014-03-24 15:47:29 +00:00
models.Network = backbone.Model.extend({
2014-03-07 21:24:02 +00:00
defaults: {
2014-03-24 15:47:29 +00:00
host: ""
2014-03-07 21:24:02 +00:00
},
initialize: function() {
this.set({
2014-03-13 15:25:01 +00:00
id: id++
2014-03-07 21:24:02 +00:00
});
2014-03-09 23:14:22 +00:00
2014-03-24 13:44:41 +00:00
this.set("channels", new models.Channels());
2014-03-17 16:24:32 +00:00
this.get("channels").on("all", function(action, data) {
2014-03-24 15:47:29 +00:00
if (action == "user" || action == "message") {
2014-03-17 16:24:32 +00:00
this.trigger(action, data);
2014-03-13 12:44:54 +00:00
} else {
2014-03-24 15:47:29 +00:00
this.trigger("channel", {
2014-03-17 16:24:32 +00:00
target: this.get("id"),
type: "channel",
data: data,
action: action
});
2014-03-13 12:44:54 +00:00
}
}, this);
2014-03-17 16:24:32 +00:00
2014-03-09 23:14:22 +00:00
this.get("channels").add(new models.Channel({
type: "network",
name: this.get("host")
}));
2014-03-07 21:24:02 +00:00
}
});
2014-03-07 03:18:53 +00:00
2014-03-24 15:47:29 +00:00
models.Networks = backbone.Collection.extend({
2014-03-07 21:24:02 +00:00
model: models.Network,
initialize: function() {
this.add(new models.Network({
2014-03-24 15:47:29 +00:00
host: "Status"
2014-03-07 21:24:02 +00:00
}));
2014-03-09 19:27:44 +00:00
},
2014-03-09 21:22:37 +00:00
find: function(id) {
2014-03-09 19:27:44 +00:00
var networks = this.models;
for (var i = 0; i < networks.length; i++) {
var find = networks[i].get("channels").findWhere({id: id});
if (find) {
2014-03-09 21:22:37 +00:00
return {
network: networks[i],
channel: find
};
2014-03-09 19:27:44 +00:00
}
}
2014-03-07 21:24:02 +00:00
}
});