@extends('siswa.layout') @section('content')

{{ $lesson->title }}

{{ $lesson->title }}

{{-- ================= AVAILABLE INFO ================= --}} @if($lesson->available_at && now()->lt($lesson->available_at))
🔒 Materi ini dapat dibuka pada: {{ $lesson->available_at->translatedFormat('d F Y H:i') }}
@endif {{-- ================= CONTENT ================= --}}
{{-- TEXT --}} @if($lesson->content_type === 'text')
{!! nl2br(e($lesson->content)) !!}
{{-- PDF --}} @elseif($lesson->content_type === 'pdf') {{-- VIDEO --}} @elseif($lesson->content_type === 'video') @php preg_match('/(youtu\.be\/|v=)([^&]+)/', $lesson->content_url, $m); $videoId = $m[2] ?? null; @endphp @if($videoId)
{{-- PLAYER --}}
{{-- OVERLAY TIMELINE (ANTI DRAG) --}}
{{-- WARNING --}} {{-- YOUTUBE API --}} @else

Video YouTube tidak valid

@endif {{-- LINK --}} @elseif($lesson->content_type === 'link') 🔗 Buka Materi @endif
{{-- ================= TASK ================= --}} @if(isset($task))

📌 Tugas

{{ $task->description }}

{{-- AVAILABLE AT --}} @if($task->available_at && now()->lt($task->available_at))
🔒 Tugas dapat dikerjakan mulai: {{ $task->available_at->translatedFormat('d F Y H:i') }}
@endif {{-- DEADLINE --}} @if($task->deadline)

⏰ Deadline: {{ $task->deadline->translatedFormat('d F Y H:i') }}

@endif {{-- SUDAH SUBMIT --}} @if($isTaskCompleted)

✓ Tugas sudah dikumpulkan

🔗 {{ $taskSubmission->submission_link }}

@if($task->allow_revision)

Revisi diperbolehkan

@endif
{{-- BELUM SUBMIT --}} @elseif(!($task->available_at && now()->lt($task->available_at)))
@csrf
@endif
@endif {{-- ================= ACTION BAR ================= --}} {{-- ================= ACTION BAR (SAFE FINAL) ================= --}}
@if($isCompleted) ✓ Materi telah diselesaikan @endif
{{-- 1️⃣ BELUM SELESAI --}} @if(! $isCompleted)
@csrf @php $lockFinish = $lesson->content_type === 'video'; @endphp
{{-- 2️⃣ SUDAH SELESAI + ADA MATERI SELANJUTNYA --}} @elseif($nextLesson) Lanjut ke Materi → {{-- 3️⃣ SUDAH SELESAI + BENAR-BENAR TERAKHIR --}} @else @endif
{{-- ================= SIDEBAR ================= --}} @include('siswa.modul.sidebar')
{{-- ================= DURASI ================= --}} @endsection