click to enter
This commit is contained in:
parent
e18588d5d4
commit
8cff9808f0
@ -11,6 +11,19 @@ import { saveToHistory } from '@/utils/historyStorage';
|
|||||||
export default function Home() {
|
export default function Home() {
|
||||||
const [comparisonResults, setComparisonResults] = useState<string | null>(null);
|
const [comparisonResults, setComparisonResults] = useState<string | null>(null);
|
||||||
const [isLoading, setIsLoading] = useState(false);
|
const [isLoading, setIsLoading] = useState(false);
|
||||||
|
const [selectedExample, setSelectedExample] = useState<{ item1: string; item2: string } | null>(null);
|
||||||
|
|
||||||
|
const popularExamples = [
|
||||||
|
{ item1: 'iPhone 15 Pro', item2: 'Samsung Galaxy S24 Ultra' },
|
||||||
|
{ item1: 'React', item2: 'Vue.js' },
|
||||||
|
{ item1: 'Coffee', item2: 'Tea' },
|
||||||
|
{ item1: 'Netflix', item2: 'Disney+' },
|
||||||
|
{ item1: 'Python', item2: 'JavaScript' }
|
||||||
|
];
|
||||||
|
|
||||||
|
const handleExampleClick = (example: { item1: string; item2: string }) => {
|
||||||
|
setSelectedExample(example);
|
||||||
|
};
|
||||||
|
|
||||||
const handleComparison = async (item1: string, item2: string, description1: string, description2: string) => {
|
const handleComparison = async (item1: string, item2: string, description1: string, description2: string) => {
|
||||||
setIsLoading(true);
|
setIsLoading(true);
|
||||||
@ -68,17 +81,26 @@ export default function Home() {
|
|||||||
<div className="bg-gradient-to-r from-blue-50 to-indigo-50 rounded-xl p-6 mb-8">
|
<div className="bg-gradient-to-r from-blue-50 to-indigo-50 rounded-xl p-6 mb-8">
|
||||||
<h2 className="text-lg font-semibold text-gray-800 mb-4">Popular Comparisons</h2>
|
<h2 className="text-lg font-semibold text-gray-800 mb-4">Popular Comparisons</h2>
|
||||||
<div className="flex flex-wrap justify-center gap-2 sm:gap-3">
|
<div className="flex flex-wrap justify-center gap-2 sm:gap-3">
|
||||||
<span className="px-3 sm:px-4 py-2 bg-white rounded-full text-xs sm:text-sm font-medium text-gray-700 shadow-sm hover:shadow-md transition-shadow cursor-pointer">iPhone vs Samsung Galaxy</span>
|
{popularExamples.map((example, index) => (
|
||||||
<span className="px-3 sm:px-4 py-2 bg-white rounded-full text-xs sm:text-sm font-medium text-gray-700 shadow-sm hover:shadow-md transition-shadow cursor-pointer">React vs Vue.js</span>
|
<button
|
||||||
<span className="px-3 sm:px-4 py-2 bg-white rounded-full text-xs sm:text-sm font-medium text-gray-700 shadow-sm hover:shadow-md transition-shadow cursor-pointer">Coffee vs Tea</span>
|
key={index}
|
||||||
<span className="px-3 sm:px-4 py-2 bg-white rounded-full text-xs sm:text-sm font-medium text-gray-700 shadow-sm hover:shadow-md transition-shadow cursor-pointer">Netflix vs Disney+</span>
|
onClick={() => handleExampleClick(example)}
|
||||||
<span className="px-3 sm:px-4 py-2 bg-white rounded-full text-xs sm:text-sm font-medium text-gray-700 shadow-sm hover:shadow-md transition-shadow cursor-pointer">Python vs JavaScript</span>
|
className="px-3 sm:px-4 py-2 bg-white rounded-full text-xs sm:text-sm font-medium text-gray-700 shadow-sm hover:shadow-md hover:bg-blue-50 hover:text-blue-700 transition-all cursor-pointer"
|
||||||
|
>
|
||||||
|
{example.item1} vs {example.item2}
|
||||||
|
</button>
|
||||||
|
))}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className={`bg-white rounded-xl shadow-lg p-6 sm:p-8 mb-8 transition-all duration-300 ${isLoading ? 'opacity-75 pointer-events-none' : ''}`}>
|
<div className={`bg-white rounded-xl shadow-lg p-6 sm:p-8 mb-8 transition-all duration-300 ${isLoading ? 'opacity-75 pointer-events-none' : ''}`}>
|
||||||
<ComparisonForm onSubmit={handleComparison} isLoading={isLoading} />
|
<ComparisonForm
|
||||||
|
onSubmit={handleComparison}
|
||||||
|
isLoading={isLoading}
|
||||||
|
selectedExample={selectedExample}
|
||||||
|
onExampleUsed={() => setSelectedExample(null)}
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="mb-8">
|
<div className="mb-8">
|
||||||
|
@ -1,19 +1,30 @@
|
|||||||
'use client';
|
'use client';
|
||||||
|
|
||||||
import { useState } from 'react';
|
import { useState, useEffect } from 'react';
|
||||||
|
|
||||||
interface ComparisonFormProps {
|
interface ComparisonFormProps {
|
||||||
onSubmit: (item1: string, item2: string, description1: string, description2: string) => void;
|
onSubmit: (item1: string, item2: string, description1: string, description2: string) => void;
|
||||||
isLoading: boolean;
|
isLoading: boolean;
|
||||||
|
selectedExample?: { item1: string; item2: string } | null;
|
||||||
|
onExampleUsed?: () => void;
|
||||||
}
|
}
|
||||||
|
|
||||||
export default function ComparisonForm({ onSubmit, isLoading }: ComparisonFormProps) {
|
export default function ComparisonForm({ onSubmit, isLoading, selectedExample, onExampleUsed }: ComparisonFormProps) {
|
||||||
const [item1, setItem1] = useState('');
|
const [item1, setItem1] = useState('');
|
||||||
const [item2, setItem2] = useState('');
|
const [item2, setItem2] = useState('');
|
||||||
const [description1, setDescription1] = useState('');
|
const [description1, setDescription1] = useState('');
|
||||||
const [description2, setDescription2] = useState('');
|
const [description2, setDescription2] = useState('');
|
||||||
const [showDescriptions, setShowDescriptions] = useState(false);
|
const [showDescriptions, setShowDescriptions] = useState(false);
|
||||||
|
|
||||||
|
// Handle selected example
|
||||||
|
useEffect(() => {
|
||||||
|
if (selectedExample) {
|
||||||
|
setItem1(selectedExample.item1);
|
||||||
|
setItem2(selectedExample.item2);
|
||||||
|
onExampleUsed?.();
|
||||||
|
}
|
||||||
|
}, [selectedExample, onExampleUsed]);
|
||||||
|
|
||||||
const examples = [
|
const examples = [
|
||||||
{ item1: 'iPhone 15 Pro', item2: 'Samsung Galaxy S24 Ultra', category: 'Smartphones' },
|
{ item1: 'iPhone 15 Pro', item2: 'Samsung Galaxy S24 Ultra', category: 'Smartphones' },
|
||||||
{ item1: 'React', item2: 'Vue.js', category: 'Frontend Frameworks' },
|
{ item1: 'React', item2: 'Vue.js', category: 'Frontend Frameworks' },
|
||||||
|
Loading…
Reference in New Issue
Block a user