mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-01-11 22:40:31 +00:00
71 lines
1.5 KiB
JavaScript
71 lines
1.5 KiB
JavaScript
const EventEmitter = require('events');
|
|
|
|
function Shell() {
|
|
let active = false;
|
|
let error = null;
|
|
let starting = false;
|
|
const events = new EventEmitter();
|
|
events.on('error', () => { });
|
|
|
|
function onStateChanged() {
|
|
events.emit('stateChanged');
|
|
}
|
|
function start() {
|
|
if (active || error instanceof Error || starting) {
|
|
return;
|
|
}
|
|
|
|
starting = true;
|
|
setTimeout(() => {
|
|
error = new Error('Unable to init stremio shell');
|
|
starting = false;
|
|
onStateChanged();
|
|
});
|
|
}
|
|
function stop() {
|
|
active = false;
|
|
error = null;
|
|
starting = false;
|
|
onStateChanged();
|
|
}
|
|
function on(name, listener) {
|
|
events.on(name, listener);
|
|
}
|
|
function off(name, listener) {
|
|
events.off(name, listener);
|
|
}
|
|
function dispatch() {
|
|
if (!active) {
|
|
return;
|
|
}
|
|
|
|
// TODO
|
|
}
|
|
|
|
Object.defineProperties(this, {
|
|
active: {
|
|
configurable: false,
|
|
enumerable: true,
|
|
get: function() {
|
|
return active;
|
|
}
|
|
},
|
|
error: {
|
|
configurable: false,
|
|
enumerable: true,
|
|
get: function() {
|
|
return error;
|
|
}
|
|
}
|
|
});
|
|
|
|
this.start = start;
|
|
this.stop = stop;
|
|
this.on = on;
|
|
this.off = off;
|
|
this.dispatch = dispatch;
|
|
|
|
Object.freeze(this);
|
|
}
|
|
|
|
module.exports = Shell;
|