feat(structures): add emoji structure

This commit is contained in:
Asad
2025-12-21 21:29:54 +00:00
parent 427636ee75
commit 7ae2f4bcad
3 changed files with 102 additions and 0 deletions

View File

@@ -0,0 +1,100 @@
import { DiscordSnowflake } from '@sapphire/snowflake';
import type { APIEmoji } from 'discord-api-types/v10';
import { Structure } from '../Structure.js';
import { kData } from '../utils/symbols.js';
import { isIdSet } from '../utils/type-guards.js';
import type { Partialize } from '../utils/types.js';
/**
* Represents any Emoji on Discord.
*
* @typeParam Omitted - Specify the properties that will not be stored in the raw data field as a union, implement via `DataTemplate`
*/
export class Emoji<Omitted extends keyof APIEmoji | '' = ''> extends Structure<APIEmoji, Omitted> {
/**
* The template used for removing data from the raw data stored for each Emoji
*/
public static override readonly DataTemplate: Partial<APIEmoji> = {};
/**
* @param data - The raw data received from the API for the Emoji
*/
public constructor(data: Partialize<APIEmoji, Omitted>) {
super(data);
}
/**
* The Emoji's id
*/
public get id() {
return this[kData].id;
}
/**
* The name of the Emoji
*
* @remarks can be null only in reaction emoji objects
*/
public get name() {
return this[kData].name;
}
/**
* The roles allowed to use this Emoji
*/
public get roles() {
return this[kData].roles;
}
/**
* User that created this emoji
*/
public get user() {
return this[kData].user;
}
/**
* Whether this emoji must be wrapped in colons
*/
public get requireColons() {
return this[kData].require_colons;
}
/**
* Whether the Emoji is managed
*/
public get managed() {
return this[kData].managed;
}
/**
* Whether the Emoji is animated
*/
public get animated() {
return this[kData].animated;
}
/**
* Whether the Emoji can be used
*
* @remarks May be false due to loss of Server Boosts
*/
public get available() {
return this[kData].available;
}
/**
* The timestamp the Emoji was created at
*/
public get createdTimestamp() {
return isIdSet(this.id) ? DiscordSnowflake.timestampFrom(this.id) : null;
}
/**
* The time the Emoji was created at
*/
public get createdAt() {
const createdTimestamp = this.createdTimestamp;
return createdTimestamp ? new Date(createdTimestamp) : null;
}
}

View File

@@ -0,0 +1 @@
export * from './Emoji.js';

View File

@@ -1,5 +1,6 @@
export * from './bitfields/index.js';
export * from './channels/index.js';
export * from './emojis/index.js';
export * from './interactions/index.js';
export * from './invites/index.js';
export * from './messages/index.js';