forked from walteribeiro/full-react-snippets
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreact.json
More file actions
396 lines (396 loc) · 11.4 KB
/
Copy pathreact.json
File metadata and controls
396 lines (396 loc) · 11.4 KB
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
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
{
"Import React": {
"prefix": "imr",
"body": ["import React from 'react'", ""]
},
"Import React, { Component }": {
"prefix": "imrc",
"body": ["import React, { Component } from 'react'", ""]
},
"Import React, { Component } & PropTypes": {
"prefix": "imrcp",
"body": [
"import React, { Component } from 'react'",
"import PropTypes from 'prop-types'",
""
]
},
"Import React, { PureComponent }": {
"prefix": "imrpc",
"body": ["import React, { PureComponent } from 'react'", ""]
},
"Import React, { PureComponent } & PropTypes": {
"prefix": "imrpcp",
"body": [
"import React, { PureComponent } from 'react'",
"import PropTypes from 'prop-types'",
""
]
},
"React Class Compoment": {
"prefix": "rcc",
"body": [
"import React, { Component } from 'react'",
"",
"export default class ${1:componentName} extends Component {",
" render() {",
" return (",
" <div>",
" $0",
" </div>",
" )",
" }",
"}",
""
],
"description": "Creates a React component class with ES7 module system"
},
"React Class Export Component": {
"prefix": "rce",
"body": [
"import React, { Component } from 'react'",
"",
"class ${1:componentName} extends Component {",
" render() {",
" return (",
" <div>",
" $0",
" </div>",
" )",
" }",
"}",
"",
"export default ${1:componentName}",
""
],
"description": "Creates a React component class with ES7 module system"
},
"React Functional Export Component": {
"prefix": "rfe",
"body": [
"import React from 'react'",
"",
"const ${1:componentName} = () => {",
" return (",
" <div>",
" $0",
" </div>",
" )",
"}",
"",
"export default ${1:componentName}",
""
],
"description": "Creates a React Functional Component with ES7 module system"
},
"React Functional Export Component With PropTypes": {
"prefix": "rfep",
"body": [
"import React from 'react'",
"import PropTypes from 'prop-types'",
"",
"const ${1:componentName} = () => {",
" return (",
" <div>",
" $0",
" </div>",
" )",
"}",
"",
"${1:componentName}.propTypes = {",
"",
"}",
"",
"export default ${1:componentName}",
""
],
"description": "Creates a React Functional Component with ES7 module system with PropTypes"
},
"React Functional Component": {
"prefix": "rfc",
"body": [
"import React from 'react';",
"",
"export default function ${1:componentName}() {",
" return (",
" <>",
" $0",
" </>",
" );",
"}",
""
],
"description": "Creates a React Functional Component with ES7 module system"
},
"React Functional Component With PropTypes": {
"prefix": "rfcp",
"body": [
"import React from 'react'",
"import PropTypes from 'prop-types'",
"",
"export default function ${1:componentName}() {",
" return (",
" <>",
" $0",
" </>",
" );",
"}",
"",
"${1:componentName}.propTypes = {",
"",
"}",
""
],
"description": "Creates a React Functional Component with ES7 module system with PropTypes"
},
"React Class Export Component With PropTypes": {
"prefix": "rcep",
"body": [
"import React, { Component } from 'react'",
"import PropTypes from 'prop-types'",
"",
"class ${1:componentName} extends Component {",
" static propTypes = {",
"",
" }",
"",
" render() {",
" return (",
" <div>",
" $0",
" </div>",
" )",
" }",
"}",
"",
"export default ${1:componentName}",
""
],
"description": "Creates a React component class with ES7 module system"
},
"React Class Pure Component": {
"prefix": "rpc",
"body": [
"import React, { PureComponent } from 'react'",
"",
"export default class ${1:componentName} extends PureComponent {",
" render() {",
" return (",
" <div>",
" $0",
" </div>",
" )",
" }",
"}",
""
],
"description": "Creates a React component class with ES7 module system"
},
"React Class Pure Component With PropTypes": {
"prefix": "rpcp",
"body": [
"import React, { PureComponent } from 'react'",
"import PropTypes from 'prop-types'",
"",
"export default class ${1:componentName} extends PureComponent {",
" static propTypes = {",
"",
" }",
"",
" render() {",
" return (",
" <div>",
" $0",
" </div>",
" )",
" }",
"}",
""
],
"description": "Creates a React component class with ES7 module system"
},
"React Class Compoment PropTypes": {
"prefix": "rccp",
"body": [
"import React, { Component } from 'react'",
"import PropTypes from 'prop-types'",
"",
"export default class ${1:componentName} extends Component {",
" static propTypes = {",
" ${2:prop}: ${3:PropTypes}",
" }",
"",
" render() {",
" return (",
" <div>",
" $0",
" </div>",
" )",
" }",
"}",
""
],
"description": "Creates a React component class with PropTypes and ES7 module system"
},
"Class Constructor": {
"prefix": "rconst",
"body": [
"constructor(props) {",
" super(props)",
"",
" this.state = {",
" $0",
" }",
"}",
""
],
"description": "Adds a default constructor for it('', () => {}) the class that contains props as arguments"
},
"Empty State": {
"prefix": "est",
"body": ["this.state = {", " $1", "}", ""],
"description": "Creates empty state object. To be used in a constructor."
},
"Get Derived State From Props": {
"prefix": "dsfp",
"body": [
"static getDerivedStateFromProps(props, state) {",
" $0",
"}",
""
],
"description": "Invoked right before calling the render method, both on the initial mount and on subsequent updates. It should return an object to update the state, or null to update nothing."
},
"Get Snapshot Before Update": {
"prefix": "sbu",
"body": [
"static getSnapshotBeforeUpdate(prevProps, prevState) {",
" $0",
"}",
""
],
"description": "Invoked right before the most recently rendered output is committed to e.g. the DOM. It enables your component to capture some information from the DOM (e.g. scroll position) before it is potentially changed."
},
"Component Did Catch": {
"prefix": "cdc",
"body": ["componentDidCatch(error, info) {", " $0", "}", ""],
"description": "This lifecycle is invoked after an error has been thrown by a descendant component."
},
"Component Did Mount": {
"prefix": "cdm",
"body": ["componentDidMount() {", " $0", "}", ""],
"description": "Invoked once, only on the client (not on the server), immediately after the initial rendering occurs."
},
"Component Did Mount (Arrow func)": {
"prefix": "cdma",
"body": ["componentDidMount = () => {", " $0", "}", ""],
"description": "Invoked once, only on the client (not on the server), immediately after the initial rendering occurs."
},
"Should Component Update": {
"prefix": "scu",
"body": ["shouldComponentUpdate(nextProps, nextState) {", " $0", "}", ""],
"description": "Invoked before rendering when new props or state are being received. "
},
"Should Component Update (Arrow func)": {
"prefix": "scua",
"body": [
"shouldComponentUpdate = (nextProps, nextState) => {",
" $0",
"}",
""
],
"description": "Invoked before rendering when new props or state are being received. "
},
"Component Did Update": {
"prefix": "cdup",
"body": ["componentDidUpdate(prevProps, prevState) {", " $0", "}", ""],
"description": "Invoked immediately after the component's updates are flushed to the DOM."
},
"Component Did Update (Arrow func)": {
"prefix": "cdupa",
"body": [
"componentDidUpdate = (prevProps, prevState) => {",
" $0",
"}",
""
],
"description": "Invoked immediately after the component's updates are flushed to the DOM."
},
"Component Will Unmount": {
"prefix": "cwun",
"body": ["componentWillUnmount() {", " $0", "}", ""],
"description": "Invoked immediately before a component is unmounted from the DOM."
},
"Component Will Unmount (Arrow func)": {
"prefix": "cwuna",
"body": ["componentWillUnmount = () => {", " $0", "}", ""],
"description": "Invoked immediately before a component is unmounted from the DOM."
},
"Component Will Mount - [Deprecated]": {
"prefix": "cwm",
"body": ["componentWillMount() {", " $0", "}", ""],
"description": "Invoked once, both on the client and server, immediately before the initial rendering occurs"
},
"Component Will Mount (Arrow func) - [Deprecated]": {
"prefix": "cwma",
"body": ["componentWillMount = () => {", " $0", "}", ""],
"description": "Invoked once, both on the client and server, immediately before the initial rendering occurs"
},
"Component Will Receive Props - [Deprecated]": {
"prefix": "cwr",
"body": ["componentWillReceiveProps(nextProps) {", " $0", "}", ""],
"description": "Invoked when a component is receiving new props. This method is not called for the initial render."
},
"Component Will Receive Props (Arrow func) - [Deprecated]": {
"prefix": "cwra",
"body": ["componentWillReceiveProps = (nextProps) => {", " $0", "}", ""],
"description": "Invoked when a component is receiving new props. This method is not called for the initial render."
},
"Component Will Update - [Deprecated]": {
"prefix": "cwup",
"body": ["componentWillUpdate(nextProps, nextState) {", " $0", "}", ""],
"description": "Invoked immediately before rendering when new props or state are being received."
},
"Component Will Update (Arrow func) - [Deprecated]": {
"prefix": "cwupa",
"body": [
"componentWillUpdate = (nextProps, nextState) => {",
" $0",
"}",
""
],
"description": "Invoked immediately before rendering when new props or state are being received."
},
"Component Render": {
"prefix": "ren",
"body": [
"render() {",
" return (",
" <div>",
" $0",
" </div>",
" )",
"}"
],
"description": "Basic render."
},
"Component Set State Object": {
"prefix": "sst",
"body": "this.setState({$0})",
"description": "Performs a shallow merge of nextState into current state"
},
"Component Set State Func": {
"prefix": "ssf",
"body": ["this.setState((state, props) => { return { $0 }})", ""],
"description": "Performs a shallow merge of nextState into current state"
},
"Component Props": {
"prefix": "props",
"body": "this.props.$0",
"description": "Access component's props"
},
"Component State": {
"prefix": "state",
"body": "this.state.$0"
}
}