You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
devdocs/assets/javascripts/views/search/search_scope.js

208 lines
5.0 KiB

// TODO: This file was created by bulk-decaffeinate.
// Sanity-check the conversion and remove this comment.
/*
* decaffeinate suggestions:
* DS102: Remove unnecessary code created because of implicit returns
* DS103: Rewrite code to no longer use __guard__, or convert again using --optional-chaining
* DS206: Consider reworking classes to avoid initClass
* DS207: Consider shorter variations of null checks
* Full docs: https://github.com/decaffeinate/decaffeinate/blob/main/docs/suggestions.md
*/
1 year ago
(function () {
let SEARCH_PARAM = undefined;
let HASH_RGX = undefined;
app.views.SearchScope = class SearchScope extends app.View {
static initClass() {
SEARCH_PARAM = app.config.search_param;
1 year ago
this.elements = {
1 year ago
input: "._search-input",
tag: "._search-tag",
};
1 year ago
this.events = {
1 year ago
click: "onClick",
keydown: "onKeydown",
textInput: "onTextInput",
};
1 year ago
this.routes = { after: "afterRoute" };
HASH_RGX = new RegExp(`^#${SEARCH_PARAM}=(.+?) .`);
}
init() {
1 year ago
this.placeholder = this.input.getAttribute("placeholder");
this.searcher = new app.SynchronousSearcher({
fuzzy_min_length: 2,
1 year ago
max_results: 1,
});
this.searcher.on("results", (results) => this.onResults(results));
}
getScope() {
return this.doc || app;
}
isActive() {
return !!this.doc;
}
name() {
1 year ago
return this.doc != null ? this.doc.name : undefined;
}
search(value, searchDisabled) {
1 year ago
if (searchDisabled == null) {
searchDisabled = false;
}
if (this.doc) {
return;
}
this.searcher.find(app.docs.all(), "text", value);
if (!this.doc && searchDisabled) {
this.searcher.find(app.disabledDocs.all(), "text", value);
}
}
searchUrl() {
let value;
1 year ago
if ((value = this.extractHashValue())) {
this.search(value, true);
}
}
onResults(results) {
let doc;
1 year ago
if (!(doc = results[0])) {
return;
}
if (app.docs.contains(doc)) {
this.selectDoc(doc);
} else {
this.redirectToDoc(doc);
}
}
selectDoc(doc) {
const previousDoc = this.doc;
1 year ago
if (doc === previousDoc) {
return;
}
this.doc = doc;
this.tag.textContent = doc.fullName;
1 year ago
this.tag.style.display = "block";
1 year ago
this.input.removeAttribute("placeholder");
this.input.value = this.input.value.slice(this.input.selectionStart);
1 year ago
this.input.style.paddingLeft = this.tag.offsetWidth + 10 + "px";
1 year ago
$.trigger(this.input, "input");
this.trigger("change", this.doc, previousDoc);
}
redirectToDoc(doc) {
1 year ago
const { hash } = location;
app.router.replaceHash("");
location.assign(doc.fullPath() + hash);
}
reset() {
1 year ago
if (!this.doc) {
return;
}
const previousDoc = this.doc;
this.doc = null;
1 year ago
this.tag.textContent = "";
this.tag.style.display = "none";
1 year ago
this.input.setAttribute("placeholder", this.placeholder);
this.input.style.paddingLeft = "";
1 year ago
this.trigger("change", null, previousDoc);
}
doScopeSearch(event) {
this.search(this.input.value.slice(0, this.input.selectionStart));
1 year ago
if (this.doc) {
$.stopEvent(event);
}
}
onClick(event) {
if (event.target === this.tag) {
this.reset();
$.stopEvent(event);
}
}
onKeydown(event) {
1 year ago
if (event.which === 8) {
// backspace
if (this.doc && this.input.selectionEnd === 0) {
this.reset();
$.stopEvent(event);
}
} else if (!this.doc && this.input.value && !$.isChromeForAndroid()) {
1 year ago
if (event.ctrlKey || event.metaKey || event.altKey || event.shiftKey) {
return;
}
if (
event.which === 9 || // tab
(event.which === 32 && app.isMobile())
) {
// space
this.doScopeSearch(event);
}
}
}
onTextInput(event) {
1 year ago
if (!$.isChromeForAndroid()) {
return;
}
if (!this.doc && this.input.value && event.data === " ") {
this.doScopeSearch(event);
}
}
extractHashValue() {
let value;
1 year ago
if ((value = this.getHashValue())) {
const newHash = $.urlDecode(location.hash).replace(
`#${SEARCH_PARAM}=${value} `,
`#${SEARCH_PARAM}=`,
);
app.router.replaceHash(newHash);
return value;
}
}
getHashValue() {
1 year ago
try {
return __guard__(
HASH_RGX.exec($.urlDecode(location.hash)),
(x) => x[1],
);
} catch (error) {}
}
afterRoute(name, context) {
if (!app.isSingleDoc() && context.init && context.doc) {
this.selectDoc(context.doc);
}
}
};
app.views.SearchScope.initClass();
return app.views.SearchScope;
})();
function __guard__(value, transform) {
1 year ago
return typeof value !== "undefined" && value !== null
? transform(value)
: undefined;
}