-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
136 lines (74 loc) · 2.67 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
// jshint esversion:6
// EJS (embeded javascript templating)
const express = require("express");
const bodyParser = require("body-parser");
// it is used to include our own module here that perform the
// date functionality to show in the webpage
const date = require(__dirname + "/date.js")
const app = express();
const items = ["Buy Food" , "Cook Food" , "Eat Food"];
const workItems = [];
// it is must to write here
// if not declare then our app can't work
// it is view engine of ejs which we will use
app.set('view engine', 'ejs');
app.use(bodyParser.urlencoded({extended: true}));
// to add the static files like images and css
app.use(express.static("public") );
app.get("/" , function (req , res) {
// here we want to export our own created module which is date.js
const day = date.getDate();
// use.rendor can use the view engine
// it can load the list.ejs file to view engine
// newListItems are the input that are comes from the form input
res.render("list" , {listTitle: day , newListItems: items});
})
// post request from the browser to server to add this item
// which are comes from list.ejs file
// and then back send to the browser list item
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("/");
}
})
// it is for the /work page
app.get("/work" , function(req, res){
res.render("list" , {listTitle: "work List", newListItems: workItems});
});
// to add about page
app.get("/about" , function(req , res){
res.render("about");
})
app.listen(3000, ()=> console.log("server started on port 3000"));
// use this if else or the switch statment
// app.get("/" , (req , res) => {
// var today = new Date();
// var currentDay = today.getDay();
// var day = "";
// if(currentDay === 6){
// day = "saturday";
// }
// else if(currentDay === 0){
// day = "sunday";
// }
// else if(currentDay === 1){
// day = "monday";
// }
// else if(currentDay === 2){
// day = "tuesday";
// }
// else if(currentDay === 3){
// day = "wednesday";
// }
// else if(currentDay === 4){
// day = "thursday";
// }
// else if(currentDay === 5){
// day = "friday";
// }