mirror of
https://github.com/wbbaddons/Tims-Chat.git
synced 2024-11-01 14:20:07 +00:00
36 lines
1.1 KiB
CoffeeScript
36 lines
1.1 KiB
CoffeeScript
###
|
|
# be.bastelstu.WCF.Chat.Log
|
|
#
|
|
# @author Tim Düsterhus
|
|
# @copyright 2010-2013 Tim Düsterhus
|
|
# @license Creative Commons Attribution-NonCommercial-ShareAlike <http://creativecommons.org/licenses/by-nc-sa/3.0/legalcode>
|
|
# @package be.bastelstu.chat
|
|
###
|
|
|
|
(($, window) ->
|
|
be.bastelstu.WCF.Chat.Log = be.bastelstu.Chat.extend
|
|
init: (@chat) ->
|
|
handleMessages: (messages) ->
|
|
# Insert the messages
|
|
for message in messages
|
|
@events.newMessage.fire message
|
|
|
|
output = @chat.messageTemplate.fetch message
|
|
li = $ '<li></li>'
|
|
li.addClass 'timsChatMessage timsChatMessage'+message.type
|
|
li.addClass 'ownMessage' if message.sender is WCF.User.userID
|
|
li.append output
|
|
|
|
li.appendTo $ '#timsChatLog .timsChatMessageContainer > ul'
|
|
|
|
be.bastelstu.WCF.Chat.Log.loadOverlay = () ->
|
|
if !$.wcfIsset 'timsChatLogDialog'
|
|
container = $ '<fieldset id="timsChatLogDialog"></fieldset>'
|
|
$('#content').append container
|
|
|
|
# TODO: Proper path
|
|
$('#timsChatLogDialog').load 'http://127.0.0.1/wbb/wbb4/index.php/Chat/Log/1-Hauptchat/', () ->
|
|
WCF.showDialog 'timsChatLogDialog',
|
|
title: 'Log'
|
|
)(jQuery, @)
|