-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlike.component.js
36 lines (36 loc) · 1.1 KB
/
like.component.js
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
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.LikeComponent = void 0;
var LikeComponent = /** @class */ (function () {
// likesCount: number;
// isSelected: boolean;
function LikeComponent(_likesCount, _isSelected) {
this._likesCount = _likesCount;
this._isSelected = _isSelected;
}
LikeComponent.prototype.onClick = function () {
// if (this.isSelected) {
// this.likesCount--;
// } else {
// this.likesCount++;
// }
this._likesCount += this._isSelected ? -1 : 1;
this._isSelected = !this._isSelected;
};
Object.defineProperty(LikeComponent.prototype, "likesCount", {
get: function () {
return this._likesCount;
},
enumerable: false,
configurable: true
});
Object.defineProperty(LikeComponent.prototype, "isSelected", {
get: function () {
return this._isSelected;
},
enumerable: false,
configurable: true
});
return LikeComponent;
}());
exports.LikeComponent = LikeComponent;