forked from styled-components/vscode-styled-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.js
221 lines (177 loc) · 4.14 KB
/
test.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
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
const DotTag = styled.div`
color: #ebebeb;
font-size: ${props => props.theme.fontSize};
font-family: Helvetica;
${mixin}
`
const StringTagname = styled('div')`
color: #ff0000;
`
const Component = styled(Component)`
color: #ebebeb;
`
const SegmentedComponent = styled(Segmented.Component)`
padding: 3px;
`
const mixin = css`
height: 20px;
padding: 5px;
`
// const comment = css`
// height: 20px;
// padding: 5px;
// `
const arrowFun = (...args) => css`
height: 12px;
`
const test = "broken" /* Highlighting is broken after a styled-component is returned from an arrow function*/
class InsideMethod extends React.Component {
render () {
return styled(Component)`
line-height: 21px;
`
}
}
let variableAssignment
variableAssignment = css`
height: 1px;
`
/* expression */
(styled.div`
height: 12px;
`)
export default styled(ExportComponent)`
max-width: 100%;
`
function insideFunction() {
return styled.div`
height: 15px;
`
}
const ObjectLiteral = {
styles: styled`
height: 12px;
color: #000000;
font: ${props => 'lol'};
${props => 'padding: 5px'}
${props => 'border'}: 1px solid #000000;
`
}
const rotate360 = keyframes`
from {
transform: rotate(0deg);
}
to {
transform: rotate(1turn);
}
`
// .extend
const Comp = styled.div`color: red;`
const NewComp = Comp.extend`
color: green;
`
// .withComponent()
const NewCompWithString = CompWithComponent.withComponent('span').extend`
color: green;
`
const NewCompWithString = CompWithComponent.withComponent('span')`
color: green;
`
const NewCompWithStringOneLine = CompWithComponent.withComponent('span')`color: green;`
const NewCompWithComponent = CompWithComponent.withComponent(OtherComp)`
color: green;
`
// Typescript
const Root = styled<RootProps>('div')`
height: ${(props) => props.label ? 72 : 48}px;
`
// Typescript, Emotion
const Container = styled<ContainerProps, 'div'>('div')`
height: 50px;
display: ${(props) => props.display};
`
// SC.attrs({})
const Link = styled.a.attrs({
target: '_blank'
})`
color: red;
`
// Functional Media Queries - https://www.styled-components.com/docs/advanced#media-templates
const sizes = {
desktop: 992,
tablet: 768,
phone: 376,
}
const media = Object.keys(sizes).reduce((acc, label) => {
acc[label] = (...args) => css`
@media (max-width: ${sizes[label] / 16}em) {
${css(...args)};
}
`
})
const Input = styled.input.attrs({
// we can define static props
type: 'password',
// or we can define dynamic ones
margin: props => props.size || '1em',
padding: props => props.size || '1em'
})`
color: palevioletred;
font-size: 1em;
border: 2px solid palevioletred;
border-radius: 3px;
/* here we use the dynamically computed props */
margin: ${props => props.margin};
padding: ${props => props.padding};
`;
const mediaQuery = styled.div`
background: palevioletred;
${media.desktop`
background: red;
`};
${media.breakAt('300px')`
background: palevioletred;
`}
${media.desktop(400)`
background: coral;
`};
`
const Input = styled.input.attrs({
// we can define static props
type: 'password',
// or we can define dynamic ones
margin: props => props.size || '1em',
padding: props => props.size || '1em'
})`
color: palevioletred;
font-size: 1em;
border: 2px solid palevioletred;
border-radius: 3px;
/* here we use the dynamically computed props */
margin: ${props => props.margin};
padding: ${props => props.padding};
`;
const Input = styled.input.attrs({
// we can define static props
type: 'password',
// or we can define dynamic ones
margin: props => props.size || '1em',
padding: props => props.size || '1em'
})`
color: palevioletred;
font-size: 1em;
border: 2px solid palevioletred;
border-radius: 3px;
${media.desktop`
background: red;
`};
${media.breakAt('300px')`
background: palevioletred;
`}
${media.desktop(400)`
background: coral;
`};
/* here we use the dynamically computed props */
margin: ${props => props.margin};
padding: ${props => props.padding};
`;