mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-16 11:02:10 +00:00
* refactor: move common info into MediaInfo * refactor: better inference on Memo * refactor: improved typesafety in parser methods * refactor: remove PlaylistAuthor in favor of Author * refactor: cleanup live chat parsers - Replace non standard author type with Author class - Remove redundant code * fix: new errors due to changes * fix: pass actions to FormatUtils#toDash * refactor!: merge NavigatableText and Text into single class
27 lines
850 B
TypeScript
27 lines
850 B
TypeScript
import Parser from '../../index.js';
|
|
import Thumbnail from '../misc/Thumbnail.js';
|
|
import Text from '../misc/Text.js';
|
|
import Button from '../Button.js';
|
|
import { YTNode } from '../../helpers.js';
|
|
import type { RawNode } from '../../index.js';
|
|
|
|
class CommentSimplebox extends YTNode {
|
|
static type = 'CommentSimplebox';
|
|
|
|
submit_button: Button | null;
|
|
cancel_button: Button | null;
|
|
author_thumbnails: Thumbnail[];
|
|
placeholder: Text;
|
|
avatar_size;
|
|
|
|
constructor(data: RawNode) {
|
|
super();
|
|
this.submit_button = Parser.parseItem(data.submitButton, Button);
|
|
this.cancel_button = Parser.parseItem(data.cancelButton, Button);
|
|
this.author_thumbnails = Thumbnail.fromResponse(data.authorThumbnail);
|
|
this.placeholder = new Text(data.placeholderText);
|
|
this.avatar_size = data.avatarSize;
|
|
}
|
|
}
|
|
|
|
export default CommentSimplebox; |