Skip to content

Commit

Permalink
refactor(User): set accentColor and banner to undefined when not yet …
Browse files Browse the repository at this point in the history
…received (#6721)

Co-authored-by: Sugden <28943913+NotSugden@users.noreply.github.com>
  • Loading branch information
ImRodry and NotSugden authored Oct 4, 2021
1 parent d0025be commit ba93e85
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 11 deletions.
1 change: 1 addition & 0 deletions src/errors/Messages.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ const Messages = {

FILE_NOT_FOUND: file => `File could not be found: ${file}`,

USER_BANNER_NOT_FETCHED: "You must fetch this user's banner before trying to generate its URL!",
USER_NO_DMCHANNEL: 'No DM Channel exists!',

VOICE_NOT_STAGE_CHANNEL: 'You are only allowed to do this in stage channels.',
Expand Down
18 changes: 10 additions & 8 deletions src/structures/User.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down Expand Up @@ -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);
}
Expand Down
6 changes: 3 additions & 3 deletions typings/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2039,17 +2039,17 @@ export class User extends PartialTextBasedChannel(Base) {
protected constructor(client: Client, data: RawUserData);
private _equals(user: APIUser): boolean;

public accentColor: number | null;
public accentColor: number | null | undefined;
public avatar: string | null;
public banner: string | null;
public banner: string | null | undefined;
public bot: boolean;
public readonly createdAt: Date;
public readonly createdTimestamp: number;
public discriminator: string;
public readonly defaultAvatarURL: string;
public readonly dmChannel: DMChannel | null;
public flags: Readonly<UserFlags> | null;
public readonly hexAccentColor: HexColorString | null;
public readonly hexAccentColor: HexColorString | null | undefined;
public id: Snowflake;
public readonly partial: false;
public system: boolean;
Expand Down

0 comments on commit ba93e85

Please sign in to comment.