Improve nick clicking in buffer
* focus input line (stops keyboard from disappearing on mobile) * add a space after the colon (and detect that in multiple highlight detection)
This commit is contained in:
parent
8eab74cf61
commit
58f7c9b9be
1 changed files with 7 additions and 5 deletions
|
@ -860,15 +860,16 @@ weechat.controller('WeechatCtrl', ['$rootScope', '$scope', '$store', '$timeout',
|
||||||
var addColon = newValue.length === 0;
|
var addColon = newValue.length === 0;
|
||||||
if (newValue.length > 0) {
|
if (newValue.length > 0) {
|
||||||
// Try to determine if it's a sequence of nicks
|
// Try to determine if it's a sequence of nicks
|
||||||
if (newValue.charAt(newValue.length - 1) === ':') {
|
var trimmedValue = newValue.trim();
|
||||||
|
if (trimmedValue.charAt(trimmedValue.length - 1) === ':') {
|
||||||
// get last word
|
// get last word
|
||||||
var lastSpace = newValue.lastIndexOf(' ') + 1;
|
var lastSpace = trimmedValue.lastIndexOf(' ') + 1;
|
||||||
var lastWord = newValue.slice(lastSpace, newValue.length - 1).trim();
|
var lastWord = trimmedValue.slice(lastSpace, trimmedValue.length - 1);
|
||||||
var nicklist = models.getActiveBuffer().flatNicklist();
|
var nicklist = models.getActiveBuffer().flatNicklist();
|
||||||
// check against nicklist to see if it's a list of highlights
|
// check against nicklist to see if it's a list of highlights
|
||||||
if (nicklist.indexOf(lastWord) !== -1) {
|
if (nicklist.indexOf(lastWord) !== -1) {
|
||||||
// It's another highlight!
|
// It's another highlight!
|
||||||
newValue = newValue.slice(0, newValue.length - 1) + ' ';
|
newValue = newValue.slice(0, newValue.lastIndexOf(':')) + ' ';
|
||||||
addColon = true;
|
addColon = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -882,9 +883,10 @@ weechat.controller('WeechatCtrl', ['$rootScope', '$scope', '$store', '$timeout',
|
||||||
// Add highlight to nicklist
|
// Add highlight to nicklist
|
||||||
newValue += nick;
|
newValue += nick;
|
||||||
if (addColon) {
|
if (addColon) {
|
||||||
newValue += ':';
|
newValue += ': ';
|
||||||
}
|
}
|
||||||
input.value = newValue;
|
input.value = newValue;
|
||||||
|
input.focus();
|
||||||
};
|
};
|
||||||
|
|
||||||
// Calculate number of lines to fetch
|
// Calculate number of lines to fetch
|
||||||
|
|
Loading…
Reference in a new issue