Spaces:
Sleeping
Sleeping
File size: 1,148 Bytes
8c5d17c dbc8f44 8c5d17c a40bf40 8c5d17c dbc8f44 8c5d17c c32ec0d 8c5d17c 974ed41 8c5d17c |
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 |
import { useStore } from "@/app/store"
import { VerticalSlider } from "@/components/ui/vertical-slider"
import { cn } from "@/lib/utils"
export function Zoom() {
const zoomLevel = useStore((state) => state.zoomLevel)
const setZoomLevel = useStore((state) => state.setZoomLevel)
const isGeneratingStory = useStore((state) => state.isGeneratingStory)
return (
<div className={cn(
`print:hidden`,
// `fixed flex items-center justify-center bottom-8 top-32 right-8 z-10 h-screen`,
`fixed flex flex-col items-center bottom-8 top-32 md:top-20 right-6 z-10`,
`animation-all duration-300 ease-in-out`,
isGeneratingStory ? `scale-0 opacity-0` : ``,
)}>
<div className="font-mono text-xs pb-1 text-stone-700 bg-stone-50 p-1 rounded-sm">
Zoom
</div>
<div className="w-2">
<VerticalSlider
defaultValue={[zoomLevel]}
min={30}
max={250}
step={1}
onValueChange={value => setZoomLevel(value[0] || 10)}
value={[zoomLevel]}
className="h-48"
orientation="vertical"
/>
</div>
</div>
)
} |