42 lines
1 KiB
JavaScript
42 lines
1 KiB
JavaScript
app.models.Post = Backbone.Model.extend({
|
|
urlRoot : "/posts",
|
|
initialize : function() {
|
|
this.comments = new app.collections.Comments(this.get("last_three_comments"), {post : this});
|
|
this.likes = new app.collections.Likes([], {post : this}); // load in the user like initially
|
|
},
|
|
|
|
createdAt : function() {
|
|
return new Date(this.get("created_at")) / 1000;
|
|
},
|
|
|
|
createReshareUrl : "/reshares",
|
|
|
|
reshare : function(){
|
|
return this._reshare = this._reshare || new app.models.Reshare({root_guid : this.get("guid")});
|
|
},
|
|
|
|
reshareAuthor : function(){
|
|
return this.get("author")
|
|
},
|
|
|
|
toggleLike : function() {
|
|
var userLike = this.get("user_like")
|
|
if(userLike) {
|
|
this.unlike()
|
|
} else {
|
|
this.like()
|
|
}
|
|
},
|
|
|
|
like : function() {
|
|
this.set({ user_like : this.likes.create() });
|
|
},
|
|
|
|
unlike : function() {
|
|
var likeModel = new app.models.Like(this.get("user_like"));
|
|
likeModel.url = this.likes.url + "/" + likeModel.id;
|
|
|
|
likeModel.destroy();
|
|
this.set({ user_like : null });
|
|
}
|
|
});
|