nodeMessageBoard/board.html

103 lines
2.7 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>
2016-03-09 15:06:26 +00:00
<title>SMS Board</title>
<!--<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-09 15:06:26 +00:00
const toDisplay = 4; //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-09 15:06:26 +00:00
var messages = document.getElementById('messagesBody');
var newDiv = document.createElement('div');
var newH1 = document.createElement('h1');
var newP = document.createElement('p');
newH1.innerHTML = message;
newP.innerHTML = "by "+censoredNumber+" at "+time;
newDiv.style="background:#428bca !important; padding:10px 0;";
newDiv.className="jumbotron";
newDiv.appendChild(newH1);
newDiv.appendChild(newP);
messages.appendChild(newDiv);
2016-03-08 11:27:22 +00:00
currentMessageCount++;
if(currentMessageCount > toDisplay)
{
//Remove the top row
2016-03-09 15:06:26 +00:00
$('#messagesBody').find('div').first().remove();
//messages.removeChild(messages.firstChild);
//mainTable.deleteRow(1);
2016-03-08 11:27:22 +00:00
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;" >
2016-03-09 15:06:26 +00:00
<!--<h1 style="color:#000066;">SMS Message Board</h1>-->
<h3>Send an SMS with a message to <span style="color:#3399ff;">+43 681 2033 4015</span></h3>
<br>
2016-03-09 15:06:26 +00:00
<div id="messagesBody">
</div>
<h3>Send an SMS with a message to <span style="color:#3399ff;">+43 681 2033 4015</span></h3>
2016-03-09 15:06:26 +00:00
<br>
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>