mirror of
https://github.com/linsa-io/linsa.git
synced 2026-01-12 12:20:23 +01:00
* chore: remove useKeyDownListener * chore: remove react-use, update jazz version and add query string * chore: update jazz version * chore: use simple mac or win utils code * feat(util): add isTextInput * feat(hooks): all needed hooks * fix: link bunch stuff * fix: page bunch stuff * chore: bunch update for custom component * chore: use throttle from internal hook * chore: topic bunch stuff * chore: update layout * fix: truncate content header of topic detail
181 lines
5.1 KiB
TypeScript
181 lines
5.1 KiB
TypeScript
"use client"
|
|
|
|
import * as React from "react"
|
|
import { motion, AnimatePresence } from "framer-motion"
|
|
import type { icons } from "lucide-react"
|
|
import { Button } from "@/components/ui/button"
|
|
import { Tooltip, TooltipContent, TooltipTrigger } from "@/components/ui/tooltip"
|
|
import { cn, getShortcutKeys } from "@/lib/utils"
|
|
import { LaIcon } from "@/components/custom/la-icon"
|
|
import { useAtom } from "jotai"
|
|
import { parseAsBoolean, useQueryState } from "nuqs"
|
|
import { useConfirm } from "@omit/react-confirm-dialog"
|
|
import { useAccount, useCoState } from "@/lib/providers/jazz-provider"
|
|
import { PersonalLink } from "@/lib/schema"
|
|
import { ID } from "jazz-tools"
|
|
import { globalLinkFormExceptionRefsAtom } from "./partials/form/link-form"
|
|
import { useLinkActions } from "./hooks/use-link-actions"
|
|
|
|
interface ToolbarButtonProps extends React.ComponentPropsWithoutRef<typeof Button> {
|
|
icon: keyof typeof icons
|
|
onClick?: (e: React.MouseEvent) => void
|
|
tooltip?: string
|
|
}
|
|
|
|
const ToolbarButton = React.forwardRef<HTMLButtonElement, ToolbarButtonProps>(
|
|
({ icon, onClick, tooltip, className, ...props }, ref) => {
|
|
const button = (
|
|
<Button variant="ghost" className={cn("h-8 min-w-14 p-0", className)} onClick={onClick} ref={ref} {...props}>
|
|
<LaIcon name={icon} />
|
|
</Button>
|
|
)
|
|
|
|
if (tooltip) {
|
|
return (
|
|
<Tooltip delayDuration={0}>
|
|
<TooltipTrigger asChild>{button}</TooltipTrigger>
|
|
<TooltipContent>
|
|
<p>{tooltip}</p>
|
|
</TooltipContent>
|
|
</Tooltip>
|
|
)
|
|
}
|
|
|
|
return button
|
|
}
|
|
)
|
|
|
|
ToolbarButton.displayName = "ToolbarButton"
|
|
|
|
export const LinkBottomBar: React.FC = () => {
|
|
const [editId, setEditId] = useQueryState("editId")
|
|
const [createMode, setCreateMode] = useQueryState("create", parseAsBoolean)
|
|
const [, setGlobalLinkFormExceptionRefsAtom] = useAtom(globalLinkFormExceptionRefsAtom)
|
|
const { me } = useAccount({ root: { personalLinks: [] } })
|
|
const personalLink = useCoState(PersonalLink, editId as ID<PersonalLink>)
|
|
|
|
const cancelBtnRef = React.useRef<HTMLButtonElement>(null)
|
|
const confirmBtnRef = React.useRef<HTMLButtonElement>(null)
|
|
const overlayRef = React.useRef<HTMLDivElement>(null)
|
|
const contentRef = React.useRef<HTMLDivElement>(null)
|
|
|
|
const deleteBtnRef = React.useRef<HTMLButtonElement>(null)
|
|
const editMoreBtnRef = React.useRef<HTMLButtonElement>(null)
|
|
const plusBtnRef = React.useRef<HTMLButtonElement>(null)
|
|
const plusMoreBtnRef = React.useRef<HTMLButtonElement>(null)
|
|
|
|
const { deleteLink } = useLinkActions()
|
|
const confirm = useConfirm()
|
|
|
|
const handleCreateMode = React.useCallback(() => {
|
|
setEditId(null)
|
|
requestAnimationFrame(() => {
|
|
setCreateMode(prev => !prev)
|
|
})
|
|
}, [setEditId, setCreateMode])
|
|
|
|
const exceptionRefs = React.useMemo(
|
|
() => [
|
|
overlayRef,
|
|
contentRef,
|
|
deleteBtnRef,
|
|
editMoreBtnRef,
|
|
cancelBtnRef,
|
|
confirmBtnRef,
|
|
plusBtnRef,
|
|
plusMoreBtnRef
|
|
],
|
|
[]
|
|
)
|
|
|
|
React.useEffect(() => {
|
|
setGlobalLinkFormExceptionRefsAtom(exceptionRefs)
|
|
}, [setGlobalLinkFormExceptionRefsAtom, exceptionRefs])
|
|
|
|
const handleDelete = async (e: React.MouseEvent) => {
|
|
if (!personalLink || !me) return
|
|
|
|
const result = await confirm({
|
|
title: `Delete "${personalLink.title}"?`,
|
|
description: "This action cannot be undone.",
|
|
alertDialogTitle: {
|
|
className: "text-base"
|
|
},
|
|
alertDialogOverlay: {
|
|
ref: overlayRef
|
|
},
|
|
alertDialogContent: {
|
|
ref: contentRef
|
|
},
|
|
cancelButton: {
|
|
variant: "outline",
|
|
ref: cancelBtnRef
|
|
},
|
|
confirmButton: {
|
|
variant: "destructive",
|
|
ref: confirmBtnRef
|
|
}
|
|
})
|
|
|
|
if (result) {
|
|
deleteLink(me, personalLink)
|
|
setEditId(null)
|
|
}
|
|
}
|
|
|
|
const shortcutText = getShortcutKeys(["c"])
|
|
|
|
return (
|
|
<div className="bg-background min-h-11 border-t">
|
|
<AnimatePresence mode="wait">
|
|
{editId && (
|
|
<motion.div
|
|
key="expanded"
|
|
className="flex h-full items-center justify-center gap-1 border-t px-2"
|
|
initial={{ opacity: 0, y: 20 }}
|
|
animate={{ opacity: 1, y: 0 }}
|
|
exit={{ opacity: 0, y: 20 }}
|
|
transition={{ duration: 0.1 }}
|
|
>
|
|
<ToolbarButton icon={"ArrowLeft"} onClick={() => setEditId(null)} aria-label="Go back" />
|
|
<ToolbarButton
|
|
icon={"Trash"}
|
|
onClick={handleDelete}
|
|
className="text-destructive hover:text-destructive"
|
|
ref={deleteBtnRef}
|
|
aria-label="Delete link"
|
|
/>
|
|
<ToolbarButton icon={"Ellipsis"} ref={editMoreBtnRef} aria-label="More options" />
|
|
</motion.div>
|
|
)}
|
|
|
|
{!editId && (
|
|
<motion.div
|
|
key="collapsed"
|
|
className="flex h-full items-center justify-center gap-1 px-2"
|
|
initial={{ opacity: 0, y: -20 }}
|
|
animate={{ opacity: 1, y: 0 }}
|
|
exit={{ opacity: 0, y: -20 }}
|
|
transition={{ duration: 0.1 }}
|
|
>
|
|
{createMode && <ToolbarButton icon={"ArrowLeft"} onClick={handleCreateMode} aria-label="Go back" />}
|
|
{!createMode && (
|
|
<ToolbarButton
|
|
icon={"Plus"}
|
|
onClick={handleCreateMode}
|
|
tooltip={`New Link (${shortcutText.map(s => s.symbol).join("")})`}
|
|
ref={plusBtnRef}
|
|
aria-label="New link"
|
|
/>
|
|
)}
|
|
</motion.div>
|
|
)}
|
|
</AnimatePresence>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
LinkBottomBar.displayName = "LinkBottomBar"
|
|
|
|
export default LinkBottomBar
|