feat(TextBasedChannel): add lastPinTimestamp and lastPinAt (#2813)

* add lastPinTimestamp

* typings

* use or instead of ternary
This commit is contained in:
Ash
2018-09-03 03:11:52 -04:00
committed by SpaceEEC
parent b068abb5de
commit e96a60361a
6 changed files with 45 additions and 1 deletions

View File

@@ -21,6 +21,12 @@ class TextBasedChannel {
* @type {?Snowflake}
*/
this.lastMessageID = null;
/**
* The timestamp when the last pinned message was pinned, if there was one
* @type {?number}
*/
this.lastPinTimestamp = null;
}
/**
@@ -32,6 +38,15 @@ class TextBasedChannel {
return this.messages.get(this.lastMessageID) || null;
}
/**
* The date when the last pinned message was pinned, if there was one
* @type {?Date}
* @readonly
*/
get lastPinAt() {
return this.lastPinTimestamp ? new Date(this.lastPinTimestamp) : null;
}
/**
* Options provided when sending or editing a message.
* @typedef {Object} MessageOptions
@@ -322,6 +337,7 @@ class TextBasedChannel {
if (full) {
props.push(
'lastMessage',
'lastPinAt',
'bulkDelete',
'startTyping',
'stopTyping',