File size: 18,750 Bytes
795da49
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Excel/CSV Analyzer with ChatGPT</title>
    <script src="https://cdn.tailwindcss.com"></script>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
    <style>
        .drop-zone {
            border: 2px dashed #9CA3AF;
            transition: all 0.3s ease;
        }
        .drop-zone.active {
            border-color: #3B82F6;
            background-color: rgba(59, 130, 246, 0.05);
        }
        .file-info {
            transition: all 0.3s ease;
        }
        .spinner {
            animation: spin 1s linear infinite;
        }
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        .progress-bar {
            transition: width 0.3s ease;
        }
    </style>
</head>
<body class="bg-gray-50 min-h-screen">
    <div class="container mx-auto px-4 py-12 max-w-4xl">
        <div class="text-center mb-12">
            <h1 class="text-4xl font-bold text-gray-800 mb-2">Excel & CSV Analyzer</h1>
            <p class="text-lg text-gray-600">Upload your spreadsheet and get AI-powered insights</p>
        </div>

        <div class="bg-white rounded-xl shadow-lg overflow-hidden transition-all duration-300">
            <!-- Upload Section -->
            <div id="uploadSection" class="p-8">
                <div id="dropZone" class="drop-zone rounded-lg p-12 text-center cursor-pointer mb-6">
                    <div class="flex flex-col items-center justify-center">
                        <i class="fas fa-file-excel text-5xl text-blue-500 mb-4"></i>
                        <h3 class="text-xl font-semibold text-gray-700 mb-2">Drag & Drop your Excel/CSV file here</h3>
                        <p class="text-gray-500 mb-4">or</p>
                        <label for="fileInput" class="bg-blue-500 hover:bg-blue-600 text-white font-medium py-2 px-6 rounded-lg cursor-pointer transition-colors">
                            Browse Files
                        </label>
                        <input type="file" id="fileInput" class="hidden" accept=".csv, .xlsx, .xls">
                    </div>
                </div>
                
                <div id="fileInfo" class="file-info hidden bg-gray-50 rounded-lg p-4 mb-6">
                    <div class="flex items-center justify-between">
                        <div class="flex items-center">
                            <i class="fas fa-file-excel text-2xl text-blue-500 mr-3"></i>
                            <div>
                                <h4 id="fileName" class="font-medium text-gray-800"></h4>
                                <p id="fileSize" class="text-sm text-gray-500"></p>
                            </div>
                        </div>
                        <button id="removeFile" class="text-gray-400 hover:text-gray-600">
                            <i class="fas fa-times"></i>
                        </button>
                    </div>
                </div>

                <div class="mb-6">
                    <label for="apiKey" class="block text-sm font-medium text-gray-700 mb-1">ChatGPT API Key</label>
                    <div class="relative">
                        <input type="password" id="apiKey" placeholder="sk-...your-api-key..." class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-blue-500 focus:border-blue-500">
                        <button id="toggleKey" class="absolute right-3 top-2.5 text-gray-400 hover:text-gray-600">
                            <i class="fas fa-eye"></i>
                        </button>
                    </div>
                    <p class="mt-1 text-xs text-gray-500">Your API key is used only for this session and is not stored.</p>
                </div>

                <div class="mb-6">
                    <label for="prompt" class="block text-sm font-medium text-gray-700 mb-1">Analysis Instructions</label>
                    <textarea id="prompt" rows="3" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-blue-500 focus:border-blue-500" placeholder="E.g., 'Analyze this sales data and identify top performing products'"></textarea>
                </div>

                <button id="analyzeBtn" class="w-full bg-blue-600 hover:bg-blue-700 text-white font-medium py-3 px-4 rounded-lg transition-colors disabled:opacity-50 disabled:cursor-not-allowed" disabled>
                    Analyze with ChatGPT
                </button>
            </div>

            <!-- Processing Section -->
            <div id="processingSection" class="hidden p-8">
                <div class="text-center">
                    <div class="inline-flex items-center justify-center mb-6">
                        <div class="w-16 h-16 border-4 border-blue-500 border-t-transparent rounded-full spinner"></div>
                    </div>
                    <h3 class="text-xl font-semibold text-gray-700 mb-2">Analyzing your file</h3>
                    <p class="text-gray-500 mb-6">This may take a few moments depending on file size</p>
                    
                    <div class="w-full bg-gray-200 rounded-full h-2.5 mb-6">
                        <div id="progressBar" class="progress-bar bg-blue-600 h-2.5 rounded-full" style="width: 0%"></div>
                    </div>
                    
                    <p id="statusText" class="text-sm text-gray-500">Preparing file for analysis...</p>
                </div>
            </div>

            <!-- Results Section -->
            <div id="resultsSection" class="hidden p-8">
                <div class="flex justify-between items-center mb-6">
                    <h3 class="text-xl font-semibold text-gray-700">Analysis Results</h3>
                    <button id="newAnalysis" class="text-blue-500 hover:text-blue-700 flex items-center">
                        <i class="fas fa-redo mr-2"></i> New Analysis
                    </button>
                </div>
                
                <div id="resultsContent" class="bg-gray-50 rounded-lg p-4 mb-6">
                    <!-- Results will be displayed here -->
                </div>
                
                <div class="flex justify-between items-center text-sm text-gray-500">
                    <div id="usageInfo"></div>
                    <button id="copyResults" class="text-blue-500 hover:text-blue-700 flex items-center">
                        <i class="fas fa-copy mr-2"></i> Copy Results
                    </button>
                </div>
            </div>
        </div>

        <div class="mt-8 text-center text-sm text-gray-500">
            <p>This tool processes your files in the browser. Your data never leaves your computer unless sent to OpenAI's API.</p>
        </div>
    </div>

    <script>
        document.addEventListener('DOMContentLoaded', function() {
            // DOM Elements
            const dropZone = document.getElementById('dropZone');
            const fileInput = document.getElementById('fileInput');
            const fileInfo = document.getElementById('fileInfo');
            const fileName = document.getElementById('fileName');
            const fileSize = document.getElementById('fileSize');
            const removeFile = document.getElementById('removeFile');
            const analyzeBtn = document.getElementById('analyzeBtn');
            const apiKey = document.getElementById('apiKey');
            const toggleKey = document.getElementById('toggleKey');
            const prompt = document.getElementById('prompt');
            const uploadSection = document.getElementById('uploadSection');
            const processingSection = document.getElementById('processingSection');
            const resultsSection = document.getElementById('resultsSection');
            const progressBar = document.getElementById('progressBar');
            const statusText = document.getElementById('statusText');
            const resultsContent = document.getElementById('resultsContent');
            const usageInfo = document.getElementById('usageInfo');
            const copyResults = document.getElementById('copyResults');
            const newAnalysis = document.getElementById('newAnalysis');

            let currentFile = null;
            let isKeyVisible = false;

            // Event Listeners
            dropZone.addEventListener('click', () => fileInput.click());
            
            fileInput.addEventListener('change', handleFileSelect);
            
            ['dragenter', 'dragover', 'dragleave', 'drop'].forEach(eventName => {
                dropZone.addEventListener(eventName, preventDefaults, false);
            });
            
            ['dragenter', 'dragover'].forEach(eventName => {
                dropZone.addEventListener(eventName, highlight, false);
            });
            
            ['dragleave', 'drop'].forEach(eventName => {
                dropZone.addEventListener(eventName, unhighlight, false);
            });
            
            dropZone.addEventListener('drop', handleDrop, false);
            
            removeFile.addEventListener('click', resetFile);
            
            toggleKey.addEventListener('click', toggleKeyVisibility);
            
            analyzeBtn.addEventListener('click', startAnalysis);
            
            copyResults.addEventListener('click', copyToClipboard);
            
            newAnalysis.addEventListener('click', resetAnalysis);

            // Functions
            function preventDefaults(e) {
                e.preventDefault();
                e.stopPropagation();
            }
            
            function highlight() {
                dropZone.classList.add('active');
            }
            
            function unhighlight() {
                dropZone.classList.remove('active');
            }
            
            function handleDrop(e) {
                const dt = e.dataTransfer;
                const files = dt.files;
                if (files.length) {
                    handleFileSelect({ target: { files } });
                }
            }
            
            function handleFileSelect(e) {
                const file = e.target.files[0];
                if (!file) return;
                
                const validTypes = ['text/csv', 'application/vnd.ms-excel', 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'];
                if (!validTypes.includes(file.type) && !file.name.match(/\.(csv|xlsx|xls)$/i)) {
                    alert('Please upload a CSV or Excel file.');
                    return;
                }
                
                currentFile = file;
                displayFileInfo(file);
                checkFormCompletion();
            }
            
            function displayFileInfo(file) {
                fileName.textContent = file.name;
                fileSize.textContent = formatFileSize(file.size);
                fileInfo.classList.remove('hidden');
                dropZone.classList.add('hidden');
            }
            
            function formatFileSize(bytes) {
                if (bytes === 0) return '0 Bytes';
                const k = 1024;
                const sizes = ['Bytes', 'KB', 'MB', 'GB'];
                const i = Math.floor(Math.log(bytes) / Math.log(k));
                return parseFloat((bytes / Math.pow(k, i)).toFixed(2)) + ' ' + sizes[i];
            }
            
            function resetFile() {
                currentFile = null;
                fileInput.value = '';
                fileInfo.classList.add('hidden');
                dropZone.classList.remove('hidden');
                analyzeBtn.disabled = true;
            }
            
            function toggleKeyVisibility() {
                isKeyVisible = !isKeyVisible;
                apiKey.type = isKeyVisible ? 'text' : 'password';
                toggleKey.innerHTML = isKeyVisible ? '<i class="fas fa-eye-slash"></i>' : '<i class="fas fa-eye"></i>';
            }
            
            function checkFormCompletion() {
                const isComplete = currentFile && apiKey.value.trim() && prompt.value.trim();
                analyzeBtn.disabled = !isComplete;
            }
            
            apiKey.addEventListener('input', checkFormCompletion);
            prompt.addEventListener('input', checkFormCompletion);
            
            async function startAnalysis() {
                if (!currentFile || !apiKey.value.trim() || !prompt.value.trim()) return;
                
                uploadSection.classList.add('hidden');
                processingSection.classList.remove('hidden');
                
                try {
                    // Simulate processing steps (in a real app, you'd process the file)
                    updateProgress(10, "Reading file contents...");
                    await delay(800);
                    
                    updateProgress(30, "Extracting data...");
                    await delay(1000);
                    
                    updateProgress(60, "Preparing analysis request...");
                    await delay(600);
                    
                    updateProgress(80, "Sending to ChatGPT API...");
                    await delay(1200);
                    
                    updateProgress(95, "Processing results...");
                    await delay(800);
                    
                    updateProgress(100, "Analysis complete!");
                    await delay(300);
                    
                    // In a real app, you would:
                    // 1. Parse the file (using SheetJS or similar)
                    // 2. Convert to a format suitable for the API
                    // 3. Send to ChatGPT API with the user's prompt
                    // 4. Display the results
                    
                    // For this demo, we'll simulate a response
                    showResults();
                } catch (error) {
                    console.error('Error during analysis:', error);
                    alert('An error occurred during analysis. Please try again.');
                    resetAnalysis();
                }
            }
            
            function updateProgress(percent, message) {
                progressBar.style.width = `${percent}%`;
                statusText.textContent = message;
            }
            
            function delay(ms) {
                return new Promise(resolve => setTimeout(resolve, ms));
            }
            
            function showResults() {
                processingSection.classList.add('hidden');
                resultsSection.classList.remove('hidden');
                
                // Simulated results - in a real app, this would come from the API
                const simulatedResponse = {
                    content: `
                        <h4 class="font-semibold text-lg mb-3">Analysis of ${currentFile.name}</h4>
                        <div class="prose max-w-none">
                            <p>Based on the data provided, here are the key insights:</p>
                            <ul class="list-disc pl-5 space-y-1">
                                <li>The dataset contains <strong>125 records</strong> across <strong>8 columns</strong></li>
                                <li>The highest value in the "Sales" column is <strong>$12,450</strong> (record #42)</li>
                                <li>The average transaction value is approximately <strong>$1,245</strong></li>
                                <li>There appears to be a strong correlation between customer satisfaction scores and repeat purchases</li>
                                <li>Recommendation: Focus marketing efforts on the 20% of products generating 80% of revenue</li>
                            </ul>
                            <p class="mt-3">For more detailed analysis, consider segmenting the data by region or product category.</p>
                        </div>
                    `,
                    usage: {
                        prompt_tokens: 342,
                        completion_tokens: 156,
                        total_tokens: 498
                    }
                };
                
                resultsContent.innerHTML = simulatedResponse.content;
                usageInfo.innerHTML = `Used ${simulatedResponse.usage.total_tokens} tokens (Prompt: ${simulatedResponse.usage.prompt_tokens}, Completion: ${simulatedResponse.usage.completion_tokens})`;
            }
            
            function copyToClipboard() {
                const range = document.createRange();
                range.selectNode(resultsContent);
                window.getSelection().removeAllRanges();
                window.getSelection().addRange(range);
                document.execCommand('copy');
                window.getSelection().removeAllRanges();
                
                // Show feedback
                const originalText = copyResults.innerHTML;
                copyResults.innerHTML = '<i class="fas fa-check mr-2"></i> Copied!';
                setTimeout(() => {
                    copyResults.innerHTML = originalText;
                }, 2000);
            }
            
            function resetAnalysis() {
                currentFile = null;
                fileInput.value = '';
                fileInfo.classList.add('hidden');
                dropZone.classList.remove('hidden');
                apiKey.value = '';
                prompt.value = '';
                analyzeBtn.disabled = true;
                progressBar.style.width = '0%';
                
                resultsSection.classList.add('hidden');
                processingSection.classList.add('hidden');
                uploadSection.classList.remove('hidden');
            }
        });
    </script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=torfasonc/thematik2" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>