Update dictionaries for all profile options
This commit is contained in:
parent
6c571bf828
commit
c002e1bbd2
@ -16,6 +16,11 @@
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
async function getOptionsArray() {
|
||||
const optionsFull = await apiOptionsGetFull();
|
||||
return optionsFull.profiles.map(profile => profile.options);
|
||||
}
|
||||
|
||||
async function formRead(options) {
|
||||
options.general.enable = $('#enable').prop('checked');
|
||||
options.general.showGuide = $('#show-usage-guide').prop('checked');
|
||||
@ -415,12 +420,14 @@ async function onDictionaryPurge(e) {
|
||||
dictionarySpinnerShow(true);
|
||||
|
||||
await utilDatabasePurge();
|
||||
const optionsContext = getOptionsContext();
|
||||
const options = await apiOptionsGet(optionsContext);
|
||||
for (const options of await getOptionsArray()) {
|
||||
options.dictionaries = utilBackgroundIsolate({});
|
||||
options.general.mainDictionary = '';
|
||||
}
|
||||
await settingsSaveOptions();
|
||||
|
||||
const optionsContext = getOptionsContext();
|
||||
const options = await apiOptionsGet(optionsContext);
|
||||
await dictionaryGroupsPopulate(options);
|
||||
await formMainDictionaryOptionsPopulate(options);
|
||||
} catch (e) {
|
||||
@ -457,8 +464,7 @@ async function onDictionaryImport(e) {
|
||||
|
||||
const exceptions = [];
|
||||
const summary = await utilDatabaseImport(e.target.files[0], updateProgress, exceptions);
|
||||
const optionsContext = getOptionsContext();
|
||||
const options = await apiOptionsGet(optionsContext);
|
||||
for (const options of await getOptionsArray()) {
|
||||
options.dictionaries[summary.title] = utilBackgroundIsolate({
|
||||
enabled: true,
|
||||
priority: 0,
|
||||
@ -467,14 +473,16 @@ async function onDictionaryImport(e) {
|
||||
if (summary.sequenced && options.general.mainDictionary === '') {
|
||||
options.general.mainDictionary = summary.title;
|
||||
}
|
||||
}
|
||||
await settingsSaveOptions();
|
||||
|
||||
if (exceptions.length > 0) {
|
||||
exceptions.push(`Dictionary may not have been imported properly: ${exceptions.length} error${exceptions.length === 1 ? '' : 's'} reported.`);
|
||||
dictionaryErrorsShow(exceptions);
|
||||
}
|
||||
|
||||
await settingsSaveOptions();
|
||||
|
||||
const optionsContext = getOptionsContext();
|
||||
const options = await apiOptionsGet(optionsContext);
|
||||
await dictionaryGroupsPopulate(options);
|
||||
await formMainDictionaryOptionsPopulate(options);
|
||||
} catch (e) {
|
||||
|
Loading…
Reference in New Issue
Block a user