Async tests
All checks were successful
Lint / lint (push) Successful in 12s

This commit is contained in:
Julien Valverdé
2025-07-17 17:07:26 +02:00
parent fc4e934a71
commit 09cb9a4607

View File

@@ -1,5 +1,5 @@
import { runtime } from "@/runtime"
import { Text, TextField } from "@radix-ui/themes"
import { Flex, Text, TextField } from "@radix-ui/themes"
import { createFileRoute } from "@tanstack/react-router"
import { GetRandomValues, makeUuid4 } from "@typed/id"
import { Console, Effect } from "effect"
@@ -8,17 +8,21 @@ import * as React from "react"
const RouteComponent = Component.make(function* AsyncRendering() {
const VMemoizedAsyncComponent = yield* Component.useFC(MemoizedAsyncComponent)
const VAsyncComponent = yield* Component.useFC(AsyncComponent)
const [input, setInput] = React.useState("")
return <>
<TextField.Root
value={input}
onChange={e => setInput(e.target.value)}
/>
return (
<Flex direction="column" align="stretch" gap="2">
<TextField.Root
value={input}
onChange={e => setInput(e.target.value)}
/>
<VAsyncComponent />
</>
<VMemoizedAsyncComponent />
<VAsyncComponent />
</Flex>
)
}).pipe(
Component.withRuntime(runtime.context)
)
@@ -27,16 +31,18 @@ const AsyncComponent = Component.make(function* AsyncComponent() {
yield* Console.log("rendering")
const VSubComponent = yield* Component.useFC(SubComponent)
React.useState()
yield* Effect.sleep("500 millis")
return <>
<Text>Rendered!</Text><br />
<VSubComponent />
</>
return (
<Flex direction="column" align="stretch">
<Text>Rendered!</Text>
<VSubComponent />
</Flex>
)
}).pipe(
Component.suspense
)
const MemoizedAsyncComponent = Component.memo(AsyncComponent)
const SubComponent = Component.make(function* SubComponent() {
const [state] = React.useState(yield* Hook.useOnce(() => Effect.provide(makeUuid4, GetRandomValues.CryptoRandom)))