keeweb/app/scripts/views/auto-type/auto-type-select-view.js

180 lines
6.0 KiB
JavaScript
Raw Normal View History

2016-07-24 22:57:12 +02:00
'use strict';
const Backbone = require('backbone');
const Keys = require('../../const/keys');
const KeyHandler = require('../../comp/key-handler');
2016-07-25 20:27:22 +02:00
const Locale = require('../../util/locale');
const AppSettingsModel = require('../../models/app-settings-model');
const EntryPresenter = require('../../presenters/entry-presenter');
const Scrollable = require('../../mixins/scrollable');
2016-07-24 22:57:12 +02:00
let AutoTypePopupView = Backbone.View.extend({
el: 'body',
template: require('templates/auto-type/auto-type-select.hbs'),
2016-07-25 20:27:22 +02:00
itemTemplate: require('templates/auto-type/auto-type-select-item.hbs'),
2016-07-24 22:57:12 +02:00
events: {
2016-07-25 20:27:22 +02:00
'click .at-select__header-filter-clear': 'clearFilterText',
2016-07-26 22:21:20 +02:00
'click .at-select__message-clear-filter': 'clearFilterWindow',
'click .at-select__item': 'itemClicked'
2016-07-24 22:57:12 +02:00
},
result: null,
2016-07-26 22:21:20 +02:00
entries: null,
2016-07-24 22:57:12 +02:00
initialize() {
2016-07-25 20:27:22 +02:00
this.initScroll();
2016-07-24 23:10:03 +02:00
this.listenTo(Backbone, 'main-window-blur', this.mainWindowBlur);
this.listenTo(Backbone, 'main-window-will-close', this.mainWindowWillClose);
2016-07-24 22:57:12 +02:00
KeyHandler.onKey(Keys.DOM_VK_ESCAPE, this.escPressed, this, false, true);
KeyHandler.onKey(Keys.DOM_VK_RETURN, this.enterPressed, this, false, true);
KeyHandler.onKey(Keys.DOM_VK_UP, this.upPressed, this, false, true);
KeyHandler.onKey(Keys.DOM_VK_DOWN, this.downPressed, this, false, true);
2016-07-24 23:53:42 +02:00
KeyHandler.onKey(Keys.DOM_VK_BACK_SPACE, this.backSpacePressed, this, false, true);
2016-07-24 22:57:12 +02:00
KeyHandler.on('keypress:auto-type', this.keyPressed.bind(this));
KeyHandler.setModal('auto-type');
},
render() {
2016-07-25 20:27:22 +02:00
let topMessage, topClearFilterVisible;
if (this.model.filter.title || this.model.filter.url) {
topMessage = Locale.autoTypeMsgMatchedByWindow.replace('{}',
this.model.filter.title || this.model.filter.url);
topClearFilterVisible = !this.model.filter.ignoreWindowInfo;
} else {
topMessage = Locale.autoTypeMsgNoWindow;
}
let noColor = AppSettingsModel.instance.get('colorfulIcons') ? '' : 'grayscale';
2016-07-26 22:21:20 +02:00
this.entries = this.model.filter.getEntries();
this.result = this.entries.first();
let presenter = new EntryPresenter(null, noColor, this.result && this.result.id);
2016-07-25 20:27:22 +02:00
let itemsHtml = '';
let itemTemplate = this.itemTemplate;
2016-07-26 22:21:20 +02:00
this.entries.forEach(entry => {
2016-07-25 20:27:22 +02:00
presenter.present(entry);
itemsHtml += itemTemplate(presenter);
});
2016-07-24 23:53:42 +02:00
this.renderTemplate({
2016-07-25 20:27:22 +02:00
filterText: this.model.filter.text,
topMessage: topMessage,
topClearFilterVisible: topClearFilterVisible,
itemsHtml: itemsHtml
2016-07-24 23:53:42 +02:00
});
2016-07-24 22:57:12 +02:00
document.activeElement.blur();
2016-07-25 20:27:22 +02:00
this.createScroll({
root: this.$el.find('.at-select__items')[0],
scroller: this.$el.find('.scroller')[0],
bar: this.$el.find('.scroller__bar')[0]
});
2016-07-24 22:57:12 +02:00
return this;
},
remove() {
KeyHandler.offKey(Keys.DOM_VK_ESCAPE, this.escPressed, this);
KeyHandler.offKey(Keys.DOM_VK_RETURN, this.enterPressed, this);
KeyHandler.offKey(Keys.DOM_VK_UP, this.upPressed, this);
KeyHandler.offKey(Keys.DOM_VK_DOWN, this.downPressed, this);
2016-07-24 23:53:42 +02:00
KeyHandler.offKey(Keys.DOM_VK_BACK_SPACE, this.backSpacePressed, this);
2016-07-24 22:57:12 +02:00
KeyHandler.off('keypress:auto-type');
KeyHandler.setModal(null);
Backbone.View.prototype.remove.apply(this, arguments);
},
2016-07-24 23:10:03 +02:00
cancelAndClose() {
2016-07-24 22:57:12 +02:00
this.result = null;
this.trigger('result', this.result);
},
2016-07-26 22:21:20 +02:00
closeWithResult() {
this.trigger('result', this.result);
},
2016-07-24 23:10:03 +02:00
escPressed() {
2016-07-25 20:27:22 +02:00
if (this.model.filter.text) {
this.clearFilterText();
} else {
this.cancelAndClose();
}
2016-07-24 23:10:03 +02:00
},
2016-07-24 22:57:12 +02:00
enterPressed() {
2016-07-26 22:21:20 +02:00
this.closeWithResult();
2016-07-24 22:57:12 +02:00
},
2016-07-26 22:21:20 +02:00
upPressed(e) {
e.preventDefault();
let activeIndex = this.entries.indexOf(this.result) - 1;
if (activeIndex >= 0) {
this.result = this.entries.at(activeIndex);
this.highlightActive();
}
2016-07-24 22:57:12 +02:00
},
2016-07-26 22:21:20 +02:00
downPressed(e) {
e.preventDefault();
let activeIndex = this.entries.indexOf(this.result) + 1;
if (activeIndex < this.entries.length) {
this.result = this.entries.at(activeIndex);
this.highlightActive();
}
},
highlightActive() {
this.$el.find('.at-select__item').removeClass('at-select__item--active');
let activeItem = this.$el.find('.at-select__item[data-id="' + this.result.id + '"]');
activeItem.addClass('at-select__item--active');
let itemRect = activeItem[0].getBoundingClientRect();
let listRect = this.scroller[0].getBoundingClientRect();
if (itemRect.top < listRect.top) {
this.scroller[0].scrollTop += itemRect.top - listRect.top;
} else if (itemRect.bottom > listRect.bottom) {
this.scroller[0].scrollTop += itemRect.bottom - listRect.bottom;
}
2016-07-24 22:57:12 +02:00
},
keyPressed(e) {
2016-07-24 23:53:42 +02:00
if (e.which) {
this.model.filter.text += String.fromCharCode(e.which);
this.render();
}
},
backSpacePressed() {
if (this.model.filter.text) {
this.model.filter.text = this.model.filter.text.substr(0, this.model.filter.text.length - 1);
this.render();
}
},
clearFilterText() {
this.model.filter.text = '';
this.render();
2016-07-24 23:10:03 +02:00
},
2016-07-25 20:27:22 +02:00
clearFilterWindow() {
this.model.filter.ignoreWindowInfo = true;
this.render();
},
2016-07-26 22:21:20 +02:00
itemClicked(e) {
let itemEl = $(e.target).closest('.at-select__item');
let id = itemEl.data('id');
this.result = this.entries.get(id);
this.closeWithResult();
},
mainWindowBlur() {
this.cancelAndClose();
},
mainWindowWillClose(e) {
e.preventDefault();
this.cancelAndClose();
2016-07-24 22:57:12 +02:00
}
});
2016-07-25 20:27:22 +02:00
_.extend(AutoTypePopupView.prototype, Scrollable);
2016-07-24 22:57:12 +02:00
module.exports = AutoTypePopupView;