mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-07-03 17:38:23 +00:00
refactor: rewrite Comments Section logic (#88)
* feat: add core comments section classes * chore: update type declarations * chore: fix linter warnings * style: fix linter * chore: update tests * chore(tests): fix typo * chore(tests): fix typo x2 * fix(tests): `getReplies()` method is only present in `CommentThread` and not `Comment` * chore(tests): fix comment id path * chore(tests): remove outdated code * chore(tests): fix results path * chore: enforce code style * chore: update type declarations * docs: add examples and documentation * chore(docs): fix paths * chore(docs): fix more paths * chore(docs): fix `Comments.js` path * chore(docs): fix typo * chore(docs): mention example file * chore(examples): fix imports * chore(examples): fix typo
This commit is contained in:
@@ -5,7 +5,7 @@ const NavigationEndpoint = require('./NavigationEndpoint');
|
||||
|
||||
class ToggleButton {
|
||||
type = 'ToggleButton';
|
||||
|
||||
|
||||
constructor(data) {
|
||||
this.text = new Text(data.defaultText);
|
||||
this.toggled_text = new Text(data.toggledText);
|
||||
@@ -14,25 +14,24 @@ class ToggleButton {
|
||||
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;
|
||||
|
||||
if (this.icon_type == 'LIKE') {
|
||||
this.like_count = parseInt(acc_label.replace(/\D/g, ''))
|
||||
if (this.like_count) {
|
||||
this.short_like_count = new Text(data.defaultText).toString()
|
||||
}
|
||||
}
|
||||
|
||||
this.endpoint =
|
||||
data.defaultServiceEndpoint?.commandExecutorCommand?.commands &&
|
||||
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.toggled_endpoint = new NavigationEndpoint(data.toggledServiceEndpoint);
|
||||
|
||||
this.button_id = data.toggleButtonSupportedData?.toggleButtonIdData?.id || null;
|
||||
this.target_id = data.targetId || null;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user