lyvuha-portfolio / frontend /src /components /ProjectCard.jsx
Cong123779's picture
feat: add favicon, OG image, dual DB adapter (Supabase+SQLite), api utility
7c46a3a verified
Raw
History Blame Contribute Delete
3.83 kB
import React from 'react';
export default function ProjectCard({ project, onSelect }) {
const { title, description, category, status, tech_stack, github_url, demo_url, image_url } = project;
// Format status class name
const getStatusClass = (statusStr) => {
if (!statusStr) return '';
const s = statusStr.toLowerCase();
if (s.includes('active') || s.includes('phát triển')) return 'active-development';
return 'completed';
};
// Split tech stack string into array
const techTags = tech_stack ? tech_stack.split(',').map(tag => tag.trim()) : [];
return (
<div className="glass project-card">
<div className="project-image-container">
<img
src={image_url || 'https://images.unsplash.com/photo-1555066931-4365d14bab8c?auto=format&fit=crop&w=600&q=80'}
alt={title}
className="project-image"
onError={(e) => {
e.target.onerror = null;
e.target.src = 'https://images.unsplash.com/photo-1555066931-4365d14bab8c?auto=format&fit=crop&w=600&q=80';
}}
/>
<div className="project-overlay">
<span className="project-category">{category}</span>
<span className={`status-badge ${getStatusClass(status)}`}>
{status}
</span>
</div>
</div>
<div className="project-info">
<h3 className="project-card-title">{title}</h3>
<p className="project-card-desc">
{description.length > 120 ? `${description.substring(0, 120)}...` : description}
</p>
<div className="project-tech">
{techTags.map((tech, index) => (
<span key={index} className="tech-tag">{tech}</span>
))}
</div>
<div className="project-links">
<button className="btn btn-secondary btn-sm" onClick={() => onSelect(project)}>
Chi Tiết
</button>
{github_url && (
<a
href={github_url}
target="_blank"
rel="noopener noreferrer"
className="project-link"
style={{ marginLeft: 'auto' }}
>
<svg width="16" height="16" fill="currentColor" viewBox="0 0 16 16">
<path d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.012 8.012 0 0 0 16 8c0-4.42-3.58-8-8-8z"/>
</svg>
GitHub
</a>
)}
{demo_url && (
<a
href={demo_url}
target="_blank"
rel="noopener noreferrer"
className="project-link"
style={!github_url ? { marginLeft: 'auto' } : {}}
>
<svg width="16" height="16" fill="currentColor" viewBox="0 0 16 16">
<path fillRule="evenodd" d="M8.636 3.5a.5.5 0 0 0-.5-.5H1.5A1.5 1.5 0 0 0 0 4.5v10A1.5 1.5 0 0 0 1.5 16h10a1.5 1.5 0 0 0 1.5-1.5V7.864a.5.5 0 0 0-1 0V14.5a.5.5 0 0 1-.5.5h-10a.5.5 0 0 1-.5-.5v-10a.5.5 0 0 1 .5-.5h6.636a.5.5 0 0 0 .5-.5z"/>
<path fillRule="evenodd" d="M16 .5a.5.5 0 0 0-.5-.5h-5a.5.5 0 0 0 0 1h3.793L6.146 9.146a.5.5 0 1 0 .708.708L15 1.707V5.5a.5.5 0 0 0 1 0v-5z"/>
</svg>
Live Demo
</a>
)}
</div>
</div>
</div>
);
}