Commit aa90430c authored by TTS Tran Viet Anh's avatar TTS Tran Viet Anh

Merge branch 'feature/form-validation-fix' into 'upload-form-layout'

Feature/form validation fix

See merge request !6
parents ef54552e c1c82bd2
...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
namespace App\Http\Controllers; namespace App\Http\Controllers;
use App\Http\Requests\UploadFormRequest;
use Illuminate\Http\Request; use Illuminate\Http\Request;
use Illuminate\Support\Facades\Log; use Illuminate\Support\Facades\Log;
...@@ -24,7 +25,7 @@ public function index() ...@@ -24,7 +25,7 @@ public function index()
*/ */
public function create() public function create()
{ {
// return view('upload-form');
} }
/** /**
...@@ -33,9 +34,9 @@ public function create() ...@@ -33,9 +34,9 @@ public function create()
* @param \Illuminate\Http\Request $request * @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response * @return \Illuminate\Http\Response
*/ */
public function store(Request $request) public function store(UploadFormRequest $request)
{ {
// return view('upload-form');
} }
/** /**
......
<?php
namespace App\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
class UploadFormRequest extends FormRequest
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return true;
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
'category' => ['required'],
'question' => ['required', 'mimes:pdf'],
'answer' => ['mimes:pdf'],
'name' => ['required'],
'fee' => ['required','integer'],
'level' => ['required'],
'time' => ['required', 'integer'],
'numberOfQuestion' => ['required', 'integer'],
];
}
public function messages()
{
return [
'category.required' => 'Hãy chọn danh mục!',
'question.required' => 'Hãy chọn file câu hỏi',
'question.mimes' => 'chỉ có thể upload file pdf',
'answer.mimes' => 'chỉ có thể upload file pdf',
'name.required' => 'Hãy nhập tên đề thi',
'fee.required' => 'Hãy nhập phí thi',
'fee.integer' => 'Hãy nhập phí thi bằng một số',
'level.required' => 'Hãy chọn mức độ',
'time.required' => 'Hãy nhập thời gian thi',
'time.integer' => 'Hãy nhập số phút thi bằng số',
'numberOfQuestion.required' => 'Hãy nhập số câu hỏi',
'numberOfQuestion.integer' => 'Hãy nhập số câu hỏi bằng số',
];
}
}
...@@ -20,6 +20,12 @@ ...@@ -20,6 +20,12 @@
href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-tagsinput/0.8.0/bootstrap-tagsinput.css"> href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-tagsinput/0.8.0/bootstrap-tagsinput.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-tagsinput/0.8.0/bootstrap-tagsinput.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-tagsinput/0.8.0/bootstrap-tagsinput.min.js"></script>
{{-- jquery --}}
<script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
<script type="text/javascript" src="http://ajax.aspnetcdn.com/ajax/jquery.validate/1.13.1/jquery.validate.min.js">
</script>
<title>Document</title> <title>Document</title>
</head> </head>
......
...@@ -12,17 +12,17 @@ ...@@ -12,17 +12,17 @@
<li> <li>
<b>{{ $i }}</b> <b>{{ $i }}</b>
A. A.
<input name="{{ $i }}" id="A{{ $i }}" type="radio" value="A" <input name="{{ $i }}" id="A{{ $i }}" type="radio" value="{{ old('value') ?? 1 }}"
onclick="handleClick(this)" /> onclick="handleClick(this)" />
B. B.
<input name="{{ $i }}" id="B{{ $i }}" type="radio" value="B" <input name="{{ $i }}" id="B{{ $i }}" type="radio" value="{{ old('value') ?? 2 }}"
onclick="handleClick(this)" /> onclick="handleClick(this)" />
C. C.
<input name="{{ $i }}" id="C{{ $i }}" type="radio" value="C" <input name="{{ $i }}" id="C{{ $i }}" type="radio" value="{{ old('value') ?? 3 }}"
onclick="handleClick(this)" /> onclick="handleClick(this)" />
D. D.
<input name="{{ $i }}" id="D{{ $i }}" type="radio" value="D" <input name="{{ $i }}" id="D{{ $i }}" type="radio"
onclick="handleClick(this)" /> value="{{ old('value') ?? 4 }}" onclick="handleClick(this)" />
</li> </li>
</ul> </ul>
@endfor @endfor
......
<div class="col-2">
<label for="">Điền đáp án đúng:</label>
</div>
<div class="col-5" style="overflow:scroll">
<div class="rows">
<div class="col-12">
<b id="countAnswer"> / {{ request('numberOfQuestion') }}</b>
</div>
</div>
@for ($i = 1; $i <= request('numberOfQuestion'); $i++)
<ul>
<li>
<b>{{ $i }}</b>
A.
<input name="{{ $i }}" class="radio" id="A{{ $i }}" type="radio" value="A"
onclick="handleClick(this)" />
B.
<input name="{{ $i }}" class="radio" id="B{{ $i }}" type="radio" value="B"
onclick="handleClick(this)" />
C.
<input name="{{ $i }}" class="radio" id="C{{ $i }}" type="radio" value="C"
onclick="handleClick(this)" />
D.
<input name="{{ $i }}" class="radio" id="D{{ $i }}" type="radio" value="D"
onclick="handleClick(this)" />
</li>
</ul>
@endfor
</div>
...@@ -105,7 +105,7 @@ ...@@ -105,7 +105,7 @@
placeholder="câu" /> placeholder="câu" />
</div> </div>
</div> </div>
<div class="row"id="questionForm"> <div class="row" id="questionForm" name="questionForm">
</div> </div>
<button class="btn btn-primary" type="submit" id="submitButton">Đăng ngay</button> <button class="btn btn-primary" type="submit" id="submitButton">Đăng ngay</button>
...@@ -114,6 +114,18 @@ ...@@ -114,6 +114,18 @@
<script> <script>
$(document).ready(function() { $(document).ready(function() {
if ($('#numberOfQuestion').val() != null) {
$.ajax({
type: "GET",
url: "{{ route('questionForm') }}",
data: {
numberOfQuestion: $('#numberOfQuestion').val()
},
success: function(data) {
$("#questionForm").html(data);
}
});
}
//show question form //show question form
$('#numberOfQuestion').change(function() { $('#numberOfQuestion').change(function() {
$.ajax({ $.ajax({
...@@ -127,6 +139,14 @@ ...@@ -127,6 +139,14 @@
} }
}); });
}); });
//check file type
$("#question,#answer").change(function() {
var fileExtension = ['pdf'];
if ($.inArray($(this).val().split('.').pop().toLowerCase(), fileExtension) == -1) {
alert("Chỉ có thể chọn file " + fileExtension.join(', '));
}
});
}) })
</script> </script>
@endsection @endsection
...@@ -14,8 +14,8 @@ ...@@ -14,8 +14,8 @@
| |
*/ */
Route::get('/', function () { Route::get('/', [FormController::class, 'create'])->name('uploadForm');
return view('upload-form');
});
Route::get('/questionForm', [FormController::class,'showQuestionForm'])->name('questionForm'); Route::get('/questionForm', [FormController::class,'showQuestionForm'])->name('questionForm');
Route::post('/upload', [FormController::class, 'store'])->name('upload');
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment