textmodule: up/down autoscroll

This commit is contained in:
Felix Niklas 2016-02-02 17:58:34 +01:00
parent e23a80f4cd
commit 4f16f1b58a
2 changed files with 33 additions and 44 deletions

View file

@ -38,7 +38,7 @@
} }
Plugin.prototype.init = function () { Plugin.prototype.init = function () {
this.baseTemplate() this.renderBase()
var _this = this var _this = this
this.$element.on('keydown', function (e) { this.$element.on('keydown', function (e) {
@ -75,41 +75,29 @@
return return
} }
// up // up or down
if ( e.keyCode === 38 ) { if ( e.keyCode === 38 || e.keyCode === 40 ) {
e.preventDefault() e.preventDefault()
if ( !_this.$widget.find('.dropdown-menu li.is-active')[0] ) { var active = _this.$widget.find('.dropdown-menu li.is-active')
var top = _this.$widget.find('.dropdown-menu li').last().addClass('is-active').position().top active.removeClass('is-active')
_this.$widget.find('.dropdown-menu').scrollTop( top );
return if ( e.keyCode == 38 && active.prev().size() ) {
} active = active.prev()
else { } else if ( e.keyCode == 40 && active.next().size() ) {
var prev = _this.$widget.find('.dropdown-menu li.is-active').removeClass('is-active').prev() active = active.next()
var top = 300
if ( prev[0] ) {
top = prev.addClass('is-active').position().top
}
_this.$widget.find('.dropdown-menu').scrollTop( top );
return
}
} }
// down active.addClass('is-active')
if ( e.keyCode === 40 ) {
e.preventDefault() var menu = _this.$widget.find('.dropdown-menu')
if ( !_this.$widget.find('.dropdown-menu li.is-active')[0] ) {
var top = _this.$widget.find('.dropdown-menu li').first().addClass('is-active').position().top if ( active.position().top < 0 ) {
_this.$widget.find('.dropdown-menu').scrollTop( top ); // scroll up
return menu.scrollTop( menu.scrollTop() + active.position().top )
} } else if ( active.position().top + active.height() > menu.height() ) {
else { // scroll down
var next = _this.$widget.find('.dropdown-menu li.is-active').removeClass('is-active').next() var invisibleHeight = active.position().top + active.height() - menu.height()
var top = 300 menu.scrollTop( menu.scrollTop() + invisibleHeight )
if ( next[0] ) {
top = next.addClass('is-active').position().top
}
_this.$widget.find('.dropdown-menu').scrollTop( top );
return
} }
} }
@ -174,15 +162,11 @@
} }
_this.log('BUFF HINT', _this.buffer, _this.buffer.length, e.which, String.fromCharCode(e.which)) _this.log('BUFF HINT', _this.buffer, _this.buffer.length, e.which, String.fromCharCode(e.which))
b = $.proxy(function() {
this.result( this.buffer.substr(2,this.buffer.length) )
}, _this)
setTimeout(b, 400);
if (!_this.isActive()) { if (!_this.isActive()) {
_this.open() _this.open()
} }
_this.result( _this.buffer.substr(2, _this.buffer.length) )
} }
}).on('focus', function (e) { }).on('focus', function (e) {
@ -191,11 +175,11 @@
}; };
// create base template // create base template
Plugin.prototype.baseTemplate = function() { Plugin.prototype.renderBase = function() {
this.$element.after('<div class="shortcut dropdown"><ul class="dropdown-menu" style="max-height: 200px;"><li><a>-</a></li></ul></div>') this.$element.after('<div class="shortcut dropdown"><ul class="dropdown-menu" style="max-height: 200px;"></ul></div>')
this.$widget = this.$element.next() this.$widget = this.$element.next()
this.$widget.on('click', 'li', $.proxy(this.onEntryClick, this)) this.$widget.on('click', 'li', $.proxy(this.onEntryClick, this))
this.$widget.on('mousemove', $.proxy(this.onMouseover, this)) this.$widget.on('mouseenter', 'li', $.proxy(this.onMouseEnter, this))
} }
// set height of widget // set height of widget
@ -240,6 +224,7 @@
Plugin.prototype.open = function() { Plugin.prototype.open = function() {
this.active = true this.active = true
this.updatePosition() this.updatePosition()
this.renderBase()
this.$widget.addClass('open') this.$widget.addClass('open')
$(window).on('click.textmodule', $.proxy(this.close, this)) $(window).on('click.textmodule', $.proxy(this.close, this))
} }
@ -320,8 +305,9 @@
} }
} }
Plugin.prototype.onMouseover = function(event) { Plugin.prototype.onMouseEnter = function(event) {
this.$widget.find('.is-active').removeClass('is-active') this.$widget.find('.is-active').removeClass('is-active')
$(event.currentTarget).addClass('is-active')
} }
Plugin.prototype.onEntryClick = function(event) { Plugin.prototype.onEntryClick = function(event) {
@ -388,6 +374,8 @@
this.open() this.open()
} }
var elements = $()
for (var i = 0; i < result.length; i++) { for (var i = 0; i < result.length; i++) {
var item = result[i] var item = result[i]
var element = $('<li>') var element = $('<li>')
@ -400,10 +388,10 @@
if (item.keywords) { if (item.keywords) {
element.append($('<kbd>').text(App.Utils.htmlEscape(item.keywords))) element.append($('<kbd>').text(App.Utils.htmlEscape(item.keywords)))
} }
this.$widget.find('ul').append(element) elements = elements.add(element)
} }
this.$widget.find('ul').scrollTop(9999) this.$widget.find('ul').append(elements).scrollTop(9999)
this.movePosition() this.movePosition()
} }

View file

@ -4423,6 +4423,7 @@ footer {
.shortcut .dropdown-menu { .shortcut .dropdown-menu {
overflow: auto; overflow: auto;
position: absolute;
} }
.editControls { .editControls {