bigbluebutton-Github/labs/meteor-client/app/client/views/chat/chat_bar.coffee

356 lines
14 KiB
CoffeeScript
Raw Normal View History

# --------------------------------------------------------------------------------------------------------------------
# If a function's last line is the statement false that represents the function returning false
# A function such as a click handler will continue along with the propogation and default behaivour if not stopped
# Returning false stops propogation/prevents default. You cannot always use the event object to call these methods
# Because most Meteor event handlers set the event object to the exact context of the event which does not
# allow you to simply call these methods.
# --------------------------------------------------------------------------------------------------------------------
@activateBreakLines = (str) ->
if typeof str is 'string'
res = str.replace /\\n/gim, '<br/>'
res = res.replace /\r/gim, '<br/>'
@detectUnreadChat = ->
#if the current tab is not the same as the tab we just published in
Meteor.Chat.find({}).observe({
added: (chatMessage) =>
findDestinationTab = ->
if chatMessage.message?.chat_type is "PUBLIC_CHAT"
"PUBLIC_CHAT"
else
chatMessage.message?.from_userid
Tracker.autorun (comp) ->
if getInSession('tabsRenderedTime') isnt undefined
if chatMessage.message.from_time - getInSession('tabsRenderedTime') > 0
populateChatTabs(chatMessage) # check if we need to open a new tab
destinationTab = findDestinationTab()
if destinationTab isnt getInSession "inChatWith"
setInSession 'chatTabs', getInSession('chatTabs').map((tab) ->
tab.gotMail = true if tab.userId is destinationTab
tab
)
comp.stop()
})
2014-08-09 00:04:04 +08:00
# This method returns all messages for the user. It looks at the session to determine whether the user is in
# private or public chat. If true is passed, messages returned are from before the user joined. Else, the messages are from after the user joined
@getFormattedMessagesForChat = ->
friend = chattingWith = getInSession('inChatWith') # the recipient(s) of the messages
after = before = greeting = []
if chattingWith is 'PUBLIC_CHAT' # find all public messages
before = Meteor.Chat.find({'message.chat_type': chattingWith, 'message.from_time': {$lt: String(getTimeOfJoining())}}).fetch()
after = Meteor.Chat.find({'message.chat_type': chattingWith, 'message.from_time': {$gt: String(getTimeOfJoining())}}).fetch()
greeting = [
'message':
2014-10-16 22:47:32 +08:00
'message': getGreeting()
'from_username': 'System',
'from_time': getTimeOfJoining()
'from_color': '0x3399FF' # A nice blue in hex
]
else
2014-11-28 06:08:33 +08:00
me = getInSession("userId")
after = Meteor.Chat.find({ # find all messages between current user and recipient
'message.chat_type': 'PRIVATE_CHAT',
$or: [{'message.from_userid': me, 'message.to_userid': friend},{'message.from_userid': friend, 'message.to_userid': me}]
}).fetch()
messages = (before.concat greeting).concat after
2014-10-16 22:47:32 +08:00
@getGreeting = ->
2014-10-16 23:18:26 +08:00
"Welcome to #{window.getMeetingName()}!\r\r
2014-10-16 22:47:32 +08:00
For help on using BigBlueButton see these (short) <a href='http://www.bigbluebutton.org/videos/' target='_blank'>tutorial videos</a>.\r\r
To join the audio bridge click the headset icon (upper-left hand corner). Use a headset to avoid causing background noise for others.\r\r\r
2014-10-16 23:18:26 +08:00
This server is running BigBlueButton #{getInSession 'bbbServerVersion'}.\r\r"
# Scrolls the message container to the bottom. The number of pixels to scroll down is the height of the container
Handlebars.registerHelper "autoscroll", ->
$('#chatbody').scrollTop($('#chatbody')[0]?.scrollHeight)
false
Handlebars.registerHelper "grabChatTabs", ->
if getInSession('chatTabs') is undefined
initTabs = [
userId: "PUBLIC_CHAT"
name: "Public"
gotMail: false
class: "publicChatTab"
,
userId: "OPTIONS"
name: "Options"
gotMail: false
class: "optionsChatTab"
]
setInSession 'chatTabs', initTabs
getInSession('chatTabs')[0..3]
@sendMessage = ->
message = linkify $('#newMessageInput').val() # get the message from the input box
unless (message?.length > 0 and (/\S/.test(message))) # check the message has content and it is not whitespace
return # do nothing if invalid message
chattingWith = getInSession('inChatWith')
if chattingWith isnt "PUBLIC_CHAT"
2014-11-29 00:40:14 +08:00
toUsername = Meteor.Users.findOne(userId: chattingWith)?.user.name
messageForServer = { # construct message for server
"message": message
"chat_type": if chattingWith is "PUBLIC_CHAT" then "PUBLIC_CHAT" else "PRIVATE_CHAT"
"from_userid": getInSession("userId")
"from_username": BBB.getMyUserName()
"from_tz_offset": "240"
2014-11-29 00:40:14 +08:00
"to_username": if chattingWith is "PUBLIC_CHAT" then "public_chat_username" else toUsername
"to_userid": if chattingWith is "PUBLIC_CHAT" then "public_chat_userid" else chattingWith
"from_lang": "en"
"from_time": getTime()
"from_color": "0x000000"
# "from_color": "0x#{getInSession("messageColor")}"
}
Meteor.call "sendChatMessagetoServer", getInSession("meetingId"), messageForServer, getInSession("userId"), getInSession("authToken")
$('#newMessageInput').val '' # Clear message box
Template.chatbar.helpers
getCombinedMessagesForChat: ->
msgs = getFormattedMessagesForChat()
len = msgs.length # get length of messages
i = 0
while i < len # Must be a do while, for loop compiles and stores the length of array which can change inside the loop!
if msgs[i].message.from_userid isnt 'System' # skip system messages
j = i+1 # Start looking at messages right after the current one
while j < len
deleted = false
if msgs[j].message.from_userid isnt 'System' # Ignore system messages
# Check if the time discrepancy between the two messages exceeds window for grouping
if (parseFloat(msgs[j].message.from_time)-parseFloat(msgs[i].message.from_time)) >= 60000 # 60 seconds/1 minute
break # Messages are too far between, so them seperated and stop joining here
if msgs[i].message.from_userid is msgs[j].message.from_userid # Both messages are from the same user
msgs[i].message.message += "\r#{msgs[j].message.message}" # Combine the messages
msgs.splice(j,1) # Delete the message from the collection
deleted = true
else break # Messages are from different people, move on
#
else break # This is the break point in the chat, don't merge
#
len = msgs.length
++j if not deleted
#
++i
len = msgs.length
msgs
2014-09-12 00:52:33 +08:00
# When chatbar gets rendered, scroll to the bottom
Template.chatbar.rendered = ->
detectUnreadChat()
$('#chatbody').scrollTop($('#chatbody')[0]?.scrollHeight)
false
Template.chatInput.events
'click #sendMessageButton': (event) ->
sendMessage()
'keypress #newMessageInput': (event) -> # user pressed a button inside the chatbox
if event.shiftKey and event.which is 13
$("#newMessageInput").append("\r") # Change newline character
return
if event.which is 13 # Check for pressing enter to submit message
sendMessage()
$('#newMessageInput').val("")
return false
Template.chatInput.rendered = ->
$('input[rel=tooltip]').tooltip()
$('button[rel=tooltip]').tooltip()
Template.extraConversations.events
2014-11-04 21:45:23 +08:00
"click .extraConversation": (event) ->
console.log "extra conversation"
user = @
console.log user
console.log "#{user.name} #{user.userId}"
# put this conversation in the 3rd position in the chat tabs collection (after public and options)
# Take all the tabs and turn into an array
tabArray = getInSession('chatTabs')
2014-11-04 21:45:23 +08:00
# find the index of the selected tab
index = do ->
for value, idx in tabArray
if value.userId is user.userId
selected = value
return idx
null
if index?
# take object
selected = tabArray[index]
if selected?
# remove it
tabArray.splice(index, 1)
# insert it at the 3rd index
tabArray.splice(2, 0, selected)
# update collection
setInSession 'chatTabs', tabArray
Template.extraConversations.helpers
getExtraConversations: ->
getInSession('chatTabs')[4..]
tooManyConversations: ->
return false if getInSession('chatTabs') is undefined
getInSession('chatTabs').length > 4
Template.message.helpers
sanitizeAndFormat: (str) ->
if typeof str is 'string'
# First, replace replace all tags with the ascii equivalent (excluding those involved in anchor tags)
res = str.replace(/&/g, '&amp;').replace(/<(?![au\/])/g, '&lt;').replace(/\/([^au])>/g, '$1&gt;').replace(/([^=])"(?!>)/g, '$1&quot;');
res = toClickable res
res = activateBreakLines res
toClockTime: (epochTime) ->
if epochTime is null
return ""
local = new Date()
offset = local.getTimezoneOffset()
epochTime = epochTime - offset * 60000 # 1 min = 60 s = 60,000 ms
dateObj = new Date(epochTime)
hours = dateObj.getUTCHours()
minutes = dateObj.getUTCMinutes()
if minutes < 10
minutes = "0" + minutes
hours + ":" + minutes
2014-07-04 01:56:16 +08:00
Template.optionsBar.events
'click .private-chat-user-entry': (event) -> # clicked a user's name to begin private chat
tabs = getInSession('chatTabs')
_this = @
# if you are starting a private chat
if tabs.filter((tab) -> tab.userId is _this.userId).length is 0
userName = Meteor.Users.findOne({userId: _this.userId})?.user?.name
tabs.push {userId: _this.userId, name: userName, gotMail: false, class: 'privateChatTab'}
setInSession 'chatTabs', tabs
setInSession 'display_chatPane', true
setInSession "inChatWith", _this.userId
Template.optionsBar.helpers
thereArePeopletoChatWith: -> # Subtract 1 for the current user. Returns whether there are other people in the chat
# TODO: Add a check for the count to only include users who are allowed to private chat
(Meteor.Users.find({'meetingId': getInSession("meetingId")}).count()-1) >= 1
Template.optionsBar.rendered = ->
$('div[rel=tooltip]').tooltip()
Template.optionsFontSize.events
"click .fontSizeSelector": (event) ->
selectedFontSize = parseInt(event.target.id)
if selectedFontSize
setInSession "messageFontSize", selectedFontSize
else setInSession "messageFontSize", 12
2014-08-09 00:04:04 +08:00
Template.tabButtons.events
'click .close': (event) -> # user closes private chat
setInSession 'inChatWith', 'PUBLIC_CHAT'
setInSession 'display_chatPane', true
2014-10-21 20:22:54 +08:00
console.log "userId: #{@userId}"
_this = @
tabs = getInSession('chatTabs')
if tabs.filter((tab) -> tab.userId is _this.userId).length > 0
tabs = $.grep(tabs, (t) -> t.userId isnt _this.userId)
setInSession 'chatTabs', tabs
return false # stops propogation/prevents default
2014-08-09 00:04:04 +08:00
'click .gotUnreadMail': (event) ->
#chatTabs.update({userId: @userId}, {$set: {gotMail: false}})
_this = @
setInSession 'chatTabs', getInSession('chatTabs').map((tab) ->
tab.gotMail = false if tab.userId is _this.userId
tab
)
2014-08-09 00:04:04 +08:00
'click .optionsChatTab': (event) ->
2014-10-22 02:37:31 +08:00
console.log "options"
setInSession "inChatWith", "OPTIONS"
2014-08-09 00:04:04 +08:00
setInSession 'display_chatPane', false
'click .privateChatTab': (event) ->
console.log "private:"
2014-10-22 02:37:31 +08:00
console.log @
2014-11-04 23:38:18 +08:00
setInSession "inChatWith", @userId
2014-08-09 00:04:04 +08:00
setInSession 'display_chatPane', true
'click .publicChatTab': (event) ->
2014-10-22 02:37:31 +08:00
console.log "public"
setInSession "inChatWith", "PUBLIC_CHAT"
2014-08-09 00:04:04 +08:00
setInSession 'display_chatPane', true
'click .tab': (event) ->
2014-10-22 02:37:31 +08:00
console.log "tab"
Template.tabButtons.helpers
hasGotUnreadMailClass: (gotMail) ->
if gotMail and getInSession("displayChatNotifications")
return "gotUnreadMail"
else
return ""
2014-07-07 23:30:17 +08:00
isTabActive: (userId) ->
if getInSession("inChatWith") is userId
return "active"
makeSafe: (string) ->
safeString(string)
Template.tabButtons.rendered = ->
Tracker.autorun (comp) ->
setInSession 'tabsRenderedTime', TimeSync.serverTime()
if getInSession('tabsRenderedTime') isnt undefined
comp.stop()
# make links received from Flash client clickable in HTML
@toClickable = (str) ->
if typeof str is 'string'
res = str.replace /<a href='event:/gim, "<a target='_blank' href='"
res = res.replace /<a href="event:/gim, '<a target="_blank" href="'
Template.message.helpers
toClockTime: (epochTime) ->
if epochTime is null
return ""
local = new Date()
offset = local.getTimezoneOffset()
epochTime = epochTime - offset * 60000 # 1 min = 60 s = 60,000 ms
dateObj = new Date(epochTime)
hours = dateObj.getUTCHours()
minutes = dateObj.getUTCMinutes()
if minutes < 10
minutes = "0" + minutes
hours + ":" + minutes
sanitizeAndFormat: (str) ->
if typeof str is 'string'
# First, replace replace all tags with the ascii equivalent (excluding those involved in anchor tags)
res = str.replace(/&/g, '&amp;').replace(/<(?![au\/])/g, '&lt;').replace(/\/([^au])>/g, '$1&gt;').replace(/([^=])"(?!>)/g, '$1&quot;');
res = toClickable res
res = activateBreakLines res
Template.notificationSettings.events
"click #chatNotificationOff": (event) ->
console.log "off"
setInSession "displayChatNotifications", false
"click #chatNotificationOn": (event) ->
console.log "on"
setInSession "displayChatNotifications", true