mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-19 20:41:17 +00:00
33 lines
1.0 KiB
TypeScript
33 lines
1.0 KiB
TypeScript
import { YTNode } from '../helpers.js';
|
|
import { type RawNode } from '../index.js';
|
|
import NavigationEndpoint from './NavigationEndpoint.js';
|
|
import Text from './misc/Text.js';
|
|
import Thumbnail from './misc/Thumbnail.js';
|
|
|
|
/**
|
|
* Not a real renderer but we treat it as one to keep things organized.
|
|
*/
|
|
export default class AccountItem extends YTNode {
|
|
static type = 'AccountItem';
|
|
|
|
account_name: Text;
|
|
account_photo: Thumbnail[];
|
|
is_selected: boolean;
|
|
is_disabled: boolean;
|
|
has_channel: boolean;
|
|
endpoint: NavigationEndpoint;
|
|
account_byline: Text;
|
|
channel_handle: Text;
|
|
|
|
constructor(data: RawNode) {
|
|
super();
|
|
this.account_name = new Text(data.accountName);
|
|
this.account_photo = Thumbnail.fromResponse(data.accountPhoto);
|
|
this.is_selected = !!data.isSelected;
|
|
this.is_disabled = !!data.isDisabled;
|
|
this.has_channel = !!data.hasChannel;
|
|
this.endpoint = new NavigationEndpoint(data.serviceEndpoint);
|
|
this.account_byline = new Text(data.accountByline);
|
|
this.channel_handle = new Text(data.channelHandle);
|
|
}
|
|
} |