UNPKG

innertuber-rn

Version:

A wrapper around YouTube's private API. Supports YouTube, YouTube Music, YouTube Kids and YouTube Studio (WIP).

27 lines 925 B
import Text from './misc/Text.js'; import { Parser } from '../index.js'; import NavigationEndpoint from './NavigationEndpoint.js'; import { YTNode } from '../helpers.js'; import Button from './Button.js'; class Shelf extends YTNode { constructor(data) { super(); this.title = new Text(data.title); if (Reflect.has(data, 'endpoint')) { this.endpoint = new NavigationEndpoint(data.endpoint); } this.content = Parser.parseItem(data.content); if (Reflect.has(data, 'icon')) { this.icon_type = data.icon.iconType; } if (Reflect.has(data, 'menu')) { this.menu = Parser.parseItem(data.menu); } if (Reflect.has(data, 'playAllButton')) { this.play_all_button = Parser.parseItem(data.playAllButton, Button); } } } Shelf.type = 'Shelf'; export default Shelf; //# sourceMappingURL=Shelf.js.map