Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
converse.js
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
converse.js
Commits
3c39652a
Commit
3c39652a
authored
Jul 22, 2012
by
JC Brand
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Group chattting now works :)
parent
d278f803
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
69 additions
and
8 deletions
+69
-8
chat.js
chat.js
+69
-8
No files found.
chat.js
View file @
3c39652a
...
@@ -483,11 +483,39 @@ xmppchat.ChatRoomView = xmppchat.ChatBoxView.extend({
...
@@ -483,11 +483,39 @@ xmppchat.ChatRoomView = xmppchat.ChatBoxView.extend({
tagName
:
'
div
'
,
tagName
:
'
div
'
,
className
:
'
chatroom
'
,
className
:
'
chatroom
'
,
events
:
{
events
:
{
'
click .close-chatbox-button
'
:
'
closeChatRoom
'
'
click .close-chatbox-button
'
:
'
closeChatRoom
'
,
'
keypress textarea.chat-textarea
'
:
'
keyPressed
'
},
},
closeChatRoom
:
function
()
{
closeChatRoom
:
function
()
{
this
.
closeChat
();
this
.
closeChat
();
xmppchat
.
connection
.
muc
.
leave
(
this
.
model
.
get
(
'
jid
'
),
this
.
model
.
get
(
'
nick
'
),
function
()
{},
undefined
);
},
keyPressed
:
function
(
ev
)
{
var
$textarea
=
$
(
ev
.
target
),
message
,
notify
,
composing
,
that
=
this
;
if
(
ev
.
keyCode
==
13
)
{
message
=
$textarea
.
val
();
message
=
message
.
replace
(
/^
\s
+|
\s
+jQuery/g
,
""
);
$textarea
.
val
(
''
).
focus
();
if
(
message
!==
''
)
{
this
.
sendGroupMessage
(
message
);
}
}
},
sendGroupMessage
:
function
(
text
)
{
this
.
last_msgid
=
xmppchat
.
connection
.
muc
.
groupchat
(
this
.
model
.
get
(
'
jid
'
),
text
);
this
.
appendMessage
(
text
);
},
},
// XXX: add $participants to the template?
// XXX: add $participants to the template?
...
@@ -521,7 +549,7 @@ xmppchat.ChatRoomView = xmppchat.ChatBoxView.extend({
...
@@ -521,7 +549,7 @@ xmppchat.ChatRoomView = xmppchat.ChatBoxView.extend({
this
.
model
.
get
(
'
nick
'
),
this
.
model
.
get
(
'
nick
'
),
$
.
proxy
(
this
.
onMessage
,
this
),
$
.
proxy
(
this
.
onMessage
,
this
),
$
.
proxy
(
this
.
onPresence
,
this
),
$
.
proxy
(
this
.
onPresence
,
this
),
$
.
proxy
(
this
.
onRo
omMessage
,
this
));
$
.
proxy
(
this
.
onRo
ster
,
this
));
},
},
onPresence
:
function
(
presence
,
room
)
{
onPresence
:
function
(
presence
,
room
)
{
...
@@ -543,17 +571,50 @@ xmppchat.ChatRoomView = xmppchat.ChatBoxView.extend({
...
@@ -543,17 +571,50 @@ xmppchat.ChatRoomView = xmppchat.ChatBoxView.extend({
}
}
}
}
}
}
this
.
$el
.
find
(
'
.participant-list
'
).
append
(
'
<li>
'
+
nick
+
'
</li>
'
)
;
return
true
;
},
},
onMessage
:
function
(
x
,
y
,
z
)
{
onMessage
:
function
(
message
)
{
alert
(
'
onMessage
'
);
if
(
$
(
message
).
attr
(
'
id
'
)
===
this
.
last_msgid
)
{
},
// Return if own message sent just now...
return
true
;
}
var
body
=
$
(
message
).
children
(
'
body
'
).
text
(),
jid
=
$
(
message
).
attr
(
'
from
'
),
composing
=
$
(
message
).
find
(
'
composing
'
),
$chat_content
=
$
(
this
.
el
).
find
(
'
.chat-content
'
),
sender
=
Strophe
.
getResourceFromJid
(
jid
);
onRoster
:
function
(
x
,
y
,
z
)
{
if
(
!
body
)
{
alert
(
'
onRoster
'
);
if
(
composing
.
length
>
0
)
{
this
.
insertStatusNotification
(
'
is typing
'
);
return
true
;
}
}
else
{
if
(
sender
===
this
.
model
.
get
(
'
nick
'
))
{
this
.
appendMessage
(
body
);
}
else
{
$chat_content
.
append
(
this
.
message_template
({
'
sender
'
:
'
them
'
,
'
time
'
:
(
new
Date
()).
toLocaleTimeString
().
substring
(
0
,
5
),
'
message
'
:
body
.
replace
(
/<br
\/
>/g
,
""
),
'
username
'
:
sender
,
'
extra_classes
'
:
(
$
(
message
).
find
(
'
delay
'
).
length
>
0
)
&&
'
delayed
'
||
''
}));
$chat_content
.
scrollTop
(
$chat_content
[
0
].
scrollHeight
);
}
}
return
true
;
},
},
onRoster
:
function
(
roster
,
room
)
{
this
.
$el
.
find
(
'
.participant-list
'
).
empty
();
for
(
var
i
=
0
;
i
<
_
.
size
(
roster
);
i
++
)
{
this
.
$el
.
find
(
'
.participant-list
'
).
append
(
'
<li>
'
+
_
.
keys
(
roster
)[
i
]
+
'
</li>
'
);
}
return
true
;
},
render
:
function
()
{
render
:
function
()
{
$
(
this
.
el
).
attr
(
'
id
'
,
this
.
model
.
get
(
'
box_id
'
));
$
(
this
.
el
).
attr
(
'
id
'
,
this
.
model
.
get
(
'
box_id
'
));
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment