diff --git a/index.html b/index.html
deleted file mode 100644
index b808d96..0000000
--- a/index.html
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
-
- Test page for Alert Monitor app:
-
-
diff --git a/server.js b/server.js
index 8c72541..d8c634c 100644
--- a/server.js
+++ b/server.js
@@ -39,6 +39,7 @@ db.serialize(function() {
"CREATE TABLE Alerts (" +
"origJSON TEXT," +
"coreId TEXT," +
+ "coreName TEXT," +
"locationDesc TEXT," +
"status TEXT," +
"published_at TEXT)"
@@ -55,13 +56,23 @@ app.set('view engine', 'hbs');
app.set('views', __dirname + '/views');
app.get('/', function(req, res){
+ db.all("SELECT coreId, coreName, published_at FROM Alerts GROUP BY coreId, coreName, published_at;", function(err, rows){
+ //console.log(rows);
+ res.render('index', {cores: rows}, function(err, html) {
+ res.send(html);
+ });
+});
+
+// not sure if this ':id' notaction is correct
+app.get('/core/:id', function(req, res){
//res.sendFile("/usr/src/app/index.html");
//fs.createReadStream('./log.log').pipe(res);
var d = new Date();
console.log("GET request at, " + JSON.stringify(d, 4));
+ // add WHERE clause w/core ID value from URL
db.all("SELECT coreId, published_at FROM Alerts ORDER BY published_at DESC LIMIT 30;", function(err, rows){
//console.log(rows);
- res.render('home', {alerts: rows}, function(err, html) {
+ res.render('core', {alerts: rows}, function(err, html) {
res.send(html);
});
});
diff --git a/views/core.hbs b/views/core.hbs
new file mode 100644
index 0000000..a0a1d1d
--- /dev/null
+++ b/views/core.hbs
@@ -0,0 +1,17 @@
+{{!< default}}
+
+Alerts from a single Particle Core:
+
+ {{! try to add header to list pretty core name and locale text (not sure how to pass this from node}}
+ {{#each alerts}}
+ - {{this.coreId}}: {{this.published_at}}
+ {{/each}}
+
+
+
diff --git a/views/default.hbs b/views/default.hbs
new file mode 100644
index 0000000..bce3f17
--- /dev/null
+++ b/views/default.hbs
@@ -0,0 +1,30 @@
+
+
+
+ {{! Document Settings }}
+
+
+
+ {{! Page Meta }}
+ {{meta_title}}
+
+
+
+
+
+
+
+
+
+ {{! Styles'n'Scripts }}
+
+ {{! Ghost outputs important style and meta data with this tag }}
+ {{ghost_head}}
+
+
+
+ {{! Everything else gets inserted here }}
+ {{{body}}}
+
+
+
diff --git a/views/home.hbs b/views/home.hbs
deleted file mode 100644
index ad09dee..0000000
--- a/views/home.hbs
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
- Alert Monitor
-
-
- Alerts from a single Particle Core:
-
- {{#each alerts}}
- - {{this.coreId}}: {{this.published_at}}
- {{/each}}
-
-
-
-
diff --git a/views/index.hbs b/views/index.hbs
new file mode 100644
index 0000000..9fed922
--- /dev/null
+++ b/views/index.hbs
@@ -0,0 +1,12 @@
+{{!< default}}
+
+Select a monitor device:
+