1
0
mirror of https://github.com/wbbaddons/Tims-Chat.git synced 2024-11-01 14:20:07 +00:00
Tims-Chat/file/js/TimWolla.WCF.Chat.coffee

351 lines
10 KiB
CoffeeScript
Raw Normal View History

2011-12-19 14:46:40 +00:00
###
2011-12-19 14:52:00 +00:00
# TimWolla.WCF.Chat
2011-12-26 19:02:23 +00:00
#
# @author Tim Düsterhus
# @copyright 2010-2011 Tim Düsterhus
# @license Creative Commons Attribution-NonCommercial-ShareAlike <http://creativecommons.org/licenses/by-nc-sa/3.0/legalcode>
# @package timwolla.wcf.chat
2011-12-19 14:46:40 +00:00
###
TimWolla ?= {}
TimWolla.WCF ?= {}
(($, window) ->
TimWolla.WCF.Chat =
titleTemplate: null
messageTemplate: null
2011-12-26 21:16:37 +00:00
newMessageCount: null
2012-01-12 19:04:28 +00:00
events:
newMessage: $.Callbacks()
userMenu: $.Callbacks()
2011-12-26 15:03:16 +00:00
init: () ->
console.log('[TimWolla.WCF.Chat] Initializing');
2011-12-24 16:47:07 +00:00
@bindEvents()
@events.newMessage.add $.proxy @notify, @
new WCF.PeriodicalExecuter $.proxy(@refreshRoomList, @), 60e3
new WCF.PeriodicalExecuter $.proxy(@getMessages, @), @config.reloadTime * 1000
@refreshRoomList()
@getMessages()
2011-12-26 19:02:23 +00:00
console.log '[TimWolla.WCF.Chat] Finished initializing'
2011-12-19 14:52:00 +00:00
###
# Binds all the events needed for Tims Chat.
###
bindEvents: () ->
2011-12-26 21:16:37 +00:00
@isActive = true
$(window).focus $.proxy () ->
2012-01-21 17:43:58 +00:00
document.title = @titleTemplate.fetch({ title: $('#chatRoomList .activeMenuItem a').text() })
2011-12-26 21:16:37 +00:00
@newMessageCount = 0
@isActive = true
, @
2011-12-26 21:16:37 +00:00
$(window).blur $.proxy () ->
@isActive = false
, @
2011-12-26 21:16:37 +00:00
$('.smiley').click $.proxy (event) ->
2011-12-24 16:47:07 +00:00
@insertText ' ' + $(event.target).attr('alt') + ' '
, @
2011-12-26 19:02:23 +00:00
$('.chatSidebarTabs li').click $.proxy (event) ->
event.preventDefault()
2011-12-24 16:47:07 +00:00
@toggleSidebarContents $ event.target
, @
2011-12-26 19:02:23 +00:00
$('#chatForm').submit $.proxy (event) ->
event.preventDefault()
2011-12-24 16:47:07 +00:00
@submit $ event.target
, @
$('#chatClear').click (event) ->
event.preventDefault()
$('.chatMessage').remove()
$('#chatInput').focus()
$('.chatToggle').click (event) ->
element = $ @
icon = element.find 'img'
2011-12-24 16:48:08 +00:00
if element.data('status') is 1
element.data 'status', 0
icon.attr 'src', icon.attr('src').replace /enabled(\d?).([a-z]{3})$/, 'disabled$1.$2'
element.attr 'title', element.data 'enableMessage'
else
element.data 'status', 1
icon.attr 'src', icon.attr('src').replace /disabled(\d?).([a-z]{3})$/, 'enabled$1.$2'
element.attr 'title', element.data 'disableMessage'
2012-01-21 17:43:58 +00:00
if typeof window.webkitNotifications isnt 'undefined'
$('#chatNotify').click (event) ->
window.webkitNotifications.requestPermission()
2011-12-19 14:52:00 +00:00
###
# Changes the chat-room.
#
# @param jQuery-object target
###
changeRoom: (target) ->
window.history.replaceState {}, '', target.attr('href')
$.ajax target.attr('href'),
dataType: 'json'
data:
ajax: 1
type: 'POST'
success: $.proxy((data, textStatus, jqXHR) ->
2011-12-24 16:47:07 +00:00
@loading = false
target.parent().removeClass 'ajaxLoad'
# mark as active
$('.activeMenuItem .chatRoom').parent().removeClass 'activeMenuItem'
target.parent().addClass 'activeMenuItem'
2011-12-26 19:02:23 +00:00
# set new topic
2011-12-24 16:48:08 +00:00
if data.topic is ''
return if $('#topic').text().trim() is ''
$('#topic').wcfBlindOut 'vertical', () ->
$(@).text ''
else
$('#topic').text data.topic
2012-01-21 16:12:49 +00:00
$('#topic').wcfBlindIn() if $('#topic').text().trim() isnt '' and $('#topic').is(':hidden')
2011-12-24 16:47:07 +00:00
$('title').text @titleTemplate.fetch(data)
@getMessages()
, @)
error: () ->
# reload page to change the room the old fashion-way
# inclusive the error-message :)
window.location.reload true
beforeSend: $.proxy(() ->
2011-12-24 16:47:07 +00:00
return false if @loading or target.parent().hasClass 'activeMenuItem'
2011-12-24 16:47:07 +00:00
@loading = true
target.parent().addClass 'ajaxLoad'
, @)
2011-12-19 14:52:00 +00:00
###
2011-12-24 16:28:36 +00:00
# Frees the fish
###
freeTheFish: () ->
return if $.wcfIsset('fish')
console.warn '[TimWolla.WCF.Chat] Freeing the fish'
2011-12-24 16:28:36 +00:00
fish = $ '<div id="fish">' + WCF.String.escapeHTML('><((((°>') + '</div>'
fish.css
position: 'absolute'
top: '150px'
left: '400px'
color: 'black'
textShadow: '1px 1px white'
zIndex: 9999
fish.appendTo $ 'body'
new WCF.PeriodicalExecuter(() ->
left = (Math.random() * 100 - 50)
top = (Math.random() * 100 - 50)
fish = $('#fish')
2011-12-24 16:28:36 +00:00
left *= -1 if((fish.position().left + left) < (0 + fish.width()) or (fish.position().left + left) > ($(document).width() - fish.width()))
top *= -1 if((fish.position().top + top) < (0 + fish.height()) or (fish.position().top + top) > ($(document).height() - fish.height()))
2011-12-24 16:28:36 +00:00
fish.text('><((((°>') if (left > 0)
fish.text('<°))))><') if (left < 0)
2011-12-24 16:28:36 +00:00
fish.animate
top: '+=' + top
2011-12-24 16:28:36 +00:00
left: '+=' + left
, 1000
, 1.5e3);
2011-12-24 16:28:36 +00:00
###
2011-12-19 14:52:00 +00:00
# Loads new messages.
###
getMessages: () ->
2011-12-26 16:01:24 +00:00
$.ajax 'index.php/Chat/Message/',
dataType: 'json'
type: 'POST'
success: $.proxy((data, textStatus, jqXHR) ->
@handleMessages(data.messages)
2012-01-12 19:04:28 +00:00
@handleUsers(data.users)
, @)
2011-12-19 14:52:00 +00:00
###
# Inserts the new messages.
#
# @param array<object> messages
###
handleMessages: (messages) ->
for message in messages
2011-12-27 16:07:12 +00:00
@events.newMessage.fire message
2011-12-24 16:47:07 +00:00
output = @messageTemplate.fetch message
li = $ '<li></li>'
li.addClass 'chatMessage chatMessage'+message.type
2011-12-24 16:48:08 +00:00
li.addClass 'ownMessage' if message.sender is WCF.User.userID
li.append output
li.appendTo $ '.chatMessageContainer ul'
$('.chatMessageContainer').animate
scrollTop: $('.chatMessageContainer ul').height()
, 1000
2012-01-12 19:04:28 +00:00
handleUsers: (users) ->
foundUsers = {}
for user in users
id = 'chatUser-'+user.userID
element = $('#'+id)
if element[0]
console.log '[TimWolla.WCF.Chat] Shifting user ' + user.userID
2012-01-12 19:04:28 +00:00
element = element.detach()
$('#chatUserList').append element
else
console.log '[TimWolla.WCF.Chat] Inserting user ' + user.userID
2012-01-12 19:04:28 +00:00
li = $ '<li></li>'
li.attr 'id', id
li.addClass 'chatUser'
a = $ '<a href="javascript:;">'+user.username+'</a>'
a.click $.proxy (event) ->
event.preventDefault()
@toggleUserMenu $ event.target
, @
2012-01-12 19:04:28 +00:00
li.append a
menu = $ '<ul></ul>'
menu.addClass 'chatUserMenu'
menu.append $ '<li><a href="javascript:;">' + WCF.Language.get('wcf.chat.query') + '</a></li>'
menu.append $ '<li><a href="javascript:;">' + WCF.Language.get('wcf.chat.kick') + '</a></li>'
menu.append $ '<li><a href="javascript:;">' + WCF.Language.get('wcf.chat.ban') + '</a></li>'
menu.append $ '<li><a href="index.php/User/' + user.userID + '">' + WCF.Language.get('wcf.chat.profile') + '</a></li>'
2012-01-12 19:04:28 +00:00
@events.userMenu.fire user, menu
li.append menu
li.appendTo $ '#chatUserList'
foundUsers[id] = true
$('.chatUser').each () ->
if typeof foundUsers[$(@).attr('id')] is 'undefined'
$(@).remove()
2012-01-12 19:04:28 +00:00
$('#toggleUsers .badge').text(users.length);
2011-12-19 14:52:00 +00:00
###
# Inserts text into our input.
#
# @param string text
# @param object options
###
insertText: (text, options) ->
options = $.extend
append: true
submit: false
, options or {}
text = $('#chatInput').val() + text if options.append
$('#chatInput').val(text)
$('#chatInput').keyup()
if (options.submit)
$('#chatForm').submit()
else
$('#chatInput').focus()
2011-12-19 14:52:00 +00:00
###
2012-01-21 17:43:58 +00:00
# Sends a notification about a message.
#
# @param object message
###
notify: (message) ->
return if (@isActive or $('#chatNotify').data('status') is 0)
2012-01-21 17:43:58 +00:00
@newMessageCount++
document.title = '(' + @newMessageCount + ') ' + @titleTemplate.fetch({ title: $('#chatRoomList .activeMenuItem a').text() })
2012-01-21 17:43:58 +00:00
if typeof window.webkitNotifications isnt 'undefined'
if window.webkitNotifications.checkPermission() is 0
2012-01-21 18:05:34 +00:00
notification = window.webkitNotifications.createNotification WCF.Icon.get('timwolla.wcf.chat.chat'), WCF.Language.get('wcf.chat.newMessages'), message.username + ' ' + message.message
2012-01-21 17:43:58 +00:00
notification.show()
setTimeout(() ->
notification.cancel()
, 5000)
###
2011-12-19 14:52:00 +00:00
# Refreshes the room-list.
###
refreshRoomList: () ->
console.log '[TimWolla.WCF.Chat] Refreshing the room-list'
$('#toggleRooms a').addClass 'ajaxLoad'
$.ajax $('#toggleRooms a').data('refreshUrl'),
dataType: 'json'
type: 'POST'
success: $.proxy((data, textStatus, jqXHR) ->
$('#chatRoomList li').remove()
$('#toggleRooms a').removeClass 'ajaxLoad'
2012-01-07 15:45:14 +00:00
$('#toggleRooms .badge').text(data.length);
for room in data
li = $ '<li></li>'
li.addClass 'activeMenuItem' if room.active
$('<a href="' + room.link + '">' + room.title + '</a>').addClass('chatRoom').appendTo li
$('#chatRoomList ul').append li
$('.chatRoom').click $.proxy (event) ->
2011-12-24 16:48:08 +00:00
return if typeof window.history.replaceState is 'undefined'
event.preventDefault()
2011-12-24 16:47:07 +00:00
@changeRoom $ event.target
, @
console.log '[TimWolla.WCF.Chat] Found ' + data.length + ' rooms'
, @)
2011-12-19 14:52:00 +00:00
###
# Handles submitting of messages.
#
# @param jQuery-object target
###
submit: (target) ->
# break if input contains only whitespace
2011-12-24 16:48:08 +00:00
return false if $('#chatInput').val().trim().length is 0
2011-12-26 17:46:48 +00:00
@freeTheFish() if $('#chatInput').val().trim().toLowerCase() is '/free the fish'
2011-12-24 16:28:36 +00:00
$.ajax $('#chatForm').attr('action'),
data:
2011-12-20 20:20:32 +00:00
text: $('#chatInput').val(),
smilies: $('#chatSmilies').data('status')
type: 'POST',
beforeSend: (jqXHR) ->
$('#chatInput').addClass 'ajaxLoad'
success: $.proxy((data, textStatus, jqXHR) ->
2011-12-24 16:47:07 +00:00
@getMessages()
$('#chatInput').val('').focus()
$('#chatInput').keyup()
, @)
complete: () ->
$('#chatInput').removeClass 'ajaxLoad'
2011-12-19 14:52:00 +00:00
###
# Toggles between user- and room-list.
#
# @param jQuery-object target
###
toggleSidebarContents: (target) ->
return if target.parents('li').hasClass 'active'
if target.parents('li').attr('id') is 'toggleUsers'
$('#toggleUsers').addClass 'active'
$('#toggleRooms').removeClass 'active'
$('#chatRoomList').hide()
$('#chatUserList').show()
else if target.parents('li').attr('id') is 'toggleRooms'
$('#toggleRooms').addClass 'active'
$('#toggleUsers').removeClass 'active'
$('#chatUserList').hide()
$('#chatRoomList').show()
2011-12-19 14:52:00 +00:00
###
# Toggles the user-menu.
#
# @param jQuery-object target
###
toggleUserMenu: (target) ->
2012-01-12 19:04:28 +00:00
li = target.parent()
2012-01-12 19:04:28 +00:00
if li.hasClass 'activeMenuItem'
li.find('.chatUserMenu').wcfBlindOut 'vertical', () ->
li.removeClass 'activeMenuItem'
else
2012-01-12 19:04:28 +00:00
li.addClass 'activeMenuItem'
li.find('.chatUserMenu').wcfBlindIn 'vertical'
)(jQuery, @)