@adrianarroyoc/mediaplayer
Version:
Proyecto del Curso Profesional de JavaScript en Platzi
65 lines (64 loc) • 1.9 kB
JavaScript
;
exports.__esModule = true;
var MediaPlayer = /** @class */ (function () {
function MediaPlayer(config) {
this.media = config.el;
this.plugins = config.plugins || [];
this.initPlayer();
this.initiPlugins();
}
MediaPlayer.prototype.initPlayer = function () {
this.container = document.createElement('div');
this.container.style.position = 'relative';
this.media.parentNode.insertBefore(this.container, this.media);
this.container.appendChild(this.media);
};
MediaPlayer.prototype.initiPlugins = function () {
var _this = this;
/*const player = {
play: () => this.play(),
pause: () => this.pause(),
media: this.media,
get muted() {
return this.media.muted;
},
set muted(value) {
this.media.muted = value;
}
};*/
this.plugins.forEach(function (plugin) {
plugin.run(_this);
});
};
MediaPlayer.prototype.play = function () {
this.media.play();
};
MediaPlayer.prototype.pause = function () {
this.media.pause();
};
MediaPlayer.prototype.togglePlay = function () {
if (this.media.paused) {
this.play();
}
else {
this.pause();
}
};
MediaPlayer.prototype.mute = function () {
this.media.muted = true;
};
MediaPlayer.prototype.unmute = function () {
this.media.muted = false;
};
MediaPlayer.prototype.toggleMute = function () {
if (this.media.muted) {
this.unmute();
}
else {
this.mute();
}
};
return MediaPlayer;
}());
exports["default"] = MediaPlayer;
//export const foo = "foo";