Change profile.js into a class (#566)
* Update how settings profile is stored and accessed * Convert profiles.js into a class * Rename members of ProfileController
This commit is contained in:
parent
8537c8f386
commit
fde0072118
@ -16,6 +16,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
/* global
|
/* global
|
||||||
|
* ProfileController
|
||||||
* SettingsBackup
|
* SettingsBackup
|
||||||
* SettingsController
|
* SettingsController
|
||||||
* ankiInitialize
|
* ankiInitialize
|
||||||
@ -25,15 +26,28 @@
|
|||||||
* appearanceInitialize
|
* appearanceInitialize
|
||||||
* audioSettingsInitialize
|
* audioSettingsInitialize
|
||||||
* dictSettingsInitialize
|
* dictSettingsInitialize
|
||||||
* getOptionsContext
|
|
||||||
* onAnkiOptionsChanged
|
* onAnkiOptionsChanged
|
||||||
* onDictionaryOptionsChanged
|
* onDictionaryOptionsChanged
|
||||||
* profileOptionsSetup
|
|
||||||
* storageInfoInitialize
|
* storageInfoInitialize
|
||||||
* utilBackend
|
* utilBackend
|
||||||
* utilBackgroundIsolate
|
* utilBackgroundIsolate
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
let profileIndex = 0;
|
||||||
|
|
||||||
|
function getOptionsContext() {
|
||||||
|
return {index: getProfileIndex()};
|
||||||
|
}
|
||||||
|
|
||||||
|
function getProfileIndex() {
|
||||||
|
return profileIndex;
|
||||||
|
}
|
||||||
|
|
||||||
|
function setProfileIndex(value) {
|
||||||
|
profileIndex = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
function getOptionsMutable(optionsContext) {
|
function getOptionsMutable(optionsContext) {
|
||||||
return utilBackend().getOptions(
|
return utilBackend().getOptions(
|
||||||
utilBackgroundIsolate(optionsContext)
|
utilBackgroundIsolate(optionsContext)
|
||||||
@ -302,7 +316,7 @@ async function onReady() {
|
|||||||
formSetupEventListeners();
|
formSetupEventListeners();
|
||||||
appearanceInitialize();
|
appearanceInitialize();
|
||||||
await audioSettingsInitialize();
|
await audioSettingsInitialize();
|
||||||
await profileOptionsSetup();
|
await (new ProfileController()).prepare();
|
||||||
await dictSettingsInitialize();
|
await dictSettingsInitialize();
|
||||||
ankiInitialize();
|
ankiInitialize();
|
||||||
ankiTemplatesInitialize();
|
ankiTemplatesInitialize();
|
||||||
|
@ -20,281 +20,291 @@
|
|||||||
* api
|
* api
|
||||||
* conditionsClearCaches
|
* conditionsClearCaches
|
||||||
* getOptionsFullMutable
|
* getOptionsFullMutable
|
||||||
|
* getProfileIndex
|
||||||
* onOptionsUpdated
|
* onOptionsUpdated
|
||||||
* profileConditionsDescriptor
|
* profileConditionsDescriptor
|
||||||
* profileConditionsDescriptorPromise
|
* profileConditionsDescriptorPromise
|
||||||
|
* setProfileIndex
|
||||||
* settingsSaveOptions
|
* settingsSaveOptions
|
||||||
* utilBackgroundIsolate
|
* utilBackgroundIsolate
|
||||||
*/
|
*/
|
||||||
|
|
||||||
let currentProfileIndex = 0;
|
class ProfileController {
|
||||||
let profileConditionsContainer = null;
|
constructor() {
|
||||||
|
this._conditionsContainer = null;
|
||||||
function getOptionsContext() {
|
|
||||||
return {
|
|
||||||
index: currentProfileIndex
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
async function profileOptionsSetup() {
|
|
||||||
const optionsFull = await getOptionsFullMutable();
|
|
||||||
currentProfileIndex = optionsFull.profileCurrent;
|
|
||||||
|
|
||||||
profileOptionsSetupEventListeners();
|
|
||||||
await profileOptionsUpdateTarget(optionsFull);
|
|
||||||
}
|
|
||||||
|
|
||||||
function profileOptionsSetupEventListeners() {
|
|
||||||
$('#profile-target').change(onTargetProfileChanged);
|
|
||||||
$('#profile-name').change(onProfileNameChanged);
|
|
||||||
$('#profile-add').click(onProfileAdd);
|
|
||||||
$('#profile-remove').click(onProfileRemove);
|
|
||||||
$('#profile-remove-confirm').click(onProfileRemoveConfirm);
|
|
||||||
$('#profile-copy').click(onProfileCopy);
|
|
||||||
$('#profile-copy-confirm').click(onProfileCopyConfirm);
|
|
||||||
$('#profile-move-up').click(() => onProfileMove(-1));
|
|
||||||
$('#profile-move-down').click(() => onProfileMove(1));
|
|
||||||
$('.profile-form').find('input, select, textarea').not('.profile-form-manual').change(onProfileOptionsChanged);
|
|
||||||
}
|
|
||||||
|
|
||||||
function tryGetIntegerValue(selector, min, max) {
|
|
||||||
const value = parseInt($(selector).val(), 10);
|
|
||||||
return (
|
|
||||||
typeof value === 'number' &&
|
|
||||||
Number.isFinite(value) &&
|
|
||||||
Math.floor(value) === value &&
|
|
||||||
value >= min &&
|
|
||||||
value < max
|
|
||||||
) ? value : null;
|
|
||||||
}
|
|
||||||
|
|
||||||
async function profileFormRead(optionsFull) {
|
|
||||||
const profile = optionsFull.profiles[currentProfileIndex];
|
|
||||||
|
|
||||||
// Current profile
|
|
||||||
const index = tryGetIntegerValue('#profile-active', 0, optionsFull.profiles.length);
|
|
||||||
if (index !== null) {
|
|
||||||
optionsFull.profileCurrent = index;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Profile name
|
async prepare() {
|
||||||
profile.name = $('#profile-name').val();
|
const optionsFull = await getOptionsFullMutable();
|
||||||
}
|
setProfileIndex(optionsFull.profileCurrent);
|
||||||
|
|
||||||
async function profileFormWrite(optionsFull) {
|
this._setupEventListeners();
|
||||||
const profile = optionsFull.profiles[currentProfileIndex];
|
await this._updateTarget(optionsFull);
|
||||||
|
|
||||||
profileOptionsPopulateSelect($('#profile-active'), optionsFull.profiles, optionsFull.profileCurrent, null);
|
|
||||||
profileOptionsPopulateSelect($('#profile-target'), optionsFull.profiles, currentProfileIndex, null);
|
|
||||||
$('#profile-remove').prop('disabled', optionsFull.profiles.length <= 1);
|
|
||||||
$('#profile-copy').prop('disabled', optionsFull.profiles.length <= 1);
|
|
||||||
$('#profile-move-up').prop('disabled', currentProfileIndex <= 0);
|
|
||||||
$('#profile-move-down').prop('disabled', currentProfileIndex >= optionsFull.profiles.length - 1);
|
|
||||||
|
|
||||||
$('#profile-name').val(profile.name);
|
|
||||||
|
|
||||||
if (profileConditionsContainer !== null) {
|
|
||||||
profileConditionsContainer.cleanup();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
await profileConditionsDescriptorPromise;
|
// Private
|
||||||
profileConditionsContainer = new ConditionsUI.Container(
|
|
||||||
profileConditionsDescriptor,
|
|
||||||
'popupLevel',
|
|
||||||
profile.conditionGroups,
|
|
||||||
$('#profile-condition-groups'),
|
|
||||||
$('#profile-add-condition-group')
|
|
||||||
);
|
|
||||||
profileConditionsContainer.save = () => {
|
|
||||||
settingsSaveOptions();
|
|
||||||
conditionsClearCaches(profileConditionsDescriptor);
|
|
||||||
};
|
|
||||||
profileConditionsContainer.isolate = utilBackgroundIsolate;
|
|
||||||
}
|
|
||||||
|
|
||||||
function profileOptionsPopulateSelect(select, profiles, currentValue, ignoreIndices) {
|
_setupEventListeners() {
|
||||||
select.empty();
|
$('#profile-target').change(this._onTargetProfileChanged.bind(this));
|
||||||
|
$('#profile-name').change(this._onNameChanged.bind(this));
|
||||||
|
$('#profile-add').click(this._onAdd.bind(this));
|
||||||
|
$('#profile-remove').click(this._onRemove.bind(this));
|
||||||
|
$('#profile-remove-confirm').click(this._onRemoveConfirm.bind(this));
|
||||||
|
$('#profile-copy').click(this._onCopy.bind(this));
|
||||||
|
$('#profile-copy-confirm').click(this._onCopyConfirm.bind(this));
|
||||||
|
$('#profile-move-up').click(() => this._onMove(-1));
|
||||||
|
$('#profile-move-down').click(() => this._onMove(1));
|
||||||
|
$('.profile-form').find('input, select, textarea').not('.profile-form-manual').change(this._onInputChanged.bind(this));
|
||||||
|
}
|
||||||
|
|
||||||
|
_tryGetIntegerValue(selector, min, max) {
|
||||||
|
const value = parseInt($(selector).val(), 10);
|
||||||
|
return (
|
||||||
|
typeof value === 'number' &&
|
||||||
|
Number.isFinite(value) &&
|
||||||
|
Math.floor(value) === value &&
|
||||||
|
value >= min &&
|
||||||
|
value < max
|
||||||
|
) ? value : null;
|
||||||
|
}
|
||||||
|
|
||||||
for (let i = 0; i < profiles.length; ++i) {
|
async _formRead(optionsFull) {
|
||||||
if (ignoreIndices !== null && ignoreIndices.indexOf(i) >= 0) {
|
const currentProfileIndex = getProfileIndex();
|
||||||
continue;
|
const profile = optionsFull.profiles[currentProfileIndex];
|
||||||
|
|
||||||
|
// Current profile
|
||||||
|
const index = this._tryGetIntegerValue('#profile-active', 0, optionsFull.profiles.length);
|
||||||
|
if (index !== null) {
|
||||||
|
optionsFull.profileCurrent = index;
|
||||||
}
|
}
|
||||||
const profile = profiles[i];
|
|
||||||
select.append($(`<option value="${i}">${profile.name}</option>`));
|
// Profile name
|
||||||
|
profile.name = $('#profile-name').val();
|
||||||
}
|
}
|
||||||
|
|
||||||
select.val(`${currentValue}`);
|
async _formWrite(optionsFull) {
|
||||||
}
|
const currentProfileIndex = getProfileIndex();
|
||||||
|
const profile = optionsFull.profiles[currentProfileIndex];
|
||||||
|
|
||||||
async function profileOptionsUpdateTarget(optionsFull) {
|
this._populateSelect($('#profile-active'), optionsFull.profiles, optionsFull.profileCurrent, null);
|
||||||
await profileFormWrite(optionsFull);
|
this._populateSelect($('#profile-target'), optionsFull.profiles, currentProfileIndex, null);
|
||||||
await onOptionsUpdated({source: null});
|
$('#profile-remove').prop('disabled', optionsFull.profiles.length <= 1);
|
||||||
}
|
$('#profile-copy').prop('disabled', optionsFull.profiles.length <= 1);
|
||||||
|
$('#profile-move-up').prop('disabled', currentProfileIndex <= 0);
|
||||||
|
$('#profile-move-down').prop('disabled', currentProfileIndex >= optionsFull.profiles.length - 1);
|
||||||
|
|
||||||
function profileOptionsCreateCopyName(name, profiles, maxUniqueAttempts) {
|
$('#profile-name').val(profile.name);
|
||||||
let space, index, prefix, suffix;
|
|
||||||
const match = /^([\w\W]*\(Copy)((\s+)(\d+))?(\)\s*)$/.exec(name);
|
if (this._conditionsContainer !== null) {
|
||||||
if (match === null) {
|
this._conditionsContainer.cleanup();
|
||||||
prefix = `${name} (Copy`;
|
}
|
||||||
space = '';
|
|
||||||
index = '';
|
await profileConditionsDescriptorPromise;
|
||||||
suffix = ')';
|
this._conditionsContainer = new ConditionsUI.Container(
|
||||||
} else {
|
profileConditionsDescriptor,
|
||||||
prefix = match[1];
|
'popupLevel',
|
||||||
suffix = match[5];
|
profile.conditionGroups,
|
||||||
if (typeof match[2] === 'string') {
|
$('#profile-condition-groups'),
|
||||||
space = match[3];
|
$('#profile-add-condition-group')
|
||||||
index = parseInt(match[4], 10) + 1;
|
);
|
||||||
|
this._conditionsContainer.save = () => {
|
||||||
|
settingsSaveOptions();
|
||||||
|
conditionsClearCaches(profileConditionsDescriptor);
|
||||||
|
};
|
||||||
|
this._conditionsContainer.isolate = utilBackgroundIsolate;
|
||||||
|
}
|
||||||
|
|
||||||
|
_populateSelect(select, profiles, currentValue, ignoreIndices) {
|
||||||
|
select.empty();
|
||||||
|
|
||||||
|
|
||||||
|
for (let i = 0; i < profiles.length; ++i) {
|
||||||
|
if (ignoreIndices !== null && ignoreIndices.indexOf(i) >= 0) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
const profile = profiles[i];
|
||||||
|
select.append($(`<option value="${i}">${profile.name}</option>`));
|
||||||
|
}
|
||||||
|
|
||||||
|
select.val(`${currentValue}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
async _updateTarget(optionsFull) {
|
||||||
|
await this._formWrite(optionsFull);
|
||||||
|
await onOptionsUpdated({source: null});
|
||||||
|
}
|
||||||
|
|
||||||
|
_createCopyName(name, profiles, maxUniqueAttempts) {
|
||||||
|
let space, index, prefix, suffix;
|
||||||
|
const match = /^([\w\W]*\(Copy)((\s+)(\d+))?(\)\s*)$/.exec(name);
|
||||||
|
if (match === null) {
|
||||||
|
prefix = `${name} (Copy`;
|
||||||
|
space = '';
|
||||||
|
index = '';
|
||||||
|
suffix = ')';
|
||||||
} else {
|
} else {
|
||||||
space = ' ';
|
prefix = match[1];
|
||||||
index = 2;
|
suffix = match[5];
|
||||||
|
if (typeof match[2] === 'string') {
|
||||||
|
space = match[3];
|
||||||
|
index = parseInt(match[4], 10) + 1;
|
||||||
|
} else {
|
||||||
|
space = ' ';
|
||||||
|
index = 2;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
let i = 0;
|
||||||
|
while (true) {
|
||||||
|
const newName = `${prefix}${space}${index}${suffix}`;
|
||||||
|
if (i++ >= maxUniqueAttempts || profiles.findIndex((profile) => profile.name === newName) < 0) {
|
||||||
|
return newName;
|
||||||
|
}
|
||||||
|
if (typeof index !== 'number') {
|
||||||
|
index = 2;
|
||||||
|
space = ' ';
|
||||||
|
} else {
|
||||||
|
++index;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
let i = 0;
|
async _onInputChanged(e) {
|
||||||
while (true) {
|
if (!e.originalEvent && !e.isTrigger) {
|
||||||
const newName = `${prefix}${space}${index}${suffix}`;
|
return;
|
||||||
if (i++ >= maxUniqueAttempts || profiles.findIndex((profile) => profile.name === newName) < 0) {
|
|
||||||
return newName;
|
|
||||||
}
|
}
|
||||||
if (typeof index !== 'number') {
|
|
||||||
index = 2;
|
const optionsFull = await getOptionsFullMutable();
|
||||||
space = ' ';
|
await this._formRead(optionsFull);
|
||||||
} else {
|
await settingsSaveOptions();
|
||||||
++index;
|
}
|
||||||
|
|
||||||
|
async _onTargetProfileChanged() {
|
||||||
|
const optionsFull = await getOptionsFullMutable();
|
||||||
|
const currentProfileIndex = getProfileIndex();
|
||||||
|
const index = this._tryGetIntegerValue('#profile-target', 0, optionsFull.profiles.length);
|
||||||
|
if (index === null || currentProfileIndex === index) {
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
setProfileIndex(index);
|
||||||
|
|
||||||
|
await this._updateTarget(optionsFull);
|
||||||
|
|
||||||
|
yomichan.trigger('modifyingProfileChange');
|
||||||
|
}
|
||||||
|
|
||||||
|
async _onAdd() {
|
||||||
|
const optionsFull = await getOptionsFullMutable();
|
||||||
|
const currentProfileIndex = getProfileIndex();
|
||||||
|
const profile = utilBackgroundIsolate(optionsFull.profiles[currentProfileIndex]);
|
||||||
|
profile.name = this._createCopyName(profile.name, optionsFull.profiles, 100);
|
||||||
|
optionsFull.profiles.push(profile);
|
||||||
|
|
||||||
|
setProfileIndex(optionsFull.profiles.length - 1);
|
||||||
|
|
||||||
|
await this._updateTarget(optionsFull);
|
||||||
|
await settingsSaveOptions();
|
||||||
|
|
||||||
|
yomichan.trigger('modifyingProfileChange');
|
||||||
|
}
|
||||||
|
|
||||||
|
async _onRemove(e) {
|
||||||
|
if (e.shiftKey) {
|
||||||
|
return await this._onRemoveConfirm();
|
||||||
|
}
|
||||||
|
|
||||||
|
const optionsFull = await api.optionsGetFull();
|
||||||
|
if (optionsFull.profiles.length <= 1) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const currentProfileIndex = getProfileIndex();
|
||||||
|
const profile = optionsFull.profiles[currentProfileIndex];
|
||||||
|
|
||||||
|
$('#profile-remove-modal-profile-name').text(profile.name);
|
||||||
|
$('#profile-remove-modal').modal('show');
|
||||||
|
}
|
||||||
|
|
||||||
|
async _onRemoveConfirm() {
|
||||||
|
$('#profile-remove-modal').modal('hide');
|
||||||
|
|
||||||
|
const optionsFull = await getOptionsFullMutable();
|
||||||
|
if (optionsFull.profiles.length <= 1) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const currentProfileIndex = getProfileIndex();
|
||||||
|
optionsFull.profiles.splice(currentProfileIndex, 1);
|
||||||
|
|
||||||
|
if (currentProfileIndex >= optionsFull.profiles.length) {
|
||||||
|
setProfileIndex(optionsFull.profiles.length - 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (optionsFull.profileCurrent >= optionsFull.profiles.length) {
|
||||||
|
optionsFull.profileCurrent = optionsFull.profiles.length - 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
await this._updateTarget(optionsFull);
|
||||||
|
await settingsSaveOptions();
|
||||||
|
|
||||||
|
yomichan.trigger('modifyingProfileChange');
|
||||||
|
}
|
||||||
|
|
||||||
|
_onNameChanged() {
|
||||||
|
const currentProfileIndex = getProfileIndex();
|
||||||
|
$('#profile-active, #profile-target').find(`[value="${currentProfileIndex}"]`).text(this.value);
|
||||||
|
}
|
||||||
|
|
||||||
|
async _onMove(offset) {
|
||||||
|
const optionsFull = await getOptionsFullMutable();
|
||||||
|
const currentProfileIndex = getProfileIndex();
|
||||||
|
const index = currentProfileIndex + offset;
|
||||||
|
if (index < 0 || index >= optionsFull.profiles.length) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const profile = optionsFull.profiles[currentProfileIndex];
|
||||||
|
optionsFull.profiles.splice(currentProfileIndex, 1);
|
||||||
|
optionsFull.profiles.splice(index, 0, profile);
|
||||||
|
|
||||||
|
if (optionsFull.profileCurrent === currentProfileIndex) {
|
||||||
|
optionsFull.profileCurrent = index;
|
||||||
|
}
|
||||||
|
|
||||||
|
setProfileIndex(index);
|
||||||
|
|
||||||
|
await this._updateTarget(optionsFull);
|
||||||
|
await settingsSaveOptions();
|
||||||
|
|
||||||
|
yomichan.trigger('modifyingProfileChange');
|
||||||
|
}
|
||||||
|
|
||||||
|
async _onCopy() {
|
||||||
|
const optionsFull = await api.optionsGetFull();
|
||||||
|
if (optionsFull.profiles.length <= 1) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const currentProfileIndex = getProfileIndex();
|
||||||
|
this._populateSelect($('#profile-copy-source'), optionsFull.profiles, currentProfileIndex === 0 ? 1 : 0, [currentProfileIndex]);
|
||||||
|
$('#profile-copy-modal').modal('show');
|
||||||
|
}
|
||||||
|
|
||||||
|
async _onCopyConfirm() {
|
||||||
|
$('#profile-copy-modal').modal('hide');
|
||||||
|
|
||||||
|
const optionsFull = await getOptionsFullMutable();
|
||||||
|
const index = this._tryGetIntegerValue('#profile-copy-source', 0, optionsFull.profiles.length);
|
||||||
|
const currentProfileIndex = getProfileIndex();
|
||||||
|
if (index === null || index === currentProfileIndex) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const profileOptions = utilBackgroundIsolate(optionsFull.profiles[index].options);
|
||||||
|
optionsFull.profiles[currentProfileIndex].options = profileOptions;
|
||||||
|
|
||||||
|
await this._updateTarget(optionsFull);
|
||||||
|
await settingsSaveOptions();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
async function onProfileOptionsChanged(e) {
|
|
||||||
if (!e.originalEvent && !e.isTrigger) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
const optionsFull = await getOptionsFullMutable();
|
|
||||||
await profileFormRead(optionsFull);
|
|
||||||
await settingsSaveOptions();
|
|
||||||
}
|
|
||||||
|
|
||||||
async function onTargetProfileChanged() {
|
|
||||||
const optionsFull = await getOptionsFullMutable();
|
|
||||||
const index = tryGetIntegerValue('#profile-target', 0, optionsFull.profiles.length);
|
|
||||||
if (index === null || currentProfileIndex === index) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
currentProfileIndex = index;
|
|
||||||
|
|
||||||
await profileOptionsUpdateTarget(optionsFull);
|
|
||||||
|
|
||||||
yomichan.trigger('modifyingProfileChange');
|
|
||||||
}
|
|
||||||
|
|
||||||
async function onProfileAdd() {
|
|
||||||
const optionsFull = await getOptionsFullMutable();
|
|
||||||
const profile = utilBackgroundIsolate(optionsFull.profiles[currentProfileIndex]);
|
|
||||||
profile.name = profileOptionsCreateCopyName(profile.name, optionsFull.profiles, 100);
|
|
||||||
optionsFull.profiles.push(profile);
|
|
||||||
|
|
||||||
currentProfileIndex = optionsFull.profiles.length - 1;
|
|
||||||
|
|
||||||
await profileOptionsUpdateTarget(optionsFull);
|
|
||||||
await settingsSaveOptions();
|
|
||||||
|
|
||||||
yomichan.trigger('modifyingProfileChange');
|
|
||||||
}
|
|
||||||
|
|
||||||
async function onProfileRemove(e) {
|
|
||||||
if (e.shiftKey) {
|
|
||||||
return await onProfileRemoveConfirm();
|
|
||||||
}
|
|
||||||
|
|
||||||
const optionsFull = await api.optionsGetFull();
|
|
||||||
if (optionsFull.profiles.length <= 1) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
const profile = optionsFull.profiles[currentProfileIndex];
|
|
||||||
|
|
||||||
$('#profile-remove-modal-profile-name').text(profile.name);
|
|
||||||
$('#profile-remove-modal').modal('show');
|
|
||||||
}
|
|
||||||
|
|
||||||
async function onProfileRemoveConfirm() {
|
|
||||||
$('#profile-remove-modal').modal('hide');
|
|
||||||
|
|
||||||
const optionsFull = await getOptionsFullMutable();
|
|
||||||
if (optionsFull.profiles.length <= 1) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
optionsFull.profiles.splice(currentProfileIndex, 1);
|
|
||||||
|
|
||||||
if (currentProfileIndex >= optionsFull.profiles.length) {
|
|
||||||
--currentProfileIndex;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (optionsFull.profileCurrent >= optionsFull.profiles.length) {
|
|
||||||
optionsFull.profileCurrent = optionsFull.profiles.length - 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
await profileOptionsUpdateTarget(optionsFull);
|
|
||||||
await settingsSaveOptions();
|
|
||||||
|
|
||||||
yomichan.trigger('modifyingProfileChange');
|
|
||||||
}
|
|
||||||
|
|
||||||
function onProfileNameChanged() {
|
|
||||||
$('#profile-active, #profile-target').find(`[value="${currentProfileIndex}"]`).text(this.value);
|
|
||||||
}
|
|
||||||
|
|
||||||
async function onProfileMove(offset) {
|
|
||||||
const optionsFull = await getOptionsFullMutable();
|
|
||||||
const index = currentProfileIndex + offset;
|
|
||||||
if (index < 0 || index >= optionsFull.profiles.length) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
const profile = optionsFull.profiles[currentProfileIndex];
|
|
||||||
optionsFull.profiles.splice(currentProfileIndex, 1);
|
|
||||||
optionsFull.profiles.splice(index, 0, profile);
|
|
||||||
|
|
||||||
if (optionsFull.profileCurrent === currentProfileIndex) {
|
|
||||||
optionsFull.profileCurrent = index;
|
|
||||||
}
|
|
||||||
|
|
||||||
currentProfileIndex = index;
|
|
||||||
|
|
||||||
await profileOptionsUpdateTarget(optionsFull);
|
|
||||||
await settingsSaveOptions();
|
|
||||||
|
|
||||||
yomichan.trigger('modifyingProfileChange');
|
|
||||||
}
|
|
||||||
|
|
||||||
async function onProfileCopy() {
|
|
||||||
const optionsFull = await api.optionsGetFull();
|
|
||||||
if (optionsFull.profiles.length <= 1) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
profileOptionsPopulateSelect($('#profile-copy-source'), optionsFull.profiles, currentProfileIndex === 0 ? 1 : 0, [currentProfileIndex]);
|
|
||||||
$('#profile-copy-modal').modal('show');
|
|
||||||
}
|
|
||||||
|
|
||||||
async function onProfileCopyConfirm() {
|
|
||||||
$('#profile-copy-modal').modal('hide');
|
|
||||||
|
|
||||||
const optionsFull = await getOptionsFullMutable();
|
|
||||||
const index = tryGetIntegerValue('#profile-copy-source', 0, optionsFull.profiles.length);
|
|
||||||
if (index === null || index === currentProfileIndex) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
const profileOptions = utilBackgroundIsolate(optionsFull.profiles[index].options);
|
|
||||||
optionsFull.profiles[currentProfileIndex].options = profileOptions;
|
|
||||||
|
|
||||||
await profileOptionsUpdateTarget(optionsFull);
|
|
||||||
await settingsSaveOptions();
|
|
||||||
}
|
|
||||||
|
Loading…
Reference in New Issue
Block a user