-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbyeTryCatchErrorHandling.js
66 lines (55 loc) · 1.17 KB
/
byeTryCatchErrorHandling.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
// catchAwait.js
const catchAwait = promise =>
promise
.then(data => ({ data, error: null }))
.catch(error => ({ error, data: null }));
module.exports = catchAwait;
// working file
const { getItems } = require('./api/items');
const catchAwait = require('./utils/catchAwait');
const allItems = async () => {
const { error, data } = await catchAwait(getItems());
if (!error) {
// code
}
console.error(error);
};
allItems();
/**
* Another way
*/
// catchAsync.js
module.exports = fn => {
return (req, res, next) => {
fn(req, res, next).catch(next);
};
};
// createOne.js
exports.createOne = Model =>
catchAsync(async (req, res, next) => {
const doc = await Model.create(req.body);
res.status(201).json({
status: 'success',
data: {
data: doc,
},
});
});
// another
const awaitHandlerFactory = (middleware) => {
return async (req, res, next) => {
try {
await middleware(req, res, next);
} catch (err) {
next(err);
}
};
};
// and use it this way:
app.get(
"/",
awaitHandlerFactory(async (request, response) => {
const result = await getContent();
response.send(result);
})
);