931 lines
39 KiB
PHP
931 lines
39 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<style>
|
|
/* Additional styles */
|
|
.sidebar {
|
|
background-color: #FFFFFF;
|
|
width: 245px;
|
|
}
|
|
|
|
.content {
|
|
min-height: 400px;
|
|
background-color: #FFFFFF;
|
|
padding: 20px;
|
|
}
|
|
|
|
|
|
/* NAV LINK */
|
|
.nav-link {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.nav-link:hover {
|
|
color: blue !important;
|
|
}
|
|
|
|
.nav-link .icon {
|
|
margin-right: 5px;
|
|
}
|
|
|
|
.custom-button {
|
|
color: #A0A0A0;
|
|
/* Warna teks saat tombol normal */
|
|
transition: background-color 0.3s, color 0.3s;
|
|
/* Efek transisi ketika hover */
|
|
/* outline: none; */
|
|
}
|
|
|
|
.custom-button:hover {
|
|
background-color: #007BFF;
|
|
/* Warna latar belakang saat tombol dihover */
|
|
color: white;
|
|
/* Warna teks saat tombol dihover menjadi putih */
|
|
}
|
|
|
|
.custom-card {
|
|
padding: 30px;
|
|
width: 395px;
|
|
height: 280px;
|
|
background-color: #FFFFFF;
|
|
border-radius: 20px;
|
|
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.circle-image {
|
|
width: 79px;
|
|
height: 79px;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.custom-title {
|
|
font-weight: 600;
|
|
font-size: 25px;
|
|
color: #252525;
|
|
font-family: 'Poppins', sans-serif;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.custom-subtitle {
|
|
font-weight: 400;
|
|
font-size: 20px;
|
|
color: #898989;
|
|
font-family: 'Poppins', sans-serif;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.custom-button {
|
|
width: 335px;
|
|
height: 43px;
|
|
border-radius: 10px;
|
|
background-color: #EAEAEA;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin-top: 15px;
|
|
outline: none;
|
|
}
|
|
|
|
.custom-button-detail {
|
|
width: 180px;
|
|
height: 45px;
|
|
border-radius: 10px;
|
|
background-color: #EAEAEA;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin-top: 15px;
|
|
margin-left: auto;
|
|
color: #A0A0A0;
|
|
/* Warna teks saat tombol normal */
|
|
transition: background-color 0.3s, color 0.3s;
|
|
/* Efek transisi ketika hover */
|
|
}
|
|
|
|
.custom-button-detail:hover {
|
|
background-color: #007BFF;
|
|
/* Warna latar belakang saat tombol dihover */
|
|
color: white;
|
|
/* Warna teks saat tombol dihover menjadi putih */
|
|
}
|
|
|
|
.button-text {
|
|
font-weight: 500;
|
|
font-size: 15px;
|
|
font-family: 'Poppins', sans-serif;
|
|
margin: 0;
|
|
margin-left: 10px;
|
|
margin-right: 10px;
|
|
text-decoration: none;
|
|
color: #A0A0A0;
|
|
}
|
|
|
|
.button-text:hover {
|
|
text-decoration: none;
|
|
color: #fff;
|
|
}
|
|
|
|
.text {
|
|
font-size: 15px;
|
|
font-family: 'Poppins', sans-serif;
|
|
}
|
|
|
|
.sidebar-right-shadow {
|
|
box-shadow: 1px 0px 8px rgba(0, 0, 0, 0.1);
|
|
/* Menambahkan bayangan ke sisi kanan */
|
|
}
|
|
|
|
</style>
|
|
|
|
<title>Tab Example</title>
|
|
|
|
<!-- CSS Bootstrap -->
|
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet"
|
|
integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM" crossorigin="anonymous">
|
|
<link href="style.css" rel="stylesheet">
|
|
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap"
|
|
rel="stylesheet">
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
|
|
|
|
<!-- JavaScript Bootstrap -->
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
|
|
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
|
|
<!-- Place these in the <head> section -->
|
|
<link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/1.11.3/css/jquery.dataTables.min.css">
|
|
<script src="https://cdn.datatables.net/1.11.3/js/jquery.dataTables.min.js"></script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/pdfmake/0.2.7/pdfmake.min.js"></script>
|
|
|
|
<script src="https://cdn.datatables.net/buttons/2.0.0/js/dataTables.buttons.min.js"></script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/jszip/3.1.3/jszip.min.js"></script>
|
|
<script src="https://cdn.datatables.net/buttons/2.0.0/js/buttons.html5.min.js"></script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/pdfmake/0.1.53/vfs_fonts.js"></script>
|
|
<script>
|
|
|
|
// Define the font files in base64
|
|
var robotoRegularBase64 = 'BASE64_STRING_OF_ROBOTO_REGULAR';
|
|
var robotoBoldBase64 = 'BASE64_STRING_OF_ROBOTO_BOLD';
|
|
var robotoItalicBase64 = 'BASE64_STRING_OF_ROBOTO_ITALIC';
|
|
var robotoBoldItalicBase64 = 'BASE64_STRING_OF_ROBOTO_BOLDITALIC';
|
|
|
|
// Prepare the virtual file system object
|
|
var vfs = {
|
|
"Roboto-Regular.ttf": robotoRegularBase64,
|
|
"Roboto-Bold.ttf": robotoBoldBase64,
|
|
"Roboto-Italic.ttf": robotoItalicBase64,
|
|
"Roboto-BoldItalic.ttf": robotoBoldItalicBase64
|
|
};
|
|
</script>
|
|
<link rel="icon" href="./images/logo.png" type="image/png">
|
|
</head>
|
|
|
|
<body>
|
|
<!-- NAVBAR -->
|
|
<nav class="navbar navbar-expand-lg" style="background-color: #FEFEFE;">
|
|
<div class="container-fluid">
|
|
<!-- <a class="navbar-brand" href="#">Navbar</a> -->
|
|
<img src={{asset("./images/logo.png")}} alt="logo" width="104" height="65">
|
|
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent"
|
|
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
|
|
<span class="navbar-toggler-icon"></span>
|
|
</button>
|
|
<div class="collapse navbar-collapse" id="navbarSupportedContent">
|
|
<div class="mx-auto">
|
|
<ul class="navbar-nav mb-2 mb-lg-0 justify-content-center">
|
|
<li class="nav-item">
|
|
<a class="nav-link active" aria-current="page" href="/dashboard-student">Dashboard Student</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link active" aria-current="page" href="#">Learning</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
<div class="dropdown">
|
|
<p style="margin-top: 10px; margin-right: 10px;">{{auth()->user()->name}}
|
|
<img src="{{ asset('./images/Group.png') }}" alt="Group" style="height: 50px; margin-right: 10px;">
|
|
<i class="fas fa-chevron-down" style="color: #0079FF;"></i>
|
|
<div class="dropdown-content" id="dropdownContent">
|
|
<form id="logout-form" action="{{ route('logoutt') }}" method="POST">
|
|
@csrf
|
|
<a href="#" onclick="event.preventDefault(); document.getElementById('logout-form').submit();">Logout</a>
|
|
</form>
|
|
|
|
</div>
|
|
</p>
|
|
</div>
|
|
<!-- <button class="btn btn-primary custom-button-sign-up" onclick="window.location.href='register.html'">Sign Up</button> -->
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
<!-- ------------------------------------------------------------------------------------------ -->
|
|
|
|
<div class="container-fluid">
|
|
<div class="row">
|
|
<!-- SIDEBAR -->
|
|
<nav class="col-md-2 d-none d-md-block sidebar sidebar-right-shadow">
|
|
<div class="sidebar-sticky" style="margin-top: 20px;">
|
|
<ul class="nav flex-column">
|
|
<li class="nav-item" style="margin-bottom: 40px;">
|
|
<div class="row align-items-start">
|
|
<div class="col">
|
|
<p style="font-weight: 600; font-size: 14px; color: #34364A; margin-left: 15px;">STUDENT
|
|
WEBAPPS</p>
|
|
</div>
|
|
<div class="col">
|
|
<img src="{{asset("./images/react/react.png")}}" alt="learning-logo"
|
|
style="height: 45px;">
|
|
</div>
|
|
</div>
|
|
</li>
|
|
<li class="nav-item">
|
|
<div class="row align-items-start">
|
|
<div class="col-2">
|
|
<i class="fas fa-book" style="margin-top: 12px; margin-left: 15px; color: #676767;"
|
|
id="learningIcon"></i>
|
|
</div>
|
|
<div class="col">
|
|
<a class="nav-link active" href="#" onclick="showContent('start-learning')"
|
|
style="color: #34364A;" id="learningLink">Start Learning</a>
|
|
</div>
|
|
</div>
|
|
</li>
|
|
|
|
<li class="nav-item">
|
|
<div class="row align-items-start">
|
|
<div class="col-2">
|
|
<i class="fas fa-check-circle"
|
|
style="margin-top: 12px; margin-left: 15px; color: #676767;" id="validationIcon"></i>
|
|
</div>
|
|
<div class="col">
|
|
<a class="nav-link" href="#" onclick="showContent('validation')" style="color: #34364A;"
|
|
id="validationLink">Student Submission</a>
|
|
</div>
|
|
</div>
|
|
</li>
|
|
|
|
|
|
</ul>
|
|
</div>
|
|
</nav>
|
|
<!-- ------------------------------------------------------------------------------------------ -->
|
|
|
|
<!-- CONTENT -->
|
|
<main class="col-md-9">
|
|
<div class="content" id="start-learning">
|
|
<p style="font-size: 24px; font-weight: 500; color: #34364A;">Start Learning</p>
|
|
<div>
|
|
<div class="container mt-4">
|
|
<!-- NAV TAB -->
|
|
<ul class="nav nav-tabs">
|
|
<li class="nav-item">
|
|
<a class="nav-link active" id="learning-tab" data-toggle="tab" href="#learning">Learning
|
|
Topic</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link" id="finished-tab" data-toggle="tab" href="#finished">Topic
|
|
Finished</a>
|
|
</li>
|
|
@if($role == "teacher")
|
|
<li class="nav-item">
|
|
<a class="nav-link" id="finished-tab" data-toggle="tab" href="#progress">Progress
|
|
Topic Finished</a>
|
|
</li>
|
|
@endif
|
|
</ul>
|
|
|
|
<!-- TAB CONTENT -->
|
|
<div class="tab-content mt-3">
|
|
<div class="tab-pane fade show active" id="learning">
|
|
@foreach($topics as $topic)
|
|
@php
|
|
$limit_id = $topic->id;
|
|
$row = DB::table('react_topics_detail')->where('id_topics', $limit_id)->first();
|
|
$rowArray = (array) $row;
|
|
if ($row) {
|
|
$rows = $row->id;
|
|
}
|
|
|
|
@endphp
|
|
|
|
<div class="row">
|
|
<div class="col">
|
|
<div class="p-3">{{ $topic->description }}</div>
|
|
</div>
|
|
<div class="col" style="text-align: right;">
|
|
<div class="custom-button-detail">
|
|
|
|
<a class="button-text" data-toggle="modal" data-target="#exampleModal"
|
|
onclick="materialModal('{{ $topic->id }}','{{ $topic->description }}','{{ $topic->id_topics }}')">
|
|
<i class="fas fa-key" style="margin-right: 5px;"></i>
|
|
<!-- Ikon kunci -->
|
|
Material Details
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endforeach
|
|
</div>
|
|
<div class="tab-pane fade" id="finished">
|
|
<h3>Topic Finished</h3>
|
|
<p>Topic Finished as user : @php echo Auth::user()->name; @endphp</p>
|
|
@if($role == "student")
|
|
<div class="table-responsive mb-5">
|
|
<table id="progressTable" class="table table-striped ">
|
|
<thead>
|
|
<tr>
|
|
<th>Tanggal Selesai</th>
|
|
<th>Nama User</th>
|
|
<th>Nama Topic</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
|
|
@foreach($completedTopics as $topic)
|
|
<tr>
|
|
<td>{{ $topic->created_at }}</td>
|
|
<td>{{ $topic->user_name }}</td>
|
|
<td>{{ $topic->description}}</td>
|
|
</tr>
|
|
@endforeach
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
@endif
|
|
@if($role == "teacher")
|
|
<div class="table-responsive mb-5">
|
|
|
|
<table id="progressTable" class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>Tanggal Selesai</th>
|
|
<th>Nama User</th>
|
|
<th>Nama Topic</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@foreach($completedTopics as $topic)
|
|
<tr>
|
|
<td>{{ $topic->created_at }}</td>
|
|
<td>{{ $topic->user_name }}</td>
|
|
<td>{{ $topic->description}}</td>
|
|
</tr>
|
|
@endforeach
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
@endif
|
|
|
|
</div>
|
|
<div class="tab-pane fade" id="progress">
|
|
<h3>Progress Topic Finished</h3>
|
|
<p>This is the content for the Topic Finished.</p>
|
|
<div class="table-responsive mb-5">
|
|
<table class="table" id="finnishedProgressTable">
|
|
<thead>
|
|
<tr>
|
|
<th>User Name</th>
|
|
<th>Progress (%)</th>
|
|
<th>Progress Bar</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@foreach($progress as $userId => $userProgress)
|
|
<tr>
|
|
<td>{{ $userProgress['name'] }}</td>
|
|
<td>{{ $userProgress['percent'] }}%</td>
|
|
<td>
|
|
<div class="progress">
|
|
<div class="progress-bar" role="progressbar"
|
|
style="width: {{ $userProgress['percent'] }}%;"
|
|
aria-valuenow="{{ $userProgress['percent'] }}"
|
|
aria-valuemin="0"
|
|
aria-valuemax="100">{{ $userProgress['percent'] }}%
|
|
</div>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
@endforeach
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="validation" class="content" style="display: none;">
|
|
<h1>Student Submission</h1>
|
|
<div class="table-responsive mb-5">
|
|
<table class="table" id="studentSubmissionTable">
|
|
<thead>
|
|
<tr>
|
|
<th>Time</th>
|
|
<th>User Name</th>
|
|
<th>Submission Topic</th>
|
|
<th>Score</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@if($role == "teacher")
|
|
@php
|
|
|
|
$studentSubmissions = DB::table('react_user_submits')
|
|
->join('users', 'users.id', '=', 'react_user_submits.user_id')
|
|
->join('react_topics_detail', 'react_topics_detail.id', '=', 'react_user_submits.topics_id')
|
|
->select('react_user_submits.created_at as Time', 'users.name as UserName', 'react_topics_detail.description as TopicName', 'react_user_submits.score as Score')
|
|
->get();
|
|
@endphp
|
|
@foreach($studentSubmissions as $submission)
|
|
<tr>
|
|
<td>{{ date('Y-m-d H:i', strtotime($submission->Time)) }}</td>
|
|
<td>{{ $submission->UserName }}</td>
|
|
<td>{{ $submission->TopicName }}</td>
|
|
<td>{{ $submission->Score }}</td>
|
|
</tr>
|
|
@endforeach
|
|
@endif
|
|
@if($role == "student")
|
|
@php
|
|
|
|
$studentSubmissions = DB::table('react_user_submits')
|
|
->join('users', 'users.id', '=', 'react_user_submits.user_id')
|
|
->join('react_topics_detail', 'react_topics_detail.id', '=', 'react_user_submits.topics_id')
|
|
->select('react_user_submits.created_at as Time', 'users.name as UserName', 'react_topics_detail.description as TopicName', 'react_user_submits.score as Score')
|
|
->where('users.id', Auth::user()->id)
|
|
->get();
|
|
@endphp
|
|
@foreach($studentSubmissions as $submission)
|
|
<tr>
|
|
<td>{{ date('Y-m-d H:i', strtotime($submission->Time)) }}</td>
|
|
<td>{{ $submission->UserName }}</td>
|
|
<td>{{ $submission->TopicName }}</td>
|
|
<td>{{ $submission->Score }}</td>
|
|
</tr>
|
|
@endforeach
|
|
@endif
|
|
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="settings" class="content" style="display: none;">
|
|
<h1>Settings</h1>
|
|
<p>Possible account settings
|
|
needed<br>during the learning process</p>
|
|
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col">
|
|
<div class="custom-card">
|
|
<img src="./images/profile.png" alt="Image 1" class="circle-image">
|
|
<h2 class="custom-title">My Profile</h2>
|
|
<p class="custom-subtitle">Ubah data diri kamu</p>
|
|
{{-- <button type="button" class="btn btn-primary custom-button"><p class="button-text">Edit Now</p></button> --}}
|
|
<div class="custom-button">
|
|
<p class="button-text">Edit Now</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="col">
|
|
<div class="custom-card">
|
|
<img src="./images/my-password.png" alt="Image 2" class="circle-image">
|
|
<h2 class="custom-title">My Password</h2>
|
|
<p class="custom-subtitle">Ganti kata sandimu</p>
|
|
<div class="custom-button">
|
|
<p class="button-text">Change Now</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
|
|
|
|
</div>
|
|
</div>
|
|
<!-- The Modal -->
|
|
<div class="modal fade" id="exampleModal"
|
|
tabindex="-1"
|
|
role="dialog"
|
|
aria-labelledby="exampleModalLabel"
|
|
aria-hidden="true">
|
|
<div class="modal-dialog" role="document" style="max-width: 80%;" role="document">
|
|
<div class="modal-content">
|
|
<div class="modal-header">
|
|
<h5 class="modal-title" id="exampleModalLabel"><span id="span_title"></span></h5>
|
|
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
|
<span aria-hidden="true">×</span>
|
|
</button>
|
|
</div>
|
|
<div class="modal-body">
|
|
<div class="row">
|
|
<div class="col-md-5">
|
|
<div class="text-center">
|
|
<img src={{asset("./images/online_virtual_machine.png")}} alt="logo" width="400"
|
|
height="300">
|
|
</div>
|
|
<h5>Materi React</h5>
|
|
|
|
<input type="hidden" id="id"/>
|
|
<input type="hidden" id="title"/>
|
|
<input type="hidden" id="controller"/>
|
|
<span class="text-sm">Memiliki {{ $topicsCount }} materi yang akan dibahas secara detail</span>
|
|
</div>
|
|
|
|
<div class="col-md-7">
|
|
<b>Prerequisite knowledge : </b>
|
|
<div class="text-sm" style="margin-bottom: 20px">
|
|
<p style="margin-bottom: 5px !important">Sebelum memulai pembelajaran PHP, Anda harus
|
|
memiliki pengetahuan dasar tentang <b>HTML, CSS, dan JavaScript</b>.</p>
|
|
1. HTML digunakan untuk mendesain halaman web statis.<br>
|
|
2. CSS membantu membuat konten halaman web lebih efektif dan menarik.<br/>
|
|
3. JavaScript digunakan untuk mendesain website yang interaktif..
|
|
</div>
|
|
|
|
<b>Requirement : </b>
|
|
<div class="text-sm mb-10" style="margin-bottom: 20px">
|
|
1. Prosesor Intel Core 2 duo atau Setara.<br>
|
|
2. Setidaknya memiliki RAM 4 GB atau lebih<br>
|
|
3. Hardisk 120 GB HDD dengan penyimpanan tersedia minimal 20 GB<br>
|
|
4. Koneksi Ethernet and Wi-Fi capabilities
|
|
</div>
|
|
|
|
<b>Tools : </b><br>
|
|
<div class="row">
|
|
<div class="col-md-6 text-center text-sm">
|
|
<a href="https://code.visualstudio.com/" target="_blank">
|
|
<img style="width: 90px; height: 80px;" src="{{asset("./images/php/vscode.png")}}"
|
|
alt="">
|
|
</a>
|
|
<br>
|
|
VISUAL STUDIO CODE
|
|
</div>
|
|
<div class="col-md-6 text-center text-sm">
|
|
<a href="https://www.apachefriends.org/" target="_blank">
|
|
<img style="width: 90px; height: 80px; object-fit: cover"
|
|
src="{{asset("./images/php/xampp.png")}}" alt="">
|
|
</a>
|
|
<br>
|
|
XAMPP
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button type="button" class="btn btn-primary" style="margin-left: 10px; width: 160px;"
|
|
onclick="materialDetailPage()">
|
|
<i class="fas fa-key" style="margin-right: 5px;"></i>Enroll Material
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!-- JavaScript untuk mengubah konten tab -->
|
|
<script>
|
|
function materialModal(id, title, controller) {
|
|
$("#id").val(id);
|
|
$("#title").val(title);
|
|
$("#controller").val(controller);
|
|
$("#span_title").text(title);
|
|
|
|
|
|
}
|
|
|
|
function materialDetailPage() {
|
|
var csrfToken = "{{ csrf_token() }}";
|
|
let id = $("#id").val();
|
|
let title = $("#title").val();
|
|
let controller = $("#controller").val();
|
|
window.location.href = "{{ route('react_material_detail') }}?phpid=" + id + "&start=" + controller;
|
|
|
|
/*$.ajax({
|
|
type: "POST",
|
|
data: {
|
|
id: id,
|
|
title: title,
|
|
_token: csrfToken // Menambahkan token CSRF ke dalam data permintaan
|
|
},
|
|
dataType: 'html',
|
|
url: "{{ route('php_material_detail') }}",
|
|
success: function(res) {
|
|
|
|
},
|
|
error: function(xhr, status, error) {
|
|
console.error("Error:", error);
|
|
}
|
|
});*/
|
|
}
|
|
|
|
// Fungsi untuk mengubah warna ikon, teks, dan link menjadi biru
|
|
function changeColor(id) {
|
|
var icon = document.getElementById(id + 'Icon');
|
|
var link = document.getElementById(id + 'Link');
|
|
var text = document.getElementById(id + 'Text');
|
|
|
|
// Mengembalikan warna ikon, teks, dan link ke warna awal
|
|
var icons = document.getElementsByClassName('fas');
|
|
var links = document.getElementsByClassName('nav-link');
|
|
var texts = document.getElementsByClassName('nav-link-text');
|
|
for (var i = 0; i < icons.length; i++) {
|
|
icons[i].style.color = '#676767';
|
|
}
|
|
for (var j = 0; j < links.length; j++) {
|
|
links[j].style.color = '#34364A';
|
|
}
|
|
for (var k = 0; k < texts.length; k++) {
|
|
texts[k].style.color = '#34364A';
|
|
}
|
|
|
|
// Mengubah warna ikon, teks, dan link menjadi biru
|
|
icon.style.color = '#1A79E3';
|
|
link.style.color = '#1A79E3';
|
|
text.style.color = '#1A79E3';
|
|
}
|
|
|
|
// Menambahkan event listener pada setiap link
|
|
var startLearningLink = document.getElementById('learningLink');
|
|
startLearningLink.addEventListener('click', function () {
|
|
changeColor('learning');
|
|
});
|
|
|
|
var validationLink = document.getElementById('validationLink');
|
|
validationLink.addEventListener('click', function () {
|
|
changeColor('validation');
|
|
});
|
|
|
|
var rankLink = document.getElementById('rankLink');
|
|
rankLink.addEventListener('click', function () {
|
|
changeColor('rank');
|
|
});
|
|
|
|
var settingsLink = document.getElementById('settingsLink');
|
|
settingsLink.addEventListener('click', function () {
|
|
changeColor('settings');
|
|
});
|
|
|
|
|
|
// Function to show the selected content based on sidebar link click
|
|
function showContent(contentId) {
|
|
// Hide all content divs
|
|
var contentDivs = document.getElementsByClassName('content');
|
|
for (var i = 0; i < contentDivs.length; i++) {
|
|
contentDivs[i].style.display = 'none';
|
|
}
|
|
|
|
// Show the selected content div
|
|
var selectedContent = document.getElementById(contentId);
|
|
if (selectedContent) {
|
|
selectedContent.style.display = 'block';
|
|
}
|
|
}
|
|
|
|
// Change TAB
|
|
$(document).ready(function () {
|
|
$('#learning-tab').on('click', function (e) {
|
|
e.preventDefault();
|
|
$('#finished-tab').removeClass('active');
|
|
$(this).tab('show');
|
|
});
|
|
|
|
$('#finished-tab').on('click', function (e) {
|
|
e.preventDefault();
|
|
$('#learning-tab').removeClass('active');
|
|
$(this).tab('show');
|
|
});
|
|
});
|
|
</script>
|
|
<!-- Buttons extension -->
|
|
<!-- Buttons extension and its dependencies -->
|
|
|
|
<script>
|
|
$(document).ready(function () {
|
|
$("#dropdownContainer").click(function () {
|
|
$("#dropdownContainer").toggleClass("active");
|
|
});
|
|
$("#dropdownContent").click(function (e) {
|
|
e.stopPropagation();
|
|
});
|
|
$(document).click(function () {
|
|
$("#dropdownContainer").removeClass("active");
|
|
});
|
|
$('#progressTable').DataTable({
|
|
// Configuration options
|
|
"paging": true,
|
|
"ordering": true,
|
|
"info": true,
|
|
dom: 'Bfrtip', // Needs to include 'B' for buttons
|
|
buttons: [
|
|
{
|
|
extend: 'excelHtml5',
|
|
text: 'Export to Excel',
|
|
title: 'Data Export REACT',
|
|
filename: 'react_data_export_topic_finished_student_' + new Date().toLocaleDateString() + '_' + new Date().toLocaleTimeString(),
|
|
customize: function (xlsx) {
|
|
var sheet = xlsx.xl.worksheets['sheet1.xml'];
|
|
// Customizations go here
|
|
}
|
|
},
|
|
'pdf',
|
|
]
|
|
});
|
|
$('#studentSubmissionTable').DataTable({
|
|
// Configuration options
|
|
"paging": true,
|
|
"ordering": true,
|
|
"info": true,
|
|
dom: 'Bfrtip', // Needs to include 'B' for buttons
|
|
buttons: [
|
|
{
|
|
extend: 'excelHtml5',
|
|
text: 'Export to Excel',
|
|
title: 'Data Export REACT',
|
|
filename: 'react_data_export_student_submission_student_' + new Date().toLocaleDateString() + '_' + new Date().toLocaleTimeString(),
|
|
customize: function (xlsx) {
|
|
var sheet = xlsx.xl.worksheets['sheet1.xml'];
|
|
// Customizations go here
|
|
}
|
|
},
|
|
{
|
|
extend: 'pdfHtml5',
|
|
text: 'Export to PDF',
|
|
title: 'Data Export REACT',
|
|
filename: 'react_data_export_student_submission_student_' + new Date().toLocaleDateString().replace(/\//g, '-') + '_' + new Date().toLocaleTimeString().replace(/:/g, '-'),
|
|
orientation: 'portrait', // 'portrait' or 'landscape'
|
|
pageSize: 'A4', // 'A3', 'A4', 'A5', 'LEGAL', 'LETTER' or 'TABLOID'
|
|
exportOptions: {
|
|
columns: ':visible' // Export visible columns only
|
|
},
|
|
customize: function (doc) {
|
|
doc.styles.title = {
|
|
color: '#4c4c4c',
|
|
fontSize: '20',
|
|
alignment: 'center'
|
|
}
|
|
doc.styles.tableHeader = {
|
|
fillColor: '#2d4154',
|
|
color: 'white',
|
|
alignment: 'center'
|
|
}
|
|
// Customize the PDF header, footer, etc. here
|
|
}
|
|
},
|
|
]
|
|
});
|
|
$('#finnishedProgressTable').DataTable({
|
|
// Configuration options
|
|
"paging": true,
|
|
"ordering": true,
|
|
"info": true,
|
|
dom: 'Bfrtip', // Needs to include 'B' for buttons
|
|
buttons: [
|
|
{
|
|
extend: 'excelHtml5',
|
|
text: 'Export to Excel',
|
|
title: 'Data Export REACT',
|
|
filename: 'react_data_export_progress_student_' + new Date().toLocaleDateString() + '_' + new Date().toLocaleTimeString(),
|
|
customize: function (xlsx) {
|
|
var sheet = xlsx.xl.worksheets['sheet1.xml'];
|
|
// Customizations go here
|
|
}
|
|
},
|
|
{
|
|
extend: 'pdfHtml5',
|
|
text: 'Export to PDF',
|
|
title: 'Data Export REACT',
|
|
filename: 'react_data_export_progress_student_' + new Date().toLocaleDateString().replace(/\//g, '-') + '_' + new Date().toLocaleTimeString().replace(/:/g, '-'),
|
|
orientation: 'portrait', // 'portrait' or 'landscape'
|
|
pageSize: 'A4', // 'A3', 'A4', 'A5', 'LEGAL', 'LETTER' or 'TABLOID'
|
|
exportOptions: {
|
|
columns: ':visible' // Export visible columns only
|
|
},
|
|
customize: function (doc) {
|
|
doc.styles.title = {
|
|
color: '#4c4c4c',
|
|
fontSize: '20',
|
|
alignment: 'center'
|
|
}
|
|
doc.styles.tableHeader = {
|
|
fillColor: '#2d4154',
|
|
color: 'white',
|
|
alignment: 'center'
|
|
}
|
|
// Customize the PDF header, footer, etc. here
|
|
}
|
|
},
|
|
]
|
|
});
|
|
$('#tableStudentReport').DataTable({
|
|
// Configuration options
|
|
"paging": true,
|
|
"ordering": true,
|
|
"info": true,
|
|
dom: 'Bfrtip', // Needs to include 'B' for buttons
|
|
buttons: [
|
|
{
|
|
extend: 'excelHtml5',
|
|
text: 'Export to Excel',
|
|
title: 'Data Export REACT',
|
|
filename: 'react_data_export_progress_student_' + new Date().toLocaleDateString() + '_' + new Date().toLocaleTimeString(),
|
|
customize: function (xlsx) {
|
|
var sheet = xlsx.xl.worksheets['sheet1.xml'];
|
|
// Customizations go here
|
|
}
|
|
},
|
|
{
|
|
extend: 'pdfHtml5',
|
|
text: 'Export to PDF',
|
|
title: 'Data Export REACT',
|
|
filename: 'react_data_export_progress_student_' + new Date().toLocaleDateString().replace(/\//g, '-') + '_' + new Date().toLocaleTimeString().replace(/:/g, '-'),
|
|
orientation: 'portrait', // 'portrait' or 'landscape'
|
|
pageSize: 'A4', // 'A3', 'A4', 'A5', 'LEGAL', 'LETTER' or 'TABLOID'
|
|
exportOptions: {
|
|
columns: ':visible' // Export visible columns only
|
|
},
|
|
customize: function (doc) {
|
|
doc.styles.title = {
|
|
color: '#4c4c4c',
|
|
fontSize: '20',
|
|
alignment: 'center'
|
|
}
|
|
doc.styles.tableHeader = {
|
|
fillColor: '#2d4154',
|
|
color: 'white',
|
|
alignment: 'center'
|
|
}
|
|
// Customize the PDF header, footer, etc. here
|
|
}
|
|
},
|
|
]
|
|
});
|
|
});
|
|
</script>
|
|
|
|
|
|
<style>
|
|
.dropdown {
|
|
position: relative;
|
|
display: inline-block;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.dropdown-content {
|
|
display: none;
|
|
position: absolute;
|
|
background-color: #fff;
|
|
min-width: 160px;
|
|
box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
|
|
z-index: 1;
|
|
border-radius: 5px;
|
|
overflow: hidden;
|
|
transition: 0.3s;
|
|
opacity: 0;
|
|
transform: translateY(-10px);
|
|
}
|
|
|
|
.dropdown-content a {
|
|
color: black;
|
|
padding: 12px 16px;
|
|
text-decoration: none;
|
|
display: block;
|
|
transition: 0.3s;
|
|
}
|
|
|
|
.dropdown-content a:hover {
|
|
background-color: #f1f1f1;
|
|
}
|
|
|
|
.dropdown:hover .dropdown-content {
|
|
display: block;
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|
|
|
|
.dropdown.active .dropdown-content {
|
|
display: block;
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|
|
|
|
</style>
|
|
<footer class="footer"
|
|
style="background-color: #EAEAEA; color: #636363; text-align: center; padding: 10px 0; position: fixed; bottom: 0; width: 100%; ">
|
|
© 2023 Your Website. All rights reserved.
|
|
</footer>
|
|
|
|
</body>
|
|
|
|
|
|
</html>
|