deno.land / x / goober@v2.1.14 / ts-tests / test-api.tsx

نووسراو ببینە
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
import { h, ComponentChildren } from 'preact';import { forwardRef as preactForwardRef } from 'preact/compat';import { forwardRef as reactForwardRef } from 'react';import { styled, setup, css, glob, keyframes } from '../goober';
// This would be an ambient module declaration in the client's projectdeclare module '../goober' { export interface DefaultTheme { colors: { primary: string; }; }}
setup(h);
const testStyledCss = () => { interface ButtonProps { clicked: boolean; children: ComponentChildren; color?: string; }
const buttonStyles = ({ color }: Pick<ButtonProps, 'color'>) => css` background: ${color || 'black'}; `;
const buttonStylesRaw = css` background: black; `;
const Button = styled('button')<ButtonProps>` background: ${(props) => (props.color ? props.color : 'black')}; `;
const ButtonRaw = styled('button')<ButtonProps>` background: black; `;
const EmptyPropsText = styled('p')` color: blue; `;
const NestedText = styled(EmptyPropsText)` color: red; `;
const CustomTagged = styled('a-web-component')` color: lightyellow; `;
const Childless = styled('div')` color: purple; `;
const animation = keyframes` from { opacity: 0; } to { opacity: 1; } `;
const Animated = styled('div')` animation: ${animation} 1s ease-in-out; `;
const HelloComponent = (props: { name: string }) => <h1>Hello, {props.name}</h1>;
const StyledHello = styled(HelloComponent)` color: blue; `;
const MultipleFunctions = styled('b')<{ isActive: boolean }>` color: ${(props) => (props.isActive ? 'tomato' : 'dodgerblue')}; background-color: ${(props) => (props.isActive ? 'tomato' : 'dodgerblue')}; `;
const StyledObject = styled('button')((props) => ({ background: props.disabled ? 'gray' : 'tomato' }));
const ThemeContainer = styled('div')<{ isActive: boolean }>` color: ${(props) => (props.isActive ? 'tomato' : 'dodgerblue')}; background-color: ${(props) => props.theme.colors.primary}; `;
const BoxWithLogicalAnd = styled('div')<{ border: boolean }>` color: red;
${({ border }) => border && ` border: 1px solid red; `} `;
const BoxWithTernary = styled('div')<{ border: boolean }>` color: red;
${({ border }) => border ? ` border: 1px solid red; ` : ``} `;
Button.displayName = 'displayName';
const TestComp = () => { return ( <div> <Button clicked={false} color="red"> click me </Button> <ButtonRaw clicked={false}>click me</ButtonRaw> <button class={buttonStyles({ color: 'red' })}>click me</button> <button class={buttonStylesRaw}>click me</button> <EmptyPropsText>base text</EmptyPropsText> <NestedText>text</NestedText> <MultipleFunctions isActive={false} /> <CustomTagged as={'custom'}>test</CustomTagged> <Childless /> <StyledHello name="you" /> <StyledObject disabled /> <Animated>test</Animated> <ThemeContainer isActive={true} /> <BoxWithLogicalAnd border /> <BoxWithTernary border /> </div> ); };
const ReactForwardRefTest = styled('div', reactForwardRef);
const PreactForwardRefTest = styled('div', preactForwardRef);};
const testGlob = () => { glob` html, body { background: light; }
* { box-sizing: border-box; } `;
glob(` html, body { background: light; }
* { box-sizing: border-box; } `);
glob({ body: { background: 'light' } });};
goober

Version Info

Tagged at
4 months ago