-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
269 lines (225 loc) · 6.25 KB
/
index.js
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
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
// Constants
const workerUrl = 'https://worker.naturallyinsane13.workers.dev/'
const feedbackDisplayTime = 3000
// Element Selectors
const textInputArea = document.getElementById('text-input-area')
const summaryLengthContainer = document.getElementById('summary-length-container')
const summaryLengthInput = document.getElementById('summary-length-input')
const summaryLengthText = document.getElementById('summary-length-text')
const summarizeButton = document.getElementById('summarize-button')
const summaryContent = document.getElementById('summary-content')
const summaryOutputArea = document.getElementById('summary-output-area')
const copyButton = document.getElementById('copy-button')
const clearButton = document.getElementById('clear-button')
const loadingSection = document.getElementById('loading-section')
const errorSection = document.getElementById('error-section')
const errorMessage = document.getElementById('error-message')
const dismissErrorButton = document.getElementById('dismiss-error-button')
// Button Event Listeners
summarizeButton.addEventListener('click', summarize)
copyButton.addEventListener('click', copy)
clearButton.addEventListener('click', clear)
dismissErrorButton.addEventListener('click', dismissError)
// Other Event Listeners
document.addEventListener('DOMContentLoaded', focusOnTextInputArea)
textInputArea.addEventListener('input', scrollTextAreaToTopAndEnableControls)
summaryLengthInput.addEventListener('input', updateSummaryLengthText)
// Button Event Handlers
async function summarize() {
try {
const summaryLength = summaryLengthInput.value
const text = textInputArea.value
const messages = [
{
'role': 'user',
'content': [
{
'type': 'text',
'text': `Summarize this text. Limit the summary length to ${summaryLength} words: ${text}`
}
]
}
]
const options = {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify(messages)
}
startLoading()
const response = await fetch(workerUrl, options)
endLoading()
const summary = await response.json()
if (!response.ok) {
throw new Error(summary.error)
}
summaryOutputArea.value = summary
enableSummayOutputArea()
enableCopyButton()
focusOnCopyButton()
} catch (error) {
handleError(error)
}
}
async function copy() {
try {
await navigator.clipboard.writeText(summaryOutputArea.value)
showCopyFeedback('😄 Copied', 'success')
} catch (err) {
showCopyFeedback('😔 Failed', 'failure')
}
}
function clear() {
clearTextInputArea()
clearSummaryOutputArea()
enableTextInputArea()
focusOnTextInputArea()
disableAllControls()
}
function dismissError() {
hideErrorSection()
displaySummaryContent()
clear()
}
// Other Event Handlers
function focusOnTextInputArea() {
textInputArea.focus()
}
function scrollTextAreaToTopAndEnableControls() {
scrollTextAreaToTop()
enableControls()
}
function updateSummaryLengthText() {
summaryLengthText.textContent = `Summary Length: ${summaryLengthInput.value} Words`
}
// Helper Functions
function scrollTextAreaToTop() {
setTimeout(() => {
textInputArea.scrollTop = 0
}, 0)
}
function enableControls() {
if (textInputArea.value.trim() !== '') {
enableSummaryLengthContainer()
enableSummaryLengthInput()
enableSummarizeButton()
enableClearButton()
} else {
disableAllControls()
}
}
function disableAllControls() {
disableSummaryLengthContainer()
disableSummaryLengthInput()
disableSummarizeButton()
disableSummaryOutputArea()
disbaleClearButton()
disableCopyButton()
}
function startLoading() {
hideSummaryContent()
displayLoadingSection()
}
function endLoading() {
hideLoadingSection()
displaySummaryContent()
}
function handleError(error) {
endLoading()
disableTextInputArea()
disableAllControls()
hideSummaryContent()
setErrorMessageText(`There was an error processing the text: ${error.message}`)
displayErrorSection()
}
function showCopyFeedback(message, status) {
const feedbackClass = status === 'success' ? 'copied' : 'failed'
addClassToCopyButton(feedbackClass)
setCopyButtonText(message)
setTimeout(() => {
removeClassFromCopyButton(feedbackClass)
setCopyButtonText('Copy')
}, feedbackDisplayTime)
}
function focusOnCopyButton() {
copyButton.focus()
}
function displaySummaryContent() {
summaryContent.style.display = 'flex'
}
function displayLoadingSection() {
loadingSection.style.display = 'flex'
}
function displayErrorSection() {
errorSection.style.display = 'flex'
}
function hideLoadingSection() {
loadingSection.style.display = 'none'
}
function hideErrorSection() {
errorSection.style.display = 'none'
}
function hideSummaryContent() {
summaryContent.style.display = 'none'
}
function enableTextInputArea() {
textInputArea.disabled = false
}
function enableSummaryLengthContainer() {
summaryLengthContainer.classList.remove('disabled')
}
function enableClearButton() {
clearButton.disabled = false
}
function enableSummarizeButton() {
summarizeButton.disabled = false
}
function enableSummaryLengthInput() {
summaryLengthInput.disabled = false
}
function enableCopyButton() {
copyButton.disabled = false
}
function enableSummayOutputArea() {
summaryOutputArea.disabled = false
}
function disableCopyButton() {
copyButton.disabled = true
}
function disbaleClearButton() {
clearButton.disabled = true
}
function disableSummaryOutputArea() {
summaryOutputArea.disabled = true
}
function disableSummarizeButton() {
summarizeButton.disabled = true
}
function disableSummaryLengthInput() {
summaryLengthInput.disabled = true
}
function disableSummaryLengthContainer() {
summaryLengthContainer.classList.add('disabled')
}
function disableTextInputArea() {
textInputArea.disabled = true
}
function setErrorMessageText(text) {
errorMessage.textContent = text
}
function setCopyButtonText(text) {
copyButton.textContent = text
}
function clearTextInputArea() {
textInputArea.value = ''
}
function clearSummaryOutputArea() {
summaryOutputArea.value = ''
}
function removeClassFromCopyButton(className) {
copyButton.classList.remove(className)
}
function addClassToCopyButton(className) {
copyButton.classList.add(className)
}