-
Notifications
You must be signed in to change notification settings - Fork 0
/
snippet-code-js.code-snippets
182 lines (182 loc) · 5.21 KB
/
snippet-code-js.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
{
// Place your global snippets here. Each snippet is defined under a snippet name and has a scope, prefix, body and
// description. Add comma separated ids of the languages where the snippet is applicable in the scope field. If scope
// is left empty or omitted, the snippet gets applied to all languages. The prefix is what is
// used to trigger the snippet and the body will be expanded and inserted. Possible variables are:
// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders.
// Placeholders with the same ids are connected.
// Example:
"console.log": {
"scope": "javascript,typescript,javascriptreact,typescriptreact",
"prefix": "log",
"body": [
"console.log(`$1`);$2",
],
"description": "Log output to console"
},
"destructure.props": {
"scope": "javascript,typescript,javascriptreact,typescriptreact",
"prefix": "dprops",
"body": [
"const {$1} = props;",
],
"description": "destructure.props"
},
"destructure.var": {
"scope": "javascript,typescript,javascriptreact,typescriptreact",
"prefix": "dvar",
"body": [
"const {$2} = ${1};",
],
"description": "destructure.var"
},
"arrow.function": {
"scope": "javascript,typescript,javascriptreact,typescriptreact",
"prefix": "aff",
"body": [
"($1) => {$2}$3",
],
"description": "Arrow function"
},
"playwright.goto": {
"scope": "javascript,typescript,javascriptreact,typescriptreact",
"prefix": "pw-goto",
"body": [
"await page.goto(`$1`);",
],
"description": "playwright.goto"
},
"playwright.select": {
"scope": "javascript,typescript,javascriptreact,typescriptreact",
"prefix": "pw-select",
"body": [
"const $1 = await page.$(`$2`);$3",
],
"description": "playwright.select"
},
"playwright.select-all": {
"scope": "javascript,typescript,javascriptreact,typescriptreact",
"prefix": "pw-select-all",
"body": [
"const $1 = await page.$$(`$2`);$3",
],
"description": "playwright.select-all"
},
"playwright.click": {
"scope": "javascript,typescript,javascriptreact,typescriptreact",
"prefix": "pw-select-click",
"body": [
"await page.click(`$1`);$3",
],
"description": "playwright.click"
},
"playwright.wait-domcontentloaded": {
"scope": "javascript,typescript,javascriptreact,typescriptreact",
"prefix": "pw-wait",
"body": [
"await page.waitForLoadState('domcontentloaded');",
],
"description": "playwright.domcontentloaded"
},
"playwright.wait-networkidle": {
"scope": "javascript,typescript,javascriptreact,typescriptreact",
"prefix": "pw-wait",
"body": [
"await page.waitForLoadState('networkidle');",
],
"description": "playwright.networkidle"
},
"playwright.getAttribute()": {
"scope": "javascript,typescript,javascriptreact,typescriptreact",
"prefix": "pw-get",
"body": [
"const ${1:var} = await ${2:el}.getAttribute(`$3`);$4",
],
"description": "playwright.getAttribute()"
},
"playwright.textContent()": {
"scope": "javascript,typescript,javascriptreact,typescriptreact",
"prefix": "pw-get",
"body": [
"const ${1:var} = await ${2:el}.textContent();$3",
],
"description": "playwright.TextContent"
},
"await": {
"scope": "javascript,typescript,javascriptreact,typescriptreact",
"prefix": "aw",
"body": [
"await $1",
],
"description": "await"
},
"logVar": {
"scope": "javascript,typescript,javascriptreact,typescriptreact",
"prefix": "logVar",
"body": [
"console.log('$1',$1)",
],
"description": "logVar"
},
"***********": {
"scope": "javascript,typescript,javascriptreact,typescriptreact",
"prefix": "***********",
"body": [
"console.log(`*********** $1 ***********`,$1)",
],
"description": "***********"
},
"###########": {
"scope": "javascript,typescript,javascriptreact,typescriptreact",
"prefix": "###########",
"body": [
"console.log(`############ $1 ############`,$1)",
],
"description": "###########"
},
"-------------": {
"scope": "javascript,typescript,javascriptreact,typescriptreact",
"prefix": "-------------",
"body": [
"console.log(`------------- $1 -------------`,$1)",
],
"description": "-------------"
},
"_____________": {
"scope": "javascript,typescript,javascriptreact,typescriptreact",
"prefix": "_____________",
"body": [
"console.log(`_____________ $1 _____________`,$1)",
],
"description": "_____________"
},
">>>>>>>>>>>>>>>": {
"scope": "javascript,typescript,javascriptreact,typescriptreact",
"prefix": ">>>>>>>>>>>>>>>",
"body": [
"console.log(`<<<<<<<<<<<<<<< $1 >>>>>>>>>>>>>>>`,$1)",
],
"description": ">>>>>>>>>>>>>>>"
},
"rrfc": {
"scope": "javascript,typescript,javascriptreact,typescriptreact",
"prefix": "rrfc",
"body": [
"import React from 'react';",
"import View from '@app/components/shared/View';",
"",
"interface I${1:Chip} {}",
"const ${1:Chip}: React.FC<I${1:Chip}> = props => {",
"const {} = props;",
"return (",
"<View>",
"<View />",
"</View>",
");",
"};",
"",
"export default ${1:Chip};",
],
"description": "React native component typescript"
}
}