mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-16 11:33:30 +01:00
feat(MessageStore): add cache parameter to fetchPinned() (#3154)
* add cache param to MessageStore#fetchPinned() * typings for cache param * set cache to true by default
This commit is contained in:
@@ -66,6 +66,7 @@ class MessageStore extends DataStore {
|
|||||||
* Fetches the pinned messages of this channel and returns a collection of them.
|
* Fetches the pinned messages of this channel and returns a collection of them.
|
||||||
* <info>The returned Collection does not contain any reaction data of the messages.
|
* <info>The returned Collection does not contain any reaction data of the messages.
|
||||||
* Those need to be fetched separately.</info>
|
* Those need to be fetched separately.</info>
|
||||||
|
* @param {boolean} [cache=true] Whether to cache the message(s)
|
||||||
* @returns {Promise<Collection<Snowflake, Message>>}
|
* @returns {Promise<Collection<Snowflake, Message>>}
|
||||||
* @example
|
* @example
|
||||||
* // Get pinned messages
|
* // Get pinned messages
|
||||||
@@ -73,10 +74,10 @@ class MessageStore extends DataStore {
|
|||||||
* .then(messages => console.log(`Received ${messages.size} messages`))
|
* .then(messages => console.log(`Received ${messages.size} messages`))
|
||||||
* .catch(console.error);
|
* .catch(console.error);
|
||||||
*/
|
*/
|
||||||
fetchPinned() {
|
fetchPinned(cache = true) {
|
||||||
return this.client.api.channels[this.channel.id].pins.get().then(data => {
|
return this.client.api.channels[this.channel.id].pins.get().then(data => {
|
||||||
const messages = new Collection();
|
const messages = new Collection();
|
||||||
for (const message of data) messages.set(message.id, this.add(message));
|
for (const message of data) messages.set(message.id, this.add(message, cache));
|
||||||
return messages;
|
return messages;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
6
typings/index.d.ts
vendored
6
typings/index.d.ts
vendored
@@ -1366,9 +1366,9 @@ declare module 'discord.js' {
|
|||||||
|
|
||||||
export class MessageStore extends DataStore<Snowflake, Message, typeof Message, MessageResolvable> {
|
export class MessageStore extends DataStore<Snowflake, Message, typeof Message, MessageResolvable> {
|
||||||
constructor(channel: TextChannel | DMChannel, iterable?: Iterable<any>);
|
constructor(channel: TextChannel | DMChannel, iterable?: Iterable<any>);
|
||||||
public fetch(message: Snowflake): Promise<Message>;
|
public fetch(message: Snowflake, cache?: boolean): Promise<Message>;
|
||||||
public fetch(options?: ChannelLogsQueryOptions): Promise<Collection<Snowflake, Message>>;
|
public fetch(options?: ChannelLogsQueryOptions, cache?: boolean): Promise<Collection<Snowflake, Message>>;
|
||||||
public fetchPinned(): Promise<Collection<Snowflake, Message>>;
|
public fetchPinned(cache?: boolean): Promise<Collection<Snowflake, Message>>;
|
||||||
}
|
}
|
||||||
|
|
||||||
export class PresenceStore extends DataStore<Snowflake, Presence, typeof Presence, PresenceResolvable> {
|
export class PresenceStore extends DataStore<Snowflake, Presence, typeof Presence, PresenceResolvable> {
|
||||||
|
|||||||
Reference in New Issue
Block a user