Skip to content

Commit 0e5e318

Browse files
committed
Fix: Handle all cases of applying tailwind to class or className
1 parent 8e33520 commit 0e5e318

12 files changed

+4458
-87
lines changed

.flowconfig

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
[version]
2+
3+
4+
[ignore]
5+
.*/build/.*
6+
.*/dist/.*
7+
.*/lib/.*
8+
.*/malformed_package_json/.*
9+
10+
[include]
11+
12+
[libs]
13+
flow-typed
14+
15+
[lints]
16+
17+
[options]
18+
emoji=true
19+
exact_by_default=true
20+
experimental.const_params=true
21+
module.use_strict=true
22+
munge_underscores=true
23+
suppress_type=$FlowFixMe
24+
suppress_type=$FlowTODO
25+
; type-stubs
26+
module.system.node.resolve_dirname=flow_modules
27+
module.system.node.resolve_dirname=node_modules
28+
29+
30+
[strict]

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ A simpler code translator to convert code using Tailwind to code using StyleX
44

55
## TODO
66

7-
- [ ] `className={cn("m-1 text-red-500", prop.className)}`
7+
- [x] `className={cn("m-1 text-red-500", prop.className)}`
88
- should become `{..._stylex.props(styles.$1, prop.className)}`
99
- but is currently: `{..._stylex.props(styles.$1)}`
10-
- [ ] There might multiple stylex imports, but it should be fine.
11-
- [ ] It'll insert a second `stylex.create` call even when one exists
12-
- [ ] Support this pattern: `<div className={cn(`hidden lg:inline-flex text-[${tokens.textColor}]`)} />`
10+
- [x] There might multiple stylex imports, but it should be fine.
11+
- [x] It'll insert a second `stylex.create` call even when one exists
12+
- [-] Support this pattern: `<div className={cn(`hidden lg:inline-flex text-[${tokens.textColor}]`)} />`
1313
- [ ] Add and use a custom `tw` function to behave like `stylex.atom()`.
1414

1515
- [ ] A Babel plugin for `style:x={}` instead of a spread

__test__/__fixtures__/form.js

+17-10
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ import {
99
CardContent,
1010
CardFooter,
1111
Card,
12-
} from '@/components/ui/card';
13-
import { Label } from '@/components/ui/label';
14-
import { Input } from '@/components/ui/input';
15-
import { Button } from '@/components/ui/button';
16-
import Link from 'next/link';
12+
} from "@/components/ui/card";
13+
import { Label } from "@/components/ui/label";
14+
import { Input } from "@/components/ui/input";
15+
import { Button } from "@/components/ui/button";
16+
import Link from "next/link";
1717

18-
export default function Component() {
18+
export default function Component({ xstyle }) {
1919
return (
2020
<Card>
2121
<CardHeader>
@@ -25,14 +25,21 @@ export default function Component() {
2525
</CardDescription>
2626
</CardHeader>
2727
<CardContent>
28-
<div className="grid grid-cols-2 gap-4 text-sm">
29-
<div className="flex flex-col space-y-1.5">
28+
<div className={cn("grid grid-cols-2 gap-4 text-sm", xstyle)}>
29+
<div className={twMerge(xstyle, "flex flex-col space-y-1.5")}>
3030
<Label htmlFor="sqrtPriceX96">Sqrt Price X96</Label>
3131
<Input disabled id="sqrtPriceX96" placeholder="Sqrt Price X96" />
3232
</div>
3333
<div className="flex flex-col space-y-1.5">
34-
<Label htmlFor="tick">Tick</Label>
35-
<Input disabled id="tick" placeholder="Tick" />
34+
<Label htmlFor="tick" className="flex flex-col space-y-1.5">
35+
Tick
36+
</Label>
37+
<Input
38+
disabled
39+
id="tick"
40+
placeholder="Tick"
41+
className={cn("flex flex-col space-y-1.5", xstyle)}
42+
/>
3643
</div>
3744
<div className="flex flex-col space-y-1.5">
3845
<Label htmlFor="observationIndex">Observation Index</Label>

__test__/__snapshots__/transform.test.js.snap

+15-12
Original file line numberDiff line numberDiff line change
@@ -166,12 +166,14 @@ exports[`tailwind-to-stylex transforms form.js 1`] = `
166166
* v0 by Vercel.
167167
* @see https://v0.dev/t/WfjCkNNqj9B
168168
*/
169-
import { CardTitle, CardDescription, CardHeader, CardContent, CardFooter, Card } from '@/components/ui/card';
170-
import { Label } from '@/components/ui/label';
171-
import { Input } from '@/components/ui/input';
172-
import { Button } from '@/components/ui/button';
173-
import Link from 'next/link';
174-
export default function Component() {
169+
import { CardTitle, CardDescription, CardHeader, CardContent, CardFooter, Card } from "@/components/ui/card";
170+
import { Label } from "@/components/ui/label";
171+
import { Input } from "@/components/ui/input";
172+
import { Button } from "@/components/ui/button";
173+
import Link from "next/link";
174+
export default function Component({
175+
xstyle
176+
}) {
175177
return <Card>
176178
<CardHeader>
177179
<CardTitle>Uniswap Slot0 Information</CardTitle>
@@ -180,14 +182,16 @@ export default function Component() {
180182
</CardDescription>
181183
</CardHeader>
182184
<CardContent>
183-
<div {..._stylex.props(_styles.$1)}>
184-
<div {..._stylex.props(_styles.$2)}>
185+
<div {..._stylex.props(_styles.$1, xstyle)}>
186+
<div {..._stylex.props(xstyle, _styles.$2)}>
185187
<Label htmlFor="sqrtPriceX96">Sqrt Price X96</Label>
186188
<Input disabled id="sqrtPriceX96" placeholder="Sqrt Price X96" />
187189
</div>
188190
<div {..._stylex.props(_styles.$2)}>
189-
<Label htmlFor="tick">Tick</Label>
190-
<Input disabled id="tick" placeholder="Tick" />
191+
<Label htmlFor="tick" className={_styles.$2}>
192+
Tick
193+
</Label>
194+
<Input disabled id="tick" placeholder="Tick" className={[_styles.$2, xstyle]} />
191195
</div>
192196
<div {..._stylex.props(_styles.$2)}>
193197
<Label htmlFor="observationIndex">Observation Index</Label>
@@ -681,6 +685,5 @@ export const colors = stylex.defineVars({
681685
dirtyBlack: "#1d2033",
682686
darkBackground: "#151934",
683687
darkText: "#ffffff"
684-
});
685-
const _styles = _stylex.create({});"
688+
});"
686689
`;

0 commit comments

Comments
 (0)