1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
|
"use strict";
const api = require("../api.js");
const uri = require("../util/uri.js");
const events = require("../events.js");
class Comment extends events.EventTarget {
constructor() {
super();
this._updateFromResponse({});
}
static create(postId) {
const comment = new Comment();
comment._postId = postId;
return comment;
}
static fromResponse(response) {
const comment = new Comment();
comment._updateFromResponse(response);
return comment;
}
get id() {
return this._id;
}
get postId() {
return this._postId;
}
get text() {
return this._text || "";
}
get user() {
return this._user;
}
get creationTime() {
return this._creationTime;
}
get lastEditTime() {
return this._lastEditTime;
}
get score() {
return this._score;
}
get ownScore() {
return this._ownScore;
}
set text(value) {
this._text = value;
}
save() {
const detail = {
version: this._version,
text: this._text,
};
let promise = this._id
? api.put(uri.formatApiLink("comment", this.id), detail)
: api.post(
uri.formatApiLink("comments"),
Object.assign({ postId: this._postId }, detail)
);
return promise.then((response) => {
this._updateFromResponse(response);
this.dispatchEvent(
new CustomEvent("change", {
detail: {
comment: this,
},
})
);
return Promise.resolve();
});
}
delete() {
return api
.delete(uri.formatApiLink("comment", this.id), {
version: this._version,
})
.then((response) => {
this.dispatchEvent(
new CustomEvent("delete", {
detail: {
comment: this,
},
})
);
return Promise.resolve();
});
}
setScore(score) {
return api
.put(uri.formatApiLink("comment", this.id, "score"), {
score: score,
})
.then((response) => {
this._updateFromResponse(response);
this.dispatchEvent(
new CustomEvent("changeScore", {
detail: {
comment: this,
},
})
);
return Promise.resolve();
});
}
_updateFromResponse(response) {
this._version = response.version;
this._id = response.id;
this._postId = response.postId;
this._text = response.text;
this._user = response.user;
this._creationTime = response.creationTime;
this._lastEditTime = response.lastEditTime;
this._score = parseInt(response.score);
this._ownScore = parseInt(response.ownScore);
}
}
module.exports = Comment;
|