87 lines
1.9 KiB
JavaScript
87 lines
1.9 KiB
JavaScript
|
'use strict';
|
||
|
|
||
|
const { Collection } = require('@discordjs/collection');
|
||
|
const Base = require('./Base');
|
||
|
const WidgetMember = require('./WidgetMember');
|
||
|
|
||
|
/**
|
||
|
* Represents a Widget.
|
||
|
*/
|
||
|
class Widget extends Base {
|
||
|
constructor(client, data) {
|
||
|
super(client);
|
||
|
this._patch(data);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Represents a channel in a Widget
|
||
|
* @typedef {Object} WidgetChannel
|
||
|
* @property {Snowflake} id Id of the channel
|
||
|
* @property {string} name Name of the channel
|
||
|
* @property {number} position Position of the channel
|
||
|
*/
|
||
|
|
||
|
_patch(data) {
|
||
|
/**
|
||
|
* The id of the guild.
|
||
|
* @type {Snowflake}
|
||
|
*/
|
||
|
this.id = data.id;
|
||
|
|
||
|
if ('name' in data) {
|
||
|
/**
|
||
|
* The name of the guild.
|
||
|
* @type {string}
|
||
|
*/
|
||
|
this.name = data.name;
|
||
|
}
|
||
|
|
||
|
if ('instant_invite' in data) {
|
||
|
/**
|
||
|
* The invite of the guild.
|
||
|
* @type {?string}
|
||
|
*/
|
||
|
this.instantInvite = data.instant_invite;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* The list of channels in the guild.
|
||
|
* @type {Collection<Snowflake, WidgetChannel>}
|
||
|
*/
|
||
|
this.channels = new Collection();
|
||
|
for (const channel of data.channels) {
|
||
|
this.channels.set(channel.id, channel);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* The list of members in the guild.
|
||
|
* These strings are just arbitrary numbers, they aren't Snowflakes.
|
||
|
* @type {Collection<string, WidgetMember>}
|
||
|
*/
|
||
|
this.members = new Collection();
|
||
|
for (const member of data.members) {
|
||
|
this.members.set(member.id, new WidgetMember(this.client, member));
|
||
|
}
|
||
|
|
||
|
if ('presence_count' in data) {
|
||
|
/**
|
||
|
* The number of members online.
|
||
|
* @type {number}
|
||
|
*/
|
||
|
this.presenceCount = data.presence_count;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Update the Widget.
|
||
|
* @returns {Promise<Widget>}
|
||
|
*/
|
||
|
async fetch() {
|
||
|
const data = await this.client.api.guilds(this.id, 'widget.json').get();
|
||
|
this._patch(data);
|
||
|
return this;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
module.exports = Widget;
|