Files
YouTube.js/deno/src/parser/classes/GridMix.ts
2023-12-01 03:55:35 +00:00

36 lines
1.2 KiB
TypeScript

import { YTNode, type ObservedArray } from '../helpers.ts';
import { Parser, type RawNode } from '../index.ts';
import NavigationEndpoint from './NavigationEndpoint.ts';
import Text from './misc/Text.ts';
import Thumbnail from './misc/Thumbnail.ts';
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);
}
}