-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy pathsnippets.code-snippets
257 lines (257 loc) · 7.44 KB
/
snippets.code-snippets
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
{
"Domain index file": {
"prefix": "nbp-d-index",
"body": [
"const { routes } = require('./api');",
"",
"const defineRoutes = (expressRouter) => {",
" expressRouter.use('/${1:route}', routes());",
"};",
"",
"module.exports = defineRoutes;"
],
"description": "Nodejs boilerplate domain's index file"
},
"Domain API CRUD Routes": {
"prefix": "nbp-d-api",
"body": [
"const express = require('express');",
"const logger = require('../../libraries/log/logger');",
"const { AppError } = require('../../libraries/error-handling/AppError');",
"",
"const {",
" create,",
" search,",
" getById,",
" updateById,",
" deleteById,",
"} = require('./service');",
"",
"const { createSchema, updateSchema, idSchema } = require('./request');",
"const { validateRequest } = require('../../middlewares/request-validate');",
"const { logRequest } = require('../../middlewares/log');",
"",
"const model = '${1:Product}';",
"",
"// CRUD for entity",
"const routes = () => {",
" const router = express.Router();",
" logger.info(`Setting up routes for ${model}`);",
"",
" router.get('/', logRequest({}), async (req, res, next) => {",
" try {",
" // TODO: Add pagination and filtering",
" const items = await search(req.query);",
" res.json(items);",
" } catch (error) {",
" next(error);",
" }",
" });",
"",
" router.post(",
" '/',",
" logRequest({}),",
" validateRequest({ schema: createSchema }),",
" async (req, res, next) => {",
" try {",
" const item = await create(req.body);",
" res.status(201).json(item);",
" } catch (error) {",
" next(error);",
" }",
" }",
" );",
"",
" router.get(",
" '/:id',",
" logRequest({}),",
" validateRequest({ schema: idSchema, isParam: true }),",
" async (req, res, next) => {",
" try {",
" const item = await getById(req.params.id);",
" if (!item) {",
" throw new AppError(`${model} not found`, `${model} not found`, 404);",
" }",
" res.status(200).json(item);",
" } catch (error) {",
" next(error);",
" }",
" }",
" );",
"",
" router.put(",
" '/:id',",
" logRequest({}),",
" validateRequest({ schema: idSchema, isParam: true }),",
" validateRequest({ schema: updateSchema }),",
" async (req, res, next) => {",
" try {",
" const item = await updateById(req.params.id, req.body);",
" if (!item) {",
" throw new AppError(`${model} not found`, `${model} not found`, 404);",
" }",
" res.status(200).json(item);",
" } catch (error) {",
" next(error);",
" }",
" }",
" );",
"",
" router.delete(",
" '/:id',",
" logRequest({}),",
" validateRequest({ schema: idSchema, isParam: true }),",
" async (req, res, next) => {",
" try {",
" await deleteById(req.params.id);",
" res.status(204).json({ message: `${model} is deleted` });",
" } catch (error) {",
" next(error);",
" }",
" }",
" );",
"",
" return router;",
"};",
"",
"module.exports = { routes };"
],
"description": "CRUD routes for a model"
},
"Domain CRUD Service": {
"prefix": "nbp-d-service",
"body": [
"const logger = require('../../libraries/log/logger');",
"",
"const Model = require('./schema');",
"const { AppError } = require('../../libraries/error-handling/AppError');",
"",
"const model = '${1:product}';",
"",
"const create = async (data) => {",
" try {",
" const item = new Model(data);",
" const saved = await item.save();",
" logger.info(`create(): ${model} created`, {",
" id: saved._id,",
" });",
" return saved;",
" } catch (error) {",
" logger.error(`create(): Failed to create ${model}`, error);",
" throw new AppError(`Failed to create ${model}`, error.message);",
" }",
"};",
"",
"const search = async (query) => {",
" try {",
" const { keyword } = query ?? {};",
" const filter = {};",
" if (keyword) {",
" filter.$or = [",
" { name: { $regex: keyword, $options: 'i' } },",
" { description: { $regex: keyword, $options: 'i' } },",
" ];",
" }",
" const items = await Model.find(filter);",
" logger.info('search(): filter and count', {",
" filter,",
" count: items.length,",
" });",
" return items;",
" } catch (error) {",
" logger.error(`search(): Failed to search ${model}`, error);",
" throw new AppError(`Failed to search ${model}`, error.message, 400);",
" }",
"};",
"",
"const getById = async (id) => {",
" try {",
" const item = await Model.findById(id);",
" logger.info(`getById(): ${model} fetched`, { id });",
" return item;",
" } catch (error) {",
" logger.error(`getById(): Failed to get ${model}`, error);",
" throw new AppError(`Failed to get ${model}`, error.message);",
" }",
"};",
"",
"const updateById = async (id, data) => {",
" try {",
" const item = await Model.findByIdAndUpdate(id, data, { new: true });",
" logger.info(`updateById(): ${model} updated`, { id });",
" return item;",
" } catch (error) {",
" logger.error(`updateById(): Failed to update ${model}`, error);",
" throw new AppError(`Failed to update ${model}`, error.message);",
" }",
"};",
"",
"const deleteById = async (id) => {",
" try {",
" await Model.findByIdAndDelete(id);",
" logger.info(`deleteById(): ${model} deleted`, { id });",
" return true;",
" } catch (error) {",
" logger.error(`deleteById(): Failed to delete ${model}`, error);",
" throw new AppError(`Failed to delete ${model}`, error.message);",
" }",
"};",
"",
"module.exports = {",
" create,",
" search,",
" getById,",
" updateById,",
" deleteById,",
"};"
],
"description": "CRUD service for a model"
},
"Mongoose Schema": {
"prefix": "nbp-mongoose-schema",
"body": [
"const mongoose = require('mongoose');",
"const { baseSchema } = require('../../libraries/db/base-schema');",
"",
"const schema = new mongoose.Schema({",
" name: { type: String, required: true },",
" // other properties",
"});",
"schema.add(baseSchema);",
"",
"module.exports = mongoose.model('${1:Model}', schema);"
],
"description": "Mongoose schema"
},
"Joi Validation Schemas": {
"prefix": "nbp-joi-schemas",
"body": [
"const Joi = require('joi');",
"const mongoose = require('mongoose');",
"",
"const createSchema = Joi.object().keys({",
" name: Joi.string().required(),",
" // other properties",
"});",
"",
"const updateSchema = Joi.object().keys({",
" name: Joi.string(),",
" // other properties",
"});",
"",
"const idSchema = Joi.object().keys({",
" id: Joi.string()",
" .custom((value, helpers) => {",
" if (!mongoose.Types.ObjectId.isValid(value)) {",
" return helpers.error('any.invalid');",
" }",
" return value;",
" }, 'ObjectId validation')",
" .required(),",
"});",
"",
"module.exports = { createSchema, updateSchema, idSchema };"
],
"description": "Joi validation schemas"
}
}