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

34 lines
1.3 KiB
TypeScript

import { YTNode } from '../helpers.ts';
import { Parser, type RawNode } from '../index.ts';
import NavigationEndpoint from './NavigationEndpoint.ts';
import SubscriptionNotificationToggleButton from './SubscriptionNotificationToggleButton.ts';
import Text from './misc/Text.ts';
export default class SubscribeButton extends YTNode {
static type = 'SubscribeButton';
title: Text;
subscribed: boolean;
enabled: boolean;
item_type: string;
channel_id: string;
show_preferences: boolean;
subscribed_text: Text;
unsubscribed_text: Text;
notification_preference_button: SubscriptionNotificationToggleButton | null;
endpoint: NavigationEndpoint;
constructor(data: RawNode) {
super();
this.title = new Text(data.buttonText);
this.subscribed = data.subscribed;
this.enabled = data.enabled;
this.item_type = data.type;
this.channel_id = data.channelId;
this.show_preferences = data.showPreferences;
this.subscribed_text = new Text(data.subscribedButtonText);
this.unsubscribed_text = new Text(data.unsubscribedButtonText);
this.notification_preference_button = Parser.parseItem(data.notificationPreferenceButton, SubscriptionNotificationToggleButton);
this.endpoint = new NavigationEndpoint(data.serviceEndpoints?.[0] || data.onSubscribeEndpoints?.[0]);
}
}