innertuber-rn
Version:
A wrapper around YouTube's private API. Supports YouTube, YouTube Music, YouTube Kids and YouTube Studio (WIP).
23 lines • 753 B
JavaScript
import { YTNode } from '../helpers.js';
import Text from './misc/Text.js';
import NavigationEndpoint from './NavigationEndpoint.js';
class SearchFilter extends YTNode {
constructor(data) {
super();
this.label = new Text(data.label);
this.endpoint = new NavigationEndpoint(data.endpoint || data.navigationEndpoint);
this.tooltip = data.tooltip;
if (Reflect.has(data, 'status')) {
this.status = data.status;
}
}
get disabled() {
return this.status === 'FILTER_STATUS_DISABLED';
}
get selected() {
return this.status === 'FILTER_STATUS_SELECTED';
}
}
SearchFilter.type = 'SearchFilter';
export default SearchFilter;
//# sourceMappingURL=SearchFilter.js.map