aboutsummaryrefslogtreecommitdiff
path: root/src/content/footer-line.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/content/footer-line.js')
-rw-r--r--src/content/footer-line.js48
1 files changed, 43 insertions, 5 deletions
diff --git a/src/content/footer-line.js b/src/content/footer-line.js
index 2a931f3..39d8eaf 100644
--- a/src/content/footer-line.js
+++ b/src/content/footer-line.js
@@ -2,21 +2,37 @@ import './footer-line.css';
export default class FooterLine {
constructor(doc) {
+ this.initUi(doc);
+
+ this.enteredCallback = () => {}
+ this.promptChangeCallback = () => {}
+
+ this.input.addEventListener('blur', this.handleBlur.bind(this));
+ this.input.addEventListener('keydown', this.handleKeydown.bind(this));
+ this.input.addEventListener('keyup', this.handleKeyup.bind(this));
+ }
+
+ initUi(doc) {
this.title = doc.createElement('p');
this.title.className = 'vimvixen-footerline-title';
+ let containerInner = doc.createElement('div');
+ containerInner.className = 'vimvixen-footerline-container-inner';
+
+ let containerOuter = doc.createElement('div');
+ containerOuter.className = 'vimvixen-footerline-container-outer';
+
this.input = doc.createElement('input');
this.input.className = 'vimvixen-footerline-input';
this.wrapper = doc.createElement('div');
this.wrapper.className = 'vimvixen-footerline';
+ containerOuter.append(containerInner);
+ containerInner.append(this.input);
this.wrapper.append(this.title);
- this.wrapper.append(this.input);
+ this.wrapper.append(containerOuter);
doc.body.append(this.wrapper)
-
- this.input.addEventListener('blur', this.handleBlur.bind(this));
- this.input.addEventListener('keydown', this.handleKeydown.bind(this));
}
focus() {
@@ -27,13 +43,35 @@ export default class FooterLine {
this.wrapper.remove();
}
+ onPromptChange(callback) {
+ this.promptChangeCallback = callback;
+ }
+
+ onEntered(callback) {
+ this.enteredCallback = callback;
+ }
+
handleBlur() {
this.remove();
}
handleKeydown(e) {
- if (e.keyCode === KeyboardEvent.DOM_VK_ESCAPE) {
+ this.prevValue = e.target.value;
+ switch(e.keyCode) {
+ case KeyboardEvent.DOM_VK_ESCAPE:
this.remove();
+ break;
+ case KeyboardEvent.DOM_VK_RETURN:
+ this.enteredCallback(e);
+ break;
+ }
+ }
+
+ handleKeyup(e) {
+ if (e.target.value === this.prevValue) {
+ return;
}
+ this.promptChangeCallback(e);
+ this.prevValue = e.target.value;
}
}