This repository was archived by the owner on Mar 5, 2026. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathapp.js
More file actions
705 lines (607 loc) · 24.5 KB
/
Copy pathapp.js
File metadata and controls
705 lines (607 loc) · 24.5 KB
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
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
document.addEventListener('DOMContentLoaded', () => {
// DOM Elements
const modeButtons = document.querySelectorAll('.mode-button');
const modeOptions = document.querySelectorAll('.mode-options');
const submitButton = document.getElementById('submit-button');
const resultsPanel = document.getElementById('results-panel');
const tabs = document.querySelectorAll('.tab');
const tabContents = document.querySelectorAll('.tab-content');
const loadingIndicator = document.getElementById('loading');
const errorMessage = document.getElementById('error-message');
const crawlStatus = document.getElementById('crawl-status');
const statusText = document.getElementById('status-text');
const progressText = document.getElementById('progress-text');
const progressBar = document.getElementById('progress-bar');
const apiUrlDisplay = document.getElementById('api-url');
// Current mode
let currentMode = 'scrape';
let crawlJobId = null;
let crawlCheckInterval = null;
// Fetch API configuration from server
async function fetchApiConfig() {
try {
const response = await fetch('/config');
if (response.ok) {
const config = await response.json();
if (config.apiEndpoint) {
apiUrlDisplay.textContent = config.apiEndpoint;
}
}
} catch (error) {
console.error('Failed to fetch API configuration:', error);
}
}
// Fetch API configuration on page load
fetchApiConfig();
// Set focus to URL input field on page load
document.getElementById('url').focus();
// Initialize marked.js
marked.use({
renderer: {
code(code, language) {
const validLanguage = hljs.getLanguage(language) ? language : 'plaintext';
return hljs.highlight(validLanguage, code).value;
}
}
});
marked.setOptions({
renderer: new marked.Renderer(),
pedantic: false,
gfm: true,
breaks: true,
sanitize: false,
smartypants: false,
xhtml: false
});
// Event Listeners
// Mode switching
modeButtons.forEach(button => {
button.addEventListener('click', () => {
const mode = button.getAttribute('data-mode');
switchMode(mode);
});
});
// Tab switching
tabs.forEach(tab => {
tab.addEventListener('click', () => {
const tabName = tab.getAttribute('data-tab');
switchTab(tabName);
});
});
// Form submission
submitButton.addEventListener('click', handleSubmit);
// Add Enter key support for URL input
document.getElementById('url').addEventListener('keydown', (event) => {
if (event.key === 'Enter') {
event.preventDefault();
handleSubmit();
}
});
// Functions
// Switch between modes (scrape, crawl, extract)
function switchMode(mode) {
currentMode = mode;
// Update active button
modeButtons.forEach(button => {
if (button.getAttribute('data-mode') === mode) {
button.classList.add('active');
} else {
button.classList.remove('active');
}
});
// Show relevant options
modeOptions.forEach(option => {
if (option.classList.contains(`${mode}-options`)) {
option.classList.remove('hidden');
} else {
option.classList.add('hidden');
}
});
// Reset results
resetResults();
}
// Switch between result tabs
function switchTab(tabName) {
tabs.forEach(tab => {
if (tab.getAttribute('data-tab') === tabName) {
tab.classList.add('active');
} else {
tab.classList.remove('active');
}
});
tabContents.forEach(content => {
if (content.id === `${tabName}-tab`) {
content.classList.add('active');
} else {
content.classList.remove('active');
}
});
}
// Reset results panel
function resetResults() {
document.getElementById('markdown-preview').innerHTML = '';
document.getElementById('json-preview').innerHTML = '';
document.getElementById('screenshot-preview').innerHTML = '';
errorMessage.classList.add('hidden');
errorMessage.textContent = '';
crawlStatus.classList.add('hidden');
resultsPanel.classList.add('hidden');
// Clear any ongoing crawl checks
if (crawlCheckInterval) {
clearInterval(crawlCheckInterval);
crawlCheckInterval = null;
}
}
// Handle form submission
async function handleSubmit() {
const url = document.getElementById('url').value.trim();
if (!url) {
showError('Please enter a URL');
return;
}
resetResults();
showLoading(true);
resultsPanel.classList.remove('hidden');
try {
switch (currentMode) {
case 'scrape':
await handleScrape(url);
break;
case 'crawl':
await handleCrawl(url);
break;
case 'extract':
await handleExtract(url);
break;
}
} catch (error) {
showError(`Error: ${error.message || 'Unknown error occurred'}`);
} finally {
showLoading(false);
}
}
// Handle scrape mode
async function handleScrape(url) {
// Ensure URL has protocol and is properly formatted
if (!url.startsWith('http://') && !url.startsWith('https://')) {
url = 'https://' + url;
}
// Validate URL format
try {
new URL(url);
} catch (e) {
throw new Error('Invalid URL format. Please enter a valid URL.');
}
// Get selected formats
const formats = Array.from(document.querySelectorAll('input[name="format"]:checked'))
.map(checkbox => checkbox.value);
// Get page options
const onlyMainContent = document.querySelector('input[name="onlyMainContent"]:checked') !== null;
const removeBase64Images = document.querySelector('input[name="removeBase64Images"]:checked') !== null;
const waitFor = document.getElementById('waitFor').value || 2000;
const timeout = document.getElementById('timeout').value || 30000;
// Build request payload
const payload = {
url,
formats,
onlyMainContent,
removeBase64Images,
waitFor: parseInt(waitFor),
timeout: parseInt(timeout)
};
console.log('Sending request to API:', payload);
try {
// Use our proxy server to avoid CORS issues
const apiUrl = `/api/v1/scrape`;
console.log('Using proxy for API URL:', apiUrl);
const response = await fetch(apiUrl, {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify(payload)
});
console.log('API Response status:', response.status);
const data = await response.json();
console.log('API Response data:', data);
if (!response.ok) {
// Check if this is a screenshot-related error
if (formats.includes('screenshot') && data.error &&
(data.error.includes('All scraping engines failed') ||
data.error.includes('Internal server error'))) {
throw new Error('Screenshot functionality is not supported by this Firecrawl API instance. Please try without screenshot format.');
} else {
throw new Error(data.error || `API returned status ${response.status}`);
}
}
displayResults(data);
} catch (error) {
console.error('API request error:', error);
throw error;
}
}
// Handle crawl mode
async function handleCrawl(url) {
// Ensure URL has protocol and is properly formatted
if (!url.startsWith('http://') && !url.startsWith('https://')) {
url = 'https://' + url;
}
// Validate URL format
try {
new URL(url);
} catch (e) {
throw new Error('Invalid URL format. Please enter a valid URL.');
}
// Get crawl options
const maxDepth = document.getElementById('maxDepth').value || 2;
const limit = document.getElementById('limit').value || 10;
const ignoreSitemap = document.querySelector('input[name="ignoreSitemap"]:checked') !== null;
const allowExternalLinks = document.querySelector('input[name="allowExternalLinks"]:checked') !== null;
// Get formats
const formats = Array.from(document.querySelectorAll('input[name="crawlFormat"]:checked'))
.map(checkbox => checkbox.value);
// Get include/exclude paths
const includePaths = document.getElementById('includePaths').value
? document.getElementById('includePaths').value.split(',').map(p => p.trim())
: [];
const excludePaths = document.getElementById('excludePaths').value
? document.getElementById('excludePaths').value.split(',').map(p => p.trim())
: [];
// Build request payload
const payload = {
url,
maxDepth: parseInt(maxDepth),
limit: parseInt(limit),
ignoreSitemap,
allowExternalLinks,
scrapeOptions: {
formats,
onlyMainContent: true
}
};
if (includePaths.length > 0) {
payload.includePaths = includePaths;
}
if (excludePaths.length > 0) {
payload.excludePaths = excludePaths;
}
console.log('Sending crawl request to API:', payload);
try {
// Use our proxy server to avoid CORS issues
const apiUrl = `/api/v1/crawl`;
console.log('Using proxy for API URL:', apiUrl);
const response = await fetch(apiUrl, {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify(payload)
});
console.log('API Response status:', response.status);
const data = await response.json();
console.log('API Response data:', data);
if (!response.ok) {
// Check if this is a screenshot-related error for crawl mode
if (formats.includes('screenshot') && data.error &&
(data.error.includes('All scraping engines failed') ||
data.error.includes('Internal server error'))) {
throw new Error('Screenshot functionality is not supported by this Firecrawl API instance. Please try without screenshot format.');
} else {
throw new Error(data.error || `API returned status ${response.status}`);
}
}
// Show crawl status
crawlStatus.classList.remove('hidden');
crawlJobId = data.id;
// Start checking crawl status
checkCrawlStatus();
} catch (error) {
console.error('API request error:', error);
throw error;
}
}
// Handle extract mode
async function handleExtract(url) {
// Ensure URL has protocol and is properly formatted
if (!url.startsWith('http://') && !url.startsWith('https://')) {
url = 'https://' + url;
}
// Validate URL format
try {
new URL(url);
} catch (e) {
throw new Error('Invalid URL format. Please enter a valid URL.');
}
// Get extract options
const prompt = document.getElementById('extractPrompt').value.trim();
let schema = null;
try {
const schemaText = document.getElementById('extractSchema').value.trim();
if (schemaText) {
schema = JSON.parse(schemaText);
}
} catch (error) {
throw new Error('Invalid JSON schema format');
}
// Get page options
const waitFor = document.getElementById('waitFor').value || 2000;
// Build request payload
const payload = {
url,
formats: ['json'],
jsonOptions: {},
waitFor: parseInt(waitFor)
};
if (prompt) {
payload.jsonOptions.prompt = prompt;
}
if (schema) {
payload.jsonOptions.schema = schema;
}
console.log('Sending extract request to API:', payload);
try {
// Use our proxy server to avoid CORS issues
const apiUrl = '/api/v1/scrape';
console.log('Using proxy for API URL:', apiUrl);
const response = await fetch(apiUrl, {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify(payload)
});
console.log('API Response status:', response.status);
const data = await response.json();
console.log('API Response data:', data);
if (!response.ok) {
// Check if this is a screenshot-related error
if (data.error &&
(data.error.includes('All scraping engines failed') ||
data.error.includes('Internal server error'))) {
throw new Error('The Firecrawl API instance encountered an error. If you were trying to use screenshot functionality, it may not be supported by this API instance.');
} else {
throw new Error(data.error || `API returned status ${response.status}`);
}
}
displayResults(data);
} catch (error) {
console.error('API request error:', error);
throw error;
}
}
// Check crawl status
async function checkCrawlStatus() {
if (!crawlJobId) return;
try {
// Use our proxy server to avoid CORS issues
const apiUrl = `/api/v1/crawl/${crawlJobId}`;
console.log('Using proxy for checking crawl status:', apiUrl);
const response = await fetch(apiUrl, {
method: 'GET',
headers: {
'Content-Type': 'application/json'
}
});
const data = await response.json();
console.log('Crawl status response:', data);
if (!response.ok) {
// Check if this is a screenshot-related error
if (data.error &&
(data.error.includes('All scraping engines failed') ||
data.error.includes('Internal server error'))) {
throw new Error('The Firecrawl API instance encountered an error. If you were trying to use screenshot functionality, it may not be supported by this API instance.');
} else {
throw new Error(data.error || `API returned status ${response.status}`);
}
}
// Update status
statusText.textContent = data.status || 'Processing';
if (data.total && data.completed) {
progressText.textContent = `${data.completed}/${data.total}`;
const percentage = (data.completed / data.total) * 100;
progressBar.style.width = `${percentage}%`;
}
// If completed, display results
if (data.status === 'completed') {
displayCrawlResults(data);
// Stop checking
if (crawlCheckInterval) {
clearInterval(crawlCheckInterval);
crawlCheckInterval = null;
}
} else {
// Continue checking
if (!crawlCheckInterval) {
crawlCheckInterval = setInterval(checkCrawlStatus, 5000);
}
}
} catch (error) {
showError(`Error checking crawl status: ${error.message}`);
// Stop checking on error
if (crawlCheckInterval) {
clearInterval(crawlCheckInterval);
crawlCheckInterval = null;
}
}
}
// Display scrape/extract results
function displayResults(data) {
if (!data || !data.data) {
showError('Invalid response from API');
return;
}
const result = data.data;
let markdownContent = '';
// Add links to markdown if they exist
console.log('Links data:', result.links);
// Try to handle different possible formats of links data
if (result.links) {
markdownContent += '## Links\n\n';
// Case 1: Array of link objects with href/text properties
if (Array.isArray(result.links)) {
result.links.forEach(link => {
if (typeof link === 'object') {
if (link.href) {
const linkText = link.text || link.href;
markdownContent += `- [${linkText}](${link.href})\n`;
} else if (link.url) {
const linkText = link.title || link.text || link.url;
markdownContent += `- [${linkText}](${link.url})\n`;
}
} else if (typeof link === 'string') {
markdownContent += `- [${link}](${link})\n`;
}
});
}
// Case 2: Object with URLs as keys or values
else if (typeof result.links === 'object') {
Object.entries(result.links).forEach(([key, value]) => {
if (typeof value === 'string' && (value.startsWith('http') || value.startsWith('/'))) {
markdownContent += `- [${key}](${value})\n`;
} else if (typeof key === 'string' && (key.startsWith('http') || key.startsWith('/'))) {
const linkText = value || key;
markdownContent += `- [${linkText}](${key})\n`;
}
});
}
markdownContent += '\n\n';
}
// Add original markdown content if it exists
if (result.markdown) {
markdownContent += result.markdown;
}
// Display markdown if we have any content
if (markdownContent) {
document.getElementById('markdown-preview').innerHTML = marked.parse(markdownContent);
switchTab('markdown');
}
// Display JSON
document.getElementById('json-preview').innerHTML = hljs.highlight('json', JSON.stringify(result, null, 2)).value;
// Display screenshot
if (result.screenshot) {
const img = document.createElement('img');
img.src = result.screenshot;
img.alt = 'Screenshot';
document.getElementById('screenshot-preview').innerHTML = '';
document.getElementById('screenshot-preview').appendChild(img);
} else if (result.actions && result.actions.screenshots && result.actions.screenshots.length > 0) {
const img = document.createElement('img');
img.src = result.actions.screenshots[0];
img.alt = 'Screenshot';
document.getElementById('screenshot-preview').innerHTML = '';
document.getElementById('screenshot-preview').appendChild(img);
}
// If no markdown content but has json extraction, switch to JSON tab
if (!markdownContent && result.json) {
switchTab('json');
}
}
// Display crawl results
function displayCrawlResults(data) {
if (!data || !data.data || !Array.isArray(data.data)) {
showError('Invalid crawl results from API');
return;
}
// Combine all markdown
let combinedMarkdown = '';
let combinedJson = [];
let allLinks = [];
// First collect all links from all pages
console.log('Crawl data for links:', data.data);
data.data.forEach(item => {
const sourceURL = item.metadata?.sourceURL || 'Unknown URL';
console.log(`Processing links for ${sourceURL}:`, item.links);
// Case 1: Array of link objects
if (item.links && Array.isArray(item.links)) {
item.links.forEach(link => {
if (typeof link === 'object') {
if (link.href) {
allLinks.push({
href: link.href,
text: link.text || link.href,
sourceURL
});
} else if (link.url) {
allLinks.push({
href: link.url,
text: link.title || link.text || link.url,
sourceURL
});
}
} else if (typeof link === 'string') {
allLinks.push({
href: link,
text: link,
sourceURL
});
}
});
}
// Case 2: Object with URLs as keys or values
else if (item.links && typeof item.links === 'object') {
Object.entries(item.links).forEach(([key, value]) => {
if (typeof value === 'string' && (value.startsWith('http') || value.startsWith('/'))) {
allLinks.push({
href: value,
text: key,
sourceURL
});
} else if (typeof key === 'string' && (key.startsWith('http') || key.startsWith('/'))) {
allLinks.push({
href: key,
text: value || key,
sourceURL
});
}
});
}
});
// Add links section at the top if we have any
if (allLinks.length > 0) {
console.log('All collected links:', allLinks);
combinedMarkdown += '## All Links\n\n';
allLinks.forEach(link => {
combinedMarkdown += `- [${link.text}](${link.href}) - from [${link.sourceURL}](${link.sourceURL})\n`;
});
combinedMarkdown += '\n\n---\n\n';
}
// Add content from each page
data.data.forEach((item, index) => {
if (item.markdown) {
combinedMarkdown += `## Page ${index + 1}: ${item.metadata?.title || 'Untitled'}\n\n`;
combinedMarkdown += `URL: ${item.metadata?.sourceURL || 'Unknown URL'}\n\n`;
combinedMarkdown += item.markdown;
combinedMarkdown += '\n\n---\n\n';
}
combinedJson.push({
url: item.metadata?.sourceURL || 'Unknown URL',
title: item.metadata?.title || 'Untitled',
data: item
});
});
// Display markdown
if (combinedMarkdown) {
document.getElementById('markdown-preview').innerHTML = marked.parse(combinedMarkdown);
switchTab('markdown');
}
// Display JSON
document.getElementById('json-preview').innerHTML = hljs.highlight('json', JSON.stringify(combinedJson, null, 2)).value;
// If no markdown, switch to JSON tab
if (!combinedMarkdown) {
switchTab('json');
}
}
// Show/hide loading indicator
function showLoading(show) {
if (show) {
loadingIndicator.classList.remove('hidden');
} else {
loadingIndicator.classList.add('hidden');
}
}
// Show error message
function showError(message) {
errorMessage.textContent = message;
errorMessage.classList.remove('hidden');
}
});