-
Notifications
You must be signed in to change notification settings - Fork 204
/
app.js
71 lines (45 loc) · 1.27 KB
/
app.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
const express = require('express')
const bodyParser = require('body-parser')
const date = require(__dirname + "/date.js")
const app = express()
const items = ["By Food", "Cook Food", "Eat Food"]
const workItems = [];
app.set('view engine', 'ejs')
app.use(bodyParser.urlencoded({ extended: true }))
app.use(express.static("public"))
app.get('/', function(req, res){
/*let today = new Date()
let options = {
weekday: 'long',
day: 'numeric',
month: 'long'
}
let day = today.toLocaleDateString("en-US", options);*/
const day = date.getDate()
res.render('list', { listTitle: day , newlistItems: items})
})
app.post('/', function(req, res){
const item = req.body.newItem
if(req.body.list === "Work"){
workItems.push(item)
res.redirect("/work")
}else{
items.push(item)
res.redirect("/")
}
console.log(req.body.list);
/*
items.push(item)
console.log(items);
res.redirect("/")*/
})
app.get("/work", function(req, res){
res.render("list", { listTitle: "Work List", newlistItems: workItems})
})
app.post("/work", function(req, res){
const item = req.body.newItem;
workItems
})
app.listen(5000, function(){
console.log('server started on port 5000');
})