/** * ai-analyzer.js β€” Business Idea Analyzer (Gemini-powered) * Tool key: idea_analyzer * Place at: /wp-content/themes/businessdiscovered-wp/assets/js/ai-analyzer.js */ (function () { 'use strict'; var form = document.getElementById('bd-analyzer-form'); var resultBox = document.getElementById('bd-analyzer-result'); if (!form || !resultBox) return; form.addEventListener('submit', function (e) { e.preventDefault(); var idea = (document.getElementById('bd-idea') || {}).value || ''; var niche = (document.getElementById('bd-niche') || {}).value || ''; if (!idea.trim()) { bdGemini.showError(resultBox, 'Please describe your business idea first.'); return; } bdGemini.showLoading(resultBox, 'Analyzing your business idea…'); bdGemini.call('idea_analyzer', { idea: idea, niche: niche }) .then(function (data) { renderResult(data); }) .catch(function (err) { bdGemini.showError(resultBox, err.message); }); }); function renderResult(d) { var score = d.score || 0; var scoreColor = score >= 70 ? '#10b981' : score >= 40 ? '#f59e0b' : '#ef4444'; resultBox.innerHTML = '
' + // Header '
' + '
' + '
' + score + '
' + '
Viability
' + '
' + '
' + '

Business Idea Analysis

' + '

' + (d.verdict || '') + '

' + '
' + '⏱ ' + (d.time_to_profit || 'N/A') + ' to profit' + 'πŸ“Š ' + (d.market_size || 'N/A') + '' + '
' + '
' + '
' + // SWOT grid '
' + swotCard('πŸ’ͺ Strengths', d.strengths, 'green') + swotCard('⚠️ Weaknesses', d.weaknesses, 'red') + swotCard('πŸš€ Opportunities', d.opportunities,'blue') + swotCard('πŸ›‘οΈ Threats', d.threats, 'amber') + '
' + // Next steps '
' + '

βœ… Recommended Next Steps

' + bdGemini.bulletList(d.next_steps) + '
' + '
'; resultBox.style.display = 'block'; resultBox.scrollIntoView({ behavior: 'smooth', block: 'start' }); } function swotCard(title, items, color) { return ( '
' + '

' + title + '

' + bdGemini.bulletList(items) + '
' ); } })();User-agent: * Disallow: /wp-admin/ Allow: /wp-admin/admin-ajax.php Sitemap: https://businessdiscovered.com/sitemap_index.xml