44 lines
1.3 KiB
JavaScript
44 lines
1.3 KiB
JavaScript
'use strict';
|
|
|
|
const { ButtonBuilder: BuildersButton } = require('@discordjs/builders');
|
|
const { isJSONEncodable } = require('@discordjs/util');
|
|
const { toSnakeCase } = require('../util/Transformers');
|
|
const { resolvePartialEmoji } = require('../util/Util');
|
|
|
|
/**
|
|
* Represents a button builder.
|
|
* @extends {BuildersButton}
|
|
*/
|
|
class ButtonBuilder extends BuildersButton {
|
|
constructor({ emoji, ...data } = {}) {
|
|
super(toSnakeCase({ ...data, emoji: emoji && typeof emoji === 'string' ? resolvePartialEmoji(emoji) : emoji }));
|
|
}
|
|
|
|
/**
|
|
* Sets the emoji to display on this button
|
|
* @param {string|APIMessageComponentEmoji} emoji The emoji to display on this button
|
|
* @returns {ButtonBuilder}
|
|
*/
|
|
setEmoji(emoji) {
|
|
if (typeof emoji === 'string') {
|
|
return super.setEmoji(resolvePartialEmoji(emoji));
|
|
}
|
|
return super.setEmoji(emoji);
|
|
}
|
|
|
|
/**
|
|
* Creates a new button builder from JSON data
|
|
* @param {ButtonBuilder|ButtonComponent|APIButtonComponent} other The other data
|
|
* @returns {ButtonBuilder}
|
|
*/
|
|
static from(other) {
|
|
return new this(isJSONEncodable(other) ? other.toJSON() : other);
|
|
}
|
|
}
|
|
|
|
module.exports = ButtonBuilder;
|
|
|
|
/**
|
|
* @external BuildersButton
|
|
* @see {@link https://discord.js.org/docs/packages/builders/stable/ButtonBuilder:Class}
|
|
*/
|