-
-
Notifications
You must be signed in to change notification settings - Fork 269
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feature(web): Move bookmark imports into settings
- Loading branch information
1 parent
6b5c597
commit 52024ab
Showing
4 changed files
with
165 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
108 changes: 108 additions & 0 deletions
108
apps/web/components/dashboard/settings/ImportExport.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,108 @@ | ||
"use client"; | ||
|
||
import assert from "assert"; | ||
import { useRouter } from "next/navigation"; | ||
import FilePickerButton from "@/components/ui/file-picker-button"; | ||
import { toast } from "@/components/ui/use-toast"; | ||
import { parseNetscapeBookmarkFile } from "@/lib/netscapeBookmarkParser"; | ||
import { useMutation } from "@tanstack/react-query"; | ||
import { Upload } from "lucide-react"; | ||
|
||
import { useCreateBookmarkWithPostHook } from "@hoarder/shared-react/hooks/bookmarks"; | ||
import { | ||
useAddBookmarkToList, | ||
useCreateBookmarkList, | ||
} from "@hoarder/shared-react/hooks/lists"; | ||
import { BookmarkTypes } from "@hoarder/shared/types/bookmarks"; | ||
|
||
export function Import() { | ||
const router = useRouter(); | ||
const { mutateAsync: createBookmark } = useCreateBookmarkWithPostHook(); | ||
|
||
const { mutateAsync: createList } = useCreateBookmarkList(); | ||
const { mutateAsync: addToList } = useAddBookmarkToList(); | ||
|
||
const { mutateAsync: runUploadBookmarkFile } = useMutation({ | ||
mutationFn: async (file: File) => { | ||
return await parseNetscapeBookmarkFile(file); | ||
}, | ||
onSuccess: async (resp) => { | ||
const results = await Promise.allSettled( | ||
resp.map((url) => | ||
createBookmark({ type: BookmarkTypes.LINK, url: url.toString() }), | ||
), | ||
); | ||
|
||
const failed = results.filter((r) => r.status == "rejected"); | ||
const successes = results.filter( | ||
(r) => r.status == "fulfilled" && !r.value.alreadyExists, | ||
); | ||
const alreadyExisted = results.filter( | ||
(r) => r.status == "fulfilled" && r.value.alreadyExists, | ||
); | ||
|
||
if (successes.length > 0 || alreadyExisted.length > 0) { | ||
toast({ | ||
description: `Imported ${successes.length} bookmarks and skipped ${alreadyExisted.length} bookmarks that already existed`, | ||
variant: "default", | ||
}); | ||
} | ||
|
||
if (failed.length > 0) { | ||
toast({ | ||
description: `Failed to import ${failed.length} bookmarks`, | ||
variant: "destructive", | ||
}); | ||
} | ||
|
||
const importList = await createList({ | ||
name: `Imported Bookmarks`, | ||
icon: "⬆️", | ||
}); | ||
|
||
if (successes.length > 0) { | ||
await Promise.allSettled( | ||
successes.map((r) => { | ||
assert(r.status == "fulfilled"); | ||
addToList({ bookmarkId: r.value.id, listId: importList.id }); | ||
}), | ||
); | ||
} | ||
|
||
router.push(`/dashboard/lists/${importList.id}`); | ||
}, | ||
onError: (error) => { | ||
toast({ | ||
description: error.message, | ||
variant: "destructive", | ||
}); | ||
}, | ||
}); | ||
|
||
return ( | ||
<div> | ||
<FilePickerButton | ||
accept=".html" | ||
multiple={false} | ||
className="flex items-center gap-2" | ||
onFileSelect={runUploadBookmarkFile} | ||
> | ||
<Upload /> | ||
<p>Import Bookmarks from HTML file</p> | ||
</FilePickerButton> | ||
</div> | ||
); | ||
} | ||
|
||
export default function ImportExport() { | ||
return ( | ||
<div> | ||
<div className="flex items-center justify-between"> | ||
<div className="mb-4 text-lg font-medium">Import Bookmarks</div> | ||
</div> | ||
<div className="mt-2"> | ||
<Import /> | ||
</div> | ||
</div> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
import React, { ChangeEvent, useRef } from "react"; | ||
|
||
import { Button, ButtonProps } from "./button"; | ||
|
||
interface FilePickerButtonProps extends Omit<ButtonProps, "onClick"> { | ||
onFileSelect?: (file: File) => void; | ||
accept?: string; | ||
multiple?: boolean; | ||
} | ||
|
||
const FilePickerButton: React.FC<FilePickerButtonProps> = ({ | ||
onFileSelect, | ||
accept, | ||
multiple = false, | ||
...buttonProps | ||
}) => { | ||
const fileInputRef = useRef<HTMLInputElement>(null); | ||
|
||
const handleButtonClick = () => { | ||
fileInputRef.current?.click(); | ||
}; | ||
|
||
const handleFileChange = (event: ChangeEvent<HTMLInputElement>) => { | ||
const files = event.target.files; | ||
if (files && files.length > 0) { | ||
if (onFileSelect) { | ||
if (multiple) { | ||
Array.from(files).forEach(onFileSelect); | ||
} else { | ||
onFileSelect(files[0]); | ||
} | ||
} | ||
} | ||
}; | ||
|
||
return ( | ||
<div> | ||
<Button onClick={handleButtonClick} {...buttonProps} /> | ||
<input | ||
type="file" | ||
ref={fileInputRef} | ||
onChange={handleFileChange} | ||
className="hidden" | ||
accept={accept} | ||
multiple={multiple} | ||
/> | ||
</div> | ||
); | ||
}; | ||
|
||
export default FilePickerButton; |