Files
YouTube.js/src/parser/classes/ToggleButton.ts
Daniel Wykerd 2ccbe2ce62 refactor!: cleanup platform support (#306)
* refactor!: cleanup platform support

* chore: lint

* fix: web platform

* feat: provide UniversalCache

Provide UniversalCache as a wrapper around Platform.shim.Cache.

* fix: invalid import

* refactor: remove isolated-vm support

* fix: type info

* refactor: cleanup exports

* fix: mark jintr as external dependency

In the bundled CJS node build, mark jintr as external.

* chore: add additional exports

web exports provide a way to select web implementation manually without
relying on the bundler to select it correctly from the "exports" field

web points to src/platform/web.js
web.bundle points to bundle/browser.js
web.bundle.browser points to bundle/browser.min.js

agnostic exports provide users of the library to provide their own
platform implementation without first importing the default one.

agnostic points to src/platform/lib.ts

* fix: toDash on web

* revert: eval is synchronous

* fix: use serializeDOM in FormatUtils

* ci: automate releases with `release-please`

* chore: clean up workflow files

* ci: fix NPM publish action

---------

Co-authored-by: LuanRT <luan.lrt4@gmail.com>
2023-02-12 04:21:44 -03:00

55 lines
1.7 KiB
TypeScript

import Text from './misc/Text.js';
import NavigationEndpoint from './NavigationEndpoint.js';
import { YTNode } from '../helpers.js';
class ToggleButton extends YTNode {
static type = 'ToggleButton';
text: Text;
toggled_text: Text;
tooltip: string;
toggled_tooltip: string;
is_toggled: boolean;
is_disabled: boolean;
icon_type: string;
like_count;
short_like_count;
endpoint: NavigationEndpoint;
toggled_endpoint: NavigationEndpoint;
button_id: string | null;
target_id: string | null;
constructor(data: any) {
super();
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?.accessibilityData?.accessibilityData?.label ||
data?.accessibility?.label;
if (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;
}
}
export default ToggleButton;