1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
/* import-globals-from ../main.js */
let gAddEngineDialog = {
_form: null,
_name: null,
_alias: null,
onLoad() {
document.mozSubdialogReady = this.init();
},
async init() {
this._dialog = document.querySelector("dialog");
this._form = document.getElementById("addEngineForm");
this._name = document.getElementById("engineName");
this._alias = document.getElementById("engineAlias");
this._name.addEventListener("input", this.onNameInput.bind(this));
this._alias.addEventListener("input", this.onAliasInput.bind(this));
this._form.addEventListener("input", this.onFormInput.bind(this));
document.addEventListener("dialogaccept", this.onAddEngine.bind(this));
},
async onAddEngine(event) {
let url = document
.getElementById("engineUrl")
.value.replace(/%s/, "{searchTerms}");
await Services.search.wrappedJSObject.addUserEngine(
this._name.value,
url,
this._alias.value
);
},
async onNameInput() {
if (this._name.value) {
let engine = Services.search.getEngineByName(this._name.value);
let validity = engine
? document.getElementById("engineNameExists").textContent
: "";
this._name.setCustomValidity(validity);
}
},
async onAliasInput() {
let validity = "";
if (this._alias.value) {
let engine = await Services.search.getEngineByAlias(this._alias.value);
if (engine) {
engine = document.getElementById("engineAliasExists").textContent;
}
}
this._alias.setCustomValidity(validity);
},
async onFormInput() {
this._dialog.setAttribute(
"buttondisabledaccept",
!this._form.checkValidity()
);
},
};
window.addEventListener("load", () => gAddEngineDialog.onLoad());
|