Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(parser): Add LiveChatSponsorshipsGiftPurchaseAnnouncement and LiveChatSponsorshipsHeader nodes #793

Merged
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
import { YTNode } from '../../../helpers.js';
import { Parser, type RawNode } from '../../../index.js';
import Author from '../../misc/Author.js';
import LiveChatSponsorshipsHeader from './LiveChatSponsorshipsHeader.js';

export default class LiveChatSponsorshipsGiftPurchaseAnnouncement extends YTNode {
static type = 'LiveChatSponsorshipsGiftPurchaseAnnouncement';

id: string;
timestamp_usec: string;
author: Author;
header: LiveChatSponsorshipsHeader | null;

constructor(data: RawNode) {
super();
this.id = data.id;
this.timestamp_usec = data.timestampUsec;

this.author = new Author(
data.header.liveChatSponsorshipsHeaderRenderer.authorName,
data.header.liveChatSponsorshipsHeaderRenderer.authorBadges,
data.header.liveChatSponsorshipsHeaderRenderer.authorPhoto,
data.authorExternalChannelId
);

this.header = Parser.parseItem(data.header, LiveChatSponsorshipsHeader);
}
}
31 changes: 31 additions & 0 deletions src/parser/classes/livechat/items/LiveChatSponsorshipsHeader.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
import { Parser } from '../../../index.js';
import { YTNode } from '../../../helpers.js';
import type { ObservedArray } from '../../../helpers.js';
import type { RawNode } from '../../../index.js';
import NavigationEndpoint from '../../NavigationEndpoint.js';
import Text from '../../misc/Text.js';
import Thumbnail from '../../misc/Thumbnail.js';
import LiveChatAuthorBadge from '../../LiveChatAuthorBadge.js';

export default class LiveChatSponsorshipsHeader extends YTNode {
static type = 'LiveChatSponsorshipsHeader';

author_name: Text;
author_photo: Thumbnail[];
author_badges: ObservedArray<LiveChatAuthorBadge> | null;
primary_text: Text;
menu_endpoint: NavigationEndpoint;
context_menu_accessibility_label: string;
image: Thumbnail[];

constructor(data: RawNode) {
super();
this.author_name = new Text(data.authorName);
this.author_photo = Thumbnail.fromResponse(data.authorPhoto);
this.author_badges = Parser.parse(data.authorBadges, true, LiveChatAuthorBadge);
jonz94 marked this conversation as resolved.
Show resolved Hide resolved
this.primary_text = new Text(data.primaryText);
this.menu_endpoint = new NavigationEndpoint(data.contextMenuEndpoint);
this.context_menu_accessibility_label = data.contextMenuAccessibility.accessibilityData.label;
this.image = Thumbnail.fromResponse(data.image);
}
}
2 changes: 2 additions & 0 deletions src/parser/nodes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,8 @@ export { default as LiveChatPaidSticker } from './classes/livechat/items/LiveCha
export { default as LiveChatPlaceholderItem } from './classes/livechat/items/LiveChatPlaceholderItem.js';
export { default as LiveChatProductItem } from './classes/livechat/items/LiveChatProductItem.js';
export { default as LiveChatRestrictedParticipation } from './classes/livechat/items/LiveChatRestrictedParticipation.js';
export { default as LiveChatSponsorshipsGiftPurchaseAnnouncement } from './classes/livechat/items/LiveChatSponsorshipsGiftPurchaseAnnouncement.js';
export { default as LiveChatSponsorshipsHeader } from './classes/livechat/items/LiveChatSponsorshipsHeader.js';
export { default as LiveChatTextMessage } from './classes/livechat/items/LiveChatTextMessage.js';
export { default as LiveChatTickerPaidMessageItem } from './classes/livechat/items/LiveChatTickerPaidMessageItem.js';
export { default as LiveChatTickerPaidStickerItem } from './classes/livechat/items/LiveChatTickerPaidStickerItem.js';
Expand Down