Update badges (#1309)
* Update badge indications to be based off current profile * Update warning badge to display when no dictionaries are enabled * Show how many dictionaries are enabled
This commit is contained in:
parent
4430446731
commit
bab6c6fba9
@ -1248,14 +1248,17 @@ class Backend {
|
|||||||
color = '#f0ad4e';
|
color = '#f0ad4e';
|
||||||
status = 'Loading';
|
status = 'Loading';
|
||||||
}
|
}
|
||||||
} else if (!this._anyOptionsMatches((options) => options.general.enable)) {
|
} else {
|
||||||
text = 'off';
|
const options = this._getProfileOptions({current: true});
|
||||||
color = '#555555';
|
if (!options.general.enable) {
|
||||||
status = 'Disabled';
|
text = 'off';
|
||||||
} else if (!this._anyOptionsMatches((options) => this._isAnyDictionaryEnabled(options))) {
|
color = '#555555';
|
||||||
text = '!';
|
status = 'Disabled';
|
||||||
color = '#f0ad4e';
|
} else if (!this._isAnyDictionaryEnabled(options)) {
|
||||||
status = 'No dictionaries installed';
|
text = '!';
|
||||||
|
color = '#f0ad4e';
|
||||||
|
status = 'No dictionaries installed';
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (color !== null && typeof chrome.browserAction.setBadgeBackgroundColor === 'function') {
|
if (color !== null && typeof chrome.browserAction.setBadgeBackgroundColor === 'function') {
|
||||||
|
@ -154,6 +154,7 @@ class DictionaryEntry {
|
|||||||
_onEnabledChanged(e) {
|
_onEnabledChanged(e) {
|
||||||
const {detail: {value}} = e;
|
const {detail: {value}} = e;
|
||||||
this._node.dataset.enabled = `${value}`;
|
this._node.dataset.enabled = `${value}`;
|
||||||
|
this._dictionaryController.updateDictionariesEnabled();
|
||||||
}
|
}
|
||||||
|
|
||||||
_setupDetails(detailsTable) {
|
_setupDetails(detailsTable) {
|
||||||
@ -203,6 +204,9 @@ class DictionaryController {
|
|||||||
this._dictionaryEntryContainer = null;
|
this._dictionaryEntryContainer = null;
|
||||||
this._integrityExtraInfoContainer = null;
|
this._integrityExtraInfoContainer = null;
|
||||||
this._dictionaryInstallCountNode = null;
|
this._dictionaryInstallCountNode = null;
|
||||||
|
this._dictionaryEnabledCountNode = null;
|
||||||
|
this._noDictionariesInstalledWarnings = null;
|
||||||
|
this._noDictionariesEnabledWarnings = null;
|
||||||
this._deleteDictionaryModal = null;
|
this._deleteDictionaryModal = null;
|
||||||
this._integrityExtraInfoNode = null;
|
this._integrityExtraInfoNode = null;
|
||||||
this._isDeleting = false;
|
this._isDeleting = false;
|
||||||
@ -213,10 +217,13 @@ class DictionaryController {
|
|||||||
this._dictionaryEntryContainer = document.querySelector('#dictionary-list');
|
this._dictionaryEntryContainer = document.querySelector('#dictionary-list');
|
||||||
this._integrityExtraInfoContainer = document.querySelector('#dictionary-list-extra');
|
this._integrityExtraInfoContainer = document.querySelector('#dictionary-list-extra');
|
||||||
this._dictionaryInstallCountNode = document.querySelector('#dictionary-install-count');
|
this._dictionaryInstallCountNode = document.querySelector('#dictionary-install-count');
|
||||||
|
this._dictionaryEnabledCountNode = document.querySelector('#dictionary-enabled-count');
|
||||||
this._noDictionariesInstalledWarnings = document.querySelectorAll('.no-dictionaries-installed-warning');
|
this._noDictionariesInstalledWarnings = document.querySelectorAll('.no-dictionaries-installed-warning');
|
||||||
|
this._noDictionariesEnabledWarnings = document.querySelectorAll('.no-dictionaries-enabled-warning');
|
||||||
this._deleteDictionaryModal = this._modalController.getModal('dictionary-confirm-delete');
|
this._deleteDictionaryModal = this._modalController.getModal('dictionary-confirm-delete');
|
||||||
|
|
||||||
yomichan.on('databaseUpdated', this._onDatabaseUpdated.bind(this));
|
yomichan.on('databaseUpdated', this._onDatabaseUpdated.bind(this));
|
||||||
|
this._settingsController.on('optionsChanged', this._onOptionsChanged.bind(this));
|
||||||
|
|
||||||
document.querySelector('#dictionary-confirm-delete-button').addEventListener('click', this._onDictionaryConfirmDelete.bind(this), false);
|
document.querySelector('#dictionary-confirm-delete-button').addEventListener('click', this._onDictionaryConfirmDelete.bind(this), false);
|
||||||
if (this._checkIntegrityButton !== null) {
|
if (this._checkIntegrityButton !== null) {
|
||||||
@ -238,13 +245,23 @@ class DictionaryController {
|
|||||||
return this._settingsController.instantiateTemplate(name);
|
return this._settingsController.instantiateTemplate(name);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async updateDictionariesEnabled() {
|
||||||
|
const options = await this._settingsController.getOptions();
|
||||||
|
this._updateDictionariesEnabledWarnings(options);
|
||||||
|
}
|
||||||
|
|
||||||
// Private
|
// Private
|
||||||
|
|
||||||
|
_onOptionsChanged({options}) {
|
||||||
|
this._updateDictionariesEnabledWarnings(options);
|
||||||
|
}
|
||||||
|
|
||||||
async _onDatabaseUpdated() {
|
async _onDatabaseUpdated() {
|
||||||
const token = {};
|
const token = {};
|
||||||
this._databaseStateToken = token;
|
this._databaseStateToken = token;
|
||||||
this._dictionaries = null;
|
this._dictionaries = null;
|
||||||
const dictionaries = await this._settingsController.getDictionaryInfo();
|
const dictionaries = await this._settingsController.getDictionaryInfo();
|
||||||
|
const options = await this._settingsController.getOptions();
|
||||||
if (this._databaseStateToken !== token) { return; }
|
if (this._databaseStateToken !== token) { return; }
|
||||||
this._dictionaries = dictionaries;
|
this._dictionaries = dictionaries;
|
||||||
|
|
||||||
@ -264,12 +281,37 @@ class DictionaryController {
|
|||||||
node.hidden = hasDictionary;
|
node.hidden = hasDictionary;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
this._updateDictionariesEnabledWarnings(options);
|
||||||
|
|
||||||
await this._ensureDictionarySettings(dictionaries);
|
await this._ensureDictionarySettings(dictionaries);
|
||||||
for (const dictionary of dictionaries) {
|
for (const dictionary of dictionaries) {
|
||||||
this._createDictionaryEntry(dictionary);
|
this._createDictionaryEntry(dictionary);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
_updateDictionariesEnabledWarnings(options) {
|
||||||
|
let enabledCount = 0;
|
||||||
|
if (this._dictionaries !== null) {
|
||||||
|
for (const {title} of this._dictionaries) {
|
||||||
|
if (Object.prototype.hasOwnProperty.call(options.dictionaries, title)) {
|
||||||
|
const {enabled} = options.dictionaries[title];
|
||||||
|
if (enabled) {
|
||||||
|
++enabledCount;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const hasEnabledDictionary = (enabledCount > 0);
|
||||||
|
for (const node of this._noDictionariesEnabledWarnings) {
|
||||||
|
node.hidden = hasEnabledDictionary;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (this._dictionaryEnabledCountNode !== null) {
|
||||||
|
this._dictionaryEnabledCountNode.textContent = `${enabledCount}`;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
_onDictionaryConfirmDelete(e) {
|
_onDictionaryConfirmDelete(e) {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
|
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
<div class="sidebar"><div class="sidebar-inner">
|
<div class="sidebar"><div class="sidebar-inner">
|
||||||
<div class="sidebar-body">
|
<div class="sidebar-body">
|
||||||
<a href="#!profile" class="outline-item"><span class="outline-item-left"><span class="outline-item-icon icon" data-icon="profile"></span></span><span class="outline-item-label">Profile</span></a>
|
<a href="#!profile" class="outline-item"><span class="outline-item-left"><span class="outline-item-icon icon" data-icon="profile"></span></span><span class="outline-item-label">Profile</span></a>
|
||||||
<a href="#!dictionaries" class="outline-item"><span class="outline-item-left"><span class="outline-item-icon icon" data-icon="book"></span><span class="outline-item-left-warning-badge no-dictionaries-installed-warning" hidden><span class="icon" data-icon="exclamation-point-short"></span></span></span><span class="outline-item-label">Dictionaries</span></a>
|
<a href="#!dictionaries" class="outline-item"><span class="outline-item-left"><span class="outline-item-icon icon" data-icon="book"></span><span class="outline-item-left-warning-badge no-dictionaries-enabled-warning" hidden><span class="icon" data-icon="exclamation-point-short"></span></span></span><span class="outline-item-label">Dictionaries</span></a>
|
||||||
<a href="#!general" class="outline-item"><span class="outline-item-left"><span class="outline-item-icon icon" data-icon="cog"></span></span><span class="outline-item-label">General</span></a>
|
<a href="#!general" class="outline-item"><span class="outline-item-left"><span class="outline-item-icon icon" data-icon="cog"></span></span><span class="outline-item-label">General</span></a>
|
||||||
<a href="#!scanning" class="outline-item"><span class="outline-item-left"><span class="outline-item-icon icon" data-icon="scanning"></span></span><span class="outline-item-label">Scanning</span></a>
|
<a href="#!scanning" class="outline-item"><span class="outline-item-left"><span class="outline-item-icon icon" data-icon="scanning"></span></span><span class="outline-item-label">Scanning</span></a>
|
||||||
<a href="#!popup" class="outline-item"><span class="outline-item-left"><span class="outline-item-icon icon" data-icon="popup"></span></span><span class="outline-item-label">Popup</span></a>
|
<a href="#!popup" class="outline-item"><span class="outline-item-left"><span class="outline-item-icon icon" data-icon="popup"></span></span><span class="outline-item-label">Popup</span></a>
|
||||||
@ -119,7 +119,7 @@
|
|||||||
<!-- Dictionaries -->
|
<!-- Dictionaries -->
|
||||||
<div class="heading-container">
|
<div class="heading-container">
|
||||||
<div class="heading-container-icon"><span class="icon" data-icon="book"></span></div>
|
<div class="heading-container-icon"><span class="icon" data-icon="book"></span></div>
|
||||||
<div class="heading-container-left"><h2 id="dictionaries"><a href="#!dictionaries">Dictionaries</a> <span class="heading-sub-text no-wrap" data-modal-action="show,dictionaries">(<span id="dictionary-install-count">#</span> installed)</span></h2></div>
|
<div class="heading-container-left"><h2 id="dictionaries"><a href="#!dictionaries">Dictionaries</a> <span class="heading-sub-text no-wrap" data-modal-action="show,dictionaries">(<span id="dictionary-install-count">#</span> installed, <span id="dictionary-enabled-count">#</span> enabled)</span></h2></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="settings-group">
|
<div class="settings-group">
|
||||||
<div class="settings-item settings-item-button" data-modal-action="show,dictionaries"><div class="settings-item-inner">
|
<div class="settings-item settings-item-button" data-modal-action="show,dictionaries"><div class="settings-item-inner">
|
||||||
|
Loading…
Reference in New Issue
Block a user