363 lines
12 KiB
PHP
363 lines
12 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{{ $video->title }} | TAKEONE</title>
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css">
|
|
<style>
|
|
:root {
|
|
--brand-red: #e61e1e;
|
|
--bg-dark: #0f0f0f;
|
|
--bg-secondary: #1e1e1e;
|
|
--border-color: #303030;
|
|
--text-primary: #f1f1f1;
|
|
--text-secondary: #aaaaaa;
|
|
}
|
|
|
|
* { box-sizing: border-box; }
|
|
|
|
body {
|
|
background-color: var(--bg-dark);
|
|
color: var(--text-primary);
|
|
font-family: "Roboto", "Arial", sans-serif;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
/* Header */
|
|
.yt-header {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
height: 56px;
|
|
background: var(--bg-dark);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 0 16px;
|
|
z-index: 1000;
|
|
border-bottom: 1px solid var(--border-color);
|
|
}
|
|
|
|
.yt-header-left { display: flex; align-items: center; gap: 16px; }
|
|
|
|
.yt-menu-btn {
|
|
width: 40px; height: 40px; border-radius: 50%;
|
|
display: flex; align-items: center; justify-content: center;
|
|
cursor: pointer; background: transparent; border: none; color: var(--text-primary);
|
|
}
|
|
|
|
.yt-menu-btn:hover { background: var(--border-color); }
|
|
|
|
.yt-logo-text { font-size: 1.4rem; font-weight: 700; color: var(--text-primary); letter-spacing: -1px; }
|
|
|
|
.yt-header-center { flex: 1; max-width: 640px; margin: 0 40px; display: flex; }
|
|
|
|
.yt-search { flex: 1; display: flex; height: 40px; }
|
|
|
|
.yt-search-input {
|
|
flex: 1; background: #121212; border: 1px solid var(--border-color);
|
|
border-right: none; border-radius: 20px 0 0 20px; padding: 0 16px;
|
|
color: var(--text-primary); font-size: 16px;
|
|
}
|
|
|
|
.yt-search-input:focus { outline: none; border-color: #1c62b9; }
|
|
|
|
.yt-search-btn {
|
|
width: 64px; background: #222; border: 1px solid var(--border-color);
|
|
border-radius: 0 20px 20px 0; color: var(--text-primary); cursor: pointer;
|
|
}
|
|
|
|
.yt-search-btn:hover { background: #303030; }
|
|
|
|
.yt-header-right { display: flex; align-items: center; gap: 8px; }
|
|
|
|
.yt-icon-btn {
|
|
width: 40px; height: 40px; border-radius: 50%; display: flex;
|
|
align-items: center; justify-content: center; cursor: pointer;
|
|
background: transparent; border: none; color: var(--text-primary); font-size: 1.2rem;
|
|
}
|
|
|
|
.yt-icon-btn:hover { background: var(--border-color); }
|
|
|
|
.yt-user-avatar { width: 32px; height: 32px; border-radius: 50%; background: #555; cursor: pointer; }
|
|
|
|
.yt-upload-btn {
|
|
background: var(--brand-red); color: white; border: none;
|
|
padding: 8px 16px; border-radius: 20px; font-weight: 500;
|
|
display: flex; align-items: center; gap: 8px; cursor: pointer; text-decoration: none;
|
|
}
|
|
|
|
/* Main Layout */
|
|
.yt-main {
|
|
margin-top: 56px;
|
|
margin-left: 240px;
|
|
padding: 24px;
|
|
display: flex;
|
|
gap: 24px;
|
|
}
|
|
|
|
/* Video Section */
|
|
.yt-video-section { flex: 1; min-width: 0; }
|
|
|
|
/* Video Player */
|
|
.video-container {
|
|
position: relative;
|
|
aspect-ratio: 16/9;
|
|
background: #000;
|
|
border-radius: 12px;
|
|
overflow: hidden;
|
|
max-height: 70vh;
|
|
}
|
|
|
|
.video-container.portrait { aspect-ratio: 9/16; aspect-ratio: 9/16; }
|
|
.video-container.square { aspect-ratio: 1/1; aspect-ratio: 1/1; }
|
|
.video-container.ultrawide { aspect-ratio: 21/9; }
|
|
|
|
.video-container video { width: 100%; height: 100%; object-fit: contain; }
|
|
|
|
/* Video Info */
|
|
.video-title {
|
|
font-size: 20px;
|
|
font-weight: 500;
|
|
margin: 16px 0 8px;
|
|
line-height: 1.3;
|
|
}
|
|
|
|
.video-stats-row {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding-bottom: 12px;
|
|
border-bottom: 1px solid var(--border-color);
|
|
flex-wrap: wrap;
|
|
gap: 12px;
|
|
}
|
|
|
|
.video-stats-left { display: flex; align-items: center; gap: 16px; color: var(--text-secondary); }
|
|
|
|
.video-actions {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
}
|
|
|
|
.yt-action-btn {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
padding: 8px 16px;
|
|
border-radius: 20px;
|
|
border: none;
|
|
background: var(--bg-secondary);
|
|
color: var(--text-primary);
|
|
cursor: pointer;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.yt-action-btn:hover { background: var(--border-color); }
|
|
|
|
.yt-action-btn.liked { color: var(--brand-red); }
|
|
|
|
/* Channel Row */
|
|
.channel-row {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 16px 0;
|
|
}
|
|
|
|
.channel-info {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
}
|
|
|
|
.channel-avatar {
|
|
width: 48px; height: 48px; border-radius: 50%; background: #555;
|
|
}
|
|
|
|
.channel-name {
|
|
font-size: 16px;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.channel-subs {
|
|
font-size: 14px;
|
|
color: var(--text-secondary);
|
|
}
|
|
|
|
.subscribe-btn {
|
|
background: var(--brand-red);
|
|
color: white;
|
|
border: none;
|
|
padding: 10px 20px;
|
|
border-radius: 20px;
|
|
font-weight: 500;
|
|
cursor: pointer;
|
|
}
|
|
|
|
/* Description */
|
|
.video-description {
|
|
background: var(--bg-secondary);
|
|
border-radius: 12px;
|
|
padding: 16px;
|
|
margin-top: 16px;
|
|
}
|
|
|
|
.description-text {
|
|
white-space: pre-wrap;
|
|
font-size: 14px;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
/* Sidebar */
|
|
.yt-sidebar {
|
|
width: 400px;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.sidebar-video-card {
|
|
display: flex;
|
|
gap: 8px;
|
|
margin-bottom: 8px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.sidebar-thumb {
|
|
width: 168px;
|
|
aspect-ratio: 16/9;
|
|
border-radius: 8px;
|
|
overflow: hidden;
|
|
background: #1a1a1a;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.sidebar-thumb img { width: 100%; height: 100%; object-fit: cover; }
|
|
|
|
.sidebar-info { flex: 1; min-width: 0; }
|
|
|
|
.sidebar-title {
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
margin-bottom: 4px;
|
|
display: -webkit-box;
|
|
-webkit-line-clamp: 2;
|
|
-webkit-box-orient: vertical;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.sidebar-meta { font-size: 12px; color: var(--text-secondary); }
|
|
|
|
/* Responsive */
|
|
@media (max-width: 1300px) {
|
|
.yt-sidebar { width: 300px; }
|
|
}
|
|
|
|
@media (max-width: 991px) {
|
|
.yt-main { margin-left: 0; flex-direction: column; }
|
|
.yt-sidebar { width: 100%; }
|
|
.yt-header-center { display: none; }
|
|
.sidebar-video-card { flex-direction: column; }
|
|
.sidebar-thumb { width: 100%; }
|
|
}
|
|
|
|
@media (max-width: 576px) {
|
|
.video-stats-row { flex-direction: column; align-items: flex-start; }
|
|
.video-actions { width: 100%; overflow-x: auto; justify-content: flex-start; }
|
|
.yt-main { padding: 16px; }
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<!-- Header -->
|
|
<header class="yt-header">
|
|
<div class="yt-header-left">
|
|
<a href="/videos" class="yt-menu-btn">
|
|
<i class="bi bi-arrow-left"></i>
|
|
</a>
|
|
<a href="/videos" class="yt-logo-text">TAKEONE</a>
|
|
</div>
|
|
|
|
<div class="yt-header-center d-none d-md-flex">
|
|
<div class="yt-search">
|
|
<input type="text" class="yt-search-input" placeholder="Search">
|
|
<button class="yt-search-btn"><i class="bi bi-search"></i></button>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="yt-header-right">
|
|
<a href="/videos/create" class="yt-upload-btn d-none d-sm-flex">
|
|
<i class="bi bi-plus-lg"></i>
|
|
<span>Upload</span>
|
|
</a>
|
|
<img src="https://i.pravatar.cc/150?u=user" class="yt-user-avatar" alt="User">
|
|
</div>
|
|
</header>
|
|
|
|
<!-- Main Content -->
|
|
<main class="yt-main">
|
|
<!-- Video Section -->
|
|
<div class="yt-video-section">
|
|
<!-- Video Player -->
|
|
<div class="video-container @if($video->orientation === 'portrait') portrait @elseif($video->orientation === 'square') square @elseif($video->orientation === 'ultrawide') ultrawide @endif">
|
|
<video controls playsinline preload="metadata">
|
|
<source src="{{ route('videos.stream', $video->id) }}" type="video/mp4">
|
|
</video>
|
|
</div>
|
|
|
|
<!-- Video Title -->
|
|
<h1 class="video-title">{{ $video->title }}</h1>
|
|
|
|
<!-- Stats Row -->
|
|
<div class="video-stats-row">
|
|
<div class="video-stats-left">
|
|
<span>{{ number_format($video->size / 1024 / 1024, 0) }} MB</span>
|
|
<span>•</span>
|
|
<span>{{ $video->created_at->format('M d, Y') }}</span>
|
|
@if($video->width && $video->height)
|
|
<span>•</span>
|
|
<span>{{ $video->width }}x{{ $video->height }}</span>
|
|
@endif
|
|
</div>
|
|
<div class="video-actions">
|
|
<button class="yt-action-btn"><i class="bi bi-hand-thumbs-up"></i> Like</button>
|
|
<button class="yt-action-btn"><i class="bi bi-share"></i> Share</button>
|
|
<button class="yt-action-btn"><i class="bi bi-bookmark"></i> Save</button>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Channel Row -->
|
|
<div class="channel-row">
|
|
<div class="channel-info">
|
|
<div class="channel-avatar"></div>
|
|
<div>
|
|
<div class="channel-name">TAKEONE</div>
|
|
<div class="channel-subs">Video Creator</div>
|
|
</div>
|
|
</div>
|
|
<button class="subscribe-btn">Subscribe</button>
|
|
</div>
|
|
|
|
<!-- Description -->
|
|
@if($video->description)
|
|
<div class="video-description">
|
|
<p class="description-text">{{ $video->description }}</p>
|
|
</div>
|
|
@endif
|
|
</div>
|
|
|
|
<!-- Sidebar -->
|
|
<div class="yt-sidebar">
|
|
<h3 style="font-size: 16px; font-weight: 500; margin-bottom: 12px;">Up Next</h3>
|
|
<!-- Placeholder for recommended videos - would be dynamic in full implementation -->
|
|
<div class="text-secondary">More videos coming soon...</div>
|
|
</div>
|
|
</main>
|
|
</body>
|
|
</html>
|