2016-06-17 20:25:44 +02:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
const api = require('../api.js');
|
|
|
|
const events = require('../events.js');
|
|
|
|
|
|
|
|
class Comment extends events.EventTarget {
|
|
|
|
constructor() {
|
|
|
|
super();
|
2016-06-19 19:16:40 +02:00
|
|
|
this._id = null;
|
|
|
|
this._postId = null;
|
|
|
|
this._text = null;
|
|
|
|
this._user = null;
|
2016-06-17 20:25:44 +02:00
|
|
|
this._creationTime = null;
|
|
|
|
this._lastEditTime = null;
|
2016-06-19 19:16:40 +02:00
|
|
|
this._score = null;
|
|
|
|
this._ownScore = null;
|
2016-06-17 20:25:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static create(postId) {
|
|
|
|
const comment = new Comment();
|
|
|
|
comment._postId = postId;
|
|
|
|
return comment;
|
|
|
|
}
|
|
|
|
|
|
|
|
static fromResponse(response) {
|
|
|
|
const comment = new Comment();
|
|
|
|
comment._updateFromResponse(response);
|
|
|
|
return comment;
|
|
|
|
}
|
|
|
|
|
2016-06-19 19:16:40 +02:00
|
|
|
get id() { return this._id; }
|
|
|
|
get postId() { return this._postId; }
|
|
|
|
get text() { return this._text; }
|
|
|
|
get user() { return this._user; }
|
2016-06-17 20:25:44 +02:00
|
|
|
get creationTime() { return this._creationTime; }
|
|
|
|
get lastEditTime() { return this._lastEditTime; }
|
2016-06-19 19:16:40 +02:00
|
|
|
get score() { return this._score; }
|
|
|
|
get ownScore() { return this._ownScore; }
|
2016-06-17 20:25:44 +02:00
|
|
|
|
2016-06-19 19:16:40 +02:00
|
|
|
set text(value) { this._text = value; }
|
2016-06-17 20:25:44 +02:00
|
|
|
|
|
|
|
save() {
|
|
|
|
let promise = null;
|
|
|
|
if (this._id) {
|
|
|
|
promise = api.put(
|
|
|
|
'/comment/' + this._id,
|
|
|
|
{
|
|
|
|
text: this._text,
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
promise = api.post(
|
|
|
|
'/comments',
|
|
|
|
{
|
|
|
|
text: this._text,
|
|
|
|
postId: this._postId,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
return promise.then(response => {
|
|
|
|
this._updateFromResponse(response);
|
|
|
|
this.dispatchEvent(new CustomEvent('change', {
|
2016-06-19 19:16:40 +02:00
|
|
|
detail: {
|
2016-06-17 20:25:44 +02:00
|
|
|
comment: this,
|
|
|
|
},
|
|
|
|
}));
|
|
|
|
return Promise.resolve();
|
|
|
|
}, response => {
|
|
|
|
return Promise.reject(response.description);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
delete() {
|
|
|
|
return api.delete('/comment/' + this._id)
|
|
|
|
.then(response => {
|
|
|
|
this.dispatchEvent(new CustomEvent('delete', {
|
2016-06-19 19:16:40 +02:00
|
|
|
detail: {
|
2016-06-17 20:25:44 +02:00
|
|
|
comment: this,
|
|
|
|
},
|
|
|
|
}));
|
|
|
|
return Promise.resolve();
|
|
|
|
}, response => {
|
|
|
|
return Promise.reject(response.description);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
setScore(score) {
|
|
|
|
return api.put('/comment/' + this._id + '/score', {score: score})
|
|
|
|
.then(response => {
|
|
|
|
this._updateFromResponse(response);
|
|
|
|
this.dispatchEvent(new CustomEvent('changeScore', {
|
2016-06-19 19:16:40 +02:00
|
|
|
detail: {
|
2016-06-17 20:25:44 +02:00
|
|
|
comment: this,
|
|
|
|
},
|
|
|
|
}));
|
|
|
|
return Promise.resolve();
|
|
|
|
}, response => {
|
|
|
|
return Promise.reject(response.description);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
_updateFromResponse(response) {
|
2016-06-19 19:16:40 +02:00
|
|
|
this._id = response.id;
|
|
|
|
this._postId = response.postId;
|
|
|
|
this._text = response.text;
|
|
|
|
this._user = response.user;
|
2016-06-17 20:25:44 +02:00
|
|
|
this._creationTime = response.creationTime;
|
|
|
|
this._lastEditTime = response.lastEditTime;
|
2016-06-19 19:16:40 +02:00
|
|
|
this._score = parseInt(response.score);
|
|
|
|
this._ownScore = parseInt(response.ownScore);
|
2016-06-17 20:25:44 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = Comment;
|