mirror of
https://github.com/linsa-io/linsa.git
synced 2026-01-12 12:20:23 +01:00
* start * . * seeding connections * . * wip * wip: learning state * wip: notes section * wip: many * topics * chore: update schema * update package * update sidebar * update page section * feat: profile * fix: remove z index * fix: wrong type * add avatar * add avatar * wip * . * store page section key * remove atom page section * fix rerender * fix rerender * fix rerender * fix rerender * fix link * search light/dark mode * bubble menu ui * . * fix: remove unecessary code * chore: mark as old for old schema * chore: adapt new schema * fix: add topic schema but null for now * fix: add icon on personal link * fix: list item * fix: set url fetched when editing * fix: remove image * feat: add icon to link * feat: custom url zod validation * fix: metadata test * chore: update utils * fix: link * fix: url fetcher * . * . * fix: add link, section * chore: seeder * . * . * . * . * fix: change checkbox to learning state * fix: click outside editing form * feat: constant * chore: move to master folder * chore: adapt new schema * chore: cli for new schema * fix: new schema for dev seed * fix: seeding * update package * chore: forcegraph seed * bottombar * if isEdit delete icon * showCreate X button * . * options * chore: implement topic from public global group * chore: update learning state * fix: change implementation for outside click * chore: implement new form param * chore: update env example * feat: link form refs exception * new page button layout, link topic search fixed * chore: enable topic * chore: update seed * profile * chore: move framer motion package from root to web and add nuqs * chore: add LearningStateValue * chore: implement active state * profile * chore: use fancy switch and update const * feat: filter implementation * dropdown menu * . * sidebar topics * topic selected color * feat: topic detail * fix: collapsible page * pages - sorted by, layout, visible mode * . * . * . * topic status sidebar * topic button and count * fix: topic * page delete/topic buttons * search ui * selected topic for page * selected topic status sidebar * removed footer * update package * . --------- Co-authored-by: Nikita <github@nikiv.dev> Co-authored-by: marshennikovaolga <marshennikova@gmail.com> Co-authored-by: Kisuyo <ig.intr3st@gmail.com>
256 lines
7.2 KiB
TypeScript
256 lines
7.2 KiB
TypeScript
"use client"
|
|
|
|
import { Button } from "@/components/ui/button"
|
|
import { Checkbox } from "@/components/ui/checkbox"
|
|
import { PersonalLink } from "@/lib/schema/personal-link"
|
|
import { cn } from "@/lib/utils"
|
|
import { useSortable } from "@dnd-kit/sortable"
|
|
import { CSS } from "@dnd-kit/utilities"
|
|
import { ConfirmOptions } from "@omit/react-confirm-dialog"
|
|
import { LinkIcon, Trash2Icon } from "lucide-react"
|
|
import Image from "next/image"
|
|
import Link from "next/link"
|
|
import * as React from "react"
|
|
import { LinkForm } from "./form/link-form"
|
|
import { Command, CommandInput, CommandList, CommandItem, CommandGroup } from "@/components/ui/command"
|
|
import { Popover, PopoverTrigger, PopoverContent } from "@/components/ui/popover"
|
|
import { ScrollArea } from "@/components/ui/scroll-area"
|
|
import { LaIcon } from "@/components/custom/la-icon"
|
|
import { LEARNING_STATES } from "@/lib/constants"
|
|
import { Badge } from "@/components/ui/badge"
|
|
|
|
interface ListItemProps {
|
|
confirm: (options: ConfirmOptions) => Promise<boolean>
|
|
personalLink: PersonalLink
|
|
disabled?: boolean
|
|
isEditing: boolean
|
|
setEditId: (id: string | null) => void
|
|
isDragging: boolean
|
|
isFocused: boolean
|
|
setFocusedId: (id: string | null) => void
|
|
registerRef: (id: string, ref: HTMLLIElement | null) => void
|
|
onDelete?: (personalLink: PersonalLink) => void
|
|
showDeleteIconForLinkId: string | null
|
|
setShowDeleteIconForLinkId: (id: string | null) => void
|
|
}
|
|
|
|
export const ListItem: React.FC<ListItemProps> = ({
|
|
confirm,
|
|
isEditing,
|
|
setEditId,
|
|
personalLink,
|
|
disabled = false,
|
|
isDragging,
|
|
isFocused,
|
|
setFocusedId,
|
|
registerRef,
|
|
onDelete,
|
|
showDeleteIconForLinkId,
|
|
setShowDeleteIconForLinkId
|
|
}) => {
|
|
const { attributes, listeners, setNodeRef, transform, transition } = useSortable({ id: personalLink.id, disabled })
|
|
|
|
const style = {
|
|
transform: CSS.Transform.toString(transform),
|
|
transition,
|
|
pointerEvents: isDragging ? "none" : "auto"
|
|
}
|
|
|
|
const refCallback = React.useCallback(
|
|
(node: HTMLLIElement | null) => {
|
|
setNodeRef(node)
|
|
registerRef(personalLink.id, node)
|
|
},
|
|
[setNodeRef, registerRef, personalLink.id]
|
|
)
|
|
|
|
const handleKeyDown = (e: React.KeyboardEvent) => {
|
|
if (e.key === "Enter") {
|
|
e.preventDefault()
|
|
setEditId(personalLink.id)
|
|
}
|
|
}
|
|
|
|
const handleSuccess = () => {
|
|
setEditId(null)
|
|
}
|
|
|
|
const handleOnClose = () => {
|
|
setEditId(null)
|
|
}
|
|
|
|
const handleOnFail = () => {}
|
|
|
|
// const handleRowClick = () => {
|
|
// setShowDeleteIconForLinkId(personalLink.id)
|
|
// }
|
|
|
|
const handleRowDoubleClick = () => {
|
|
setEditId(personalLink.id)
|
|
}
|
|
|
|
const handleDelete = async (e: React.MouseEvent, personalLink: PersonalLink) => {
|
|
e.stopPropagation()
|
|
|
|
const result = await confirm({
|
|
title: `Delete "${personalLink.title}"?`,
|
|
description: "This action cannot be undone.",
|
|
alertDialogTitle: {
|
|
className: "text-base"
|
|
},
|
|
customActions: (onConfirm, onCancel) => (
|
|
<>
|
|
<Button variant="outline" onClick={onCancel}>
|
|
Cancel
|
|
</Button>
|
|
<Button variant="destructive" onClick={onConfirm}>
|
|
Delete
|
|
</Button>
|
|
</>
|
|
)
|
|
})
|
|
|
|
if (result) {
|
|
onDelete?.(personalLink)
|
|
}
|
|
}
|
|
|
|
const selectedLearningState = LEARNING_STATES.find(ls => ls.value === personalLink.learningState)
|
|
|
|
if (isEditing) {
|
|
return (
|
|
<LinkForm onClose={handleOnClose} personalLink={personalLink} onSuccess={handleSuccess} onFail={handleOnFail} />
|
|
)
|
|
}
|
|
|
|
return (
|
|
<li
|
|
ref={refCallback}
|
|
style={style as React.CSSProperties}
|
|
{...attributes}
|
|
{...listeners}
|
|
tabIndex={0}
|
|
onFocus={() => setFocusedId(personalLink.id)}
|
|
onBlur={() => {
|
|
setFocusedId(null)
|
|
}}
|
|
onKeyDown={handleKeyDown}
|
|
className={cn("hover:bg-muted/50 relative flex h-14 cursor-default items-center outline-none xl:h-11", {
|
|
"bg-muted/50": isFocused
|
|
})}
|
|
// onClick={handleRowClick}
|
|
onDoubleClick={handleRowDoubleClick}
|
|
>
|
|
<div className="flex grow justify-between gap-x-6 px-6 max-lg:px-4">
|
|
<div className="flex min-w-0 items-center gap-x-4">
|
|
{/* <Checkbox
|
|
checked={personalLink.completed}
|
|
onClick={e => e.stopPropagation()}
|
|
onCheckedChange={() => {
|
|
personalLink.completed = !personalLink.completed
|
|
}}
|
|
className="border-muted-foreground border"
|
|
/> */}
|
|
<Popover>
|
|
<PopoverTrigger asChild>
|
|
<Button size="sm" type="button" role="combobox" variant="secondary" className="size-7 shrink-0 p-0">
|
|
{selectedLearningState?.icon && (
|
|
<LaIcon name={selectedLearningState.icon} className={cn(selectedLearningState.className)} />
|
|
)}
|
|
</Button>
|
|
</PopoverTrigger>
|
|
<PopoverContent
|
|
className="w-52 rounded-lg p-0"
|
|
side="bottom"
|
|
align="start"
|
|
onCloseAutoFocus={e => e.preventDefault()}
|
|
>
|
|
<Command>
|
|
<CommandInput placeholder="Search state..." className="h-9" />
|
|
<CommandList>
|
|
<ScrollArea>
|
|
<CommandGroup>
|
|
{LEARNING_STATES.map(ls => (
|
|
<CommandItem
|
|
key={ls.value}
|
|
value={ls.value}
|
|
onSelect={value => {
|
|
personalLink.learningState = value as "wantToLearn" | "learning" | "learned" | undefined
|
|
}}
|
|
>
|
|
<LaIcon name={ls.icon} className={cn("mr-2", ls.className)} />
|
|
<span className={ls.className}>{ls.label}</span>
|
|
<LaIcon
|
|
name="Check"
|
|
size={16}
|
|
className={cn(
|
|
"absolute right-3",
|
|
ls.value === personalLink.learningState ? "text-primary" : "text-transparent"
|
|
)}
|
|
/>
|
|
</CommandItem>
|
|
))}
|
|
</CommandGroup>
|
|
</ScrollArea>
|
|
</CommandList>
|
|
</Command>
|
|
</PopoverContent>
|
|
</Popover>
|
|
{personalLink.icon && (
|
|
<Image
|
|
src={personalLink.icon}
|
|
alt={personalLink.title}
|
|
className="size-5 rounded-full"
|
|
width={16}
|
|
height={16}
|
|
/>
|
|
)}
|
|
<div className="w-full min-w-0 flex-auto">
|
|
<div className="gap-x-2 space-y-0.5 xl:flex xl:flex-row">
|
|
<p className="text-primary hover:text-primary line-clamp-1 text-sm font-medium xl:truncate">
|
|
{personalLink.title}
|
|
</p>
|
|
{personalLink.url && (
|
|
<div className="group flex items-center gap-x-1">
|
|
<LinkIcon
|
|
aria-hidden="true"
|
|
className="text-muted-foreground group-hover:text-primary size-3 flex-none"
|
|
/>
|
|
<Link
|
|
href={personalLink.url}
|
|
passHref
|
|
prefetch={false}
|
|
target="_blank"
|
|
onClick={e => {
|
|
e.stopPropagation()
|
|
}}
|
|
className="text-muted-foreground hover:text-primary text-xs"
|
|
>
|
|
<span className="xl:truncate">{personalLink.url}</span>
|
|
</Link>
|
|
</div>
|
|
)}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="flex shrink-0 items-center gap-x-4">
|
|
{personalLink.topic && <Badge variant="secondary">{personalLink.topic.prettyName}</Badge>}
|
|
{showDeleteIconForLinkId === personalLink.id && (
|
|
<Button
|
|
size="icon"
|
|
className="text-destructive h-auto w-auto bg-transparent hover:bg-transparent hover:text-red-500"
|
|
onClick={e => {
|
|
e.stopPropagation()
|
|
handleDelete(e, personalLink)
|
|
}}
|
|
>
|
|
<Trash2Icon size={16} />
|
|
</Button>
|
|
)}
|
|
</div>
|
|
</div>
|
|
</li>
|
|
)
|
|
}
|