diff options
Diffstat (limited to 'ext/js/data')
-rw-r--r-- | ext/js/data/options-util.js | 15 | ||||
-rw-r--r-- | ext/js/data/profiles-util.js | 37 |
2 files changed, 52 insertions, 0 deletions
diff --git a/ext/js/data/options-util.js b/ext/js/data/options-util.js index c6bdf025..64b2e3bc 100644 --- a/ext/js/data/options-util.js +++ b/ext/js/data/options-util.js @@ -547,6 +547,7 @@ export class OptionsUtil { this._updateVersion37, this._updateVersion38, this._updateVersion39, + this._updateVersion40, ]; /* eslint-enable @typescript-eslint/unbound-method */ if (typeof targetVersion === 'number' && targetVersion < result.length) { @@ -1325,6 +1326,20 @@ export class OptionsUtil { } /** + * - Added support for web hotkey scope to profilePrevious and profileNext + * @type {import('options-util').UpdateFunction} + */ + async _updateVersion40(options) { + for (const profile of options.profiles) { + for (const hotkey of profile.options.inputs.hotkeys) { + if (hotkey.action === 'profilePrevious' || hotkey.action === 'profileNext') { + hotkey.scopes = ['popup', 'search', 'web']; + } + } + } + } + + /** * @param {string} url * @returns {Promise<chrome.tabs.Tab>} */ diff --git a/ext/js/data/profiles-util.js b/ext/js/data/profiles-util.js new file mode 100644 index 00000000..b2868d2d --- /dev/null +++ b/ext/js/data/profiles-util.js @@ -0,0 +1,37 @@ +/* + * Copyright (C) 2024 Yomitan Authors + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <https://www.gnu.org/licenses/>. + */ + +/** + * @param {number} direction + * @param {import('../application.js').Application} application + */ +export async function setProfile(direction, application) { + const optionsFull = await application.api.optionsGetFull(); + + const profileCount = optionsFull.profiles.length; + const newProfile = (optionsFull.profileCurrent + direction + profileCount) % profileCount; + + /** @type {import('settings-modifications').ScopedModificationSet} */ + const modification = { + action: 'set', + path: 'profileCurrent', + value: newProfile, + scope: 'global', + optionsContext: null, + }; + await application.api.modifySettings([modification], 'search'); +} |