blob: f7eb8f8ffadf5b1de0e859dc799cedb114458641 (
plain) (
blame)
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
|
"use client"
import { useState } from "react"
interface HighlightSelectionToolbarProperties {
selectionRect: DOMRect
containerRect: DOMRect
onHighlight: (note: string | null) => void
onShare: () => void
onDismiss: () => void
}
export function HighlightSelectionToolbar({
selectionRect,
onHighlight,
onShare,
onDismiss,
}: HighlightSelectionToolbarProperties) {
const [showNoteInput, setShowNoteInput] = useState(false)
const [noteText, setNoteText] = useState("")
const toolbarLeft = selectionRect.left + selectionRect.width / 2
const toolbarTop = selectionRect.top - 8
function handleHighlightClick() {
if (showNoteInput) {
onHighlight(noteText.trim() || null)
} else {
onHighlight(null)
}
}
return (
<div
className="fixed z-[100] -translate-x-1/2 -translate-y-full"
style={{ left: toolbarLeft, top: toolbarTop }}
>
<div className="border border-border bg-background-secondary p-1">
{showNoteInput ? (
<div className="flex items-center gap-1">
<input
type="text"
value={noteText}
onChange={(event) => setNoteText(event.target.value)}
onKeyDown={(event) => {
if (event.key === "Enter") handleHighlightClick()
if (event.key === "Escape") onDismiss()
}}
placeholder="add a note..."
className="border border-border bg-background-primary px-2 py-1 text-xs text-text-primary outline-none"
autoFocus
/>
<button
type="button"
onClick={handleHighlightClick}
className="px-2 py-1 text-xs text-text-secondary transition-colors hover:bg-background-tertiary hover:text-text-primary"
>
save
</button>
</div>
) : (
<div className="flex items-center gap-1">
<button
type="button"
onClick={handleHighlightClick}
className="px-2 py-1 text-xs text-text-secondary transition-colors hover:bg-background-tertiary hover:text-text-primary"
>
highlight
</button>
<button
type="button"
onClick={() => setShowNoteInput(true)}
className="px-2 py-1 text-xs text-text-dim transition-colors hover:bg-background-tertiary hover:text-text-secondary"
>
+ note
</button>
<button
type="button"
onClick={onShare}
className="px-2 py-1 text-xs text-text-dim transition-colors hover:bg-background-tertiary hover:text-text-secondary"
>
share
</button>
</div>
)}
</div>
</div>
)
}
|