2026-05-17 20:30:19 +07:00
|
|
|
<script setup lang="ts">
|
2026-05-21 10:15:02 +07:00
|
|
|
import type { WatchHistoryItem } from '~/composables/useWatchHistory'
|
2026-05-17 20:30:19 +07:00
|
|
|
|
2026-07-31 03:14:13 -04:00
|
|
|
const { data, pending, error } = await useFetch('/api/movies', {
|
|
|
|
|
query: { page: 1 },
|
|
|
|
|
default: () => ({ items: [], sources: [] }),
|
2026-05-17 20:30:19 +07:00
|
|
|
})
|
|
|
|
|
|
2026-07-31 03:14:13 -04:00
|
|
|
const { data: additionalData } = await useFetch('/api/movies', {
|
|
|
|
|
query: { page: 2 },
|
|
|
|
|
default: () => ({ items: [], sources: [] }),
|
2026-05-26 15:06:11 +07:00
|
|
|
})
|
|
|
|
|
|
2026-07-31 03:14:13 -04:00
|
|
|
const { data: sectionsData } = await useFetch('/api/home/sections', {
|
|
|
|
|
default: () => ({ recentComments: [], trending: [], mostRated: [], hotGenres: [] }),
|
2026-07-29 23:10:40 -04:00
|
|
|
})
|
|
|
|
|
|
2026-05-17 20:30:19 +07:00
|
|
|
const movies = computed(() => data.value?.items ?? [])
|
2026-05-26 15:06:11 +07:00
|
|
|
const additionalMovies = computed(() => additionalData.value?.items ?? [])
|
|
|
|
|
const homeCatalog = computed(() => uniqueHeroMovies([...movies.value, ...additionalMovies.value]))
|
2026-05-17 20:30:19 +07:00
|
|
|
const heroIndex = ref(0)
|
2026-05-21 23:07:59 +07:00
|
|
|
const heroSlides = computed(() => uniqueHeroMovies(movies.value).slice(0, 6))
|
2026-05-17 20:30:19 +07:00
|
|
|
const hero = computed(() => heroSlides.value[heroIndex.value] ?? movies.value[0])
|
2026-05-21 23:07:59 +07:00
|
|
|
const heroDetail = ref<any>(null)
|
2026-05-17 20:30:19 +07:00
|
|
|
const sourceStatus = computed(() => data.value?.sources ?? [])
|
2026-05-18 11:04:45 +07:00
|
|
|
const watchHistory = ref<WatchHistoryItem[]>([])
|
2026-05-21 10:15:02 +07:00
|
|
|
const {
|
|
|
|
|
loadWatchHistory: fetchWatchHistory,
|
|
|
|
|
clearWatchHistory: removeWatchHistory,
|
|
|
|
|
} = useWatchHistory()
|
2026-05-17 20:30:19 +07:00
|
|
|
|
2026-05-21 23:07:59 +07:00
|
|
|
const heroDetailCache = new Map<string, any>()
|
2026-07-26 11:21:54 -04:00
|
|
|
const heroSliderRef = ref<{ goTo: (index: number) => void } | null>(null)
|
2026-05-21 23:07:59 +07:00
|
|
|
|
|
|
|
|
const heroDescription = computed(() => {
|
|
|
|
|
const content = String(heroDetail.value?.content || '').trim()
|
|
|
|
|
if (content) return content
|
|
|
|
|
|
|
|
|
|
const fallback = [
|
|
|
|
|
hero.value?.originName,
|
|
|
|
|
hero.value?.time,
|
|
|
|
|
].filter(Boolean)
|
|
|
|
|
|
|
|
|
|
return fallback.length ? fallback.join('. ') : 'Phim Hàn Quốc Vietsub mới cập nhật.'
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
function comparableMovieText(value?: string) {
|
|
|
|
|
return String(value || '')
|
|
|
|
|
.normalize('NFD')
|
|
|
|
|
.replace(/[\u0300-\u036f]/g, '')
|
|
|
|
|
.toLowerCase()
|
|
|
|
|
.replace(/[^a-z0-9]+/g, '-')
|
|
|
|
|
.replace(/^-+|-+$/g, '')
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function uniqueHeroMovies(items: any[]) {
|
|
|
|
|
const seen = new Set<string>()
|
|
|
|
|
const uniqueItems: any[] = []
|
|
|
|
|
|
|
|
|
|
for (const item of items) {
|
|
|
|
|
const keys = [
|
|
|
|
|
comparableMovieText(item.slug),
|
|
|
|
|
comparableMovieText(item.originName),
|
|
|
|
|
comparableMovieText(item.name),
|
|
|
|
|
].filter(Boolean)
|
|
|
|
|
|
|
|
|
|
if (keys.some((key) => seen.has(key))) continue
|
|
|
|
|
|
|
|
|
|
keys.forEach((key) => seen.add(key))
|
|
|
|
|
uniqueItems.push(item)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return uniqueItems
|
|
|
|
|
}
|
2026-05-17 20:30:19 +07:00
|
|
|
|
2026-05-26 15:06:11 +07:00
|
|
|
function movieListKey(movie: any) {
|
|
|
|
|
return comparableMovieText(movie?.originName || movie?.name || movie?.slug)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function withoutMovies(items: any[], excluded: any[]) {
|
|
|
|
|
const excludedKeys = new Set(excluded.map(movieListKey))
|
|
|
|
|
return items.filter((item) => !excludedKeys.has(movieListKey(item)))
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function movieUpdateTime(movie: any) {
|
|
|
|
|
return movie?.updatedAt ? new Date(movie.updatedAt).getTime() || 0 : 0
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const topTrending = computed(() => [...homeCatalog.value]
|
2026-07-22 11:43:14 -04:00
|
|
|
.filter((movie: any) => (movie.views || 0) > 0)
|
|
|
|
|
.sort((a: any, b: any) => (Number(b.views) || 0) - (Number(a.views) || 0)
|
|
|
|
|
|| (Number(b.rating) || 0) - (Number(a.rating) || 0))
|
2026-05-26 15:06:11 +07:00
|
|
|
.slice(0, 10))
|
|
|
|
|
|
|
|
|
|
const latestMovies = computed(() => withoutMovies(homeCatalog.value, topTrending.value)
|
|
|
|
|
.sort((a: any, b: any) => movieUpdateTime(b) - movieUpdateTime(a))
|
|
|
|
|
.slice(0, 12))
|
|
|
|
|
|
|
|
|
|
const seriesMovies = computed(() => withoutMovies(
|
|
|
|
|
homeCatalog.value.filter((movie: any) => movie.type !== 'single'),
|
|
|
|
|
[...topTrending.value, ...latestMovies.value],
|
|
|
|
|
).slice(0, 12))
|
|
|
|
|
|
|
|
|
|
const singleMovies = computed(() => withoutMovies(
|
|
|
|
|
homeCatalog.value.filter((movie: any) => movie.type === 'single' || movie.episode === 'Full'),
|
|
|
|
|
[...topTrending.value, ...latestMovies.value, ...seriesMovies.value],
|
|
|
|
|
).slice(0, 12))
|
|
|
|
|
|
|
|
|
|
const rows = computed(() => [
|
|
|
|
|
{
|
|
|
|
|
title: 'Mới cập nhật',
|
|
|
|
|
to: '/phim',
|
|
|
|
|
items: latestMovies.value,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: 'Phim bộ Hàn Quốc',
|
|
|
|
|
to: '/phim?type=series',
|
|
|
|
|
items: seriesMovies.value,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: 'Phim lẻ & đặc biệt',
|
|
|
|
|
to: '/phim?type=single',
|
|
|
|
|
items: singleMovies.value,
|
|
|
|
|
},
|
|
|
|
|
])
|
|
|
|
|
|
2026-07-29 23:10:40 -04:00
|
|
|
const recentComments = computed(() => sectionsData.value?.recentComments || [])
|
|
|
|
|
const trendingMovies = computed(() => sectionsData.value?.trending || [])
|
|
|
|
|
const mostRatedMovies = computed(() => sectionsData.value?.mostRated || [])
|
|
|
|
|
const hotGenres = computed(() => sectionsData.value?.hotGenres || [])
|
|
|
|
|
const commentsCarouselRef = ref<HTMLDivElement | null>(null)
|
|
|
|
|
|
|
|
|
|
function scrollComments(direction: 'left' | 'right') {
|
|
|
|
|
const container = commentsCarouselRef.value
|
|
|
|
|
if (!container) return
|
|
|
|
|
const firstCard = container.querySelector('a') as HTMLElement | null
|
|
|
|
|
if (!firstCard) return
|
|
|
|
|
const cardWidth = firstCard.offsetWidth
|
|
|
|
|
const gap = 16
|
|
|
|
|
const scrollAmount = cardWidth + gap
|
|
|
|
|
container.scrollBy({
|
|
|
|
|
left: direction === 'left' ? -scrollAmount : scrollAmount,
|
|
|
|
|
behavior: 'smooth',
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function timeAgo(dateStr: string): string {
|
|
|
|
|
if (!dateStr) return ''
|
|
|
|
|
const date = new Date(dateStr)
|
|
|
|
|
if (isNaN(date.getTime())) return ''
|
|
|
|
|
const now = new Date()
|
|
|
|
|
const seconds = Math.floor((now.getTime() - date.getTime()) / 1000)
|
|
|
|
|
if (seconds < 60) return 'Vừa xong'
|
|
|
|
|
const minutes = Math.floor(seconds / 60)
|
|
|
|
|
if (minutes < 60) return `${minutes} phút trước`
|
|
|
|
|
const hours = Math.floor(minutes / 60)
|
|
|
|
|
if (hours < 24) return `${hours} giờ trước`
|
|
|
|
|
const days = Math.floor(hours / 24)
|
|
|
|
|
if (days < 30) return `${days} ngày trước`
|
|
|
|
|
return date.toLocaleDateString('vi-VN')
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function formatCommentContent(content: string, maxLength = 120) {
|
|
|
|
|
if (!content) return ''
|
|
|
|
|
if (/!\[GIF\]\(/i.test(content)) return 'Đã gửi một GIF'
|
|
|
|
|
if (content.length <= maxLength) return content
|
|
|
|
|
return `${content.slice(0, maxLength).trim()}...`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function movieLinkFromSection(movie: any) {
|
|
|
|
|
return {
|
|
|
|
|
path: `/phim/${movie?.slug}`,
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function genreTagColor(index: number) {
|
|
|
|
|
const colors = [
|
|
|
|
|
'bg-yellow-500',
|
|
|
|
|
'bg-green-500',
|
|
|
|
|
'bg-indigo-500',
|
|
|
|
|
'bg-cyan-500',
|
|
|
|
|
'bg-orange-500',
|
|
|
|
|
'bg-pink-500',
|
|
|
|
|
'bg-red-500',
|
|
|
|
|
'bg-lime-500',
|
|
|
|
|
'bg-teal-500',
|
|
|
|
|
'bg-violet-500',
|
|
|
|
|
]
|
|
|
|
|
return colors[index % colors.length]
|
|
|
|
|
}
|
|
|
|
|
|
2026-05-23 15:08:57 +07:00
|
|
|
function movieLink(movie: any) {
|
|
|
|
|
return {
|
|
|
|
|
path: `/phim/${movie?.slug}`,
|
|
|
|
|
}
|
|
|
|
|
}
|
2026-07-26 11:21:54 -04:00
|
|
|
function goToSlide(index: number) {
|
|
|
|
|
heroSliderRef.value?.goTo(index)
|
2026-05-17 20:30:19 +07:00
|
|
|
}
|
|
|
|
|
|
2026-05-18 11:04:45 +07:00
|
|
|
function watchHistoryLink(item: WatchHistoryItem) {
|
|
|
|
|
return {
|
|
|
|
|
path: `/xem/${item.slug}`,
|
|
|
|
|
query: {
|
|
|
|
|
server: item.serverIndex || 0,
|
|
|
|
|
ep: (item.episodeIndex || 0) + 1,
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-05-21 10:15:02 +07:00
|
|
|
function formatWatchTime(seconds = 0) {
|
|
|
|
|
const totalSeconds = Math.max(Math.floor(seconds), 0)
|
|
|
|
|
const hours = Math.floor(totalSeconds / 3600)
|
|
|
|
|
const minutes = Math.floor((totalSeconds % 3600) / 60)
|
|
|
|
|
const remainingSeconds = totalSeconds % 60
|
|
|
|
|
|
|
|
|
|
if (hours) {
|
|
|
|
|
return `${hours}:${String(minutes).padStart(2, '0')}:${String(remainingSeconds).padStart(2, '0')}`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return `${minutes}:${String(remainingSeconds).padStart(2, '0')}`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function watchProgressPercent(item: WatchHistoryItem) {
|
|
|
|
|
if (!item.durationSeconds || !item.progressSeconds) return 6
|
|
|
|
|
return Math.min(Math.max((item.progressSeconds / item.durationSeconds) * 100, 6), 100)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function watchProgressLabel(item: WatchHistoryItem) {
|
|
|
|
|
if (item.progressSeconds && item.durationSeconds) {
|
|
|
|
|
return `${formatWatchTime(item.progressSeconds)} / ${formatWatchTime(item.durationSeconds)}`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (item.progressSeconds) {
|
|
|
|
|
return `${formatWatchTime(item.progressSeconds)} đã xem`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return item.episodeName || `Tập ${(item.episodeIndex || 0) + 1}`
|
|
|
|
|
}
|
|
|
|
|
|
2026-05-24 22:35:13 +07:00
|
|
|
async function loadWatchHistory() {
|
|
|
|
|
if (!import.meta.client) return
|
|
|
|
|
watchHistory.value = await fetchWatchHistory(12)
|
|
|
|
|
}
|
2026-05-17 20:30:19 +07:00
|
|
|
|
2026-05-24 22:35:13 +07:00
|
|
|
async function clearWatchHistory() {
|
|
|
|
|
if (!import.meta.client) return
|
|
|
|
|
await removeWatchHistory()
|
|
|
|
|
watchHistory.value = []
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
watch(heroSlides, (slides) => {
|
|
|
|
|
if (heroIndex.value >= slides.length) {
|
|
|
|
|
heroIndex.value = 0
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
watch(hero, async (currentHero) => {
|
|
|
|
|
if (!currentHero?.slug) {
|
|
|
|
|
heroDetail.value = null
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
2026-07-31 00:20:35 -04:00
|
|
|
const cacheKey = currentHero.slug
|
2026-05-24 22:35:13 +07:00
|
|
|
if (heroDetailCache.has(cacheKey)) {
|
|
|
|
|
heroDetail.value = heroDetailCache.get(cacheKey)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
heroDetail.value = null
|
|
|
|
|
try {
|
2026-07-31 00:20:35 -04:00
|
|
|
const detail = await $fetch(`/api/movies/${currentHero.slug}`)
|
2026-05-24 22:35:13 +07:00
|
|
|
heroDetailCache.set(cacheKey, detail)
|
|
|
|
|
|
2026-07-31 00:20:35 -04:00
|
|
|
if (hero.value?.slug === currentHero.slug) {
|
2026-05-24 22:35:13 +07:00
|
|
|
heroDetail.value = detail
|
|
|
|
|
}
|
|
|
|
|
} catch {
|
|
|
|
|
heroDetail.value = null
|
|
|
|
|
}
|
|
|
|
|
}, { immediate: true })
|
2026-05-21 23:07:59 +07:00
|
|
|
|
2026-05-24 22:35:13 +07:00
|
|
|
onMounted(() => {
|
|
|
|
|
loadWatchHistory()
|
|
|
|
|
window.addEventListener('storage', loadWatchHistory)
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
onBeforeUnmount(() => {
|
|
|
|
|
if (import.meta.client) window.removeEventListener('storage', loadWatchHistory)
|
|
|
|
|
})
|
|
|
|
|
|
2026-05-17 20:30:19 +07:00
|
|
|
useHead({
|
2026-05-24 22:35:13 +07:00
|
|
|
title: 'CineK - Xem phim Hàn Quốc online',
|
2026-05-17 20:30:19 +07:00
|
|
|
meta: [
|
|
|
|
|
{
|
|
|
|
|
name: 'description',
|
2026-05-24 22:35:13 +07:00
|
|
|
content: 'Xem phim Hàn Quốc online tại CineK với kho phim bộ, phim lẻ, show mới cập nhật, hỗ trợ Vietsub, thuyết minh và lồng tiếng.',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
property: 'og:title',
|
|
|
|
|
content: 'CineK - Xem phim Hàn Quốc online',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
property: 'og:description',
|
|
|
|
|
content: 'Kho phim Hàn Quốc online mới cập nhật, trải nghiệm xem mượt trên điện thoại, máy tính bảng và desktop.',
|
2026-05-17 20:30:19 +07:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
})
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<template>
|
2026-07-30 05:50:10 -04:00
|
|
|
<main class="min-h-screen overflow-hidden bg-[#0E111A]">
|
2026-05-17 20:30:19 +07:00
|
|
|
<AppHeader />
|
|
|
|
|
|
2026-07-26 11:21:54 -04:00
|
|
|
<div v-if="hero" class="relative bg-black mt-16 md:mt-0">
|
2026-07-29 23:10:40 -04:00
|
|
|
<section
|
|
|
|
|
class="relative w-full aspect-video md:h-screen overflow-hidden bg-black after:content-[''] after:absolute after:bottom-0 after:left-0 after:right-0 after:h-1.5 after:bg-black after:z-10">
|
2026-07-27 04:20:00 -04:00
|
|
|
<ClientOnly>
|
|
|
|
|
<HeroSlider v-if="heroSlides.length" ref="heroSliderRef" :slides="heroSlides"
|
|
|
|
|
@update:modelValue="heroIndex = $event" />
|
|
|
|
|
</ClientOnly>
|
2026-05-24 22:35:13 +07:00
|
|
|
|
2026-07-27 04:20:00 -04:00
|
|
|
<!-- Mobile gradient overlay (bottom only) -->
|
2026-07-29 23:10:40 -04:00
|
|
|
<div class="absolute inset-0 z-10 pointer-events-none md:hidden"
|
|
|
|
|
style="background:linear-gradient(to top, #000000 0%, rgba(0,0,0,0.92) 8%, rgba(0,0,0,0.75) 22%, rgba(0,0,0,0.35) 50%, transparent 78%)">
|
2026-07-27 04:20:00 -04:00
|
|
|
</div>
|
2026-05-17 20:30:19 +07:00
|
|
|
|
2026-07-27 04:20:00 -04:00
|
|
|
<!-- Desktop gradient overlay (bottom only) -->
|
2026-07-29 23:10:40 -04:00
|
|
|
<div class="absolute inset-0 z-10 pointer-events-none hidden md:block"
|
|
|
|
|
style="background:linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.75) 20%, rgba(0,0,0,0.35) 45%, transparent 70%)">
|
2026-07-27 04:20:00 -04:00
|
|
|
</div>
|
2026-07-23 02:56:24 -04:00
|
|
|
|
2026-07-27 04:20:00 -04:00
|
|
|
<!-- Content overlay -->
|
|
|
|
|
<div class="absolute inset-0 z-20 flex items-end pb-8 md:pb-[8vw] lg:pb-[7vw] xl:pb-40 pointer-events-none">
|
|
|
|
|
<div class="max-w-350 w-full mx-auto px-4 md:px-8 pointer-events-none">
|
2026-07-23 02:56:24 -04:00
|
|
|
<div
|
2026-07-27 04:20:00 -04:00
|
|
|
class="max-w-xl mx-auto md:mx-0 md:max-w-[50vw] lg:max-w-2xl flex flex-col items-center md:items-start text-center md:text-left">
|
|
|
|
|
<!-- Title -->
|
|
|
|
|
<div class="mb-1 md:mb-4 lg:mb-6">
|
|
|
|
|
<NuxtLink :to="movieLink(hero)" class="md:pointer-events-none" aria-label="Xem chi tiết phim">
|
|
|
|
|
<h1 class="text-lg md:text-3xl lg:text-5xl font-black leading-tight text-white drop-shadow-2xl">
|
|
|
|
|
{{ hero.name }}
|
|
|
|
|
</h1>
|
2026-07-23 02:56:24 -04:00
|
|
|
</NuxtLink>
|
|
|
|
|
</div>
|
2026-07-27 04:20:00 -04:00
|
|
|
|
|
|
|
|
<!-- Original name -->
|
|
|
|
|
<p class="text-xs md:text-sm lg:text-base font-medium text-[#FECF59] mb-2 md:mb-3 lg:mb-4 drop-shadow">
|
|
|
|
|
{{ hero.originName || 'Kho phim Hàn Vietsub mới cập nhật' }}
|
|
|
|
|
</p>
|
|
|
|
|
|
|
|
|
|
<!-- Badges (mobile) -->
|
|
|
|
|
<div
|
|
|
|
|
class="flex justify-center md:justify-start items-center flex-wrap gap-2 mb-3 md:mb-4 text-[10px] md:text-xs text-white/90">
|
|
|
|
|
<div v-if="hero.rating"
|
|
|
|
|
class="flex items-center text-[11px] font-bold rounded overflow-hidden border border-solid border-[rgba(1,180,228,0.5)]">
|
|
|
|
|
<span class="bg-[#01B4E4] text-white px-1.5 py-0.5">TMDb</span>
|
|
|
|
|
<span class="bg-[rgba(1,180,228,0.1)] text-white px-1.5 py-0.5">{{ hero.rating.toFixed(1) }}</span>
|
|
|
|
|
</div>
|
|
|
|
|
<span v-if="hero.quality"
|
|
|
|
|
class="inline-flex items-center justify-center rounded-sm text-[#141414] font-black leading-none tracking-normal h-5.5 px-2 text-[11px]"
|
|
|
|
|
style="background-color:#ffd875;background-image:linear-gradient(220deg, #ffd875 0%, #ffe7a8 45%, #ffffff 100%)">
|
|
|
|
|
{{ hero.quality }}
|
|
|
|
|
</span>
|
2026-07-29 23:10:40 -04:00
|
|
|
<span v-if="getEpisodeDisplay(hero.episode, hero.episodeTotal)"
|
|
|
|
|
class="px-2 py-0.75 rounded border border-white bg-black/40">
|
2026-07-28 21:55:39 -04:00
|
|
|
{{ getEpisodeDisplay(hero.episode, hero.episodeTotal) }}
|
2026-07-27 04:20:00 -04:00
|
|
|
</span>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!-- Genre tags (desktop only) -->
|
|
|
|
|
<div v-if="hero.categories?.length"
|
|
|
|
|
class="hidden md:flex justify-center md:justify-start items-center flex-wrap gap-2 mb-4">
|
|
|
|
|
<span v-for="category in hero.categories.slice(0, 4)" :key="category"
|
|
|
|
|
class="text-[10px] md:text-xs text-white/80 bg-white/10 px-2 py-0.75 rounded-md">
|
|
|
|
|
{{ category }}
|
|
|
|
|
</span>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!-- Description (desktop only) -->
|
|
|
|
|
<div class="hidden md:block mb-4 lg:mb-8 max-w-sm lg:max-w-lg">
|
|
|
|
|
<p class="text-xs lg:text-sm text-white font-light leading-relaxed line-clamp-2 lg:line-clamp-3">
|
|
|
|
|
{{ heroDescription }}
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!-- Action buttons (desktop only) -->
|
|
|
|
|
<div
|
|
|
|
|
class="hidden md:flex justify-center md:justify-start items-center gap-4 pointer-events-auto relative z-40">
|
|
|
|
|
<!-- Watch Now button -->
|
|
|
|
|
<NuxtLink :to="movieLink(hero)"
|
|
|
|
|
class="w-12 h-12 md:w-14 md:h-14 lg:w-16 lg:h-16 text-[#0f1115] rounded-full flex items-center justify-center transition-transform hover:scale-105 shadow-[0_0_15px_rgba(254,207,89,0.5)] shrink-0 pointer-events-auto"
|
|
|
|
|
style="background:linear-gradient(39deg, rgb(254, 207, 89), rgb(255, 241, 204))"
|
|
|
|
|
aria-label="Xem ngay">
|
|
|
|
|
<AppIcon name="play" class="size-6 md:size-7 lg:size-8 fill-current" />
|
|
|
|
|
</NuxtLink>
|
|
|
|
|
|
|
|
|
|
<!-- Info + Add to List combo button -->
|
|
|
|
|
<div
|
|
|
|
|
class="flex bg-white/5 border border-white/20 rounded-full backdrop-blur-md h-10 md:h-12 lg:h-14 items-center overflow-hidden pointer-events-auto">
|
|
|
|
|
<!-- Add to list button -->
|
|
|
|
|
<button type="button"
|
|
|
|
|
class="group/btn w-16 md:w-20 h-full flex items-center justify-center transition-all hover:bg-white/10"
|
|
|
|
|
aria-label="Thêm vào danh sách">
|
|
|
|
|
<AppIcon name="plus" class="size-5 md:size-6 text-white" />
|
|
|
|
|
</button>
|
|
|
|
|
<!-- Divider -->
|
|
|
|
|
<div class="w-px h-6 bg-white/30"></div>
|
|
|
|
|
<!-- Info/details button -->
|
|
|
|
|
<NuxtLink :to="movieLink(hero)"
|
|
|
|
|
class="group/link w-16 md:w-20 h-full flex items-center justify-center transition-colors text-white hover:text-[#FECF59]"
|
|
|
|
|
aria-label="Thông tin phim">
|
|
|
|
|
<AppIcon name="info"
|
|
|
|
|
class="size-6 md:size-7 text-white fill-none stroke-current group-hover/link:text-[#FECF59] transition-all" />
|
|
|
|
|
</NuxtLink>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2026-07-23 02:56:24 -04:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
2026-07-27 04:20:00 -04:00
|
|
|
</section>
|
2026-07-26 11:21:54 -04:00
|
|
|
|
2026-07-23 02:56:24 -04:00
|
|
|
<!-- Thumbnail navigation -->
|
2026-05-17 22:47:43 +07:00
|
|
|
<div
|
2026-07-27 04:20:00 -04:00
|
|
|
class="relative md:absolute md:bottom-8 md:left-auto md:right-8 md:translate-x-0 z-50 flex gap-2 overflow-x-auto max-w-full md:max-w-md lg:max-w-lg py-3 md:py-0 pb-2 md:pb-0 snap-x px-4 md:px-2 pointer-events-auto scroll-smooth [&::-webkit-scrollbar]:hidden bg-transparent"
|
2026-07-23 02:56:24 -04:00
|
|
|
style="scrollbar-width:none;-ms-overflow-style:none">
|
|
|
|
|
<button v-for="(slide, index) in heroSlides" :key="`${slide.source}-${slide.slug}-thumb`" type="button"
|
2026-07-26 11:21:54 -04:00
|
|
|
class="relative shrink-0 w-[14vw] sm:w-[10vw] md:w-[7vw] lg:w-[6vw] xl:w-[5vw] max-w-10 md:max-w-18.75 lg:max-w-21.25 aspect-square md:aspect-video transition-all duration-300 rounded-full md:rounded-lg overflow-hidden snap-center transform-gpu border-2 cursor-pointer"
|
2026-07-23 02:56:24 -04:00
|
|
|
:class="index === heroIndex ? 'border-white/90 opacity-100 scale-100 shadow-md' : 'border-transparent opacity-80 scale-95 hover:scale-100 hover:opacity-100'"
|
2026-07-27 04:20:00 -04:00
|
|
|
style="-webkit-mask-image: -webkit-radial-gradient(white, black); mask-image: radial-gradient(white, black);"
|
|
|
|
|
:aria-label="`Chuyển đến phim ${index + 1}`" @click="goToSlide(index)">
|
2026-07-30 21:38:01 -04:00
|
|
|
<img :src="slide.poster || slide.thumb" :alt="slide.name"
|
2026-07-26 11:21:54 -04:00
|
|
|
class="absolute inset-0 h-full w-full object-cover rounded-full md:rounded-lg pointer-events-none">
|
2026-07-23 02:56:24 -04:00
|
|
|
</button>
|
2026-05-17 20:30:19 +07:00
|
|
|
</div>
|
2026-07-26 11:21:54 -04:00
|
|
|
</div>
|
2026-05-17 20:30:19 +07:00
|
|
|
|
2026-05-24 22:35:13 +07:00
|
|
|
<section v-else-if="pending"
|
|
|
|
|
class="mx-auto flex min-h-screen max-w-390 items-center px-4 pt-36 sm:px-6 lg:px-8 lg:pt-24 xl:px-10">
|
|
|
|
|
<div class="w-full">
|
|
|
|
|
<div class="h-12 w-4/5 animate-pulse rounded bg-white/10 sm:h-14" />
|
|
|
|
|
<div class="mt-4 h-5 w-1/2 animate-pulse rounded bg-yellow-300/20" />
|
|
|
|
|
<div class="mt-5 flex flex-wrap gap-2">
|
|
|
|
|
<div class="h-8 w-16 animate-pulse rounded-md bg-yellow-300/20" />
|
|
|
|
|
<div class="h-8 w-18 animate-pulse rounded-md bg-white/10" />
|
|
|
|
|
<div class="h-8 w-14 animate-pulse rounded-md bg-white/10" />
|
|
|
|
|
<div class="h-8 w-20 animate-pulse rounded-md bg-white/10" />
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mt-8 space-y-3">
|
|
|
|
|
<div class="h-4 animate-pulse rounded bg-white/10" />
|
|
|
|
|
<div class="h-4 w-11/12 animate-pulse rounded bg-white/10" />
|
|
|
|
|
<div class="h-4 w-4/5 animate-pulse rounded bg-white/10" />
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mt-9 flex items-center gap-3">
|
|
|
|
|
<div class="size-14 animate-pulse rounded-full bg-yellow-300/25 sm:size-16" />
|
|
|
|
|
<div class="size-10 animate-pulse rounded-full bg-white/10 sm:size-11" />
|
|
|
|
|
<div class="size-10 animate-pulse rounded-full bg-white/10 sm:size-11" />
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="hidden">
|
|
|
|
|
<h1 class="text-4xl font-black text-white">CineK</h1>
|
2026-05-17 20:30:19 +07:00
|
|
|
<p class="mt-3 text-slate-300">Đang tải kho phim Hàn Quốc...</p>
|
|
|
|
|
</div>
|
2026-07-28 03:29:55 -04:00
|
|
|
</section>
|
|
|
|
|
|
|
|
|
|
<section v-else class="flex min-h-screen items-center justify-center px-4 pt-16 sm:px-6 lg:px-8">
|
|
|
|
|
<div class="text-center">
|
|
|
|
|
<div class="mx-auto mb-6 flex size-20 items-center justify-center rounded-full bg-yellow-400/10">
|
|
|
|
|
<AppIcon name="film" class="size-10 text-yellow-400" />
|
|
|
|
|
</div>
|
|
|
|
|
<h1 class="text-2xl font-black text-white sm:text-3xl">Web đang chưa cập nhật phim</h1>
|
|
|
|
|
<p class="mx-auto mt-3 max-w-md text-sm text-slate-400 sm:text-base">
|
|
|
|
|
Hiện tại chưa có bộ phim nào. Vui lòng quay lại sau để khám phá kho phim mới nhất nhé!
|
|
|
|
|
</p>
|
|
|
|
|
<NuxtLink to="/phim"
|
|
|
|
|
class="mt-6 inline-flex items-center gap-2 rounded-full bg-yellow-400 px-6 py-2.5 text-sm font-black text-slate-950 transition hover:bg-yellow-300">
|
|
|
|
|
Khám phá kho phim
|
|
|
|
|
</NuxtLink>
|
|
|
|
|
</div>
|
2026-05-17 20:30:19 +07:00
|
|
|
</section>
|
|
|
|
|
|
2026-05-24 22:35:13 +07:00
|
|
|
<div class="relative z-10 mx-auto max-w-390 px-4 pb-16 pt-8 sm:px-6 lg:px-8 xl:px-10">
|
2026-05-23 15:08:57 +07:00
|
|
|
<div v-if="sourceStatus.length" class="hidden">
|
2026-05-17 22:47:43 +07:00
|
|
|
<span v-for="source in sourceStatus" :key="source.name"
|
|
|
|
|
class="rounded-full border border-white/10 bg-white/8 px-3 py-1">
|
2026-05-17 20:30:19 +07:00
|
|
|
{{ source.name }}: {{ source.ok ? 'sẵn sàng' : 'đang bị chặn' }}
|
|
|
|
|
</span>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<p v-if="error" class="rounded-md border border-red-300/30 bg-red-500/12 p-4 text-red-100">
|
|
|
|
|
Không tải được dữ liệu phim. Vui lòng thử lại sau.
|
|
|
|
|
</p>
|
|
|
|
|
|
2026-05-24 22:35:13 +07:00
|
|
|
<section v-if="topTrending.length" class="mb-12">
|
|
|
|
|
<div class="mb-5 flex items-center gap-3">
|
|
|
|
|
<h2 class="text-2xl font-black uppercase text-white">
|
|
|
|
|
TOP 10 <span class="text-yellow-400">CineK</span>
|
|
|
|
|
</h2>
|
|
|
|
|
<span class="hidden text-xs font-black uppercase tracking-[0.35em] text-slate-500 sm:inline">
|
2026-05-26 15:06:11 +07:00
|
|
|
Gợi ý nổi bật
|
2026-05-24 22:35:13 +07:00
|
|
|
</span>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="no-scrollbar -mx-4 ml-0.5 flex snap-x gap-4 overflow-x-auto px-4 pb-5 sm:ml-0">
|
|
|
|
|
<div v-for="(movie, index) in topTrending" :key="`${movie.source}-${movie.slug}-trending`"
|
|
|
|
|
class="w-44 shrink-0 snap-start sm:w-52 xl:w-56">
|
|
|
|
|
<HomeMovieCard :movie="movie" />
|
|
|
|
|
<div class="mt-2 grid grid-cols-[2.2rem_1fr] gap-2">
|
|
|
|
|
<span class="text-4xl font-black italic leading-none text-yellow-400">{{ index + 1 }}</span>
|
|
|
|
|
<span class="min-w-0 pt-1">
|
|
|
|
|
<span class="block truncate text-sm font-black text-white">{{ movie.name }}</span>
|
|
|
|
|
<span class="mt-0.5 block truncate text-xs font-semibold text-slate-500">
|
|
|
|
|
{{ movie.originName || movie.quality || movie.year }}
|
|
|
|
|
</span>
|
|
|
|
|
</span>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</section>
|
|
|
|
|
|
2026-05-18 11:04:45 +07:00
|
|
|
<section v-if="watchHistory.length" class="mb-12">
|
|
|
|
|
<div class="mb-4 flex items-center justify-between gap-4">
|
2026-05-24 22:35:13 +07:00
|
|
|
<h2 class="text-2xl font-extrabold text-white">Tiếp tục xem</h2>
|
2026-05-18 11:04:45 +07:00
|
|
|
<button type="button"
|
2026-05-24 22:35:13 +07:00
|
|
|
class="grid size-10 shrink-0 place-items-center rounded-full border border-white/20 bg-white/8 text-white transition hover:border-yellow-400/60 hover:bg-white/14"
|
2026-05-18 11:04:45 +07:00
|
|
|
aria-label="Xóa lịch sử xem" @click="clearWatchHistory">
|
2026-07-25 10:39:40 -04:00
|
|
|
<AppIcon name="trash" class="size-4" />
|
2026-05-18 11:04:45 +07:00
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="no-scrollbar -mx-4 ml-0.5 flex snap-x gap-4 overflow-x-auto px-4 pb-5 sm:ml-0">
|
|
|
|
|
<NuxtLink v-for="item in watchHistory" :key="`${item.source}-${item.slug}`" :to="watchHistoryLink(item)"
|
|
|
|
|
class="group block w-44 shrink-0 snap-start sm:w-52 xl:w-56">
|
|
|
|
|
<div
|
2026-05-24 22:35:13 +07:00
|
|
|
class="relative aspect-2/3 overflow-hidden rounded-md bg-slate-900 shadow-xl shadow-black/25 ring-1 ring-white/10 transition duration-300 group-hover:-translate-y-1 group-hover:ring-yellow-400/60">
|
2026-05-18 11:04:45 +07:00
|
|
|
<img :src="item.thumb || item.poster" :alt="item.name"
|
|
|
|
|
class="h-full w-full object-cover transition duration-500 group-hover:scale-105">
|
|
|
|
|
<div class="absolute inset-x-0 bottom-0 h-1 bg-white/18">
|
2026-05-24 22:35:13 +07:00
|
|
|
<span class="block h-full bg-yellow-400" :style="{ width: `${watchProgressPercent(item)}%` }" />
|
2026-05-18 11:04:45 +07:00
|
|
|
</div>
|
2026-05-24 22:35:13 +07:00
|
|
|
<span class="absolute left-2 top-2 rounded bg-yellow-400 px-2 py-1 text-xs font-black text-slate-950">
|
2026-07-30 21:38:01 -04:00
|
|
|
{{ item.episodeName || getEpisodeDisplay(String((item.episodeIndex || 0) + 1), '') }}
|
2026-05-18 11:04:45 +07:00
|
|
|
</span>
|
|
|
|
|
<span
|
|
|
|
|
class="absolute bottom-3 right-3 rounded bg-black/70 px-2 py-1 text-[11px] font-black text-white opacity-0 transition group-hover:opacity-100">
|
|
|
|
|
Xem tiếp
|
|
|
|
|
</span>
|
|
|
|
|
</div>
|
|
|
|
|
<h3 class="mt-3 line-clamp-1 text-center text-sm font-black text-white">{{ item.name }}</h3>
|
|
|
|
|
<p class="mt-1 truncate text-center text-xs font-semibold text-slate-400">
|
2026-05-21 10:15:02 +07:00
|
|
|
{{ watchProgressLabel(item) }}
|
2026-05-18 11:04:45 +07:00
|
|
|
</p>
|
|
|
|
|
</NuxtLink>
|
|
|
|
|
</div>
|
|
|
|
|
</section>
|
|
|
|
|
|
2026-05-17 20:30:19 +07:00
|
|
|
<div v-if="pending" class="grid grid-cols-2 gap-4 sm:grid-cols-3 lg:grid-cols-6">
|
2026-05-17 22:47:43 +07:00
|
|
|
<div v-for="item in 12" :key="item" class="aspect-2/3 animate-pulse rounded-md bg-white/10" />
|
2026-05-17 20:30:19 +07:00
|
|
|
</div>
|
|
|
|
|
|
2026-05-23 15:08:57 +07:00
|
|
|
<section v-for="(row, index) in rows" v-show="row.items.length"
|
2026-05-17 22:47:43 +07:00
|
|
|
:id="index === 0 ? 'latest' : index === 1 ? 'series' : 'movies'" :key="row.title" class="mb-12">
|
2026-05-17 20:30:19 +07:00
|
|
|
<div class="mb-4 flex items-end justify-between gap-4">
|
|
|
|
|
<h2 class="text-2xl font-extrabold text-white">{{ row.title }}</h2>
|
2026-05-24 22:35:13 +07:00
|
|
|
<NuxtLink :to="row.to" class="text-sm font-semibold text-yellow-300 hover:text-white">
|
2026-05-17 20:30:19 +07:00
|
|
|
Xem thêm
|
|
|
|
|
</NuxtLink>
|
|
|
|
|
</div>
|
|
|
|
|
|
2026-05-17 22:47:43 +07:00
|
|
|
<div class="no-scrollbar -mx-4 ml-0.5 flex snap-x gap-4 overflow-x-auto px-4 pb-5 sm:ml-0">
|
|
|
|
|
<HomeMovieCard v-for="movie in row.items" :key="`${movie.source}-${movie.slug}`" :movie="movie" />
|
2026-05-17 20:30:19 +07:00
|
|
|
</div>
|
|
|
|
|
</section>
|
2026-07-29 23:10:40 -04:00
|
|
|
|
|
|
|
|
<!-- Community sections -->
|
2026-07-30 05:50:10 -04:00
|
|
|
<section class="relative overflow-visible rounded-2xl border border-white/15 bg-[#0E111A]">
|
2026-07-29 23:10:40 -04:00
|
|
|
<!-- Bình luận mới -->
|
2026-07-30 05:50:10 -04:00
|
|
|
<div v-if="recentComments.length" class="relative border-b border-white/10 px-5 py-5 sm:px-8 sm:py-6 lg:px-12">
|
2026-07-30 12:06:17 -04:00
|
|
|
<div class="mb-4 flex items-center gap-3 lg:mb-5">
|
|
|
|
|
<AppIcon name="message-circle" class="size-5 text-yellow-400 lg:size-6" />
|
|
|
|
|
<h2 class="text-base font-black uppercase text-white sm:text-lg lg:text-2xl">Bình luận mới</h2>
|
2026-07-29 23:10:40 -04:00
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="relative">
|
2026-07-30 12:06:17 -04:00
|
|
|
<div ref="commentsCarouselRef"
|
|
|
|
|
class="no-scrollbar flex snap-x snap-mandatory gap-4 overflow-x-auto overscroll-x-contain scroll-smooth pb-2">
|
2026-07-29 23:10:40 -04:00
|
|
|
<NuxtLink v-for="comment in recentComments" :key="comment.id" :to="movieLinkFromSection(comment.movie)"
|
2026-07-30 12:06:17 -04:00
|
|
|
class="group relative h-48 min-w-[82%] snap-start overflow-hidden rounded-xl bg-[#181a22]
|
|
|
|
|
transition-all duration-800 ease-in-out sm:h-50 sm:min-w-60 sm:rounded-2xl md:min-w-65
|
|
|
|
|
lg:min-w-67.5 xl:min-w-72.5 2xl:min-w-77.5">
|
2026-07-29 23:10:40 -04:00
|
|
|
<!-- Blurred background -->
|
2026-07-30 05:50:10 -04:00
|
|
|
<div v-if="comment.movie?.poster"
|
|
|
|
|
class="absolute inset-0 transition-all duration-700 ease-in-out group-hover:blur-sm group-hover:saturate-150"
|
|
|
|
|
:style="{
|
|
|
|
|
backgroundImage: `url(${comment.movie.poster})`,
|
|
|
|
|
backgroundSize: 'cover',
|
|
|
|
|
backgroundPosition: 'center',
|
|
|
|
|
filter: 'blur(8px) saturate(1.2)',
|
|
|
|
|
transform: 'scale(1.2)'
|
|
|
|
|
}" />
|
|
|
|
|
|
2026-07-29 23:10:40 -04:00
|
|
|
<!-- Dark gradient overlay -->
|
2026-07-30 05:50:10 -04:00
|
|
|
<div v-if="comment.movie?.poster">
|
|
|
|
|
<div class="absolute inset-0 bg-linear-to-t from-[#0E111A] via-[#0E111A]/50 to-transparent" />
|
|
|
|
|
<div class="absolute inset-0 bg-linear-to-t from-[#0E111A]/30 via-[#0E111A]/10 to-transparent
|
|
|
|
|
transition-all duration-1200 ease-[cubic-bezier(0.65,0,0.35,1)]
|
|
|
|
|
group-hover:from-[#0E111A]/10 group-hover:via-[#0E111A]/5" />
|
|
|
|
|
</div>
|
|
|
|
|
|
2026-07-29 23:10:40 -04:00
|
|
|
<!-- Content -->
|
2026-07-30 05:50:10 -04:00
|
|
|
<div class="relative z-10 flex h-full flex-col p-4 transition-all duration-700 ease-in-out
|
|
|
|
|
group-hover:shadow-[inset_0_1px_20px_rgba(255,255,255,0.03)]">
|
2026-07-29 23:10:40 -04:00
|
|
|
<!-- Top: Avatar + Poster -->
|
|
|
|
|
<div class="flex items-end justify-between">
|
|
|
|
|
<!-- Avatar -->
|
2026-07-30 05:50:10 -04:00
|
|
|
<img v-if="comment.user?.avatar" :src="comment.user.avatar" :alt="comment.user?.name"
|
2026-07-30 12:06:17 -04:00
|
|
|
class="mt-auto size-10 shrink-0 rounded-full object-cover shadow-md ring-2 ring-white/20 sm:size-12">
|
2026-07-30 05:50:10 -04:00
|
|
|
|
2026-07-29 23:10:40 -04:00
|
|
|
<!-- Fallback Avatar -->
|
2026-07-30 12:06:17 -04:00
|
|
|
<div v-else class="mt-auto grid size-10 shrink-0 place-items-center rounded-full
|
|
|
|
|
bg-linear-to-br from-yellow-400 to-orange-500 text-base font-black text-slate-950
|
|
|
|
|
shadow-md ring-2 ring-white/20 sm:size-12 sm:text-lg">
|
2026-07-29 23:10:40 -04:00
|
|
|
{{ (comment.user?.name || 'A').charAt(0).toUpperCase() }}
|
|
|
|
|
</div>
|
2026-07-30 05:50:10 -04:00
|
|
|
|
2026-07-29 23:10:40 -04:00
|
|
|
<!-- Movie Poster -->
|
2026-07-30 12:06:17 -04:00
|
|
|
<div
|
|
|
|
|
class="h-18 w-12 shrink-0 overflow-hidden rounded-lg shadow-md ring-1 ring-white/10 sm:h-19 sm:w-13">
|
2026-07-30 21:38:01 -04:00
|
|
|
<img v-if="comment.movie?.thumb" :src="comment.movie.thumb" :alt="comment.movie?.name"
|
2026-07-29 23:10:40 -04:00
|
|
|
class="h-full w-full object-cover">
|
2026-07-30 21:38:01 -04:00
|
|
|
<img v-else-if="comment.movie?.poster" :src="comment.movie.poster" :alt="comment.movie?.name"
|
2026-07-29 23:10:40 -04:00
|
|
|
class="h-full w-full object-cover">
|
|
|
|
|
<div v-else class="h-full w-full bg-slate-700" />
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2026-07-30 05:50:10 -04:00
|
|
|
|
2026-07-29 23:10:40 -04:00
|
|
|
<!-- User Name + Gender -->
|
|
|
|
|
<div class="mt-2 flex min-w-0 items-center gap-1.5">
|
|
|
|
|
<span class="truncate text-sm font-bold text-white">
|
|
|
|
|
{{ comment.user?.name || 'Ẩn danh' }}
|
|
|
|
|
</span>
|
|
|
|
|
<AppIcon v-if="comment.user?.gender === 'female'" name="venus"
|
|
|
|
|
class="size-3.5 shrink-0 text-pink-400" />
|
|
|
|
|
<AppIcon v-if="comment.user?.gender === 'male'" name="mars"
|
|
|
|
|
class="size-3.5 shrink-0 text-blue-400" />
|
|
|
|
|
<AppIcon v-if="comment.user?.gender === 'other'" name="minus"
|
|
|
|
|
class="size-3.5 shrink-0 text-purple-400" />
|
|
|
|
|
</div>
|
2026-07-30 05:50:10 -04:00
|
|
|
|
2026-07-29 23:10:40 -04:00
|
|
|
<!-- Comment -->
|
|
|
|
|
<p class="mt-1 line-clamp-2 text-[13px] leading-relaxed text-white/60">
|
|
|
|
|
{{ formatCommentContent(comment.content, 180) }}
|
|
|
|
|
</p>
|
2026-07-30 05:50:10 -04:00
|
|
|
|
2026-07-29 23:10:40 -04:00
|
|
|
<!-- Stats -->
|
|
|
|
|
<div class="mt-auto flex items-center gap-5 text-xs text-white/50">
|
|
|
|
|
<span class="flex items-center gap-1">
|
|
|
|
|
<AppIcon name="thumbs-up" class="size-3.5" />
|
|
|
|
|
{{ comment.likeCount ?? 0 }}
|
|
|
|
|
</span>
|
2026-07-30 05:50:10 -04:00
|
|
|
|
2026-07-29 23:10:40 -04:00
|
|
|
<span class="flex items-center gap-1">
|
|
|
|
|
<AppIcon name="thumbs-down" class="size-3.5" />
|
|
|
|
|
{{ comment.dislikeCount ?? 0 }}
|
|
|
|
|
</span>
|
2026-07-30 05:50:10 -04:00
|
|
|
|
2026-07-29 23:10:40 -04:00
|
|
|
<span class="flex items-center gap-1">
|
|
|
|
|
<AppIcon name="message-square" class="size-3.5" />
|
|
|
|
|
{{ comment.replyCount ?? 0 }}
|
|
|
|
|
</span>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</NuxtLink>
|
|
|
|
|
</div>
|
|
|
|
|
|
2026-07-30 05:50:10 -04:00
|
|
|
<!-- Carousel navigation -->
|
|
|
|
|
<button type="button" class="absolute -left-[4.25rem] top-1/2 z-20 hidden size-14 -translate-y-1/2 place-items-center
|
|
|
|
|
rounded-full border border-white/15 bg-[#11141d] text-white shadow-lg
|
|
|
|
|
transition hover:bg-[#181c27] lg:grid" @click="scrollComments('left')">
|
|
|
|
|
<AppIcon name="chevron-left" class="size-6" />
|
2026-07-29 23:10:40 -04:00
|
|
|
</button>
|
2026-07-30 05:50:10 -04:00
|
|
|
|
|
|
|
|
<button type="button" class="absolute -right-[4.25rem] top-1/2 z-20 hidden size-14 -translate-y-1/2 place-items-center
|
|
|
|
|
rounded-full border border-white/15 bg-[#11141d] text-white shadow-lg
|
|
|
|
|
transition hover:bg-[#181c27] lg:grid" @click="scrollComments('right')">
|
|
|
|
|
<AppIcon name="chevron-right" class="size-6" />
|
2026-07-29 23:10:40 -04:00
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!-- Top sections -->
|
2026-07-30 12:06:17 -04:00
|
|
|
<div
|
|
|
|
|
class="no-scrollbar flex snap-x snap-mandatory items-stretch overflow-x-auto overscroll-x-contain scroll-smooth lg:grid lg:grid-cols-3 lg:overflow-visible">
|
2026-07-29 23:10:40 -04:00
|
|
|
<!-- Sôi nổi nhất -->
|
2026-07-30 12:06:17 -04:00
|
|
|
<div
|
|
|
|
|
class="flex h-full min-w-[92%] snap-start flex-col p-5 sm:min-w-[70%] sm:p-6 lg:min-w-0 lg:border-r lg:border-white/10">
|
2026-07-30 05:50:10 -04:00
|
|
|
<div class="mb-3 flex items-center gap-2">
|
|
|
|
|
<AppIcon name="zap" class="size-4 text-orange-500" />
|
|
|
|
|
<h2 class="text-sm font-black uppercase text-white">
|
|
|
|
|
Sôi nổi nhất
|
|
|
|
|
</h2>
|
2026-07-29 23:10:40 -04:00
|
|
|
</div>
|
2026-07-30 05:50:10 -04:00
|
|
|
|
|
|
|
|
<div class="grid flex-1 grid-rows-5 gap-2.5">
|
|
|
|
|
<NuxtLink v-for="(movie, index) in trendingMovies.slice(0, 5)"
|
|
|
|
|
:key="`${movie.source}-${movie.slug}-trending`" :to="movieLinkFromSection(movie)"
|
|
|
|
|
class="group flex min-h-12 items-center gap-2 transition hover:opacity-80">
|
|
|
|
|
<span class="w-5 shrink-0 text-center text-sm font-black text-white/80">
|
|
|
|
|
{{ index + 1 }}.
|
|
|
|
|
</span>
|
|
|
|
|
|
|
|
|
|
<AppIcon :name="index < 2
|
|
|
|
|
? 'trending-up'
|
|
|
|
|
: index === 2
|
|
|
|
|
? 'minus'
|
|
|
|
|
: 'trending-down'" :class="index < 2
|
2026-07-30 12:06:17 -04:00
|
|
|
? 'text-green-400'
|
|
|
|
|
: index === 2
|
|
|
|
|
? 'text-slate-400'
|
|
|
|
|
: 'text-red-400'" class="size-3.5 shrink-0" />
|
2026-07-30 05:50:10 -04:00
|
|
|
|
2026-07-29 23:10:40 -04:00
|
|
|
<img :src="movie.thumb || movie.poster" :alt="movie.name"
|
2026-07-30 05:50:10 -04:00
|
|
|
class="h-12 w-8 shrink-0 rounded object-cover ring-1 ring-white/10">
|
|
|
|
|
|
|
|
|
|
<div class="min-w-0 flex-1">
|
|
|
|
|
<p class="truncate text-[13px] font-bold text-white group-hover:text-yellow-300">
|
|
|
|
|
{{ movie.name }}
|
|
|
|
|
</p>
|
2026-07-29 23:10:40 -04:00
|
|
|
</div>
|
|
|
|
|
</NuxtLink>
|
|
|
|
|
</div>
|
2026-07-30 05:50:10 -04:00
|
|
|
|
|
|
|
|
<NuxtLink to="/phim" class="mt-3 inline-block text-xs font-semibold text-slate-400 hover:text-white">
|
2026-07-29 23:10:40 -04:00
|
|
|
Xem thêm
|
|
|
|
|
</NuxtLink>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!-- Yêu thích nhất -->
|
2026-07-30 12:06:17 -04:00
|
|
|
<div class="flex h-full min-w-[92%] snap-start flex-col border-l border-white/10 p-5
|
|
|
|
|
sm:min-w-[70%] sm:p-6 lg:min-w-0 lg:border-l-0 lg:border-r lg:border-white/10">
|
2026-07-30 05:50:10 -04:00
|
|
|
<div class="mb-3 flex items-center gap-2">
|
|
|
|
|
<AppIcon name="heart" class="size-4 text-pink-500" />
|
|
|
|
|
<h2 class="text-sm font-black uppercase text-white">
|
|
|
|
|
Yêu thích nhất
|
|
|
|
|
</h2>
|
2026-07-29 23:10:40 -04:00
|
|
|
</div>
|
2026-07-30 05:50:10 -04:00
|
|
|
|
|
|
|
|
<div class="grid flex-1 grid-rows-5 gap-2.5">
|
|
|
|
|
<NuxtLink v-for="(movie, index) in mostRatedMovies.slice(0, 5)"
|
|
|
|
|
:key="`${movie.source}-${movie.slug}-rated`" :to="movieLinkFromSection(movie)"
|
|
|
|
|
class="group flex min-h-12 items-center gap-2 transition hover:opacity-80">
|
|
|
|
|
<span class="w-5 shrink-0 text-center text-sm font-black text-white/80">
|
|
|
|
|
{{ index + 1 }}.
|
|
|
|
|
</span>
|
|
|
|
|
|
|
|
|
|
<AppIcon :name="index < 2
|
|
|
|
|
? 'trending-up'
|
|
|
|
|
: index === 2
|
|
|
|
|
? 'minus'
|
|
|
|
|
: 'trending-down'" :class="index < 2
|
2026-07-30 12:06:17 -04:00
|
|
|
? 'text-green-400'
|
|
|
|
|
: index === 2
|
|
|
|
|
? 'text-slate-400'
|
|
|
|
|
: 'text-red-400'" class="size-3.5 shrink-0" />
|
2026-07-30 05:50:10 -04:00
|
|
|
|
2026-07-29 23:10:40 -04:00
|
|
|
<img :src="movie.thumb || movie.poster" :alt="movie.name"
|
2026-07-30 05:50:10 -04:00
|
|
|
class="h-12 w-8 shrink-0 rounded object-cover ring-1 ring-white/10">
|
|
|
|
|
|
|
|
|
|
<div class="min-w-0 flex-1">
|
|
|
|
|
<p class="truncate text-[13px] font-bold text-white group-hover:text-yellow-300">
|
|
|
|
|
{{ movie.name }}
|
|
|
|
|
</p>
|
2026-07-29 23:10:40 -04:00
|
|
|
</div>
|
|
|
|
|
</NuxtLink>
|
|
|
|
|
</div>
|
2026-07-30 05:50:10 -04:00
|
|
|
|
|
|
|
|
<NuxtLink to="/phim" class="mt-3 inline-block text-xs font-semibold text-slate-400 hover:text-white">
|
2026-07-29 23:10:40 -04:00
|
|
|
Xem thêm
|
|
|
|
|
</NuxtLink>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!-- Thể loại hot -->
|
2026-07-30 12:06:17 -04:00
|
|
|
<div
|
|
|
|
|
class="flex h-full min-w-[92%] snap-start flex-col border-l border-white/10 p-5 sm:min-w-[70%] sm:p-6 lg:min-w-0 lg:border-l-0">
|
2026-07-30 05:50:10 -04:00
|
|
|
<div class="mb-3 flex items-center gap-2">
|
|
|
|
|
<AppIcon name="layers" class="size-4 text-yellow-500" />
|
|
|
|
|
<h2 class="text-sm font-black uppercase text-white">
|
|
|
|
|
Thể loại hot
|
|
|
|
|
</h2>
|
2026-07-29 23:10:40 -04:00
|
|
|
</div>
|
2026-07-30 05:50:10 -04:00
|
|
|
|
|
|
|
|
<div class="grid flex-1 grid-rows-5 gap-2.5">
|
|
|
|
|
<NuxtLink v-for="(genre, index) in hotGenres.slice(0, 5)" :key="genre.name" to="/phim"
|
|
|
|
|
class="group flex min-h-12 items-center gap-2 transition hover:opacity-80">
|
|
|
|
|
<span class="w-5 shrink-0 text-center text-sm font-black text-white/80">
|
|
|
|
|
{{ index + 1 }}.
|
2026-07-29 23:10:40 -04:00
|
|
|
</span>
|
2026-07-30 05:50:10 -04:00
|
|
|
|
|
|
|
|
<AppIcon :name="index < 2
|
|
|
|
|
? 'trending-up'
|
|
|
|
|
: index === 2
|
|
|
|
|
? 'minus'
|
|
|
|
|
: 'trending-down'" :class="index < 2
|
2026-07-30 12:06:17 -04:00
|
|
|
? 'text-green-400'
|
|
|
|
|
: index === 2
|
|
|
|
|
? 'text-slate-400'
|
|
|
|
|
: 'text-red-400'" class="size-3.5 shrink-0" />
|
2026-07-30 05:50:10 -04:00
|
|
|
|
|
|
|
|
<div class="flex h-12 items-center">
|
|
|
|
|
<span class="rounded-xl px-4 py-2 text-[10px] font-black text-white" :class="genreTagColor(index)">
|
|
|
|
|
{{ genre.name }}
|
|
|
|
|
</span>
|
|
|
|
|
</div>
|
2026-07-29 23:10:40 -04:00
|
|
|
</NuxtLink>
|
|
|
|
|
</div>
|
2026-07-30 05:50:10 -04:00
|
|
|
|
|
|
|
|
<NuxtLink to="/phim" class="mt-3 inline-block text-xs font-semibold text-slate-400 hover:text-white">
|
2026-07-29 23:10:40 -04:00
|
|
|
Xem thêm
|
|
|
|
|
</NuxtLink>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</section>
|
2026-05-17 20:30:19 +07:00
|
|
|
</div>
|
|
|
|
|
</main>
|
|
|
|
|
</template>
|