Skip to content

Commit 709b6e4

Browse files
express server finished
1 parent b38924b commit 709b6e4

File tree

2 files changed

+43
-4
lines changed

2 files changed

+43
-4
lines changed

express-server/controllers/todo.server.controller.js

+38-4
Original file line numberDiff line numberDiff line change
@@ -7,20 +7,54 @@ import Todo from '../models/todo.server.model';
77
export const getTodos = (req,res) => {
88
Todo.find().exec((err,todos) => {
99
if(err){
10-
return res.json({'message':'Some Error'});
10+
return res.json({'success':false,'message':'Some Error'});
1111
}
1212

13-
return res.json({'message':'Todos fetched successfully',todos});
13+
return res.json({'success':true,'message':'Todos fetched successfully',todos});
1414
});
1515
}
1616

1717
export const addTodo = (req,res) => {
1818
const newTodo = new Todo(req.body);
1919
newTodo.save((err,todo) => {
2020
if(err){
21-
return res.json({'message':'Some Error'});
21+
return res.json({'success':false,'message':'Some Error'});
2222
}
2323

24-
return res.json({'message':'Todo added successfully',todo});
24+
return res.json({'success':true,'message':'Todo added successfully',todo});
25+
})
26+
}
27+
28+
export const updateTodo = (req,res) => {
29+
Todo.findOneAndUpdate({ _id:req.body.id }, req.body, { new:true }, (err,todo) => {
30+
if(err){
31+
return res.json({'success':false,'message':'Some Error','error':err});
32+
}
33+
console.log(book);
34+
return res.json({'success':true,'message':'Updated successfully',todo});
35+
})
36+
}
37+
38+
export const getTodo = (req,res) => {
39+
Todo.find({_id:req.params.id}).exec((err,todo) => {
40+
if(err){
41+
return res.json({'success':false,'message':'Some Error'});
42+
}
43+
if(todo.length){
44+
return res.json({'success':true,'message':'Todo fetched by id successfully',todo});
45+
}
46+
else{
47+
return res.json({'success':false,'message':'Todo with the given id not found'});
48+
}
49+
})
50+
}
51+
52+
export const deleteTodo = (req,res) => {
53+
Todo.findByIdAndRemove(req.params.id, (err,todo) => {
54+
if(err){
55+
return res.json({'success':false,'message':'Some Error'});
56+
}
57+
58+
return res.json({'success':true,'message':todo.todoText+' deleted successfully'});
2559
})
2660
}

express-server/routes/todo.server.route.js

+5
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@ const router = express.Router();
1010
router.route('/')
1111
.get(todoController.getTodos)
1212
.post(todoController.addTodo)
13+
.put(todoController.updateTodo);
14+
15+
router.route('/:id')
16+
.get(todoController.getTodo)
17+
.delete(todoController.deleteTodo);
1318

1419

1520
export default router;

0 commit comments

Comments
 (0)