mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-18 20:12:12 +00:00
* 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
29 lines
1.0 KiB
JavaScript
29 lines
1.0 KiB
JavaScript
'use strict';
|
|
|
|
const Text = require('./Text');
|
|
const PlaylistAuthor = require('./PlaylistAuthor');
|
|
const Parser = require('..');
|
|
|
|
class PlaylistHeader {
|
|
type = 'PlaylistHeader';
|
|
|
|
constructor(data) {
|
|
this.id = data.playlistId;
|
|
this.title = new Text(data.title);
|
|
this.stats = data.stats.map((stat) => new Text(stat));
|
|
this.brief_stats = data.briefStats.map((stat) => new Text(stat));
|
|
this.author = new PlaylistAuthor({ ...data.ownerText, navigationEndpoint: data.ownerEndpoint }, data.ownerBadges, null);
|
|
this.description = new Text(data.descriptionText);
|
|
this.num_videos = new Text(data.numVideosText);
|
|
this.view_count = new Text(data.viewCountText);
|
|
this.can_share = data.shareData.canShare;
|
|
this.can_delete = data.editableDetails.canDelete;
|
|
this.is_editable = data.isEditable;
|
|
this.privacy = data.privacy;
|
|
this.save_button = Parser.parse(data.saveButton);
|
|
this.shuffle_play_button = Parser.parse(data.shufflePlayButton);
|
|
this.menu = Parser.parse(data.moreActionsMenu);
|
|
}
|
|
}
|
|
|
|
module.exports = PlaylistHeader; |