Skip to content

Commit 002081b

Browse files
committed
use store migration
1 parent e43c01d commit 002081b

File tree

2 files changed

+22
-25
lines changed

2 files changed

+22
-25
lines changed

config/store.js

+22
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,28 @@ const Store = require("electron-store");
33
const defaults = require("./defaults");
44

55
const migrations = {
6+
/** Update shortcuts format from array to object */
7+
">=1.12.0": (store) => {
8+
const options = store.get("plugins.shortcuts")
9+
let updated = false;
10+
for (const optionType of ["global", "local"]) {
11+
if (Array.isArray(options[optionType])) {
12+
const updatedOptions = {};
13+
for (const optionObject of options[optionType]) {
14+
if (optionObject.action && optionObject.shortcut) {
15+
updatedOptions[optionObject.action] = optionObject.shortcut;
16+
}
17+
}
18+
19+
options[optionType] = updatedOptions;
20+
updated = true;
21+
}
22+
}
23+
24+
if (updated) {
25+
store.set("plugins.shortcuts", options);
26+
}
27+
},
628
">=1.11.0": (store) => {
729
if (store.get("options.resumeOnStart") === undefined) {
830
store.set("options.resumeOnStart", true);

plugins/shortcuts/back.js

-25
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
const { globalShortcut } = require("electron");
22
const electronLocalshortcut = require("electron-localshortcut");
3-
const { setOptions } = require("../../config/plugins");
43

54
const getSongControls = require("../../providers/song-controls");
65

@@ -20,8 +19,6 @@ function registerShortcuts(win, options) {
2019
const songControls = getSongControls(win);
2120
const { playPause, next, previous, search } = songControls;
2221

23-
updateOptions(options);
24-
2522
if (options.overrideMediaKeys) {
2623
_registerGlobalShortcut(win.webContents, "MediaPlayPause", playPause);
2724
_registerGlobalShortcut(win.webContents, "MediaNextTrack", next);
@@ -59,26 +56,4 @@ function registerShortcuts(win, options) {
5956
}
6057
}
6158

62-
/** Update options to new format if they are still an array (old format) */
63-
function updateOptions(options) {
64-
let updated = false;
65-
for (const optionType of ["global", "local"]) {
66-
if (Array.isArray(options[optionType])) {
67-
const updatedOptions = {};
68-
for (const optionObject of options[optionType]) {
69-
if (optionObject.action && optionObject.shortcut) {
70-
updatedOptions[optionObject.action] = optionObject.shortcut;
71-
}
72-
}
73-
74-
options[optionType] = updatedOptions;
75-
updated = true;
76-
}
77-
}
78-
79-
if (updated) {
80-
setOptions("shortcuts", options);
81-
}
82-
}
83-
8459
module.exports = registerShortcuts;

0 commit comments

Comments
 (0)