diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-11-18 20:15:30 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-18 20:15:30 -0500 |
commit | 1588f6210cb41c0a9d9defaa3e0ae71754337cd5 (patch) | |
tree | 0c6745e9c55cdc6562ac4cac2252a4da12e6c635 /ext/mixed/js | |
parent | e9075e24e16e64b2116f66dab9cf59cb7ee01361 (diff) |
Display and query parser layout (#1043)
* Update query parser text assignment
* Update how padding is used
* Hide query parser container by default
Diffstat (limited to 'ext/mixed/js')
-rw-r--r-- | ext/mixed/js/display.js | 37 |
1 files changed, 24 insertions, 13 deletions
diff --git a/ext/mixed/js/display.js b/ext/mixed/js/display.js index 7068d424..715b3f3d 100644 --- a/ext/mixed/js/display.js +++ b/ext/mixed/js/display.js @@ -76,7 +76,6 @@ class Display extends EventDispatcher { this._queryParserContainer = document.querySelector('#query-parser-container'); this._queryParser = new QueryParser({ getOptionsContext: this.getOptionsContext.bind(this), - progressIndicatorVisible: this._progressIndicatorVisible, documentUtil: this._documentUtil }); this._mode = null; @@ -154,7 +153,7 @@ class Display extends EventDispatcher { set queryParserVisible(value) { this._queryParserVisible = value; - this._updateQueryParserVisibility(); + this._updateQueryParser(); } get mode() { @@ -466,7 +465,7 @@ class Display extends EventDispatcher { const fullVisible = urlSearchParams.get('full-visible'); this._queryParserVisibleOverride = (fullVisible === null ? null : (fullVisible !== 'false')); - this._updateQueryParserVisibility(); + this._updateQueryParser(); this._closePopups(); this._setEventListenersActive(false); @@ -862,7 +861,7 @@ class Display extends EventDispatcher { async _setContentTermsOrKanji(token, isTerms, urlSearchParams, eventArgs) { let source = urlSearchParams.get('query'); if (!source) { - this._setQueryParserText(''); + this._setFullQuery(''); return false; } @@ -890,7 +889,7 @@ class Display extends EventDispatcher { source = this.postProcessQuery(source); let full = urlSearchParams.get('full'); full = (full === null ? source : this.postProcessQuery(full)); - this._setQueryParserText(full); + this._setFullQuery(full); this._setTitleText(source); let {definitions} = content; @@ -990,11 +989,27 @@ class Display extends EventDispatcher { } } - _setQueryParserText(text) { - if (this._fullQuery === text) { return; } + _setFullQuery(text) { this._fullQuery = text; - if (!this._isQueryParserVisible()) { return; } - this._queryParser.setText(text); + this._updateQueryParser(); + } + + _updateQueryParser() { + const text = this._fullQuery; + const visible = this._isQueryParserVisible(); + this._queryParserContainer.hidden = !visible || text.length === 0; + if (visible && this._queryParser.text !== text) { + this._setQueryParserText(text); + } + } + + async _setQueryParserText(text) { + const overrideToken = this._progressIndicatorVisible.setOverride(true); + try { + await this._queryParser.setText(text); + } finally { + this._progressIndicatorVisible.clearOverride(overrideToken); + } } _setTitleText(text) { @@ -1366,10 +1381,6 @@ class Display extends EventDispatcher { ); } - _updateQueryParserVisibility() { - this._queryParserContainer.hidden = !this._isQueryParserVisible(); - } - _closePopups() { yomichan.trigger('closePopups'); } |