-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
138 lines (110 loc) · 2.78 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
137
138
//jshint esversion:6
const express = require("express");
const bodyParser = require("body-parser");
const mongoose = require("mongoose");
const _ = require("lodash");
// const date = require(__dirname + "/date.js");
const app = express();
mongoose.connect(
"mongodb+srv://admin-ansh:bhagwadgita@cluster0.vmjnc0b.mongodb.net/todoDB",
{ useNewUrlParser: true }
);
app.use(bodyParser.urlencoded({ extended: true }));
app.use(express.static("public"));
app.set("view engine", "ejs");
const todoSchema = {
task: String,
};
const customSchema = {
name: String,
items: [todoSchema],
};
const todo = mongoose.model("todo", todoSchema);
const list = mongoose.model("list", customSchema);
const item1 = new todo({
task: "Welcome to To Do list",
});
const item2 = new todo({
task: "Click on + to add task",
});
const item3 = new todo({
task: "<-- Hit the box to delete task",
});
const starter = [item1, item2, item3];
app.get("/", (req, res) => {
todo.find(function (err, tasks) {
if (tasks.length === 0) {
todo.insertMany(starter, function (err) {
if (err) console.log(err);
else {
console.log("Items Updated");
}
});
res.redirect("/");
} else {
res.render("list", { listTitle: "Today", newListItem: tasks });
}
});
});
app.post("/", (req, res) => {
// console.log(req.body);
const listName1 = req.body.list;
var item = new todo({
task: req.body.newItem,
});
if (listName1 === "Today") {
item.save();
res.redirect("/");
} else {
list.findOne({ name: listName1 }, function (err, Item) {
Item.items.push(item);
Item.save();
res.redirect("/" + listName1);
});
}
});
app.post("/delete", (req, res) => {
const id = req.body.checkbox;
const listName = req.body.listName;
if (listName === "Today") {
todo.findByIdAndRemove(id, function (err) {
if (err) console.log(err);
});
res.redirect("/");
} else {
list.findOneAndUpdate(
{ name: listName },
{ $pull: { items: { _id: id } } },
function (err, item) {
if (!err) res.redirect("/" + listName);
}
);
}
});
app.get("/:customListName", (req, res) => {
const listName = _.capitalize(req.params.customListName);
list.findOne({ name: listName }, function (err, foundList) {
if (!err) {
if (!foundList) {
const customList = new list({
name: listName,
items: starter,
});
customList.save();
res.redirect("/" + listName);
} else {
res.render("list", {
listTitle: listName,
newListItem: foundList.items,
});
}
}
});
});
let port = process.env.PORT;
if (port == null || port == "") {
port = 3000;
}
app.listen(port, () => {
console.log("Server started!");
});