import { runtime } from "@/runtime" import { Flex, Text, TextField } from "@radix-ui/themes" import { createFileRoute } from "@tanstack/react-router" import { GetRandomValues, makeUuid4 } from "@typed/id" import { Effect } from "effect" import { Component, Hook } from "effect-fc" import * as React from "react" // Generator version const RouteComponent = Component.make(function* AsyncRendering() { const VMemoizedAsyncComponent = yield* Component.useFC(MemoizedAsyncComponent) const VAsyncComponent = yield* Component.useFC(AsyncComponent) const [input, setInput] = React.useState("") return ( setInput(e.target.value)} /> ) }).pipe( Component.withRuntime(runtime.context) ) // Pipeline version // const RouteComponent = Component.make("RouteComponent")(() => Effect.Do, // Effect.bind("VMemoizedAsyncComponent", () => Component.useFC(MemoizedAsyncComponent)), // Effect.bind("VAsyncComponent", () => Component.useFC(AsyncComponent)), // Effect.let("input", () => React.useState("")), // Effect.map(({ input: [input, setInput], VAsyncComponent, VMemoizedAsyncComponent }) => // // setInput(e.target.value)} // /> // // // // ), // ).pipe( // Component.withRuntime(runtime.context) // ) const AsyncComponent = Component.make(function* AsyncComponent() { const VSubComponent = yield* Component.useFC(SubComponent) yield* Effect.sleep("500 millis") return ( Rendered! ) }).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))) return {state} }) export const Route = createFileRoute("/dev/async-rendering")({ component: RouteComponent })