@imput/youtubei.js
Version:
A JavaScript client for YouTube's private API, known as InnerTube. Fork of youtubei.js
36 lines • 1.62 kB
JavaScript
import { InnertubeError } from '../../utils/Utils.js';
import Feed from '../../core/mixins/Feed.js';
import KidsCategoriesHeader from '../classes/ytkids/KidsCategoriesHeader.js';
import KidsCategoryTab from '../classes/ytkids/KidsCategoryTab.js';
import KidsHomeScreen from '../classes/ytkids/KidsHomeScreen.js';
export default class HomeFeed extends Feed {
constructor(actions, data, already_parsed = false) {
super(actions, data, already_parsed);
this.header = this.page.header?.item().as(KidsCategoriesHeader);
this.contents = this.page.contents?.item().as(KidsHomeScreen);
}
/**
* Retrieves the contents of the given category tab. Use {@link HomeFeed.categories} to get a list of available categories.
* @param tab - The tab to select
*/
async selectCategoryTab(tab) {
let target_tab;
if (typeof tab === 'string') {
target_tab = this.header?.category_tabs.find((t) => t.title.toString() === tab);
}
else if (tab?.is(KidsCategoryTab)) {
target_tab = tab;
}
if (!target_tab)
throw new InnertubeError(`Tab "${tab}" not found`);
const page = await target_tab.endpoint.call(this.actions, { client: 'YTKIDS', parse: true });
// Copy over the header and header memo
page.header = this.page.header;
page.header_memo = this.page.header_memo;
return new HomeFeed(this.actions, page, true);
}
get categories() {
return this.header?.category_tabs.map((tab) => tab.title.toString()) || [];
}
}
//# sourceMappingURL=HomeFeed.js.map