Skip to content

Commit 9c7a993

Browse files
committed
feat: add jsx loop snippet
1 parent 1275984 commit 9c7a993

File tree

3 files changed

+36
-0
lines changed

3 files changed

+36
-0
lines changed

snippets/javascript.json

+12
Original file line numberDiff line numberDiff line change
@@ -1404,6 +1404,18 @@
14041404
"description": "Create `<button />` element",
14051405
"scope": "javascript,javascriptreact"
14061406
},
1407+
"🟨 jsxLoop": {
1408+
"prefix": "loopJSX.$loopJSX",
1409+
"body": [
1410+
"{${1:list}.map((${2:$1Item}) => {$5",
1411+
"\treturn (",
1412+
"\t\t<${4:div} key={${2:$1Item}.${3:id}}>$0</$4>",
1413+
"\t)",
1414+
"})}"
1415+
],
1416+
"description": "JSX mapping an array",
1417+
"scope": "javascript,javascriptreact"
1418+
},
14071419
"🟨 yupV0Schema": {
14081420
"prefix": "yupSchema.$yupSchema",
14091421
"body": [

snippets/typescript.json

+12
Original file line numberDiff line numberDiff line change
@@ -1720,6 +1720,18 @@
17201720
"description": "Create `<button />` element",
17211721
"scope": "javascript,typescript,javascriptreact,typescriptreact"
17221722
},
1723+
"🟨 jsxLoop": {
1724+
"prefix": "loopJSX.$loopJSX",
1725+
"body": [
1726+
"{${1:list}.map((${2:$1Item}) => {$5",
1727+
"\treturn (",
1728+
"\t\t<${4:div} key={${2:$1Item}.${3:id}}>$0</$4>",
1729+
"\t)",
1730+
"})}"
1731+
],
1732+
"description": "JSX mapping an array",
1733+
"scope": "javascript,typescript,javascriptreact,typescriptreact"
1734+
},
17231735
"🟨 yupV0Schema": {
17241736
"prefix": "yupSchema.$yupSchema",
17251737
"body": [

src/snippets/html-jsx.ts

+12
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,15 @@ export const jsxButton: Snippet = {
1111
body: ['<button type="button" onClick={${2:onClick}}$3>', '\t${1:Button}', '</button>'],
1212
description: 'Create `<button />` element',
1313
};
14+
15+
export const jsxLoop: Snippet = {
16+
prefix: 'loopJSX',
17+
body: [
18+
'{${1:list}.map((${2:$1Item}) => {$5',
19+
'\treturn (',
20+
'\t\t<${4:div} key={${2:$1Item}.${3:id}}>$0</$4>',
21+
'\t)',
22+
'})}',
23+
],
24+
description: 'JSX mapping an array',
25+
};

0 commit comments

Comments
 (0)