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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
|
import type { SubmitErrorHandler, SubmitHandler } from "react-hook-form";
import { useEffect, useImperativeHandle, useRef } from "react";
import Link from "next/link";
import { ActionButton } from "@/components/ui/action-button";
import { Form, FormControl, FormItem } from "@/components/ui/form";
import InfoTooltip from "@/components/ui/info-tooltip";
import { Separator } from "@/components/ui/separator";
import { Textarea } from "@/components/ui/textarea";
import { toast } from "@/components/ui/use-toast";
import { useClientConfig } from "@/lib/clientConfig";
import { useBookmarkLayoutSwitch } from "@/lib/userLocalSettings/bookmarksLayout";
import { cn } from "@/lib/utils";
import { zodResolver } from "@hookform/resolvers/zod";
import { ExternalLink } from "lucide-react";
import { useForm } from "react-hook-form";
import { z } from "zod";
import { useCreateBookmarkWithPostHook } from "@hoarder/shared-react/hooks/bookmarks";
function useFocusOnKeyPress(inputRef: React.RefObject<HTMLTextAreaElement>) {
useEffect(() => {
function handleKeyPress(e: KeyboardEvent) {
if (!inputRef.current) {
return;
}
if ((e.metaKey || e.ctrlKey) && e.code === "KeyE") {
inputRef.current.focus();
}
}
document.addEventListener("keydown", handleKeyPress);
return () => {
document.removeEventListener("keydown", handleKeyPress);
};
}, [inputRef]);
}
export default function EditorCard({ className }: { className?: string }) {
const inputRef = useRef<HTMLTextAreaElement>(null);
const demoMode = !!useClientConfig().demoMode;
const formSchema = z.object({
text: z.string(),
});
const form = useForm<z.infer<typeof formSchema>>({
resolver: zodResolver(formSchema),
defaultValues: {
text: "",
},
});
const { ref, ...textFieldProps } = form.register("text");
useImperativeHandle(ref, () => inputRef.current);
useFocusOnKeyPress(inputRef);
const { mutate, isPending } = useCreateBookmarkWithPostHook({
onSuccess: (resp) => {
if (resp.alreadyExists) {
toast({
description: (
<div className="flex items-center gap-1">
Bookmark already exists.
<Link
className="flex underline-offset-4 hover:underline"
href={`/dashboard/preview/${resp.id}`}
>
Open <ExternalLink className="ml-1 size-4" />
</Link>
</div>
),
variant: "default",
});
}
form.reset();
},
onError: () => {
toast({ description: "Something went wrong", variant: "destructive" });
},
});
const onSubmit: SubmitHandler<z.infer<typeof formSchema>> = (data) => {
const text = data.text.trim();
try {
const url = new URL(text);
if (url.protocol != "http:" && url.protocol != "https:") {
throw new Error("Invalid URL");
}
mutate({ type: "link", url: text });
} catch (e) {
// Not a URL
mutate({ type: "text", text });
}
};
const onError: SubmitErrorHandler<z.infer<typeof formSchema>> = (errors) => {
toast({
description: Object.values(errors)
.map((v) => v.message)
.join("\n"),
variant: "destructive",
});
};
const cardHeight = useBookmarkLayoutSwitch({
grid: "h-96",
masonry: "h-96",
list: undefined,
});
return (
<Form {...form}>
<form
className={cn(
className,
"flex flex-col gap-2 rounded-xl bg-card p-4",
cardHeight,
)}
onSubmit={form.handleSubmit(onSubmit, onError)}
>
<div className="flex justify-between">
<p className="text-sm">NEW ITEM</p>
<InfoTooltip size={15}>
<p className="text-center">
You can quickly focus on this field by pressing ⌘ + E
</p>
</InfoTooltip>
</div>
<Separator />
<FormItem className="flex-1">
<FormControl>
<Textarea
ref={inputRef}
disabled={isPending}
className="h-full w-full resize-none border-none text-lg focus-visible:ring-0"
placeholder={
"Paste a link, write a note or drag and drop an image in here ..."
}
onKeyDown={(e) => {
if (demoMode) {
return;
}
if (e.key === "Enter" && (e.metaKey || e.ctrlKey)) {
form.handleSubmit(onSubmit, onError)();
}
}}
{...textFieldProps}
/>
</FormControl>
</FormItem>
<ActionButton loading={isPending} type="submit" variant="default">
{form.formState.dirtyFields.text
? demoMode
? "Submissions are disabled"
: "Press ⌘ + Enter to Save"
: "Save"}
</ActionButton>
</form>
</Form>
);
}
|