summaryrefslogtreecommitdiff
path: root/ext/js/data
diff options
context:
space:
mode:
authorpraschke <stel@comfy.monster>2023-10-22 17:23:04 +0100
committerpraschke <stel@comfy.monster>2023-10-22 19:25:58 +0100
commit757707539690b6aec45e9de8cd37fdfc907d8843 (patch)
treedc91bc7516e4e9e9c4cc24cc153f52457d14e8a0 /ext/js/data
parentf88bded2f05b440a8aa7beb980d8c5d76b150011 (diff)
warn about custom templates in the welcome page
Diffstat (limited to 'ext/js/data')
-rw-r--r--ext/js/data/options-util.js27
1 files changed, 27 insertions, 0 deletions
diff --git a/ext/js/data/options-util.js b/ext/js/data/options-util.js
index 7b050416..1f2ffb05 100644
--- a/ext/js/data/options-util.js
+++ b/ext/js/data/options-util.js
@@ -1001,6 +1001,33 @@ class OptionsUtil {
async _updateVersion21(options) {
await this._applyAnkiFieldTemplatesPatch(options, '/data/templates/anki-field-templates-upgrade-v21.handlebars');
+
+ let customTemplates = false;
+ for (const {options: profileOptions} of options.profiles) {
+ if (profileOptions.anki.fieldTemplates !== null) {
+ customTemplates = true;
+ }
+ }
+
+ if (customTemplates && isObject(chrome.storage)) {
+ chrome.storage.session.set({'needsCustomTemplatesWarning': true});
+ await this._createTab(chrome.runtime.getURL('/welcome.html'));
+ chrome.storage.session.set({'openedWelcomePage': true});
+ }
+
return options;
}
+
+ _createTab(url) {
+ return new Promise((resolve, reject) => {
+ chrome.tabs.create({url}, (tab) => {
+ const e = chrome.runtime.lastError;
+ if (e) {
+ reject(new Error(e.message));
+ } else {
+ resolve(tab);
+ }
+ });
+ });
+ }
}