Add MessageEmbed and subclasses

This commit is contained in:
Amish Shah
2016-08-29 15:53:51 +01:00
parent f6c95de85d
commit 3541b0a88f
4 changed files with 128 additions and 4 deletions

View File

@@ -0,0 +1,121 @@
/**
* Represents a thumbnail for a Message embed
*/
class MessageEmbedThumbnail {
constructor(embed, data) {
/**
* The embed this thumbnail is part of
* @type {MessageEmbed}
*/
this.embed = embed;
this.setup(data);
}
setup(data) {
/**
* The URL for this thumbnail
* @type {String}
*/
this.url = data.url;
/**
* The Proxy URL for this thumbnail
* @type {String}
*/
this.proxyURL = data.proxy_url;
/**
* The height of the thumbnail
* @type {Number}
*/
this.height = data.height;
/**
* The width of the thumbnail
* @type {Number}
*/
this.width = data.width;
}
}
/**
* Represents a Provider for a Message embed
*/
class MessageEmbedProvider {
constructor(embed, data) {
/**
* The embed this provider is part of
* @type {MessageEmbed}
*/
this.embed = embed;
this.setup(data);
}
setup(data) {
/**
* The name of this provider
* @type {String}
*/
this.name = data.name;
/**
* The URL of this provider
* @type {String}
*/
this.url = data.url;
}
}
/**
* Represents an embed in an image - e.g. preview of image
*/
class MessageEmbed {
constructor(message, data) {
/**
* The message this embed is part of
* @type {Message}
*/
this.message = message;
/**
* The client that instantiated this embed
* @type {Client}
*/
this.client = message.client;
this.setup(data);
}
setup(data) {
/**
* The title of this embed, if there is one
* @type {?String}
*/
this.title = data.title;
/**
* The type of this embed
* @type {String}
*/
this.type = data.type;
/**
* The description of this embed, if there is one
* @type {?String}
*/
this.description = data.description;
/**
* The URL of this embed
* @type {String}
*/
this.url = data.url;
if (data.thumbnail) {
/**
* The thumbnail of this embed, if there is one
* @type {MessageEmbedThumbnail}
*/
this.thumbnail = new MessageEmbedThumbnail(this, data.thumbnail);
}
if (data.provider) {
/**
* The provider of this embed, if there is one
* @type {MessageEmbedProvider}
*/
this.provider = new MessageEmbedProvider(this, data.provider);
}
}
}
module.exports = MessageEmbed;