@imput/youtubei.js
Version:
A JavaScript client for YouTube's private API, known as InnerTube. Fork of youtubei.js
24 lines • 953 B
JavaScript
import { YTNode } from '../helpers.js';
import { Parser } from '../index.js';
import InfoPanelContent from './InfoPanelContent.js';
import Menu from './menus/Menu.js';
import Text from './misc/Text.js';
import NavigationEndpoint from './NavigationEndpoint.js';
class InfoPanelContainer extends YTNode {
constructor(data) {
super();
this.title = new Text(data.title);
this.menu = Parser.parseItem(data.menu, Menu);
this.content = Parser.parseItem(data.content, InfoPanelContent);
if (data.headerEndpoint)
this.header_endpoint = new NavigationEndpoint(data.headerEndpoint);
this.background = data.background;
this.title_style = data.titleStyle;
if (Reflect.has(data, 'icon')) {
this.icon_type = data.icon?.iconType;
}
}
}
InfoPanelContainer.type = 'InfoPanelContainer';
export default InfoPanelContainer;
//# sourceMappingURL=InfoPanelContainer.js.map