nodeMessageBoard/board.html

97 lines
2.6 KiB
HTML
Raw Normal View History

2016-03-07 20:48:50 +00:00
<!DOCTYPE html>
<meta charset="UTF-8">
2016-03-07 20:14:16 +00:00
<html>
<head>
<!--<link rel="stylesheet" href="http://code.jquery.com/ui/1.9.2/themes/base/jquery-ui.css" />-->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" />
2016-03-07 20:48:50 +00:00
<script src="http://code.jquery.com/jquery-1.8.3.js"></script>
2016-03-07 20:14:16 +00:00
<script src="http://code.jquery.com/ui/1.9.2/jquery-ui.js"></script>
<script src="/socket.io/socket.io.js">
</script>
2016-03-07 20:14:16 +00:00
<script>
2016-03-08 11:27:22 +00:00
const toDisplay = 5; //define the number of messages to show
var iosocket;
2016-03-08 11:27:22 +00:00
var currentMessageCount = 0;
2016-03-07 20:14:16 +00:00
2016-03-08 11:27:22 +00:00
2016-03-07 20:14:16 +00:00
function initSocketIO()
{
iosocket = io.connect();
2016-03-08 11:27:22 +00:00
iosocket.on('onconnection', function() {
2016-03-07 20:14:16 +00:00
initButton();
2016-03-08 11:07:56 +00:00
iosocket.on('debugMessage', function(message) {
alert(message);
2016-03-07 20:14:16 +00:00
});
2016-03-07 20:48:50 +00:00
2016-03-08 11:27:22 +00:00
iosocket.on('newMessage', function(time,number,message) {
var censoredNumber = number.substring(0,3) + "********" +number.substring(number.length - 3, number.length);
2016-03-07 20:48:50 +00:00
var mainTable = document.getElementById("mainTable");
var newRow = mainTable.insertRow(mainTable.rows.length);
var dateCell = newRow.insertCell(0);
2016-03-08 11:07:56 +00:00
var numberCell = newRow.insertCell(1);
var textCell = newRow.insertCell(2);
2016-03-08 11:27:22 +00:00
dateCell.innerHTML = time;
numberCell.innerHTML = censoredNumber;
2016-03-07 20:48:50 +00:00
textCell.innerHTML = message;
2016-03-08 11:27:22 +00:00
currentMessageCount++;
if(currentMessageCount > toDisplay)
{
//Remove the top row
mainTable.deleteRow(1);
currentMessageCount--;
}
2016-03-07 20:14:16 +00:00
});
2016-03-07 20:48:50 +00:00
});
2016-03-07 20:14:16 +00:00
}
function initButton()
{
2016-03-08 11:07:56 +00:00
$("#check").button();
2016-03-07 20:14:16 +00:00
}
window.onload = function() {
initSocketIO();
2016-03-08 11:27:22 +00:00
iosocket.emit('getLastMessages',toDisplay);
};
2016-03-07 20:14:16 +00:00
2016-03-09 13:51:46 +00:00
2016-03-07 20:48:50 +00:00
$(document).ready(function() {
$('#check').click(function() {
2016-03-07 20:48:50 +00:00
iosocket.emit('sendAT',toggleVal);
});
2016-03-09 13:51:46 +00:00
//$('#debugOut').html(String.fromCharCode(parseInt(s, 16),parseInt("DE03",16)));
2016-03-07 20:14:16 +00:00
});
2016-03-09 13:51:46 +00:00
</script>
2016-03-07 20:14:16 +00:00
</head>
<body>
<div style="text-align:center;" >
<h1 style="color:#000066;">SMS Message Board</h1>
<hr>
<br>
<h3>Send an SMS with a message to <span style="color:#3399ff;">+43 681 2033 4015</span></h3>
<br>
<table id="mainTable" border="1" align="center" class="table table-striped">
2016-03-07 20:48:50 +00:00
<tr>
<td><h4>Uhrzeit</h4></td><td><h4>Nummer</h4></td><td><h4>Nachricht</h4></td>
2016-03-07 20:48:50 +00:00
</tr>
</table>
<h3>Send an SMS with a message to <span style="color:#3399ff;">+43 681 2033 4015</span></h3>
2016-03-08 11:07:56 +00:00
<br>
2016-03-09 13:51:46 +00:00
<div style="display:none;" id="btnHolder">
<h2>Debug functions</h2>
2016-03-08 11:07:56 +00:00
<input type="checkbox" id="check" value="toggle"/><label for="check">Send AT</label>
2016-03-07 20:14:16 +00:00
</div>
2016-03-09 13:51:46 +00:00
<div id="debugOut"> </div>
2016-03-07 20:14:16 +00:00
</body>
</html>