-
-
Notifications
You must be signed in to change notification settings - Fork 341
/
index.html
167 lines (144 loc) · 5.66 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
<!doctype html>
<html>
<head>
<script type="text/javascript" src="javascript/atmosphere.js"></script>
<script type="text/javascript">
window.onload = function() {
var detectedTransport = null;
var socket = atmosphere;
var subSocket;
function getKeyCode(ev) {
if (window.event) return window.event.keyCode;
return ev.keyCode;
}
function getElementById(id) {
return document.getElementById(id);
}
function getTransport(t) {
transport = t.options[t.selectedIndex].value;
if (transport == 'autodetect') {
transport = 'websocket';
}
return false;
}
function getElementByIdValue(id) {
detectedTransport = null;
return document.getElementById(id).value;
}
function subscribe() {
var request = {
url : document.location.toString() + 'pubsub/' + getElementByIdValue('topic'),
transport: getElementByIdValue('transport')};
var ul = document.createElement('ul');
document.body.appendChild(ul)
request.onMessage = function (response) {
detectedTransport = response.transport;
if (response.status == 200) {
var data = response.responseBody;
if (data.length > 0) {
var li = document.createElement('li');
ul.insertBefore(li, ul.firstChild);
li.innerHTML = li.innerHTML + data;
}
}
};
subSocket = socket.subscribe(request);
}
function unsubscribe(){
callbackAdded = false;
socket.unsubscribe();
}
function connect() {
unsubscribe();
getElementById('phrase').value = '';
getElementById('sendMessage').className = '';
getElementById('phrase').focus();
subscribe();
getElementById('connect').value = "Switch transport";
}
getElementById('connect').onclick = function(event) {
if (getElementById('topic').value == '') {
alert("Please enter a PubSub topic to subscribe");
return;
}
connect();
}
getElementById('topic').onkeyup = function(event) {
getElementById('sendMessage').className = 'hidden';
var keyc = getKeyCode(event);
if (keyc == 13 || keyc == 10) {
connect();
return false;
}
}
getElementById('phrase').setAttribute('autocomplete', 'OFF');
getElementById('phrase').onkeyup = function(event) {
var keyc = getKeyCode(event);
if (keyc == 13 || keyc == 10) {
var m = " sent using " + detectedTransport;
if (detectedTransport == null) {
detectedTransport = getElementByIdValue('transport');
m = " sent trying to use " + detectedTransport;
}
subSocket.push({data: 'message=' + getElementByIdValue('phrase') + m});
getElementById('phrase').value = '';
return false;
}
return true;
};
getElementById('send_message').onclick = function(event) {
if (getElementById('topic').value == '') {
alert("Please enter a message to publish");
return;
}
var m = " sent using " + detectedTransport;
if (detectedTransport == null) {
detectedTransport = getElementByIdValue('transport');
m = " sent trying to use " + detectedTransport;
}
subSocket.push({data: 'message=' + getElementByIdValue('phrase') + m});
getElementById('phrase').value = '';
return false;
};
getElementById('topic').focus();
};
</script>
<style type='text/css'>
div {border: 0px solid black;}
input#phrase {width: 30em; background-color: #e0f0f0;}
input#topic {width: 14em; background-color: #e0f0f0;}
div.hidden {display: none;}
span.from {font-weight: bold;}
span.alert {font-style: italic;}
</style>
</head>
<body>
<h1>PubSub Sample using Atmosphere's Javascript Library and a <a href="https://github.com/Atmosphere/atmosphere/blob/master/samples/meteor-pubsub/src/main/java/org/atmosphere/samples/pubsub/MeteorPubSub.java">Meteor</a></h1>
<h2>Select PubSub topic to subscribe</h2>
<div id='pubsub'>
<input id='topic' type='text'/>
</div>
<h2>Select transport to use for subscribing</h2>
<h3>You can change the transport any time.</h3>
<div id='select_transport'>
<select id="transport">
<option id="autodetect" value="websocket">autodetect</option>
<option id="long-polling" value="long-polling">long-polling</option>
<option id="streaming" value="streaming">http streaming</option>
<option id="websocket" value="websocket">websocket</option>
<option id="Server Side Events" value="sse">sse</option>
</select>
<input id='connect' class='button' type='submit' name='connect' value='Connect'/>
</div>
<br/>
<br/>
<h2 id="s_h" class='hidden'>Publish Topic</h2>
<div id='sendMessage' class='hidden'>
<input id='phrase' type='text'/>
<input id='send_message' class='button' type='submit' name='Publish' value='Publish Message'/>
</div>
<br/>
<h2>Real Time PubSub Update</h2>
<ul></ul>
</body>
</html>