From 71a474268e6381f8630f6d906471c830342dc50f Mon Sep 17 00:00:00 2001 From: omnitrix Date: Wed, 16 Apr 2025 16:18:04 +0200 Subject: feat(web): Add support for merging lists (#1231) * feat: Support list merging * some fixes * move @hoarder to @karakeep --------- Co-authored-by: Mohamed Bassem --- apps/web/components/dashboard/lists/ListOptions.tsx | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) (limited to 'apps/web/components/dashboard/lists/ListOptions.tsx') diff --git a/apps/web/components/dashboard/lists/ListOptions.tsx b/apps/web/components/dashboard/lists/ListOptions.tsx index 6b900265..9a979686 100644 --- a/apps/web/components/dashboard/lists/ListOptions.tsx +++ b/apps/web/components/dashboard/lists/ListOptions.tsx @@ -6,12 +6,13 @@ import { DropdownMenuTrigger, } from "@/components/ui/dropdown-menu"; import { useTranslation } from "@/lib/i18n/client"; -import { Pencil, Plus, Trash2 } from "lucide-react"; +import { FolderInput, Pencil, Plus, Trash2 } from "lucide-react"; import { ZBookmarkList } from "@karakeep/shared/types/lists"; import { EditListModal } from "../lists/EditListModal"; import DeleteListConfirmationDialog from "./DeleteListConfirmationDialog"; +import { MergeListModal } from "./MergeListModal"; export function ListOptions({ list, @@ -28,6 +29,7 @@ export function ListOptions({ const [deleteListDialogOpen, setDeleteListDialogOpen] = useState(false); const [newNestedListModalOpen, setNewNestedListModalOpen] = useState(false); + const [mergeListModalOpen, setMergeListModalOpen] = useState(false); const [editModalOpen, setEditModalOpen] = useState(false); return ( @@ -44,6 +46,11 @@ export function ListOptions({ setOpen={setEditModalOpen} list={list} /> + {t("lists.new_nested_list")} + setMergeListModalOpen(true)} + > + + {t("lists.merge_list")} + setDeleteListDialogOpen(true)} -- cgit v1.2.3-70-g09d2