mirror of
https://github.com/th-ch/youtube-music.git
synced 2026-01-17 05:02:06 +00:00
Initial commit - app + 4 plugins
This commit is contained in:
21
store/index.js
Normal file
21
store/index.js
Normal file
@ -0,0 +1,21 @@
|
||||
const Store = require("electron-store");
|
||||
const plugins = require("./plugins");
|
||||
|
||||
const store = new Store({
|
||||
defaults: {
|
||||
"window-size": {
|
||||
width : 1100,
|
||||
height: 550
|
||||
},
|
||||
url : "https://music.youtube.com",
|
||||
plugins: ["navigation", "shortcuts", "adblocker", "no-google-login"]
|
||||
}
|
||||
});
|
||||
|
||||
module.exports = {
|
||||
store : store,
|
||||
isPluginEnabled : plugin => plugins.isEnabled(store, plugin),
|
||||
getEnabledPlugins: () => plugins.getEnabledPlugins(store),
|
||||
enableplugin : plugin => plugins.enablePlugin(store, plugin),
|
||||
disablePlugin : plugin => plugins.disablePlugin(store, plugin)
|
||||
};
|
||||
31
store/plugins.js
Normal file
31
store/plugins.js
Normal file
@ -0,0 +1,31 @@
|
||||
function getEnabledPlugins(store) {
|
||||
return store.get("plugins");
|
||||
}
|
||||
|
||||
function isEnabled(store, plugin) {
|
||||
return store.get("plugins").indexOf(plugin) > -1;
|
||||
}
|
||||
|
||||
function enablePlugin(store, plugin) {
|
||||
let plugins = getEnabledPlugins(store);
|
||||
if (plugins.indexOf(plugin) === -1) {
|
||||
plugins.push(plugin);
|
||||
store.set("plugins", plugins);
|
||||
}
|
||||
}
|
||||
|
||||
function disablePlugin(store, plugin) {
|
||||
let plugins = getEnabledPlugins(store);
|
||||
let index = plugins.indexOf(plugin);
|
||||
if (index > -1) {
|
||||
plugins.splice(index, 1);
|
||||
store.set("plugins", plugins);
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
isEnabled : isEnabled,
|
||||
getEnabledPlugins: getEnabledPlugins,
|
||||
enableplugin : enablePlugin,
|
||||
disableplugin : disablePlugin
|
||||
};
|
||||
Reference in New Issue
Block a user