platypush/platypush/backend/http/static/js/plugins/media/handlers/youtube.js

55 lines
1.1 KiB
JavaScript

MediaHandlers.youtube = Vue.extend({
props: {
bus: { type: Object },
iconClass: {
type: String,
default: 'fab fa-youtube',
},
},
computed: {
dropdownItems: function() {
return [
{
text: 'Play',
icon: 'play',
action: this.play,
},
{
text: 'Download (on server)',
icon: 'download',
action: this.download,
},
{
text: 'View info',
icon: 'info',
action: this.info,
},
];
},
},
methods: {
matchesUrl: function(url) {
return !!(url.match('^https?://(www\.)?youtube.com/') || url.match('^https?://youtu.be/'));
},
getMetadata: function(url) {
// TODO
return {};
},
play: function(item) {
},
download: function(item) {
},
info: function(item) {
},
},
});