create: view for generated history feature
This commit is contained in:
parent
381f7375bb
commit
8486ce3c6b
|
|
@ -0,0 +1,927 @@
|
||||||
|
<!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 style="padding-bottom: 45px;">
|
||||||
|
<!-- 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
|
||||||
|
Teacher</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('logout') }}" 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/literacy/literacy.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-user"
|
||||||
|
style="margin-top: 12px; margin-left: 15px; color: #676767;"></i>
|
||||||
|
</div>
|
||||||
|
<div class="col">
|
||||||
|
<a class="nav-link active" href="{{ route('literacy_teacher_users') }}"
|
||||||
|
style="color: #34364A;" id="manageUsersLink">Manage Users</a>
|
||||||
|
</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;"></i>
|
||||||
|
</div>
|
||||||
|
<div class="col">
|
||||||
|
<a class="nav-link active" href="{{ route('literacy_teacher_materials') }}"
|
||||||
|
style="color: #34364A;" id="manageMaterialsLink">Manage Materials</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item">
|
||||||
|
<div class="row align-items-start">
|
||||||
|
<div class="col-2">
|
||||||
|
<i class="fas fa-robot"
|
||||||
|
style="margin-top: 12px; margin-left: 15px; color: #676767;"></i>
|
||||||
|
</div>
|
||||||
|
<div class="col">
|
||||||
|
<a class="nav-link" href="{{ route('literacy_teacher_generate_questions') }}"
|
||||||
|
style="color: #34364A;">AI Generated Questions</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item">
|
||||||
|
<div class="row align-items-start">
|
||||||
|
<div class="col-2">
|
||||||
|
<i class="fas fa-history"
|
||||||
|
style="margin-top: 12px; margin-left: 15px; color: #676767;"></i>
|
||||||
|
</div>
|
||||||
|
<div class="col">
|
||||||
|
<a class="nav-link" href="{{ route('literacy_teacher_generate_questions_history') }}"
|
||||||
|
style="color: #34364A;">Generated History</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item">
|
||||||
|
<div class="row align-items-start">
|
||||||
|
<div class="col-2">
|
||||||
|
<i class="fas fa-question-circle"
|
||||||
|
style="margin-top: 12px; margin-left: 15px; color: #676767;"></i>
|
||||||
|
</div>
|
||||||
|
<div class="col">
|
||||||
|
<a class="nav-link active" href="{{ route('literacy_teacher_questions') }}"
|
||||||
|
style="color: #34364A;" id="manageQuestionsLink">Manage Questions</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item">
|
||||||
|
<div class="row align-items-start">
|
||||||
|
<div class="col-2">
|
||||||
|
<i class="fas fa-chart-bar"
|
||||||
|
style="margin-top: 12px; margin-left: 15px; color: #676767;"></i>
|
||||||
|
</div>
|
||||||
|
<div class="col">
|
||||||
|
<a class="nav-link" href="{{ route('literacy_teacher_assessment_results') }}"
|
||||||
|
style="color: #34364A;">Assessment Results</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item">
|
||||||
|
<div class="row align-items-start">
|
||||||
|
<div class="col-2">
|
||||||
|
<i class="fas fa-sign-out-alt"
|
||||||
|
style="margin-top: 12px; margin-left: 15px; color: #676767;"></i>
|
||||||
|
</div>
|
||||||
|
<div class="col">
|
||||||
|
<form id="logout-form" action="{{ route('logout') }}" method="POST">
|
||||||
|
@csrf
|
||||||
|
<a class="nav-link" href="#" style="color: #34364A;"
|
||||||
|
onclick="event.preventDefault(); document.getElementById('logout-form').submit();">Logout</a>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
<!-- ------------------------------------------------------------------------------------------ -->
|
||||||
|
|
||||||
|
<!-- CONTENT -->
|
||||||
|
<main class="col-md-9">
|
||||||
|
<div class="content">
|
||||||
|
<p style="font-size: 24px; font-weight: 500; color: #34364A;">Generated History</p>
|
||||||
|
<div class="container mt-4">
|
||||||
|
<div class="table-responsive mb-5">
|
||||||
|
<table id="progressTable" class="table table-striped">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>No</th>
|
||||||
|
<th>Hasil Generate</th>
|
||||||
|
<th>Tipe Soal</th>
|
||||||
|
<th>Jumlah Soal</th>
|
||||||
|
<th>Aksi</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
@forelse ($history_generated_texts as $index => $history_generated_text)
|
||||||
|
<tr>
|
||||||
|
<td>{{ $index + 1 }}</td>
|
||||||
|
<td>{{ $history_generated_text->generate_text }}</td>
|
||||||
|
<td>
|
||||||
|
@if ($history_generated_text->question_type == 'multiple_choice')
|
||||||
|
Pilihan Ganda
|
||||||
|
@elseif ($history_generated_text->question_type == 'essay')
|
||||||
|
Isian
|
||||||
|
@else
|
||||||
|
-
|
||||||
|
@endif
|
||||||
|
</td>
|
||||||
|
<td>{{ $history_generated_text->question_count }}</td>
|
||||||
|
<td>
|
||||||
|
<button class="btn btn-sm btn-info text-white" data-toggle="modal"
|
||||||
|
data-target="#detailGeneratedTextModal{{ $history_generated_text->id }}">Detail</button>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
@empty
|
||||||
|
<tr>
|
||||||
|
<td colspan="4" class="text-center">Tidak ada data</td>
|
||||||
|
</tr>
|
||||||
|
@endforelse
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
@foreach ($history_generated_texts as $history_generated_text)
|
||||||
|
@include('literacy.teacher.history_generated.modals.detail', ['history_generated_text' => $history_generated_text])
|
||||||
|
@endforeach
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</main>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
document.addEventListener('DOMContentLoaded', function () {
|
||||||
|
const aiForm = document.getElementById('aiForm');
|
||||||
|
const contentElement = document.getElementById('content');
|
||||||
|
const resetButton = document.getElementById('resetButton');
|
||||||
|
|
||||||
|
aiForm.addEventListener('submit', async function (event) {
|
||||||
|
event.preventDefault();
|
||||||
|
|
||||||
|
const formData = new FormData(aiForm);
|
||||||
|
contentElement.innerText = "Menghasilkan pertanyaan...";
|
||||||
|
|
||||||
|
try {
|
||||||
|
let payload = {
|
||||||
|
material_id: document.getElementById('material_id').value,
|
||||||
|
question_type: document.getElementById('question_type').value,
|
||||||
|
question_count: parseInt(document.getElementById('question_count').value)
|
||||||
|
};
|
||||||
|
|
||||||
|
let response = await fetch("{{ route('literacy_teacher_generate_from_ai') }}", {
|
||||||
|
method: "POST",
|
||||||
|
headers: {
|
||||||
|
"Content-Type": "application/json",
|
||||||
|
"X-CSRF-TOKEN": '{{ csrf_token() }}',
|
||||||
|
"Accept": "application/json",
|
||||||
|
},
|
||||||
|
body: JSON.stringify(payload)
|
||||||
|
});
|
||||||
|
|
||||||
|
let data = await response.json();
|
||||||
|
|
||||||
|
if (response.ok) {
|
||||||
|
// Mengubah output untuk menggunakan label yang lebih user-friendly
|
||||||
|
let formattedText = data.generated_questions;
|
||||||
|
if (formattedText) {
|
||||||
|
formattedText = formattedText.replace(/Soal Pilihan Ganda:/g, '**Soal Pilihan Ganda:**');
|
||||||
|
formattedText = formattedText.replace(/Soal Isian:/g, '**Soal Isian:**');
|
||||||
|
}
|
||||||
|
contentElement.innerText = formattedText || "Soal berhasil dibuat, tapi tidak ada data.";
|
||||||
|
} else {
|
||||||
|
contentElement.innerText = "Error: " + (data.message || "Terjadi kesalahan.");
|
||||||
|
}
|
||||||
|
} catch (error) {
|
||||||
|
contentElement.innerText = "Gagal menghubungi server!";
|
||||||
|
console.error("Error:", error);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
resetButton.addEventListener('click', function () {
|
||||||
|
contentElement.innerText = 'Hasil generate soal akan muncul di sini...';
|
||||||
|
});
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
document.addEventListener("DOMContentLoaded", function () {
|
||||||
|
const questionType = document.getElementById("questionType");
|
||||||
|
const multipleChoiceOptions = document.getElementById("multipleChoiceOptions");
|
||||||
|
const answerOptions = document.getElementById("answerOptions");
|
||||||
|
const addOptionBtn = document.getElementById("addOption");
|
||||||
|
const essayScoreField = document.getElementById("essayScoreField");
|
||||||
|
const essayReferenceAnswerField = document.getElementById("essayReferenceAnswerField");
|
||||||
|
const saveButton = document.getElementById("saveButton");
|
||||||
|
const essayScore = document.getElementById("essay_score");
|
||||||
|
const essayAnswer = document.getElementById("essay_answer");
|
||||||
|
const questionForm = document.getElementById("questionForm");
|
||||||
|
|
||||||
|
function toggleFields() {
|
||||||
|
if (questionType.value === "multiple_choice") {
|
||||||
|
multipleChoiceOptions.style.display = "block";
|
||||||
|
essayScoreField.style.display = "none";
|
||||||
|
essayReferenceAnswerField.style.display = "none";
|
||||||
|
|
||||||
|
essayScore.removeAttribute("required");
|
||||||
|
essayAnswer.removeAttribute("required");
|
||||||
|
|
||||||
|
document.querySelectorAll(".option-text, .option-score").forEach(input => {
|
||||||
|
input.setAttribute("required", "required");
|
||||||
|
});
|
||||||
|
|
||||||
|
// Tambahkan minimal 1 opsi jika belum ada
|
||||||
|
if (answerOptions.children.length === 0) {
|
||||||
|
addNewOption();
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
multipleChoiceOptions.style.display = "none";
|
||||||
|
essayScoreField.style.display = "block";
|
||||||
|
essayReferenceAnswerField.style.display = "block";
|
||||||
|
|
||||||
|
essayScore.setAttribute("required", "required");
|
||||||
|
essayAnswer.setAttribute("required", "required");
|
||||||
|
|
||||||
|
document.querySelectorAll(".option-text, .option-score").forEach(input => {
|
||||||
|
input.removeAttribute("required");
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
validateForm();
|
||||||
|
}
|
||||||
|
|
||||||
|
function addNewOption() {
|
||||||
|
let optionsCount = document.querySelectorAll(".option-group").length;
|
||||||
|
let div = document.createElement("div");
|
||||||
|
div.classList.add("option-group", "mb-2", "d-flex", "align-items-center");
|
||||||
|
div.innerHTML = `
|
||||||
|
<input type="text" name="options[${optionsCount}][text]" class="form-control me-2 option-text" style="width: 40%;" placeholder="Opsi ${optionsCount + 1}" required>
|
||||||
|
<input type="number" name="options[${optionsCount}][score]" class="form-control me-2 option-score" style="width: 20%;" placeholder="Skor" min="0" max="100" required>
|
||||||
|
<input type="checkbox" name="options[${optionsCount}][is_correct]" value="1" class="ms-2 correct-answer">
|
||||||
|
<span class="ms-1">Jawaban Benar</span>
|
||||||
|
<button type="button" class="btn btn-danger btn-sm ms-2 remove-option">X</button>
|
||||||
|
`;
|
||||||
|
answerOptions.appendChild(div);
|
||||||
|
|
||||||
|
div.querySelector(".remove-option").addEventListener("click", function () {
|
||||||
|
div.remove();
|
||||||
|
updateOptionIndexes();
|
||||||
|
validateForm();
|
||||||
|
});
|
||||||
|
|
||||||
|
updateOptionIndexes();
|
||||||
|
validateForm();
|
||||||
|
}
|
||||||
|
|
||||||
|
function updateOptionIndexes() {
|
||||||
|
document.querySelectorAll(".option-group").forEach((option, index) => {
|
||||||
|
option.querySelector(".option-text").name = `options[${index}][text]`;
|
||||||
|
option.querySelector(".option-score").name = `options[${index}][score]`;
|
||||||
|
option.querySelector(".correct-answer").name = `options[${index}][is_correct]`;
|
||||||
|
option.querySelector(".option-text").placeholder = `Opsi ${index + 1}`;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function validateForm() {
|
||||||
|
let isValid = false;
|
||||||
|
|
||||||
|
if (questionType.value === "multiple_choice") {
|
||||||
|
let options = document.querySelectorAll(".option-text");
|
||||||
|
let scores = document.querySelectorAll(".option-score");
|
||||||
|
let checkedCorrect = document.querySelector(".correct-answer:checked");
|
||||||
|
|
||||||
|
isValid = options.length > 0 && scores.length > 0 && checkedCorrect;
|
||||||
|
} else {
|
||||||
|
isValid = essayScore.value.trim() !== "" && essayAnswer.value.trim() !== "";
|
||||||
|
}
|
||||||
|
|
||||||
|
saveButton.disabled = !isValid;
|
||||||
|
// questionForm.reportValidity();
|
||||||
|
}
|
||||||
|
|
||||||
|
questionType.addEventListener("change", toggleFields);
|
||||||
|
addOptionBtn.addEventListener("click", addNewOption);
|
||||||
|
essayScore.addEventListener("input", validateForm);
|
||||||
|
essayAnswer.addEventListener("input", validateForm);
|
||||||
|
answerOptions.addEventListener("input", validateForm);
|
||||||
|
|
||||||
|
toggleFields();
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<!-- 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('php_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 manageUsersLink = document.getElementById('manageUsersLink');
|
||||||
|
manageUsersLink.addEventListener('click', function () {
|
||||||
|
changeColor('manageUsers');
|
||||||
|
});
|
||||||
|
|
||||||
|
var manageMaterialsLink = document.getElementById('manageMaterialsLink');
|
||||||
|
manageMaterialsLink.addEventListener('click', function () {
|
||||||
|
changeColor('manageMaterials');
|
||||||
|
});
|
||||||
|
|
||||||
|
var manageMaterialsLink = document.getElementById('manageQuestionsLink');
|
||||||
|
manageQuestionsLink.addEventListener('click', function () {
|
||||||
|
changeColor('manageQuestions');
|
||||||
|
});
|
||||||
|
|
||||||
|
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';
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
|
||||||
|
function showContent(contentId) {
|
||||||
|
var contentDivs = document.getElementsByClassName('content');
|
||||||
|
for (var i = 0; i < contentDivs.length; i++) {
|
||||||
|
contentDivs[i].style.display = 'none';
|
||||||
|
}
|
||||||
|
|
||||||
|
var selectedContent = document.getElementById(contentId);
|
||||||
|
if (selectedContent) {
|
||||||
|
selectedContent.style.display = 'block';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Change TAB
|
||||||
|
$(document).ready(function () {
|
||||||
|
$('#users-tab').on('click', function (e) {
|
||||||
|
e.preventDefault();
|
||||||
|
$('#materials-tab').removeClass('active');
|
||||||
|
$(this).tab('show');
|
||||||
|
});
|
||||||
|
|
||||||
|
$('#materials-tab').on('click', function (e) {
|
||||||
|
e.preventDefault();
|
||||||
|
$('#users-tab').removeClass('active');
|
||||||
|
$(this).tab('show');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
<script>
|
||||||
|
$(document).ready(function () {
|
||||||
|
$("#dropdownContainer").click(function () {
|
||||||
|
$("#dropdownContainer").toggleClass("active");
|
||||||
|
});
|
||||||
|
$("#dropdownContent").click(function (e) {
|
||||||
|
e.stopPropagation();
|
||||||
|
});
|
||||||
|
$(document).click(function () {
|
||||||
|
$("#dropdownContainer").removeClass("active");
|
||||||
|
});
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
<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>
|
||||||
|
|
@ -0,0 +1,32 @@
|
||||||
|
<!-- Modal Detail Hasil Generated -->
|
||||||
|
<div class="modal fade" id="detailGeneratedTextModal{{ $history_generated_text->id }}" tabindex="-1" role="dialog">
|
||||||
|
<div class="modal-dialog" role="document">
|
||||||
|
<div class="modal-content">
|
||||||
|
<div class="modal-header">
|
||||||
|
<h5 class="modal-title">Detail Hasil Generated</h5>
|
||||||
|
<button type="button" class="close" data-dismiss="modal">×</button>
|
||||||
|
</div>
|
||||||
|
<div class="modal-body">
|
||||||
|
<div class="mb-3">
|
||||||
|
<label class="form-label">Hasil Generate:</label>
|
||||||
|
<textarea class="form-control bg-light" readonly
|
||||||
|
style="height: 150px !important; overflow-y: auto !important; resize: none !important;">{{ $history_generated_text->generate_text }}</textarea>
|
||||||
|
</textarea>
|
||||||
|
</div>
|
||||||
|
<div class="mb-3">
|
||||||
|
<label class="form-label">Tipe Soal:</label>
|
||||||
|
<div class="form-control bg-light">
|
||||||
|
{{ $history_generated_text->question_type == 'multiple_choice' ? 'Pilihan Ganda' : 'Isian' }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="mb-3">
|
||||||
|
<label class="form-label">Jumlah Soal:</label>
|
||||||
|
<div class="form-control bg-light">{{ $history_generated_text->question_count }}</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="modal-footer">
|
||||||
|
<button type="button" class="btn btn-secondary" data-dismiss="modal">Tutup</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
Loading…
Reference in New Issue
Block a user