Files
kr-phim/app/pages/index.vue
T

552 lines
22 KiB
Vue
Raw Normal View History

<script setup lang="ts">
import { ChevronLeft, ChevronRight, Heart, Info, Play, Plus, Trash2 } from 'lucide-vue-next'
import type { WatchHistoryItem } from '~/composables/useWatchHistory'
2026-05-24 22:35:13 +07:00
const { data, pending, error } = useFetch('/api/movies', {
query: {
page: 1,
},
2026-05-24 22:35:13 +07:00
lazy: true,
default: () => ({
items: [],
sources: [],
}),
})
const { data: additionalData } = useFetch('/api/movies', {
query: {
page: 2,
},
lazy: true,
default: () => ({
items: [],
sources: [],
}),
})
const movies = computed(() => data.value?.items ?? [])
const additionalMovies = computed(() => additionalData.value?.items ?? [])
const homeCatalog = computed(() => uniqueHeroMovies([...movies.value, ...additionalMovies.value]))
const heroIndex = ref(0)
const heroSlides = computed(() => uniqueHeroMovies(movies.value).slice(0, 6))
const hero = computed(() => heroSlides.value[heroIndex.value] ?? movies.value[0])
const heroDetail = ref<any>(null)
const sourceStatus = computed(() => data.value?.sources ?? [])
const watchHistory = ref<WatchHistoryItem[]>([])
const {
loadWatchHistory: fetchWatchHistory,
clearWatchHistory: removeWatchHistory,
} = useWatchHistory()
let heroTimer: ReturnType<typeof setInterval> | undefined
const heroDetailCache = new Map<string, any>()
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
}
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]
.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))
.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,
},
])
function movieSourcesQuery(movie: any) {
return (movie?.sources || [{ source: movie?.source, slug: movie?.slug }])
.filter((source: any) => source.source && source.slug)
.map((source: any) => `${source.source}:${source.slug}`)
.join(',')
}
function movieLink(movie: any) {
return {
path: `/phim/${movie?.slug}`,
query: {
source: movie?.source,
srcs: movieSourcesQuery(movie) || undefined,
},
}
}
function getEpisodeDisplay(movie: any) {
const ep = movie?.episode
const total = movie?.episodeTotal
if (!ep) return undefined
const totalNum = total ? total.replace(/[^0-9]/g, '') : ''
const epNum = ep.replace(/[^0-9]/g, '')
if (epNum && totalNum && epNum !== totalNum) {
return `Tập ${epNum}/${totalNum}`
}
return ep
}
function selectHero(index: number) {
heroIndex.value = index
}
function nextHero() {
if (!heroSlides.value.length) return
heroIndex.value = (heroIndex.value + 1) % heroSlides.value.length
}
function previousHero() {
if (!heroSlides.value.length) return
heroIndex.value = (heroIndex.value - 1 + heroSlides.value.length) % heroSlides.value.length
}
function watchHistoryLink(item: WatchHistoryItem) {
return {
path: `/xem/${item.slug}`,
query: {
source: item.source,
server: item.serverIndex || 0,
ep: (item.episodeIndex || 0) + 1,
},
}
}
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-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
}
const cacheKey = `${currentHero.source}:${currentHero.slug}`
if (heroDetailCache.has(cacheKey)) {
heroDetail.value = heroDetailCache.get(cacheKey)
return
}
heroDetail.value = null
try {
const detail = await $fetch(`/api/movies/${currentHero.slug}`, {
query: {
source: currentHero.source,
srcs: movieSourcesQuery(currentHero) || undefined,
},
})
heroDetailCache.set(cacheKey, detail)
if (hero.value?.slug === currentHero.slug && hero.value?.source === currentHero.source) {
heroDetail.value = detail
}
} catch {
heroDetail.value = null
}
}, { immediate: true })
2026-05-24 22:35:13 +07:00
onMounted(() => {
heroTimer = setInterval(nextHero, 6500)
loadWatchHistory()
window.addEventListener('storage', loadWatchHistory)
})
onBeforeUnmount(() => {
if (heroTimer) clearInterval(heroTimer)
if (import.meta.client) window.removeEventListener('storage', loadWatchHistory)
})
useHead({
2026-05-24 22:35:13 +07:00
title: 'CineK - Xem phim Hàn Quốc online',
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.',
},
],
})
</script>
<template>
2026-05-24 22:35:13 +07:00
<main class="min-h-screen overflow-hidden bg-black">
<AppHeader />
<section v-if="hero" class="relative w-full h-screen overflow-hidden">
<TransitionGroup name="hero-fade">
<img v-for="(slide, index) in heroSlides" v-show="index === heroIndex" :key="`${slide.source}-${slide.slug}`"
:src="slide.thumb || slide.poster" :alt="slide.name"
class="absolute inset-0 h-full w-full object-cover object-top lg:object-[72%_center]">
</TransitionGroup>
2026-05-24 22:35:13 +07:00
<!-- Dot pattern overlay (desktop) -->
<div class="absolute inset-0 pointer-events-none opacity-30 hidden md:block"
style="background-image:radial-gradient(rgba(0,0,0,0.4) 0.4px, transparent 1px);background-size:3px 3px">
</div>
<!-- Mobile gradient overlay -->
<div class="absolute inset-0 pointer-events-none md:hidden" style="background:linear-gradient(to top, #0f111a 5%, rgba(15,17,21,0.6) 30%, transparent 60%),
radial-gradient(ellipse at center, transparent 60%, rgba(15,17,26,0.7) 100%)">
</div>
<!-- Desktop gradient overlay -->
<div class="absolute inset-0 pointer-events-none hidden md:block" style="background:linear-gradient(to right, rgba(15,17,26,0.6) 0%, rgba(15,17,26,0.1) 30%, transparent 60%),
linear-gradient(to top, #0f111a 0%, transparent 40%),
radial-gradient(ellipse at center, transparent 65%, rgba(15,17,26,0.8) 100%)">
</div>
<!-- Content overlay -->
<div class="absolute inset-0 z-20 flex items-end pb-0 md:pb-[6vw] lg:pb-[5vw] xl:pb-32 pointer-events-none">
<div class="max-w-350 w-full mx-auto px-4 md:px-8 pointer-events-none">
<div
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>
</NuxtLink>
</div>
<!-- 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>
<span v-if="getEpisodeDisplay(hero)" class="px-2 py-0.75 rounded border border-white bg-black/40">
{{ getEpisodeDisplay(hero) }}
</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">
<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">
<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">
<Info
class="size-6 md:size-7 text-white fill-none stroke-current group-hover/link:text-[#FECF59] transition-all" />
</NuxtLink>
</div>
</div>
</div>
</div>
</div>
<!-- Thumbnail navigation -->
<div
class="absolute bottom-4 md:bottom-8 left-1/2 -translate-x-1/2 md:left-auto md:right-8 md:translate-x-0 z-30 flex gap-2 overflow-x-auto max-w-[calc(100%-2rem)] md:max-w-md lg:max-w-lg pb-2 md:pb-0 snap-x px-2 pointer-events-auto scroll-smooth [&::-webkit-scrollbar]:hidden"
style="scrollbar-width:none;-ms-overflow-style:none">
<button v-for="(slide, index) in heroSlides" :key="`${slide.source}-${slide.slug}-thumb`" type="button"
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"
:class="index === heroIndex ? 'border-white/90 opacity-100 scale-100 shadow-md' : 'border-transparent opacity-80 scale-95 hover:scale-100 hover:opacity-100'"
style="-webkit-mask-image:-webkit-radial-gradient(white, black)" :aria-label="`Chuyển đến phim ${index + 1}`"
@click="selectHero(index)">
<img :src="slide.thumb || slide.poster" :alt="slide.name"
class="absolute inset-0 h-full w-full object-cover rounded-full md:rounded-lg">
</button>
</div>
</section>
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>
<p class="mt-3 text-slate-300">Đang tải kho phim Hàn Quốc...</p>
</div>
</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">
<div v-if="sourceStatus.length" class="hidden">
<span v-for="source in sourceStatus" :key="source.name"
class="rounded-full border border-white/10 bg-white/8 px-3 py-1">
{{ 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">
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>
<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>
<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"
aria-label="Xóa lịch sử xem" @click="clearWatchHistory">
<Trash2 class="size-4" />
</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">
<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)}%` }" />
</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">
{{ item.episodeName || `Tập ${(item.episodeIndex || 0) + 1}` }}
</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">
{{ watchProgressLabel(item) }}
</p>
</NuxtLink>
</div>
</section>
<div v-if="pending" class="grid grid-cols-2 gap-4 sm:grid-cols-3 lg:grid-cols-6">
<div v-for="item in 12" :key="item" class="aspect-2/3 animate-pulse rounded-md bg-white/10" />
</div>
<section v-for="(row, index) in rows" v-show="row.items.length"
:id="index === 0 ? 'latest' : index === 1 ? 'series' : 'movies'" :key="row.title" class="mb-12">
<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">
Xem thêm
</NuxtLink>
</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">
<HomeMovieCard v-for="movie in row.items" :key="`${movie.source}-${movie.slug}`" :movie="movie" />
</div>
</section>
</div>
</main>
</template>