mirror of
https://github.com/fazo96/telecommander.git
synced 2025-01-25 13:54:19 +01:00
fixed unintended auto-switch on new message
This commit is contained in:
parent
c0712c1277
commit
b9d66b3130
@ -36,7 +36,7 @@ var defaultStyle = {
|
|||||||
|
|
||||||
// Function to create a log box
|
// Function to create a log box
|
||||||
function mkBox(){
|
function mkBox(){
|
||||||
return blessed.log({
|
var box = blessed.log({
|
||||||
right: 0,
|
right: 0,
|
||||||
width: '80%',
|
width: '80%',
|
||||||
height: screen.height-3,
|
height: screen.height-3,
|
||||||
@ -45,6 +45,8 @@ function mkBox(){
|
|||||||
draggable: true,
|
draggable: true,
|
||||||
style: defaultStyle
|
style: defaultStyle
|
||||||
})
|
})
|
||||||
|
box.hide()
|
||||||
|
return box
|
||||||
}
|
}
|
||||||
|
|
||||||
// Contact list window
|
// Contact list window
|
||||||
@ -170,19 +172,24 @@ function command(cmd){
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
chats.addItem(msgBox[statusWindow])
|
chats.addItem(msgBox[statusWindow])
|
||||||
|
switchToBox(statusWindow)
|
||||||
screen.render();
|
screen.render();
|
||||||
|
|
||||||
// What happens when a different window is selected
|
// What happens when a different window is selected
|
||||||
chats.on('select',function(selected){
|
chats.on('select',function(selected){
|
||||||
log('SELECT:',selected.content)
|
log('SELECT:',selected.content)
|
||||||
msgBox[selectedWindow].hide()
|
switchToBox(selected.content)
|
||||||
selectedWindow = selected.content;
|
|
||||||
var newb = getMsgBox(selectedWindow)
|
|
||||||
newb.show()
|
|
||||||
})
|
})
|
||||||
|
|
||||||
|
function switchToBox(boxname){
|
||||||
|
msgBox[selectedWindow].hide()
|
||||||
|
selectedWindow = boxname;
|
||||||
|
var newb = getMsgBox(selectedWindow)
|
||||||
|
newb.show()
|
||||||
|
}
|
||||||
|
|
||||||
// Get msgBox for given chat, create if not exists
|
// Get msgBox for given chat, create if not exists
|
||||||
function getMsgBox(chat){
|
function getMsgBox(chat,switchto){
|
||||||
// Automatically convert ids to names
|
// Automatically convert ids to names
|
||||||
//if(contacts[chat]) chat = contacts[chat].user.id
|
//if(contacts[chat]) chat = contacts[chat].user.id
|
||||||
//if(groups[chat]); // To be implemented
|
//if(groups[chat]); // To be implemented
|
||||||
@ -200,6 +207,9 @@ function getMsgBox(chat){
|
|||||||
getMessages(uid,msgBox[chat])
|
getMessages(uid,msgBox[chat])
|
||||||
}
|
}
|
||||||
} else log('Getting window','"'+chat+'"')
|
} else log('Getting window','"'+chat+'"')
|
||||||
|
if(switchto === true){
|
||||||
|
switchToBox(chat)
|
||||||
|
}
|
||||||
return msgBox[chat]
|
return msgBox[chat]
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -290,7 +300,6 @@ function whenReady(){
|
|||||||
// Downloads stuff
|
// Downloads stuff
|
||||||
function downloadData(){
|
function downloadData(){
|
||||||
log('Downloading data...')
|
log('Downloading data...')
|
||||||
|
|
||||||
client.contacts.getContacts('',function(cont){
|
client.contacts.getContacts('',function(cont){
|
||||||
chats.clearItems()
|
chats.clearItems()
|
||||||
chats.add(statusWindow)
|
chats.add(statusWindow)
|
||||||
@ -353,7 +362,7 @@ function downloadUpdates(){
|
|||||||
res.new_messages.list.forEach(function(msg){
|
res.new_messages.list.forEach(function(msg){
|
||||||
if(!msg.message) return log('Empty message!',msg)
|
if(!msg.message) return log('Empty message!',msg)
|
||||||
//log('Scheduling message: '+msg.message)
|
//log('Scheduling message: '+msg.message)
|
||||||
appendMsg(msg)
|
appendMsg(msg,undefined,false,true)
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
setTimeout(downloadUpdates,1000)
|
setTimeout(downloadUpdates,1000)
|
||||||
@ -416,20 +425,26 @@ function appendToUserBox(msg,context){
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Writes given telegram.link "message" object to given boxId
|
// Writes given telegram.link "message" object to given boxId
|
||||||
function appendMsg(msg,toBoxId,bare){
|
function appendMsg(msg,toBoxId,bare,smartmode){
|
||||||
var box
|
var box,param
|
||||||
if(toBoxId != undefined){
|
if(toBoxId != undefined){
|
||||||
box = toBoxId
|
box = toBoxId
|
||||||
} else {
|
} else {
|
||||||
if(msg.from_id === msg.to_id.user_id || msg.from_id != user.id){
|
if(msg.from_id === msg.to_id.user_id || msg.from_id != user.id){
|
||||||
box = getMsgBox(getName(msg.from_id))
|
param = getName(msg.from_id)
|
||||||
} else if(msg.to_id != user.id) {
|
} else if(msg.to_id != user.id) {
|
||||||
// don't forget dat .user_id! don't need it in from_id...
|
// don't forget dat .user_id! don't need it in from_id...
|
||||||
box = getMsgBox(getName(msg.to_id.user_id))
|
param = getName(msg.to_id.user_id)
|
||||||
} else {
|
} else {
|
||||||
// Wtf ? maybe a group
|
// Wtf ? maybe a group
|
||||||
log('Unknown message: from',msg.from_id,'to',msg.to_id)
|
return log('Unknown message: from',msg.from_id,'to',msg.to_id)
|
||||||
}
|
}
|
||||||
|
if(smartmode && !bare){
|
||||||
|
// Smart mode doesn't append the message to the box if it doesn't exist
|
||||||
|
// because when created, the box will download message history
|
||||||
|
if(msgBox[param] === undefined) return;
|
||||||
|
}
|
||||||
|
box = getMsgBox(param)
|
||||||
}
|
}
|
||||||
if(bare)
|
if(bare)
|
||||||
box.add(msg)
|
box.add(msg)
|
||||||
|
Loading…
Reference in New Issue
Block a user