mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-17 11:32:27 +00:00
Things were getting a bit complicated and slow with the old parser so I decided to continue #44's work on the main codebase.
28 lines
941 B
JavaScript
28 lines
941 B
JavaScript
'use strict';
|
|
|
|
const Text = require('./Text');
|
|
const NavigationEndpoint = require('./NavigationEndpoint');
|
|
|
|
class ToggleButton {
|
|
type = 'toggleButtonRenderer';
|
|
|
|
constructor(data) {
|
|
this.text = new Text(data.defaultText);
|
|
this.toggled_text = new Text(data.toggledText);
|
|
this.tooltip = data.defaultTooltip;
|
|
this.toggled_tooltip = data.toggledTooltip;
|
|
this.is_toggled = data.isToggled;
|
|
this.is_disabled = data.isDisabled;
|
|
this.icon_type = data.defaultIcon.iconType;
|
|
|
|
this.icon_type == 'LIKE' &&
|
|
(this.like_count = parseInt(data.defaultText.accessibility.accessibilityData.label.replace(/\D/g, ''))) &&
|
|
(this.short_like_count = new Text(data.defaultText).toString());
|
|
|
|
this.endpoint = new NavigationEndpoint(data.toggledServiceEndpoint);
|
|
this.button_id = data.toggleButtonSupportedData.toggleButtonIdData.id;
|
|
this.target_id = data.targetId;
|
|
}
|
|
}
|
|
|
|
module.exports = ToggleButton; |