2026-01-13 10:46:40 +07:00
|
|
|
<script setup lang="ts">
|
|
|
|
|
/**
|
|
|
|
|
* @file courses.vue
|
|
|
|
|
* @description Page displaying all available courses in a public catalog format.
|
|
|
|
|
* Matches the premium dark theme of the landing page.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
// Define page metadata using the landing layout (dark theme default)
|
|
|
|
|
definePageMeta({
|
|
|
|
|
layout: 'landing'
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
// Set the HTML head title for SEO
|
|
|
|
|
useHead({
|
|
|
|
|
title: 'คอร์สทั้งหมด - E-Learning System'
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
// Reactive state for the search input
|
|
|
|
|
const searchQuery = ref('')
|
2026-01-21 10:02:37 +07:00
|
|
|
const { fetchCourses } = useCourse()
|
2026-01-13 10:46:40 +07:00
|
|
|
|
2026-01-21 10:02:37 +07:00
|
|
|
// Helper to handle localized text
|
|
|
|
|
const getLocalizedText = (text: string | { th: string; en: string } | undefined) => {
|
|
|
|
|
if (!text) return ''
|
|
|
|
|
if (typeof text === 'string') return text
|
|
|
|
|
return text.th || text.en || ''
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Fetch courses from API
|
|
|
|
|
const { data: coursesResponse, error } = await useAsyncData('courses-list', () => fetchCourses())
|
|
|
|
|
|
|
|
|
|
// Computed property for courses list from API response
|
|
|
|
|
const courses = computed(() => {
|
|
|
|
|
if (coursesResponse.value?.success) {
|
|
|
|
|
return coursesResponse.value.data
|
2026-01-13 10:46:40 +07:00
|
|
|
}
|
2026-01-21 10:02:37 +07:00
|
|
|
return []
|
|
|
|
|
})
|
2026-01-13 10:46:40 +07:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @computed filteredCourses
|
|
|
|
|
* @description Filters the courses list based on the search query.
|
|
|
|
|
* Checks both the course title and description (case-insensitive).
|
|
|
|
|
*/
|
|
|
|
|
const filteredCourses = computed(() => {
|
2026-01-21 10:02:37 +07:00
|
|
|
const list = courses.value || []
|
|
|
|
|
if (!searchQuery.value) return list
|
|
|
|
|
|
2026-01-13 10:46:40 +07:00
|
|
|
const query = searchQuery.value.toLowerCase()
|
2026-01-21 10:02:37 +07:00
|
|
|
return list.filter(c => {
|
|
|
|
|
const title = getLocalizedText(c.title).toLowerCase()
|
|
|
|
|
const desc = getLocalizedText(c.description).toLowerCase()
|
|
|
|
|
return title.includes(query) || desc.includes(query)
|
|
|
|
|
})
|
2026-01-13 10:46:40 +07:00
|
|
|
})
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<template>
|
|
|
|
|
<!-- Main Container: Dark Theme Base -->
|
2026-02-04 16:57:25 +07:00
|
|
|
<div class="relative min-h-screen text-slate-600 bg-slate-50 transition-colors">
|
2026-01-13 10:46:40 +07:00
|
|
|
|
|
|
|
|
<!-- ==========================================
|
|
|
|
|
BACKGROUND EFFECTS
|
|
|
|
|
Ambient glows matching the index.vue theme
|
|
|
|
|
========================================== -->
|
|
|
|
|
<div class="fixed inset-0 overflow-hidden pointer-events-none -z-10">
|
|
|
|
|
<div class="absolute top-[-20%] right-[-10%] w-[60%] h-[60%] rounded-full bg-blue-600/10 blur-[140px] animate-pulse-slow"/>
|
|
|
|
|
<div class="absolute bottom-[-20%] left-[-10%] w-[60%] h-[60%] rounded-full bg-indigo-600/10 blur-[140px] animate-pulse-slow" style="animation-delay: 3s;"/>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!-- ==========================================
|
|
|
|
|
HERO SECTION
|
|
|
|
|
Title and subtitle area
|
|
|
|
|
========================================== -->
|
|
|
|
|
<section class="relative pt-32 pb-20 px-6 overflow-hidden">
|
|
|
|
|
<div class="container mx-auto max-w-6xl text-center relative z-10">
|
|
|
|
|
<!-- Tagline Badge -->
|
2026-02-11 15:27:22 +07:00
|
|
|
<div class="mb-8 slide-up">
|
2026-01-13 10:46:40 +07:00
|
|
|
<span class="px-5 py-2 rounded-full glass border border-blue-400/20 text-blue-400 text-[11px] font-black tracking-[0.25em] uppercase shadow-[0_0_20px_rgba(59,130,246,0.15)]">
|
|
|
|
|
EXPLORE COURSES
|
|
|
|
|
</span>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- Main Title -->
|
2026-02-11 15:27:22 +07:00
|
|
|
<h1 class="text-4xl md:text-6xl font-black text-slate-900 mb-8 tracking-normal py-10 slide-up leading-[1.6]" style="animation-delay: 0.1s;">
|
2026-01-13 10:46:40 +07:00
|
|
|
คอร์สเรียน<span class="text-gradient-cyan">ทั้งหมด</span>
|
|
|
|
|
</h1>
|
|
|
|
|
<!-- Subtitle -->
|
|
|
|
|
<p class="text-slate-400 text-xl max-w-2xl mx-auto leading-relaxed slide-up" style="animation-delay: 0.2s;">
|
|
|
|
|
เริ่มต้นอัปสกิลของคุณวันนี้ด้วยหลักสูตรคุณภาพที่ออกแบบโดยผู้เชี่ยวชาญในอุตสาหกรรม
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
|
|
<!-- ==========================================
|
|
|
|
|
SEARCH & GRID SECTION
|
|
|
|
|
========================================== -->
|
2026-02-02 11:11:25 +07:00
|
|
|
<!-- ==========================================
|
|
|
|
|
SEARCH & GRID SECTION
|
|
|
|
|
========================================== -->
|
|
|
|
|
<section class="container mx-auto max-w-[1440px] px-6 pb-32">
|
|
|
|
|
|
|
|
|
|
<!-- Content Frame Container -->
|
|
|
|
|
<div class="glass-premium rounded-[3rem] p-8 md:p-12 shadow-xl shadow-blue-900/5">
|
|
|
|
|
|
|
|
|
|
<div class="flex flex-col md:flex-row md:items-center justify-between gap-8 mb-12">
|
2026-02-04 16:57:25 +07:00
|
|
|
<h2 class="text-2xl font-black text-slate-900 flex items-center gap-3">
|
2026-02-02 11:11:25 +07:00
|
|
|
<span class="w-2 h-8 bg-blue-600 rounded-full"/>
|
|
|
|
|
รายการคอร์สเรียน
|
|
|
|
|
</h2>
|
|
|
|
|
|
|
|
|
|
<!-- Search Bar (Compact) -->
|
|
|
|
|
<div class="relative max-w-md w-full">
|
|
|
|
|
<div class="relative group">
|
|
|
|
|
<input
|
|
|
|
|
v-model="searchQuery"
|
|
|
|
|
type="text"
|
2026-02-04 16:57:25 +07:00
|
|
|
class="w-full pl-12 pr-6 py-3 bg-slate-100 border border-slate-200 rounded-xl text-slate-900 placeholder-slate-400 focus:outline-none focus:bg-white focus: focus:ring-2 focus:ring-blue-500/50 transition-all font-medium"
|
2026-02-02 11:11:25 +07:00
|
|
|
placeholder="ค้นหาบทเรียน..."
|
|
|
|
|
>
|
|
|
|
|
<div class="absolute left-4 top-1/2 -translate-y-1/2 text-slate-400">
|
|
|
|
|
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
|
|
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z" />
|
|
|
|
|
</svg>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2026-01-13 10:46:40 +07:00
|
|
|
</div>
|
|
|
|
|
|
2026-02-02 11:11:25 +07:00
|
|
|
<!-- Course Grid (Updated to 4 cols) -->
|
|
|
|
|
<div v-if="filteredCourses.length > 0" class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4 gap-6">
|
2026-01-21 10:02:37 +07:00
|
|
|
<div
|
2026-02-02 11:11:25 +07:00
|
|
|
v-for="(course, index) in filteredCourses"
|
|
|
|
|
:key="course.id"
|
|
|
|
|
class="glass-card group flex flex-col h-full hover:-translate-y-2 transition-transform duration-500 slide-up"
|
|
|
|
|
:style="{ animationDelay: `${0.1 * (index + 1)}s` }"
|
2026-01-21 10:02:37 +07:00
|
|
|
>
|
2026-02-02 11:11:25 +07:00
|
|
|
<!-- Card Image -->
|
|
|
|
|
<div class="h-48 bg-gradient-to-br from-slate-800 to-slate-900 relative overflow-hidden group-hover:opacity-90 transition-opacity">
|
|
|
|
|
<img
|
|
|
|
|
v-if="course.thumbnail_url"
|
|
|
|
|
:src="course.thumbnail_url"
|
|
|
|
|
:alt="getLocalizedText(course.title)"
|
|
|
|
|
class="w-full h-full object-cover transition-transform duration-500 group-hover:scale-110"
|
|
|
|
|
@error="(e) => (e.target as HTMLImageElement).style.display = 'none'"
|
|
|
|
|
/>
|
|
|
|
|
<div
|
|
|
|
|
v-else
|
|
|
|
|
class="absolute inset-0 flex items-center justify-center bg-gradient-to-br from-slate-800 to-slate-900"
|
|
|
|
|
>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2026-01-13 10:46:40 +07:00
|
|
|
|
2026-02-02 11:11:25 +07:00
|
|
|
<!-- Card Content Body -->
|
2026-02-04 16:57:25 +07:00
|
|
|
<div class="p-6 flex-1 flex flex-col border-t border-slate-100 ">
|
|
|
|
|
<h3 class="text-xl font-bold text-slate-900 mb-2 leading-snug group-hover:text-blue-600 transition-colors line-clamp-2">
|
2026-02-02 11:11:25 +07:00
|
|
|
{{ getLocalizedText(course.title) }}
|
|
|
|
|
</h3>
|
2026-02-04 16:57:25 +07:00
|
|
|
<p class="text-slate-500 text-xs mb-6 line-clamp-2 leading-relaxed flex-1">
|
2026-02-02 11:11:25 +07:00
|
|
|
{{ getLocalizedText(course.description) }}
|
|
|
|
|
</p>
|
2026-01-13 10:46:40 +07:00
|
|
|
|
2026-02-02 11:11:25 +07:00
|
|
|
<!-- Card Footer -->
|
2026-02-04 16:57:25 +07:00
|
|
|
<div class="pt-4 border-t border-slate-100 flex items-center justify-between mt-auto">
|
|
|
|
|
<span class="text-lg font-black text-blue-600 tracking-tight">
|
2026-02-02 11:11:25 +07:00
|
|
|
{{ course.is_free ? 'ฟรี' : course.price }}
|
|
|
|
|
</span>
|
|
|
|
|
<NuxtLink
|
|
|
|
|
:to="`/course/${course.id}`"
|
2026-02-04 16:57:25 +07:00
|
|
|
class="px-4 py-2 bg-slate-50 hover:bg-blue-600 text-slate-600 hover:text-white rounded-lg text-xs font-bold transition-all border border-slate-200 hover:border-blue-500/50"
|
2026-02-02 11:11:25 +07:00
|
|
|
>
|
|
|
|
|
ดูรายละเอียด
|
|
|
|
|
</NuxtLink>
|
|
|
|
|
</div>
|
2026-01-13 10:46:40 +07:00
|
|
|
</div>
|
|
|
|
|
</div>
|
2026-02-02 11:11:25 +07:00
|
|
|
</div>
|
2026-01-13 10:46:40 +07:00
|
|
|
|
2026-02-02 11:11:25 +07:00
|
|
|
<!-- Empty State (No Results) -->
|
|
|
|
|
<div v-else class="text-center py-20">
|
|
|
|
|
<div class="text-6xl mb-6 opacity-50 animate-bounce">🔭</div>
|
2026-02-04 16:57:25 +07:00
|
|
|
<h2 class="text-2xl font-black text-slate-900 mb-3">ไม่พบคอร์สที่คุณค้นหา</h2>
|
2026-02-02 11:11:25 +07:00
|
|
|
<p class="text-slate-400 mb-8 max-w-md mx-auto">
|
|
|
|
|
ลองใช้คำค้นหาอื่น หรือดูคอร์สทั้งหมดที่เรามีให้บริการ
|
|
|
|
|
</p>
|
|
|
|
|
<button
|
|
|
|
|
class="px-6 py-3 bg-blue-600 hover:bg-blue-500 text-white rounded-xl font-bold transition-all shadow-lg shadow-blue-600/20"
|
|
|
|
|
@click="searchQuery = ''"
|
|
|
|
|
>
|
|
|
|
|
แสดงคอร์สทั้งหมด
|
|
|
|
|
</button>
|
2026-01-13 10:46:40 +07:00
|
|
|
</div>
|
|
|
|
|
|
2026-02-02 11:11:25 +07:00
|
|
|
</div>
|
2026-01-13 10:46:40 +07:00
|
|
|
</section>
|
|
|
|
|
|
|
|
|
|
<!-- ==========================================
|
|
|
|
|
CTA SECTION
|
|
|
|
|
Call to action to register
|
|
|
|
|
========================================== -->
|
|
|
|
|
<section class="py-32 relative overflow-hidden">
|
|
|
|
|
<!-- Gradient Overlay -->
|
|
|
|
|
<div class="absolute inset-0 bg-gradient-to-t from-black/40 to-transparent pointer-events-none"/>
|
|
|
|
|
|
|
|
|
|
<div class="container mx-auto max-w-4xl text-center relative z-10 px-6">
|
2026-02-04 16:57:25 +07:00
|
|
|
<h2 class="text-4xl md:text-5xl font-black text-slate-900 mb-8 tracking-tight">
|
2026-01-13 10:46:40 +07:00
|
|
|
พร้อมจะเริ่มต้นแล้วหรือยัง?
|
|
|
|
|
</h2>
|
|
|
|
|
<p class="text-slate-400 text-xl mb-12 max-w-2xl mx-auto leading-relaxed">
|
|
|
|
|
ลงทะเบียนฟรีวันนี้เพื่อเข้าถึงบทเรียนพื้นฐาน และติดตามความคืบหน้าการเรียนของคุณได้ทันที ไม่มีค่าใช้จ่ายแอบแฝง
|
|
|
|
|
</p>
|
|
|
|
|
<NuxtLink
|
|
|
|
|
to="/auth/register"
|
|
|
|
|
class="inline-flex items-center gap-3 px-10 py-5 bg-gradient-to-r from-blue-600 to-indigo-600 hover:from-blue-500 hover:to-indigo-500 text-white rounded-2xl text-lg font-black shadow-2xl shadow-blue-900/40 hover:scale-105 transition-all duration-300"
|
|
|
|
|
>
|
2026-01-23 10:08:07 +07:00
|
|
|
<span></span>
|
2026-01-13 10:46:40 +07:00
|
|
|
<span>สมัครสมาชิกฟรี</span>
|
|
|
|
|
</NuxtLink>
|
|
|
|
|
</div>
|
|
|
|
|
</section>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
|
/*
|
|
|
|
|
MATCHING INDEX.VUE STYLES
|
|
|
|
|
These styles ensure consistency with the landing page theme.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/* Gradient Text Effect (Cyan to Blue) */
|
|
|
|
|
.text-gradient-cyan {
|
|
|
|
|
background: linear-gradient(135deg, #22d3ee 0%, #3b82f6 100%);
|
|
|
|
|
-webkit-background-clip: text;
|
|
|
|
|
-webkit-text-fill-color: transparent;
|
|
|
|
|
background-clip: text;
|
2026-02-11 15:27:22 +07:00
|
|
|
display: inline-block;
|
|
|
|
|
padding: 0.5em 0.2em;
|
|
|
|
|
margin: -0.5em -0.2em;
|
|
|
|
|
vertical-align: baseline;
|
2026-01-13 10:46:40 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Premium Glass Effect for Containers */
|
|
|
|
|
.glass-premium {
|
2026-02-02 11:11:25 +07:00
|
|
|
background: rgba(255, 255, 255, 0.7);
|
|
|
|
|
backdrop-filter: blur(40px);
|
|
|
|
|
border: 1px solid rgba(255, 255, 255, 0.5);
|
|
|
|
|
}
|
2026-02-04 16:57:25 +07:00
|
|
|
|
2026-01-13 10:46:40 +07:00
|
|
|
|
|
|
|
|
/* Glass Card Style for Course Items */
|
|
|
|
|
.glass-card {
|
2026-02-02 11:11:25 +07:00
|
|
|
background: white;
|
|
|
|
|
border: 1px solid rgba(0, 0, 0, 0.05);
|
|
|
|
|
border-radius: 2rem;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
box-shadow: 0 10px 30px rgba(0,0,0,0.05);
|
|
|
|
|
}
|
|
|
|
|
|
2026-02-04 16:57:25 +07:00
|
|
|
|
2026-01-13 10:46:40 +07:00
|
|
|
|
|
|
|
|
/* Slow Pulse Animation for Background Glows */
|
|
|
|
|
@keyframes pulse-slow {
|
|
|
|
|
0%, 100% { opacity: 0.1; transform: scale(1); }
|
|
|
|
|
50% { opacity: 0.15; transform: scale(1.15); }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.animate-pulse-slow {
|
|
|
|
|
animation: pulse-slow 10s linear infinite;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Slide Up Entrance Animation */
|
|
|
|
|
@keyframes slide-up {
|
|
|
|
|
from { opacity: 0; transform: translateY(30px); }
|
|
|
|
|
to { opacity: 1; transform: translateY(0); }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.slide-up {
|
|
|
|
|
animation: slide-up 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
|
|
|
|
|
opacity: 0;
|
|
|
|
|
}
|
|
|
|
|
</style>
|