blob: 39b6b56e232e90839c12ffe0d920f86b7a6aa1af [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
/**
* @typedef {{
* inputText: string,
* resetAutocompleteController: boolean,
* cursorLock: boolean,
* cursorPosition: number,
* zeroSuggest: boolean,
* preventInlineAutocomplete: boolean,
* preferKeyword: boolean,
* currentUrl: string,
* pageClassification: number,
* }}
*/
let QueryInputs;
/**
* @typedef {{
* showIncompleteResults: boolean,
* showDetails: boolean,
* showAllProviders: boolean,
* }}
*/
let DisplayInputs;
class OmniboxInput extends OmniboxElement {
constructor() {
super('omnibox-input-template');
this.displayInputs = OmniboxInput.defaultDisplayInputs;
}
/** @return {QueryInputs} */
get queryInputs() {
return {
inputText: this.$$('#input-text').value,
resetAutocompleteController:
this.$$('#reset-autocomplete-controller').checked,
cursorLock: this.$$('#lock-cursor-position').checked,
cursorPosition: this.cursorPosition_,
zeroSuggest: this.$$('#zero-suggest').checked,
preventInlineAutocomplete:
this.$$('#prevent-inline-autocomplete').checked,
preferKeyword: this.$$('#prefer-keyword').checked,
currentUrl: this.$$('#current-url').value,
pageClassification: this.$$('#page-classification').value,
};
}
/** @param {QueryInputs} queryInputs */
set queryInputs(queryInputs) {
this.$$('#input-text').value = queryInputs.inputText;
this.$$('#reset-autocomplete-controller').checked =
queryInputs.resetAutocompleteController;
this.$$('#lock-cursor-position').checked = queryInputs.cursorLock;
this.cursorPosition_ = queryInputs.cursorPosition;
this.$$('#zero-suggest').checked = queryInputs.zeroSuggest;
this.$$('#prevent-inline-autocomplete').checked =
queryInputs.preventInlineAutocomplete;
this.$$('#prefer-keyword').checked = queryInputs.preferKeyword;
this.$$('#current-url').value = queryInputs.currentUrl;
this.$$('#page-classification').value = queryInputs.pageClassification;
}
/** @return {DisplayInputs} */
get displayInputs() {
return {
showIncompleteResults: this.$$('#show-incomplete-results').checked,
showDetails: this.$$('#show-details').checked,
showAllProviders: this.$$('#show-all-providers').checked,
};
}
/** @param {DisplayInputs} displayInputs */
set displayInputs(displayInputs) {
this.$$('#show-incomplete-results').checked =
displayInputs.showIncompleteResults;
this.$$('#show-details').checked = displayInputs.showDetails;
this.$$('#show-all-providers').checked = displayInputs.showAllProviders;
}
/** @override */
connectedCallback() {
this.setupElementListeners_();
}
/** @private */
setupElementListeners_() {
['#input-text',
'#reset-autocomplete-controller',
'#lock-cursor-position',
'#zero-suggest',
'#prevent-inline-autocomplete',
'#prefer-keyword',
'#current-url',
'#page-classification',
]
.forEach(
query => this.$$(query).addEventListener(
'input', this.onQueryInputsChanged_.bind(this)));
['#show-incomplete-results',
'#show-details',
'#show-all-providers',
]
.forEach(
query => this.$$(query).addEventListener(
'input', this.onDisplayInputsChanged_.bind(this)));
this.$$('#filter-text')
.addEventListener('input', this.onFilterInputsChanged_.bind(this));
this.$$('#copy-text')
.addEventListener('click', this.onCopyText_.bind(this));
this.$$('#download-json')
.addEventListener('click', this.onDownloadJson_.bind(this));
this.setupDragListeners_(this.$$('#import-json'));
this.$$('#import-json')
.addEventListener('drop', this.onImportDropped_.bind(this));
this.$$('#import-json-input')
.addEventListener('input', this.onImportFileSelected_.bind(this));
// Set text of .arrow-padding to substring of #input-text text, from
// beginning until cursor position, in order to correctly align .arrow-up.
this.$$('#input-text')
.addEventListener(
'input', this.positionCursorPositionIndicators_.bind(this));
this.$$('#response-selection')
.addEventListener('input', this.onResponseSelectionChanged_.bind(this));
this.$$('#response-selection')
.addEventListener('blur', this.onResponseSelectionBlur_.bind(this));
}
/**
* Sets up boilerplate event listeners for an element that is able to receive
* drag events.
* @private @param {!Element} element
*/
setupDragListeners_(element) {
element.addEventListener(
'dragenter', () => element.classList.add('drag-hover'));
element.addEventListener(
'dragleave', () => element.classList.remove('drag-hover'));
element.addEventListener('dragover', e => e.preventDefault());
element.addEventListener('drop', e => {
e.preventDefault();
element.classList.remove('drag-hover');
});
}
/** @private */
onQueryInputsChanged_() {
this.$$('#imported-warning').hidden = true;
this.$$('#current-url').disabled = this.$$('#zero-suggest').checked;
if (this.$$('#zero-suggest').checked) {
this.$$('#current-url').value = this.$$('#input-text').value;
}
this.dispatchEvent(
new CustomEvent('query-inputs-changed', {detail: this.queryInputs}));
}
/** @private */
onDisplayInputsChanged_() {
this.dispatchEvent(new CustomEvent(
'display-inputs-changed', {detail: this.displayInputs}));
}
/** @private */
onFilterInputsChanged_() {
this.dispatchEvent(new CustomEvent(
'filter-input-changed', {detail: this.$$('#filter-text').value}));
}
/** @private */
onCopyText_() {
this.dispatchEvent(new CustomEvent('copy-text'));
}
/** @private */
onDownloadJson_() {
this.dispatchEvent(new CustomEvent('download-json'));
}
/** @private @param {!Event} event */
onImportDropped_(event) {
const dragText = event.dataTransfer.getData('Text');
if (dragText) {
this.import_(dragText);
} else if (event.dataTransfer.files[0]) {
this.importFile_(event.dataTransfer.files[0]);
}
}
/** @private @param {!Event} event */
onImportFileSelected_(event) {
this.importFile_(event.target.files[0]);
}
/** @private @param {!File} file */
importFile_(file) {
const reader = new FileReader();
reader.onloadend = () => {
if (reader.readyState === FileReader.DONE) {
this.import_(/** @type {string} */ (reader.result));
} else {
console.error('error importing, unable to read file:', reader.error);
}
};
reader.readAsText(file);
}
/** @private @param {string} importString */
import_(importString) {
try {
const importData = JSON.parse(importString);
this.$$('#imported-warning').hidden = false;
this.dispatchEvent(new CustomEvent('import-json', {detail: importData}));
} catch (error) {
console.error('error during import, invalid json:', error);
}
}
/** @private */
onResponseSelectionChanged_() {
const {value, max} = this.$$('#response-selection');
this.$$('#history-warning').hidden = value === '0' || value === max;
this.dispatchEvent(new CustomEvent('response-select', {detail: value - 1}));
}
/** @private */
onResponseSelectionBlur_() {
const {value, min, max} = this.$$('#response-selection');
this.$$('#response-selection').value = Math.max(Math.min(value, max), min);
this.onResponseSelectionChanged_();
}
/** @param {number} value */
set responsesCount(value) {
if (this.$$('#response-selection').value ===
this.$$('#response-selection').max) {
this.$$('#response-selection').value = value;
}
this.$$('#response-selection').max = value;
this.$$('#response-selection').min = value ? 1 : 0;
this.$$('#responses-count').textContent = value;
this.onResponseSelectionBlur_();
}
/** @return {boolean} */
get connectWindowOmnibox() {
return this.$$('#connect-window-omnibox').checked;
}
/** @private @return {number} */
get cursorPosition_() {
return this.$$('#lock-cursor-position').checked ?
this.$$('#input-text').value.length :
this.$$('#input-text').selectionEnd;
}
/** @private @param {number} value */
set cursorPosition_(value) {
this.$$('#input-text').setSelectionRange(value, value);
this.positionCursorPositionIndicators_();
}
/** @private */
positionCursorPositionIndicators_() {
this.$$('.arrow-padding').textContent =
this.$$('#input-text').value.substring(0, this.cursorPosition_);
}
/** @return {DisplayInputs} */
static get defaultDisplayInputs() {
return {
showIncompleteResults: false,
showDetails: false,
showAllProviders: true,
};
}
}
customElements.define('omnibox-input', OmniboxInput);