-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.tsx
231 lines (215 loc) · 5.71 KB
/
popup.tsx
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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
import { useEffect, useState } from "react"
// @ts-ignore
import icon from "~assets/icon.png"
const OpenAIKeyConfig = ({ openAIKey, setOpenAIKey }) => {
const [isVisible, setIsVisible] = useState(false)
const handleKeyChange = (e: React.ChangeEvent<HTMLInputElement>) => {
const newKey = e.target.value
setOpenAIKey(newKey)
chrome.storage.local.set({ openAIKey: newKey })
}
const clearApiKey = () => {
setOpenAIKey("")
chrome.storage.local.remove("openAIKey")
}
return (
<>
<label
htmlFor="apiKey"
style={{ display: "block", fontSize: 16, lineHeight: 1.5 }}>
OpenAI API Key:
</label>
<div style={{ display: "flex", gap: 8 }}>
<input
id="apiKey"
type={isVisible ? "text" : "password"}
value={openAIKey}
onChange={handleKeyChange}
style={{
width: "100%",
borderRadius: 4,
padding: 4,
border: "1px solid #ccc",
outline: "none",
fontSize: 14,
fontFamily: "monospace",
boxSizing: "border-box",
height: 32
}}
placeholder="Enter your OpenAI API key"
/>
<button
onClick={() => setIsVisible(!isVisible)}
style={{
padding: "4px 8px",
borderRadius: 4,
border: "1px solid #ccc"
}}>
{isVisible ? "Hide" : "Show"}
</button>
</div>
<button
onClick={clearApiKey}
style={{
padding: "4px 8px",
borderRadius: 4,
border: "1px solid #ccc",
backgroundColor: "#fff",
cursor: "pointer"
}}>
Clear API Key
</button>
<div
className="warning"
style={{
backgroundColor: "#fff3cd",
color: "#856404",
padding: 8,
borderRadius: 4,
fontSize: 12
}}>
Note: Your API key is stored locally on your device. Never share your
API key with others.
</div>
</>
)
}
const SummaryDisplay = ({ isLoading, summary }) => {
const LoadingSpinner = () => (
<div
style={{
padding: 16,
backgroundColor: "#f0f0f0",
borderRadius: 4,
border: "1px solid #ddd",
textAlign: "center"
}}>
<div
style={{
display: "inline-block",
width: 20,
height: 20,
border: "2px solid #ccc",
borderTopColor: "#333",
borderRadius: "50%",
animation: "spin 1s linear infinite"
}}
/>
<style>{`
@keyframes spin {
to { transform: rotate(360deg); }
}
`}</style>
<p>Generating summary...</p>
</div>
)
if (isLoading) {
return <LoadingSpinner />
}
if (summary) {
return (
<div
style={{
padding: 16,
backgroundColor: "#f0f0f0",
borderRadius: 4,
border: "1px solid #ddd"
}}>
<div
style={{
display: "flex",
justifyContent: "space-between",
alignItems: "center"
}}>
<h3>Summary</h3>
<button
onClick={() => {
chrome.storage.local.remove("currentSummary")
}}
style={{
padding: "4px 8px",
borderRadius: 4,
border: "1px solid #ccc",
backgroundColor: "#fff",
cursor: "pointer"
}}>
Clear Summary
</button>
</div>
<p style={{ whiteSpace: "pre-wrap", fontSize: 16, lineHeight: 1.5 }}>
{summary}
</p>
</div>
)
}
return null
}
function IndexPopup() {
const [openAIKey, setOpenAIKey] = useState("")
const [summary, setSummary] = useState("")
const [isLoading, setIsLoading] = useState(false)
useEffect(() => {
// Load saved API key and states on mount
chrome.storage.local.get(
["openAIKey", "currentSummary", "isLoading"],
(result) => {
if (result.openAIKey) {
setOpenAIKey(result.openAIKey)
}
if (result.currentSummary) {
setSummary(result.currentSummary)
}
setIsLoading(!!result.isLoading)
}
)
// Listen for storage changes
const handleStorageChange = (changes, namespace) => {
if (namespace === "local") {
if (changes.currentSummary) {
setSummary(changes.currentSummary.newValue)
}
if (changes.isLoading) {
setIsLoading(changes.isLoading.newValue)
}
}
}
chrome.storage.onChanged.addListener(handleStorageChange)
return () => {
chrome.storage.onChanged.removeListener(handleStorageChange)
}
}, [])
return (
<>
<div
style={{
backgroundColor: "#f9f9f9",
padding: 16,
borderRadius: 4,
fontSize: 18,
lineHeight: 1.5
}}>
<div style={{ display: "flex", alignItems: "center", gap: 8 }}>
<img
src={icon}
alt="The Gist of It"
width={32}
height={32}
style={{ borderRadius: 4 }}
/>
<h2>The Gist of It</h2>
</div>
<p>
Put your OpenAI API key below, then right click on any text and use
"Get the Gist of It" to summarize it.
</p>
</div>
<div style={{ padding: 16, minWidth: 420 }}>
<div style={{ display: "flex", flexDirection: "column", gap: 16 }}>
<SummaryDisplay isLoading={isLoading} summary={summary} />
<OpenAIKeyConfig openAIKey={openAIKey} setOpenAIKey={setOpenAIKey} />
</div>
</div>
</>
)
}
export default IndexPopup