dist/popup.js.map (view raw)
1 |
{"version":3,"file":"popup.js","mappings":";;;;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;;AAEA;AACA;AACA;AACA;AACA,wCAAwC,sDAAsD;AAC9F;;AAEA;AACA,gDAAgD;AAChD;AACA;AACA,qDAAqD,mCAAmC;AACxF;AACA;AACA;AACA;AACA;AACA,sEAAsE,iBAAiB;AACvF;AACA;AACA;AACA;AACA;AACA;AACA;AACA,UAAU;AACV;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,uCAAuC,UAAU;AACjD;AACA;AACA;AACA,8CAA8C,iBAAiB;AAC/D;AACA;AACA;AACA,oDAAoD,wCAAwC;AAC5F;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,cAAc;AACd;AACA;AACA;AACA;AACA,gEAAgE,iCAAiC;AACjG;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,sBAAsB;AACtB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAAS;AACT;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,UAAU;AACV;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,UAAU;AACV;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,KAAK;;AAEL;AACA;AACA;AACA;AACA,wCAAwC,sBAAsB;AAC9D;AACA;AACA,aAAa;AACb;AACA,aAAa;AACb;AACA,KAAK;;AAEL;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,gEAAgE,iCAAiC;AACjG;AACA,sBAAsB;AACtB;AACA;AACA;AACA;AACA;AACA,iDAAiD,cAAc;AAC/D;AACA;AACA;AACA;AACA;AACA;AACA,UAAU;AACV;AACA;AACA,KAAK;AACL,CAAC","sources":["webpack://form-autocomplete/./src/popup.js"],"sourcesContent":["document.addEventListener('DOMContentLoaded', function() {\n const statusDiv = document.getElementById('status');\n const suggestionsDiv = document.getElementById('suggestions');\n const suggestionsList = document.getElementById('suggestionsList');\n const acceptAllButton = document.getElementById('acceptAll');\n const regenerateButton = document.getElementById('regenerate');\n const apiKeyForm = document.getElementById('apiKeyForm');\n const saveApiKeyButton = document.getElementById('saveApiKey');\n\n console.log('Popup loaded!');\n\n let currentSuggestions = [];\n\n // Function to update status\n function updateStatus(message, isError = false, isLoading = false) {\n console.log('Status update:', message, isError, isLoading);\n statusDiv.textContent = message;\n statusDiv.className = `status ${isError ? 'error' : isLoading ? 'loading' : 'success'}`;\n }\n\n // Function to send message to content script\n async function sendMessage(action, data = {}) {\n try {\n console.log('Sending message:', action, data);\n const [tab] = await browser.tabs.query({ active: true, currentWindow: true });\n if (!tab) {\n throw new Error('No active tab found');\n }\n \n console.log('Found active tab:', tab.id);\n const response = await browser.tabs.sendMessage(tab.id, { action, ...data });\n console.log('Received response:', response);\n \n if (!response.success) {\n throw new Error(response.message);\n }\n \n return response;\n } catch (error) {\n console.error('Error sending message:', error);\n throw error;\n }\n }\n\n // Function to display suggestions\n function displaySuggestions(suggestions) {\n currentSuggestions = suggestions;\n suggestionsList.innerHTML = '';\n \n if (suggestions.length === 0) {\n suggestionsList.innerHTML = '<div class=\"no-suggestions\">No suggestions available</div>';\n acceptAllButton.style.display = 'none';\n regenerateButton.style.display = 'block';\n return;\n }\n\n let hasUnappliedSuggestions = false;\n\n suggestions.forEach((suggestion, index) => {\n const item = document.createElement('div');\n item.className = 'suggestion-item';\n \n const info = document.createElement('div');\n info.className = 'suggestion-info';\n \n const label = document.createElement('div');\n label.className = 'suggestion-label';\n label.textContent = suggestion.fieldIdentifier.label || \n suggestion.fieldIdentifier.name || \n suggestion.fieldIdentifier.id || \n `Field ${index + 1}`;\n \n const value = document.createElement('div');\n value.className = 'suggestion-value';\n value.textContent = `Suggested: ${suggestion.value}`;\n \n const confidence = document.createElement('div');\n confidence.className = 'suggestion-confidence';\n confidence.textContent = `Confidence: ${Math.round(suggestion.confidence * 100)}%`;\n \n info.appendChild(label);\n info.appendChild(value);\n info.appendChild(confidence);\n \n const acceptButton = document.createElement('button');\n acceptButton.className = 'accept-button';\n \n if (suggestion.applied) {\n acceptButton.disabled = true;\n acceptButton.textContent = 'Applied';\n } else {\n hasUnappliedSuggestions = true;\n acceptButton.textContent = 'Accept';\n acceptButton.onclick = async () => {\n try {\n await sendMessage('executeFillLogic', { fillLogic: suggestion.fillLogic });\n acceptButton.disabled = true;\n acceptButton.textContent = 'Applied';\n suggestion.applied = true;\n \n // Check if all suggestions are applied\n if (!currentSuggestions.some(s => !s.applied)) {\n acceptAllButton.disabled = true;\n acceptAllButton.textContent = 'All Applied';\n }\n } catch (error) {\n updateStatus('Error applying suggestion: ' + error.message, true);\n }\n };\n }\n \n item.appendChild(info);\n item.appendChild(acceptButton);\n suggestionsList.appendChild(item);\n });\n \n // Show/hide accept all button based on unapplied suggestions\n acceptAllButton.style.display = hasUnappliedSuggestions ? 'block' : 'none';\n regenerateButton.style.display = 'block';\n \n if (!hasUnappliedSuggestions) {\n acceptAllButton.disabled = true;\n acceptAllButton.textContent = 'All Applied';\n } else {\n acceptAllButton.disabled = false;\n acceptAllButton.textContent = 'Accept All';\n }\n }\n\n // Function to generate suggestions\n async function generateSuggestions(clearCache = false) {\n try {\n updateStatus('Detecting fields and generating suggestions...', false, true);\n suggestionsDiv.style.display = 'none';\n \n if (clearCache) {\n await sendMessage('clearSuggestions');\n }\n \n const response = await sendMessage('generateSuggestions');\n displaySuggestions(response.data.suggestions);\n suggestionsDiv.style.display = 'block';\n updateStatus(clearCache ? 'Generated new suggestions!' : 'Loaded suggestions');\n } catch (error) {\n updateStatus('Error: ' + error.message, true);\n }\n }\n\n // Check if API key is stored\n browser.storage.local.get('geminiApiKey').then(result => {\n if (!result.geminiApiKey) {\n apiKeyForm.style.display = 'block';\n }\n });\n\n // Save API key\n saveApiKeyButton.addEventListener('click', function() {\n const apiKey = document.getElementById('apiKey').value;\n if (apiKey) {\n browser.storage.local.set({ geminiApiKey: apiKey }).then(() => {\n apiKeyForm.style.display = 'none';\n updateStatus('API Key saved successfully');\n }).catch(error => {\n updateStatus('Failed to save API Key', true);\n });\n }\n });\n\n // Generate suggestions when popup opens\n generateSuggestions(false);\n\n // Regenerate suggestions\n regenerateButton.addEventListener('click', () => generateSuggestions(true));\n\n // Accept all suggestions\n acceptAllButton.addEventListener('click', async () => {\n console.log('Accept all clicked');\n try {\n updateStatus('Applying all suggestions...');\n let successCount = 0;\n \n for (const suggestion of currentSuggestions) {\n if (!suggestion.applied) {\n try {\n await sendMessage('executeFillLogic', { fillLogic: suggestion.fillLogic });\n successCount++;\n } catch (error) {\n console.error('Error applying suggestion:', error);\n }\n }\n }\n \n updateStatus(`Successfully applied ${successCount} suggestions`);\n acceptAllButton.disabled = true;\n acceptAllButton.textContent = 'All Applied';\n \n // Refresh suggestions to show updated state\n const response = await sendMessage('generateSuggestions');\n displaySuggestions(response.data.suggestions);\n } catch (error) {\n updateStatus('Error: ' + error.message, true);\n }\n });\n});\n"],"names":[],"sourceRoot":""} |