-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
114 lines (96 loc) · 3.01 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
const express = require("express")
const mongoose = require("mongoose")
const exphbs = require("express-handlebars")
const methodOverride = require("method-override")
const bodyParser = require('body-parser')
const Restaurant = require("./models/Restaurant")
mongoose.connect("mongodb://localhost/restaurant-list", {
useNewUrlParser: true,
useUnifiedTopology: true,
})
const db = mongoose.connection
db.on("error", () => {
console.log("mongodb error!")
})
db.once("open", () => {
console.log("mongodb connected!")
})
const app = express()
const port = 3000
// handlebars => hbs
app.engine("hbs", exphbs({ defaultLayout: "main", extname: ".hbs" }))
app.set("view engine", "hbs")
app.use(express.static("public"))
app.use(bodyParser.urlencoded({ extended: true }))
app.use(methodOverride("_method"))
// 瀏覽全部餐廳
app.get("/", (req, res) => {
Restaurant.find({})
.lean()
.then(restaurantsData => res.render("index", { restaurantsData }))
.catch(err => console.log(err))
})
// 搜尋特定餐廳
app.get("/search", (req, res) => {
if (!req.query.keywords) {
res.redirect("/")
}
const keywords = req.query.keywords
const keyword = req.query.keywords.trim().toLowerCase()
Restaurant.find({})
.lean()
.then(restaurantsData => {
const filterRestaurantsData = restaurantsData.filter(
data =>
data.name.toLowerCase().includes(keyword) ||
data.category.includes(keyword)
)
res.render("index", { restaurantsData: filterRestaurantsData, keywords })
})
.catch(err => console.log(err))
})
// 新增餐廳頁面
app.get("/restaurants/new", (req, res) => {
res.render("new")
})
// 瀏覽特定餐廳
app.get("/restaurants/:restaurantId", (req, res) => {
const { restaurantId } = req.params
Restaurant.findById(restaurantId)
.lean()
.then(restaurantData => res.render("show", { restaurantData }))
.catch(err => console.log(err))
})
// 新增餐廳
app.post("/restaurants", (req, res) => {
Restaurant.create(req.body)
.then(() => res.redirect("/"))
.catch(err => console.log(err))
})
// 編輯餐廳頁面
app.get("/restaurants/:restaurantId/edit", (req, res) => {
const { restaurantId } = req.params
Restaurant.findById(restaurantId)
.lean()
.then(restaurantData => res.render("edit", { restaurantData }))
.catch(err => console.log(err))
})
// 更新餐廳
app.put("/restaurants/:restaurantId", (req, res) => {
const { restaurantId } = req.params
Restaurant.findByIdAndUpdate(restaurantId, req.body)
//可依照專案發展方向自定編輯後的動作,這邊是導向到瀏覽特定餐廳頁面
.then(() => res.redirect(`/restaurants/${restaurantId}`))
.catch(err => console.log(err))
})
// 刪除餐廳
app.delete("/restaurants/:restaurantId", (req, res) => {
const { restaurantId } = req.params
Restaurant.findByIdAndDelete(restaurantId)
.then(() => res.redirect("/"))
.catch(err => console.log(err))
})
// localhost
app.listen(port, () => {
console.log(`Listening on http://localhost:${port}`)
})