fix ssr on tabs
This commit is contained in:
parent
60d124a6bf
commit
093196d1bc
4 changed files with 81 additions and 31 deletions
|
|
@ -1,17 +1,28 @@
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { Tabs as TabsPrimitive } from "bits-ui";
|
import { Tabs as TabsPrimitive } from "bits-ui";
|
||||||
import { cn } from "$lib/utils.js";
|
import { cn } from "$lib/utils.js";
|
||||||
|
import { browser } from "$app/environment";
|
||||||
|
|
||||||
let {
|
let {
|
||||||
ref = $bindable(null),
|
ref = $bindable(null),
|
||||||
class: className,
|
class: className,
|
||||||
|
children,
|
||||||
...restProps
|
...restProps
|
||||||
}: TabsPrimitive.ContentProps = $props();
|
}: TabsPrimitive.ContentProps = $props();
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<TabsPrimitive.Content
|
{#if browser}
|
||||||
|
<TabsPrimitive.Content
|
||||||
bind:ref
|
bind:ref
|
||||||
data-slot="tabs-content"
|
data-slot="tabs-content"
|
||||||
class={cn("flex-1 outline-none", className)}
|
class={cn("flex-1 outline-none", className)}
|
||||||
{...restProps}
|
{...restProps}
|
||||||
/>
|
/>
|
||||||
|
{:else}
|
||||||
|
<div
|
||||||
|
data-slot="tabs-content"
|
||||||
|
class={cn("flex-1 outline-none", className)}
|
||||||
|
>
|
||||||
|
{@render children?.()}
|
||||||
|
</div>
|
||||||
|
{/if}
|
||||||
|
|
|
||||||
|
|
@ -1,15 +1,18 @@
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { Tabs as TabsPrimitive } from "bits-ui";
|
import { Tabs as TabsPrimitive } from "bits-ui";
|
||||||
import { cn } from "$lib/utils.js";
|
import { cn } from "$lib/utils.js";
|
||||||
|
import { browser } from "$app/environment";
|
||||||
|
|
||||||
let {
|
let {
|
||||||
ref = $bindable(null),
|
ref = $bindable(null),
|
||||||
class: className,
|
class: className,
|
||||||
|
children,
|
||||||
...restProps
|
...restProps
|
||||||
}: TabsPrimitive.ListProps = $props();
|
}: TabsPrimitive.ListProps = $props();
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<TabsPrimitive.List
|
{#if browser}
|
||||||
|
<TabsPrimitive.List
|
||||||
bind:ref
|
bind:ref
|
||||||
data-slot="tabs-list"
|
data-slot="tabs-list"
|
||||||
class={cn(
|
class={cn(
|
||||||
|
|
@ -17,4 +20,15 @@
|
||||||
className
|
className
|
||||||
)}
|
)}
|
||||||
{...restProps}
|
{...restProps}
|
||||||
/>
|
/>
|
||||||
|
{:else}
|
||||||
|
<div
|
||||||
|
data-slot="tabs-list"
|
||||||
|
class={cn(
|
||||||
|
"bg-muted text-muted-foreground inline-flex h-9 w-fit items-center justify-center rounded-lg p-[3px]",
|
||||||
|
className
|
||||||
|
)}
|
||||||
|
>
|
||||||
|
{@render children?.()}
|
||||||
|
</div>
|
||||||
|
{/if}
|
||||||
|
|
|
||||||
|
|
@ -1,15 +1,18 @@
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { Tabs as TabsPrimitive } from "bits-ui";
|
import { Tabs as TabsPrimitive } from "bits-ui";
|
||||||
import { cn } from "$lib/utils.js";
|
import { cn } from "$lib/utils.js";
|
||||||
|
import { browser } from "$app/environment";
|
||||||
|
|
||||||
let {
|
let {
|
||||||
ref = $bindable(null),
|
ref = $bindable(null),
|
||||||
class: className,
|
class: className,
|
||||||
|
children,
|
||||||
...restProps
|
...restProps
|
||||||
}: TabsPrimitive.TriggerProps = $props();
|
}: TabsPrimitive.TriggerProps = $props();
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<TabsPrimitive.Trigger
|
{#if browser}
|
||||||
|
<TabsPrimitive.Trigger
|
||||||
bind:ref
|
bind:ref
|
||||||
data-slot="tabs-trigger"
|
data-slot="tabs-trigger"
|
||||||
class={cn(
|
class={cn(
|
||||||
|
|
@ -17,4 +20,15 @@
|
||||||
className
|
className
|
||||||
)}
|
)}
|
||||||
{...restProps}
|
{...restProps}
|
||||||
/>
|
/>
|
||||||
|
{:else}
|
||||||
|
<button
|
||||||
|
data-slot="tabs-trigger"
|
||||||
|
class={cn(
|
||||||
|
"data-[state=active]:bg-background dark:data-[state=active]:text-foreground focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:outline-ring dark:data-[state=active]:border-input dark:data-[state=active]:bg-input/30 text-foreground dark:text-muted-foreground inline-flex h-[calc(100%-1px)] flex-1 items-center justify-center gap-1.5 whitespace-nowrap rounded-md border border-transparent px-2 py-1 text-sm font-medium transition-[color,box-shadow] focus-visible:outline-1 focus-visible:ring-[3px] disabled:pointer-events-none disabled:opacity-50 data-[state=active]:shadow-sm [&_svg:not([class*='size-'])]:size-4 [&_svg]:pointer-events-none [&_svg]:shrink-0",
|
||||||
|
className
|
||||||
|
)}
|
||||||
|
>
|
||||||
|
{@render children?.()}
|
||||||
|
</button>
|
||||||
|
{/if}
|
||||||
|
|
|
||||||
|
|
@ -1,19 +1,30 @@
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { Tabs as TabsPrimitive } from "bits-ui";
|
import { Tabs as TabsPrimitive } from "bits-ui";
|
||||||
import { cn } from "$lib/utils.js";
|
import { cn } from "$lib/utils.js";
|
||||||
|
import { browser } from "$app/environment";
|
||||||
|
|
||||||
let {
|
let {
|
||||||
ref = $bindable(null),
|
ref = $bindable(null),
|
||||||
value = $bindable(""),
|
value = $bindable(""),
|
||||||
class: className,
|
class: className,
|
||||||
|
children,
|
||||||
...restProps
|
...restProps
|
||||||
}: TabsPrimitive.RootProps = $props();
|
}: TabsPrimitive.RootProps = $props();
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<TabsPrimitive.Root
|
{#if browser}
|
||||||
|
<TabsPrimitive.Root
|
||||||
bind:ref
|
bind:ref
|
||||||
bind:value
|
bind:value
|
||||||
data-slot="tabs"
|
data-slot="tabs"
|
||||||
class={cn("flex flex-col gap-2", className)}
|
class={cn("flex flex-col gap-2", className)}
|
||||||
{...restProps}
|
{...restProps}
|
||||||
/>
|
/>
|
||||||
|
{:else}
|
||||||
|
<div
|
||||||
|
data-slot="tabs"
|
||||||
|
class={cn("flex flex-col gap-2", className)}
|
||||||
|
>
|
||||||
|
{@render children?.()}
|
||||||
|
</div>
|
||||||
|
{/if}
|
||||||
|
|
|
||||||
Reference in a new issue