feat(parser): Add ShortsLockupView and BadgeView nodes (#746)

This commit is contained in:
absidue
2024-09-13 05:19:46 +02:00
committed by GitHub
parent bf6cc00699
commit e1e76ee616
5 changed files with 73 additions and 2 deletions

View File

@@ -0,0 +1,16 @@
import { YTNode } from '../helpers.js';
import type { RawNode } from '../types/RawResponse.js';
export default class BadgeView extends YTNode {
text: string;
style: string;
accessibility_label: string;
constructor(data: RawNode) {
super();
this.text = data.badgeText;
this.style = data.badgeStyle;
this.accessibility_label = data.accessibilityLabel;
}
}

View File

@@ -0,0 +1,50 @@
import { YTNode } from '../helpers.js';
import { Parser } from '../index.js';
import type { RawNode } from '../types/RawResponse.js';
import BadgeView from './BadgeView.js';
import Text from './misc/Text.js';
import Thumbnail from './misc/Thumbnail.js';
import NavigationEndpoint from './NavigationEndpoint.js';
export default class ShortsLockupView extends YTNode {
static type = 'ShortsLockupView';
entity_id: string;
accessibility_text: string;
thumbnail: Thumbnail[];
on_tap_endpoint: NavigationEndpoint;
menu_on_tap: NavigationEndpoint;
index_in_collection: number;
menu_on_tap_a11y_label: string;
overlay_metadata: {
primary_text: Text;
secondary_text?: Text;
};
inline_player_data?: NavigationEndpoint;
badge?: BadgeView | null;
constructor(data: RawNode) {
super();
this.entity_id = data.entityId;
this.accessibility_text = data.accessibilityText;
this.thumbnail = Thumbnail.fromResponse(data.thumbnail);
this.on_tap_endpoint = new NavigationEndpoint(data.onTap);
this.menu_on_tap = new NavigationEndpoint(data.menuOnTap);
this.index_in_collection = data.indexInCollection;
this.menu_on_tap_a11y_label = data.menuOnTapA11yLabel;
this.overlay_metadata = {
primary_text: Text.fromAttributed(data.overlayMetadata.primaryText),
secondary_text: data.overlayMetadata.secondaryText ? Text.fromAttributed(data.overlayMetadata.secondaryText) : undefined
};
if (data.inlinePlayerData?.onVisible) {
this.inline_player_data = new NavigationEndpoint(data.inlinePlayerData.onVisible);
}
if (data.badge) {
this.badge = Parser.parseItem(data.badge, BadgeView);
}
}
}