Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
X
xmpp-pane
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Adrien Dorsaz
xmpp-pane
Commits
44cd9618
Commit
44cd9618
authored
Jun 03, 2018
by
Adrien Dorsaz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
pubsub: we are able to display fetched informations !
well, not really interesting right now...
parent
5feef276
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
2 deletions
+16
-2
src/sidebar/panel.js
src/sidebar/panel.js
+14
-1
src/xmpp/network.js
src/xmpp/network.js
+2
-1
No files found.
src/sidebar/panel.js
View file @
44cd9618
...
...
@@ -68,7 +68,20 @@ function checkConnection() {
function
refreshNetwork
(
response
)
{
if
(
!
response
.
error
)
{
let
xmppNet
=
document
.
getElementById
(
'
xmppNet
'
);
xmppNet
.
innerHTML
=
response
.
toString
();
let
pubsubNet
=
{
'
pubsub
'
:
[]}
let
pubsubIterator
=
response
.
network
.
pubsub
.
keys
();
let
isIteratorDone
=
false
while
(
!
isIteratorDone
)
{
let
pubsub
=
pubsubIterator
.
next
();
isIteratorDone
=
pubsub
.
done
;
if
(
!
isIteratorDone
)
{
pubsubNet
[
'
pubsub
'
].
push
({
'
name
'
:
pubsub
.
value
});
}
}
xmppNet
.
innerHTML
=
Mustache
.
render
(
'
{{#pubsub}}{{name}}<br>{{/pubsub}}
'
,
pubsubNet
);
}
else
{
panel
[
'
error
'
].
className
=
'
panel enabled
'
;
...
...
src/xmpp/network.js
View file @
44cd9618
...
...
@@ -81,7 +81,8 @@ class Network {
}
browser
.
runtime
.
sendMessage
({
'
subject
'
:
'
refreshNetwork
'
'
subject
'
:
'
refreshNetwork
'
,
'
network
'
:
this
});
}
...
...
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