forked from lbsadmin/nodeMessageBoard
First edit for better readability
This commit is contained in:
parent
9c0c30c5c2
commit
d131979c5d
96
board.html
96
board.html
@ -1,46 +1,38 @@
|
||||
<!DOCTYPE html>
|
||||
<meta charset="UTF-8">
|
||||
<html>
|
||||
<head>
|
||||
|
||||
<title>SMS Board</title>
|
||||
<meta charset="UTF-8">
|
||||
<title>SMS Board</title>
|
||||
<link rel='stylesheet' href='sprite/emoji.css' >
|
||||
<link rel="stylesheet" href="/css/bootstrap.min.css" />
|
||||
<script src="/js/jquery-1.12.1.min"></script>
|
||||
<script src="/js/jquery-ui.js"></script>
|
||||
<script src="/socket.io/socket.io.js">
|
||||
</script>
|
||||
<style>
|
||||
/* Sticky footer styles
|
||||
-------------------------------------------------- */
|
||||
|
||||
html,
|
||||
body {
|
||||
<script src="/socket.io/socket.io.js"></script>
|
||||
<style>
|
||||
/* Sticky footer styles
|
||||
-------------------------------------------------- */
|
||||
html, body {
|
||||
height: 100%;
|
||||
/* The html and body elements cannot have any padding or margin. */
|
||||
}
|
||||
|
||||
/* Wrapper for page content to push down footer */
|
||||
#wrap {
|
||||
}
|
||||
/* Wrapper for page content to push down footer */
|
||||
#wrap {
|
||||
min-height: 100%;
|
||||
height: auto;
|
||||
/* Negative indent footer by its height */
|
||||
margin: 0 auto -60px;
|
||||
/* Pad bottom by footer height */
|
||||
padding: 0 0 60px;
|
||||
}
|
||||
|
||||
/* Set the fixed height of the footer here */
|
||||
#footer {
|
||||
}
|
||||
/* Set the fixed height of the footer here */
|
||||
#footer {
|
||||
height: 100px;
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
}
|
||||
</style>
|
||||
|
||||
|
||||
<script>
|
||||
}
|
||||
</style>
|
||||
<script>
|
||||
const toDisplay = 4; //define the number of messages to show
|
||||
var iosocket;
|
||||
var currentMessageCount = 0;
|
||||
@ -67,19 +59,13 @@ body {
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
function initSocketIO()
|
||||
{
|
||||
function initSocketIO() {
|
||||
iosocket = io.connect();
|
||||
|
||||
iosocket.on('clientrefresh', function() {
|
||||
location.reload();
|
||||
});
|
||||
|
||||
iosocket.on('connect', function() {
|
||||
|
||||
|
||||
|
||||
iosocket.on('debugMessage', function(message) {
|
||||
alert(message);
|
||||
});
|
||||
@ -89,43 +75,39 @@ body {
|
||||
$( "span.number" ).html(mynumber);
|
||||
});
|
||||
|
||||
|
||||
iosocket.on('newMessage', function(time,number,message,color) {
|
||||
var censoredNumber = number.substring(0,3) + "********" +number.substring(number.length - 3, number.length);
|
||||
var messages = document.getElementById('messagesBody');
|
||||
newDiv = document.createElement('div');
|
||||
var newDiv = document.createElement('div');
|
||||
var newH1 = document.createElement('h1');
|
||||
var newP = document.createElement('p');
|
||||
|
||||
newH1.innerHTML = message;
|
||||
newP.innerHTML = "by "+censoredNumber+" at "+time;
|
||||
newP.innerHTML = "by " + censoredNumber + " at " + time;
|
||||
newDiv.style.backgroundColor = getColor(color); //need this on both for some browsers (especially safari) to recognize...
|
||||
newDiv.style="background-color:"+getColor(color)+" !important; padding:10px 0; margin:10px 0;";
|
||||
newDiv.className="jumbotron";
|
||||
newDiv.style = "background-color:" + getColor(color) + " !important; padding:10px 0; margin:10px 0;";
|
||||
newDiv.className = "jumbotron";
|
||||
newDiv.appendChild(newH1);
|
||||
newDiv.appendChild(newP);
|
||||
|
||||
currentMessageCount++;
|
||||
if(currentMessageCount > toDisplay)
|
||||
{
|
||||
|
||||
if(currentMessageCount > toDisplay) {
|
||||
//Remove the top div
|
||||
$('#messagesBody').find('div').first().slideUp(function() {
|
||||
$(this).remove();
|
||||
document.getElementById('messagesBody').appendChild(newDiv);
|
||||
});
|
||||
currentMessageCount--;
|
||||
}else{
|
||||
} else {
|
||||
document.getElementById('messagesBody').appendChild(newDiv);
|
||||
}
|
||||
|
||||
});
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
function initButton()
|
||||
{
|
||||
function initButton() {
|
||||
$("#check").button();
|
||||
}
|
||||
};
|
||||
|
||||
window.onload = function() {
|
||||
initSocketIO();
|
||||
@ -133,25 +115,19 @@ body {
|
||||
iosocket.emit('getConfig');
|
||||
};
|
||||
|
||||
|
||||
$(document).ready(function() {
|
||||
$('#check').click(function() {
|
||||
iosocket.emit('sendAT',toggleVal);
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
</script>
|
||||
|
||||
</script>
|
||||
</head>
|
||||
<body style="/*background-color: #D4D4D4;*/">
|
||||
<div style="text-align:center;" >
|
||||
|
||||
<h2>Send an SMS with a message to <span class="number" style="color:#3399ff;"></span></h2>
|
||||
<div id="wrap">
|
||||
<div id="messagesBody">
|
||||
</div>
|
||||
|
||||
<div id="messagesBody"></div>
|
||||
<br>
|
||||
<br>
|
||||
<div style="display:none;" id="btnHolder">
|
||||
@ -159,10 +135,10 @@ body {
|
||||
<input type="checkbox" id="check" value="toggle"/><label for="check">Send AT</label>
|
||||
<div id="debugOut"> </div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- <div id="footer">
|
||||
<h2>Send an SMS with a message to <span class="number" style="color:#3399ff;"></span></h2>
|
||||
</div>
|
||||
-->
|
||||
</div>
|
||||
<div id="footer">
|
||||
<h2>Send an SMS with a message to <span class="number" style="color:#3399ff;"></span></h2>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
</html>
|
||||
|
37
clear.html
37
clear.html
@ -1,37 +1,27 @@
|
||||
<!DOCTYPE html>
|
||||
<meta charset="UTF-8">
|
||||
<html>
|
||||
<head>
|
||||
<title>Clear Board</title>
|
||||
<meta charset="UTF-8">
|
||||
<title>Clear Board</title>
|
||||
<link rel='stylesheet' href='sprite/emoji.css' >
|
||||
<link rel="stylesheet" href="/css/bootstrap.min.css" />
|
||||
<script src="/js/jquery-1.12.1.min"></script>
|
||||
<script src="/js/jquery-ui.js"></script>
|
||||
<script src="/socket.io/socket.io.js"></script>
|
||||
|
||||
<script>
|
||||
<script>
|
||||
var iosocket;
|
||||
|
||||
function initSocketIO()
|
||||
{
|
||||
function initSocketIO() {
|
||||
iosocket = io.connect();
|
||||
iosocket.on('connect', function() {
|
||||
|
||||
iosocket.on('debugMessage', function(message) {
|
||||
alert(message);
|
||||
});
|
||||
|
||||
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
|
||||
};
|
||||
window.onload = function() {
|
||||
initSocketIO();
|
||||
};
|
||||
|
||||
|
||||
$(document).ready(function() {
|
||||
$('#clear').click(function() {
|
||||
var number = $('#number').val();
|
||||
@ -42,22 +32,23 @@
|
||||
iosocket.emit('refreshClients');
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
</script>
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<div style="text-align:center;" >
|
||||
<div id="wrap">
|
||||
<div id="btnHolder">
|
||||
<h2>Functions</h2>
|
||||
<input type="number" id="number" value="1" min="1"/><label for="number">Number</label><br>
|
||||
<input type="number" id="number" value="1" min="1"/>
|
||||
<label for="number">Number</label>
|
||||
<br>
|
||||
<input type="button" id="clear" value="clear"/>
|
||||
<br>
|
||||
<input type="button" id="refresh" value="refresh"/>
|
||||
<div id="debugOut"> </div>
|
||||
<div id="debugOut"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
</html>
|
||||
|
||||
|
58
demo.html
58
demo.html
@ -1,44 +1,35 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=320, initial-scale=1">
|
||||
<title>Chat</title>
|
||||
<script src="/js/jquery-1.12.1.min"></script>
|
||||
<script src="/js/jquery-ui.js"></script>
|
||||
<script src="/socket.io/socket.io.js"></script>
|
||||
</head>
|
||||
|
||||
<script type="text/javascript">
|
||||
<script type="text/javascript">
|
||||
var iosocket;
|
||||
|
||||
function initSocketIO()
|
||||
{
|
||||
function initSocketIO() {
|
||||
iosocket = io.connect();
|
||||
|
||||
iosocket.on('connect', function() {
|
||||
createSystemMessage('[Connected]');
|
||||
console.log("connect");
|
||||
|
||||
|
||||
iosocket.on('debugMessage', function(message) {
|
||||
alert(message);
|
||||
});
|
||||
iosocket.on('disconnect', function() {
|
||||
createSystemMessage('[Disconnected]');
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
window.onload = function() {
|
||||
initSocketIO();
|
||||
};
|
||||
|
||||
|
||||
function createSystemMessage(message) {
|
||||
var message = document.createTextNode(message);
|
||||
|
||||
@ -68,7 +59,6 @@
|
||||
chat.appendChild(messageBox);
|
||||
}
|
||||
|
||||
|
||||
function sendMessage() {
|
||||
var user = document.getElementById('user');
|
||||
var message = document.getElementById('message');
|
||||
@ -87,28 +77,9 @@
|
||||
if (( e.keyCode == 13 )&&(e.shiftKey === false)) {
|
||||
sendMessage();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
</script>
|
||||
|
||||
<body>
|
||||
<div id="wrapper">
|
||||
<div id="chat_box" class="content"></div>
|
||||
|
||||
<div id="footer">
|
||||
<div class="content">
|
||||
<input type="text" id="number" value="+4301234567890" />
|
||||
<input type="text" id="message" onkeypress="return submitEnter(event)" placeholder="Enter a Test Message! (Or emoji!, google if if you don't know how)" />
|
||||
<input type="button" id="send_btn" value="Send" onclick="sendMessage()">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
<style type="text/css">
|
||||
</script>
|
||||
<style type="text/css">
|
||||
* {
|
||||
font-family: "Arial";
|
||||
font-size: 24px;
|
||||
@ -217,4 +188,19 @@
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div id="wrapper">
|
||||
<div id="chat_box" class="content"></div>
|
||||
|
||||
<div id="footer">
|
||||
<div class="content">
|
||||
<input type="text" id="number" value="+4301234567890" />
|
||||
<input type="text" id="message" onkeypress="return submitEnter(event)" placeholder="Enter a Test Message! (Or emoji!, google if if you don't know how)" />
|
||||
<input type="button" id="send_btn" value="Send" onclick="sendMessage()">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
Loading…
Reference in New Issue
Block a user