-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
98 lines (77 loc) · 1.89 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
const express = require("express");
const bodyParser = require("body-parser");
const mongoose = require("mongoose");
const app = express();
app.set('view engine', 'ejs');
app.use(bodyParser.urlencoded({
extended: true
}));
app.use(express.static("public"));
mongoose.connect("mongodb+srv://admin-sakshi:clustersak5@cluster0-91jym.mongodb.net/todoappDB", {
useNewUrlParser: true,
useUnifiedTopology: true
});
const itemSchema = {
name: String
};
const Item = mongoose.model("Item", itemSchema);
const item1 = new Item({
name: "Make a to do list"
});
const todoitems = [item1];
app.get("/", function(req, res) {
Item.find({}, function(err, foundItems) {
if (foundItems.length === 0) {
Item.insertMany(todoitems, function(err) {
if (err) {
console.log(err);
} else {
console.log("items added to DB successfully");
}
});
res.redirect("/");
} else {
let today = new Date();
let options = {
weekday: "long",
day: "numeric",
month: "long"
};
let day = today.toLocaleDateString("en-US", options);
res.render("list", {
newListItems: foundItems,
day: day
});
}
});
let today = new Date();
let options = {
weekday: "long",
day: "numeric",
month: "long"
};
let day = today.toLocaleDateString("en-US", options);
});
app.post("/", function(req, res) {
const itemName = req.body.newItem;
const item = new Item({
name: itemName
});
item.save()
res.redirect("/");
});
app.post("/delete", function(req, res){
const checkedId = req.body.cbox;
Item.findByIdAndRemove(checkedId, function(err){
if(!err){
console.log("successfully deleted");}
});
res.redirect("/");
});
let port = process.env.PORT;
if (port == null || port == "") {
port = 3000;
}
app.listen(port, function() {
console.log("Welcome to the server");
})