Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

kcbangi-01 branch #331

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 48 additions & 0 deletions css/reset.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
88 changes: 78 additions & 10 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,18 +1,86 @@
<!DOCTYPE html>
<html>
<head>
<title>GeeMail</title>
<link rel="stylesheet" href="css/reset.css" />
<link rel="stylesheet" href="css/style.css" media="screen">
<script src="js/mail-generator.js"></script>
<link href="css/style.css" rel="stylesheet" media="screen">
<script>
window.onload = function(){
// ALL OF YOUR JAVASCRIPT CODE SHOULD GO HERE.
// We have to use window.onload so your JavaScript doesn't execute until the page has loaded and all HTML has been downloaded to your browser

};
</script>
<!-- <script src="js/app.js"></script> -->
<script>
// ALL OF YOUR JAVASCRIPT CODE SHOULD GO HERE.
// We have to use window.onload so your JavaScript doesn't execute until the page has loaded and all HTML has been downloaded to your browser
window.onload = function() {
console.log(window.geemails);
let tbl = document.getElementById('tbl');
let email = 0;

window.geemails.forEach(function(msg) {
loadEmail(msg)
});

function loadEmail(msg) {
email++;
// show number of messages
document.getElementById('inbox').innerHTML = `Inbox ${email}`;

// create row and cell for the email
let rows = tbl.insertRow(1);
let senderCell = rows.insertCell(0);
senderCell.innerHTML = msg.sender;
let subjectCell = rows.insertCell(1);
subjectCell.innerHTML = msg.subject;
let dateCell = rows.insertCell(2);
dateCell.innerHTML = msg.date;
let body = msg.body;

// print info and message
rows.onclick = function() {
document.getElementById('email-info').innerHTML = `${msg.date}<br>${msg.sender}<br>${msg.subject}`;
document.getElementById('email-content').innerHTML = `${body}`;
}
};
// render new message
setInterval(function() {
loadEmail(getNewMessage());
}, 8000)
};
</script>
</head>

<body>
<div class="container" id="main">
Build Me!
<header>
<h1>GeeMail</h1>
<input type="text" placeholder="Search..">
</header>
<div>
<div class="nav">
<ul>
<li id="inbox"><a href="#">Inbox</a></li>
<li><a href="#">Junk</a></li>
<li><a href="#">Deleted</a></li>
<li><a href="#">Sent</a></li>
</ul>
</div>
<div>
<table id="tbl">
<thead>
<tr>
<th>Subject</th>
<th>Sender</th>
<th>Date</th>
</tr>
</thead>
<tbody>
<tr>
<td></td>
</tr>
</tbody>
</table>
</div>
<div>
<div id="email-info"></div>
<div id="email-content"></div>
</div>
</div>
</body>
</html>
37 changes: 37 additions & 0 deletions js/app.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
'use strict';

window.onload = function() {
console.log(window.geemails);
let tbl = document.getElementById('tbl');
let email = 0;

window.geemails.forEach(function(msg) {
loadEmail(msg)
});

function loadEmail(msg) {
email++;
// show number of messages
document.getElementById('inbox').innerHTML = `Inbox ${email}`;

// create row and cell for the email
let rows = tbl.insertRow(1);
let senderCell = rows.insertCell(0);
senderCell.innerHTML = msg.sender;
let subjectCell = rows.insertCell(1);
subjectCell.innerHTML = msg.subject;
let dateCell = rows.insertCell(2);
dateCell.innerHTML = msg.date;
let body = msg.body;

// print info and message
rows.onclick = function() {
document.getElementById('email-info').innerHTML = `${msg.date}<br>${msg.sender}<br>${msg.subject}`;
document.getElementById('email-content').innerHTML = `${body}`;
}
};
// render new message
setInterval(function() {
loadEmail(getNewMessage());
}, 8000)
};