aboutsummaryrefslogtreecommitdiff
path: root/ext/bg
diff options
context:
space:
mode:
authortoasted-nutbread <toasted-nutbread@users.noreply.github.com>2020-07-26 16:51:54 -0400
committerGitHub <noreply@github.com>2020-07-26 16:51:54 -0400
commit208217198e9228699e7299f06d3701899d44d8bb (patch)
treeaae11d6af70bac0c61774b8f611d9117101a288f /ext/bg
parente153971cd4a5768a6c7dc9df36cf446cf298227d (diff)
Display history refactor (#691)
* Create DisplayHistory * Change arguments for _setContentTermsOrKanji * Set up history-driven content updates * Use new history only * Load definitions if missing * Refactor definitions getting * Add support for wildcards * Move definitions setup * Add events * Allow state change even if there is no history state * Update search page to use history * Fix history overwriting * Fix search page not seeing state chang events during prepare * Update state if necessary * Don't reassign query text if the same * Remove DisplayContext * Initialize with real history state * Track URL * Update DisplayHistory to support pseudo-history * Configure history settings on search page * Fix state * Use full URL * Change data format of setContent * Rename details to content * Update event arguments * Fix animation * Remove old state changes * Clear content properly * Remove set/clear content overrides * Fix setting up event listeners for content clear * Make clearContent private * Make focus opt-in * Validate source * Add unloaded type * Generalize content params * Update how extension unload content is assigned * Restore query blurring
Diffstat (limited to 'ext/bg')
-rw-r--r--ext/bg/js/search.js123
-rw-r--r--ext/bg/search.html2
2 files changed, 56 insertions, 69 deletions
diff --git a/ext/bg/js/search.js b/ext/bg/js/search.js
index c29abbaa..c5051fa9 100644
--- a/ext/bg/js/search.js
+++ b/ext/bg/js/search.js
@@ -33,6 +33,7 @@ class DisplaySearch extends Display {
this._intro = document.querySelector('#intro');
this._clipboardMonitorEnable = document.querySelector('#clipboard-monitor-enable');
this._wanakanaEnable = document.querySelector('#wanakana-enable');
+ this._queryText = '';
this._introVisible = true;
this._introAnimationTimer = null;
this._clipboardMonitor = new ClipboardMonitor({
@@ -68,6 +69,9 @@ class DisplaySearch extends Display {
await this._queryParser.prepare();
this._queryParser.on('searched', this._onQueryParserSearch.bind(this));
+ this.on('contentUpdating', this._onContentUpdating.bind(this));
+
+ this.setHistorySettings({useBrowserHistory: true});
const options = this.getOptions();
@@ -83,7 +87,6 @@ class DisplaySearch extends Display {
}
this._setQuery(query);
- this._onSearchQueryUpdated(this._query.value, false);
if (mode !== 'popup') {
if (options.general.enableClipboardMonitor === true) {
@@ -100,7 +103,6 @@ class DisplaySearch extends Display {
this._search.addEventListener('click', this._onSearch.bind(this), false);
this._query.addEventListener('input', this._onSearchInput.bind(this), false);
this._wanakanaEnable.addEventListener('change', this._onWanakanaEnableChange.bind(this));
- window.addEventListener('popstate', this._onPopState.bind(this));
window.addEventListener('copy', this._onCopy.bind(this));
this._clipboardMonitor.on('change', this._onExternalSearchUpdate.bind(this));
@@ -108,6 +110,8 @@ class DisplaySearch extends Display {
await this._prepareNestedPopups();
+ this.initializeState();
+
this._isPrepared = true;
}
@@ -158,29 +162,47 @@ class DisplaySearch extends Display {
}
}
- async setContent(...args) {
- this._query.blur();
- this._closePopups();
- return await super.setContent(...args);
- }
+ // Private
- clearContent() {
+ _onContentUpdating({type, source, content}) {
+ let animate = false;
+ let valid = false;
+ switch (type) {
+ case 'terms':
+ case 'kanji':
+ animate = content.animate;
+ valid = content.definitions.length > 0;
+ this._query.blur();
+ break;
+ case 'clear':
+ valid = false;
+ animate = true;
+ source = '';
+ break;
+ }
+ if (typeof source !== 'string') { source = ''; }
this._closePopups();
- return super.clearContent();
+ this._setQuery(source);
+ this._setIntroVisible(!valid, animate);
+ this._setTitleText(source);
+ this._updateSearchButton();
}
- // Private
-
_onQueryParserSearch({type, definitions, sentence, cause, textSource}) {
this.setContent({
focus: false,
history: cause !== 'mouse',
- type,
- source: textSource.text(),
- definitions,
- context: {
+ params: {
+ type,
+ query: textSource.text(),
+ wildcards: 'off'
+ },
+ state: {
sentence,
url: window.location.href
+ },
+ content: {
+ definitions
}
});
}
@@ -202,22 +224,9 @@ class DisplaySearch extends Display {
e.preventDefault();
const query = this._query.value;
-
- this._queryParser.setText(query);
-
- const url = new URL(window.location.href);
- url.searchParams.set('query', query);
- window.history.pushState(null, '', url.toString());
-
this._onSearchQueryUpdated(query, true);
}
- _onPopState() {
- const {queryParams: {query=''}} = parseUrl(window.location.href);
- this._setQuery(query);
- this._onSearchQueryUpdated(this._query.value, false);
- }
-
_onRuntimeMessage({action, params}, sender, callback) {
const messageHandler = this._runtimeMessageHandlers.get(action);
if (typeof messageHandler === 'undefined') { return false; }
@@ -230,49 +239,25 @@ class DisplaySearch extends Display {
}
_onExternalSearchUpdate({text, animate=true}) {
- this._setQuery(text);
- const url = new URL(window.location.href);
- url.searchParams.set('query', text);
- window.history.pushState(null, '', url.toString());
- this._onSearchQueryUpdated(this._query.value, animate);
+ this._onSearchQueryUpdated(text, animate);
}
- async _onSearchQueryUpdated(query, animate) {
- try {
- const details = {};
- const match = /^([*\uff0a]*)([\w\W]*?)([*\uff0a]*)$/.exec(query);
- if (match !== null) {
- if (match[1]) {
- details.wildcard = 'prefix';
- } else if (match[3]) {
- details.wildcard = 'suffix';
- }
- query = match[2];
- }
-
- const valid = (query.length > 0);
- this._setIntroVisible(!valid, animate);
- this._updateSearchButton();
- if (valid) {
- const {definitions} = await api.termsFind(query, details, this.getOptionsContext());
- this.setContent({
- focus: false,
- history: false,
- definitions,
- source: query,
- type: 'terms',
- context: {
- sentence: {text: query, offset: 0},
- url: window.location.href
- }
- });
- } else {
- this.clearContent();
+ _onSearchQueryUpdated(query, animate) {
+ this.setContent({
+ focus: false,
+ history: false,
+ params: {
+ query
+ },
+ state: {
+ sentence: {text: query, offset: 0},
+ url: window.location.href
+ },
+ content: {
+ definitions: null,
+ animate
}
- this._setTitleText(query);
- } catch (e) {
- this.onError(e);
- }
+ });
}
_onWanakanaEnableChange(e) {
@@ -335,6 +320,8 @@ class DisplaySearch extends Display {
// NOP
}
}
+ if (this._queryText === interpretedQuery) { return; }
+ this._queryText = interpretedQuery;
this._query.value = interpretedQuery;
this._queryParser.setText(interpretedQuery);
}
diff --git a/ext/bg/search.html b/ext/bg/search.html
index 8f7c1d4c..dd44b376 100644
--- a/ext/bg/search.html
+++ b/ext/bg/search.html
@@ -83,9 +83,9 @@
<script src="/fg/js/dom-text-scanner.js"></script>
<script src="/fg/js/source.js"></script>
<script src="/mixed/js/audio-system.js"></script>
- <script src="/mixed/js/display-context.js"></script>
<script src="/mixed/js/display.js"></script>
<script src="/mixed/js/display-generator.js"></script>
+ <script src="/mixed/js/display-history.js"></script>
<script src="/mixed/js/dynamic-loader.js"></script>
<script src="/mixed/js/media-loader.js"></script>
<script src="/mixed/js/scroll.js"></script>