mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-16 11:02:10 +00:00
36 lines
1.2 KiB
TypeScript
36 lines
1.2 KiB
TypeScript
import { YTNode, type ObservedArray } from '../helpers.js';
|
|
import { Parser, type RawNode } from '../index.js';
|
|
import NavigationEndpoint from './NavigationEndpoint.js';
|
|
import Text from './misc/Text.js';
|
|
import Thumbnail from './misc/Thumbnail.js';
|
|
|
|
export default class GridMix extends YTNode {
|
|
static type = 'GridMix';
|
|
|
|
id: string;
|
|
title: Text;
|
|
author: Text | null;
|
|
thumbnails: Thumbnail[];
|
|
video_count: Text;
|
|
video_count_short: Text;
|
|
endpoint: NavigationEndpoint;
|
|
secondary_endpoint: NavigationEndpoint;
|
|
thumbnail_overlays: ObservedArray<YTNode>;
|
|
|
|
constructor(data: RawNode) {
|
|
super();
|
|
this.id = data.playlistId;
|
|
this.title = new Text(data.title);
|
|
|
|
this.author = data.shortBylineText?.simpleText ?
|
|
new Text(data.shortBylineText) : data.longBylineText?.simpleText ?
|
|
new Text(data.longBylineText) : null;
|
|
|
|
this.thumbnails = Thumbnail.fromResponse(data.thumbnail);
|
|
this.video_count = new Text(data.videoCountText);
|
|
this.video_count_short = new Text(data.videoCountShortText);
|
|
this.endpoint = new NavigationEndpoint(data.navigationEndpoint);
|
|
this.secondary_endpoint = new NavigationEndpoint(data.secondaryNavigationEndpoint);
|
|
this.thumbnail_overlays = Parser.parseArray(data.thumbnailOverlays);
|
|
}
|
|
} |