mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-17 11:32:27 +00:00
- Finished Library parser - Fixed search continuations - Improved channel parser - Improved playlist parser - Added support for posts of type poll - Improved History parser - Removed redundant code
38 lines
1.3 KiB
JavaScript
38 lines
1.3 KiB
JavaScript
'use strict';
|
|
|
|
const Text = require('./Text');
|
|
const NavigationEndpoint = require('./NavigationEndpoint');
|
|
|
|
class ToggleButton {
|
|
type = 'ToggleButton';
|
|
|
|
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;
|
|
|
|
const acc_label =
|
|
data.defaultText?.accessibility.accessibilityData.label ||
|
|
data?.accessibility?.label;
|
|
|
|
this.icon_type == 'LIKE' &&
|
|
(this.like_count = parseInt(acc_label.replace(/\D/g, ''))) &&
|
|
(this.short_like_count = new Text(data.defaultText).toString());
|
|
|
|
this.endpoint =
|
|
data.defaultServiceEndpoint?.commandExecutorCommand?.commands &&
|
|
new NavigationEndpoint(data.defaultServiceEndpoint.commandExecutorCommand.commands.pop()) ||
|
|
new NavigationEndpoint(data.defaultServiceEndpoint);
|
|
|
|
this.toggled_endpoint = new NavigationEndpoint(data.toggledServiceEndpoint);
|
|
|
|
this.button_id = data.toggleButtonSupportedData?.toggleButtonIdData?.id || null;
|
|
this.target_id = data.targetId || null;
|
|
}
|
|
}
|
|
|
|
module.exports = ToggleButton; |