refactor(User): set accentColor and banner to undefined when not yet received (#6721)

Co-authored-by: Sugden <28943913+NotSugden@users.noreply.github.com>
This commit is contained in:
Rodry
2021-10-04 23:16:59 +01:00
committed by GitHub
parent d0025beb7b
commit ba93e85d0d
3 changed files with 14 additions and 11 deletions

View File

@@ -74,23 +74,23 @@ class User extends Base {
if ('banner' in data) {
/**
* The user banner's hash
* <info>The user must be force fetched for this property to be present</info>
* <info>The user must be force fetched for this property to be present or be updated</info>
* @type {?string}
*/
this.banner = data.banner;
} else {
this.banner ??= null;
} else if (this.banner !== null) {
this.banner ??= undefined;
}
if ('accent_color' in data) {
/**
* The base 10 accent color of the user's banner
* <info>The user must be force fetched for this property to be present</info>
* <info>The user must be force fetched for this property to be present or be updated</info>
* @type {?number}
*/
this.accentColor = data.accent_color;
} else {
this.accentColor ??= null;
} else if (this.accentColor !== null) {
this.accentColor ??= undefined;
}
if ('system' in data) {
@@ -175,17 +175,19 @@ class User extends Base {
* @readonly
*/
get hexAccentColor() {
if (!this.accentColor) return null;
if (typeof this.accentColor !== 'number') return this.accentColor;
return `#${this.accentColor.toString(16).padStart(6, '0')}`;
}
/**
* A link to the user's banner.
* <info>The user must be force fetched for this property to be present</info>
* <info>This method will throw an error if called before the user is force fetched.
* See {@link User#banner} for more info</info>
* @param {ImageURLOptions} [options={}] Options for the Image URL
* @returns {?string}
*/
bannerURL({ format, size, dynamic } = {}) {
if (typeof this.banner === 'undefined') throw new Error('USER_BANNER_NOT_FETCHED');
if (!this.banner) return null;
return this.client.rest.cdn.Banner(this.id, this.banner, format, size, dynamic);
}