Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
simpmw
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Alfiro Pratama
simpmw
Commits
93b52c70
Commit
93b52c70
authored
Apr 25, 2024
by
Muhammad Iskandar Java
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://git.unesa.ac.id/alfiro/simpmw
parents
abe17d8f
aea19bba
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
297 additions
and
33 deletions
+297
-33
app/Http/Controllers/Dosen/ProposalController.php
+7
-2
app/Http/Controllers/Mahasiswa/MonevController.php
+1
-1
app/Http/Controllers/Mahasiswa/ProposalController.php
+24
-8
app/Models/Proposal.php
+5
-0
app/Models/ProposalUrl.php
+7
-2
resources/views/backend/mahasiswa/proposal/create.blade.php
+131
-9
resources/views/backend/mahasiswa/proposal/index.blade.php
+119
-11
resources/views/layouts/headpg.blade.php
+1
-0
resources/views/layouts/master.blade.php
+2
-0
No files found.
app/Http/Controllers/Dosen/ProposalController.php
View file @
93b52c70
...
...
@@ -15,6 +15,7 @@ use App\Models\Jenis;
use
Session
;
use
Alert
;
use
App\Models\ProposalUrl
;
use
Auth
;
class
ProposalController
extends
Controller
...
...
@@ -68,7 +69,8 @@ class ProposalController extends Controller
public
function
lihat
(
Request
$request
)
{
$item
=
Proposal
::
where
(
'proposal_id'
,
$request
->
proposal_id
)
->
first
();
$item
[
'proposal'
]
=
Proposal
::
where
(
'proposal_id'
,
$request
->
proposal_id
)
->
first
();
$item
[
'url'
]
=
ProposalUrl
::
where
(
'proposal_id'
,
$request
->
proposal_id
)
->
all
();
$data
=
''
;
$no
=
1
;
...
...
@@ -105,6 +107,10 @@ class ProposalController extends Controller
<td>Proposal</td>
<td>"
.
$dokumen
.
"</td>
</tr>
<tr>
<td>Video Produk</td>
<td>"
.
$item
[
'url'
]
->
url
.
"</td>
</tr>
"
;
...
...
@@ -136,5 +142,4 @@ class ProposalController extends Controller
return
redirect
()
->
route
(
'dosen.proposal.index'
);
}
}
app/Http/Controllers/Mahasiswa/MonevController.php
View file @
93b52c70
...
...
@@ -120,7 +120,7 @@ class MonevController extends Controller
$file_nama
=
$proposal
->
rProposal
->
rPeriode
->
nama
.
'_'
.
$proposal
->
rProposal
->
proposal_id
.
'.'
.
$pro
[
'file'
]
->
getClientOriginalExtension
();
Storage
::
disk
(
'
static
'
)
->
put
(
'simpmw/monev/'
.
$pro
[
'monev'
]
.
'/'
.
$pro
[
'type'
]
.
'/'
.
$file_nama
,
file_get_contents
(
$pro
[
'file'
]
->
getRealPath
()));
Storage
::
disk
(
'
local
'
)
->
put
(
'simpmw/monev/'
.
$pro
[
'monev'
]
.
'/'
.
$pro
[
'type'
]
.
'/'
.
$file_nama
,
file_get_contents
(
$pro
[
'file'
]
->
getRealPath
()));
if
(
$pro
[
'type'
]
==
'logbook'
){
$proposal
->
logbook_file
=
$file_nama
;
...
...
app/Http/Controllers/Mahasiswa/ProposalController.php
View file @
93b52c70
...
...
@@ -10,6 +10,7 @@ use Illuminate\Support\Facades\Storage;
use
Illuminate\Support\Str
;
use
App\Models\Proposal
;
use
App\Models\ProposalUrl
;
use
App\Models\Kelompok
;
use
App\Models\Periode
;
use
App\Models\Jenis
;
...
...
@@ -35,16 +36,16 @@ class ProposalController extends Controller
$periode
=
Periode
::
query
()
->
get
();
$year
=
!
is_null
(
$request
->
year
)
?
$request
->
year
:
now
()
->
year
;
$proposal
=
Proposal
::
with
([
'rKelompok'
,
'rJenis'
])
$proposal
=
Proposal
::
with
([
'rKelompok'
,
'rJenis'
,
'rProposalUrl'
])
->
whereHas
(
'rKelompok'
,
function
(
$query
)
use
(
$nim
){
$query
->
whereHas
(
'rAnggota'
,
function
(
$query
)
use
(
$nim
){
$query
->
where
(
'nim'
,
$nim
);
});
})
->
whereYear
(
'created_at'
,
$year
)
->
whereYear
(
'
proposal.
created_at'
,
$year
)
->
orderBy
(
'kelompok_id'
)
->
get
();
// dd($proposal->pluck('rProposalUrl.url')->toArray());
$data
=
[
'proposal'
=>
$proposal
,
'title'
=>
$title
,
...
...
@@ -121,11 +122,15 @@ class ProposalController extends Controller
$this
->
validate
(
$request
,
[
'file'
=>
'required|mimes:pdf|max:5000'
'file'
=>
'required|mimes:pdf|max:5000'
,
'jenis'
=>
'required|not_in:Pilih Jenis'
,
],
[
'file.required'
=>
'Tidak ada file yang di upload'
,
'file.mimes'
=>
'File harus pdf'
,
'file.max'
=>
'File tidak boleh lebih dari 5 mb'
,
'file.required'
=>
'Tidak ada file yang diupload.'
,
'file.file'
=>
'File harus berupa file.'
,
'file.mimes'
=>
'File harus berupa file PDF.'
,
'file.max'
=>
'Ukuran file maksimal adalah 5 MB.'
,
'jenis.required'
=>
'Harap pilih jenis PMW.'
,
'jenis.not_in'
=>
'Harap pilih jenis PMW yang valid.'
,
]);
$periode
=
Periode
::
where
(
'status'
,
1
)
->
first
();
...
...
@@ -133,7 +138,7 @@ class ProposalController extends Controller
$file_nama
=
$periode
->
nama
.
'_'
.
$uuid
.
'.'
.
$proposal
[
'file'
]
->
getClientOriginalExtension
();
Storage
::
disk
(
'
static
'
)
->
put
(
'simpmw/proposal/'
.
$periode
->
nama
.
'/'
.
$file_nama
,
file_get_contents
(
$proposal
[
'file'
]
->
getRealPath
()));
Storage
::
disk
(
'
local
'
)
->
put
(
'simpmw/proposal/'
.
$periode
->
nama
.
'/'
.
$file_nama
,
file_get_contents
(
$proposal
[
'file'
]
->
getRealPath
()));
$kel
=
Proposal
::
create
([
'proposal_id'
=>
$uuid
,
...
...
@@ -146,6 +151,17 @@ class ProposalController extends Controller
'date_upload'
=>
now
(),
'created_user'
=>
Auth
::
user
()
->
id
]);
if
(
$kel
)
{
ProposalUrl
::
create
([
'id'
=>
$uuid
,
'url_name'
=>
$proposal
[
'url_name'
],
'url'
=>
$proposal
[
'url'
],
'deskripsi'
=>
$proposal
[
'deskripsi'
],
'proposal_id'
=>
$kel
->
proposal_id
,
'created_at'
=>
null
,
'updated_at'
=>
null
]);
}
return
redirect
()
->
route
(
'mahasiswa.proposal.index'
)
->
with
(
'success'
,
'Proposal Berhasil ditambahkan'
);
}
...
...
app/Models/Proposal.php
View file @
93b52c70
...
...
@@ -73,6 +73,11 @@ class Proposal extends Model
return
$this
->
hasOne
(
Periode
::
class
,
'periode_id'
,
'periode_id'
);
}
public
function
rProposalUrl
()
{
return
$this
->
hasOne
(
ProposalUrl
::
class
,
'proposal_id'
,
'proposal_id'
);
}
public
function
rLuaran
()
{
return
$this
->
hasMany
(
ProposalLuaran
::
class
,
'proposal_id'
,
'proposal_id'
);
...
...
app/Models/ProposalUrl.php
View file @
93b52c70
...
...
@@ -19,10 +19,15 @@ class ProposalUrl extends Model
protected
$fillable
=
[
'id'
,
'url'
,
'
nama
'
,
'
url_name
'
,
'deskripsi'
,
'proposal_id'
,
'created_at'
,
'updated_at'
,
'updated_at'
];
public
function
rProposal
()
{
return
$this
->
belongsTo
(
Proposal
::
class
,
'proposal_id'
,
'proposal_id'
);
}
}
resources/views/backend/mahasiswa/proposal/create.blade.php
View file @
93b52c70
...
...
@@ -38,15 +38,15 @@
<h4 class="
card
-
title
">{!!
$title
!!}</h4>
<p class="
card
-
title
-
desc
"></p>
<div class="
row
mb
-
3
">
<label for="
kode
" class="
col
-
sm
-
2
col
-
form
-
label
">Judul</label>
<label for="
kode
" class="
col
-
sm
-
2
col
-
form
-
label
">Judul<
span style="
color
:
red
;
"> *</span><
/label>
<div class="
col
-
sm
-
10
">
<input class="
form
-
control
" type="
text
" id="
judul
" name="
judul
" value="
{{
$proposal
?
$proposal
->
judul
:
''
}}
"
required>
<input class="
form
-
control
" type="
text
" id="
judul
" name="
judul
" value="
{{
old
(
'judul'
,
$proposal
?
$proposal
->
judul
:
''
)
}}
" placeholder="
Judul
Produk
"
required>
<input class="
form
-
control
" type="
hidden
" id="
kode_kelompok
" name="
kode_kelompok
" value="
{{
$proposal
?
$proposal
->
kelompok_id
:
$kelompok
->
kelompok_id
}}
" >
<input class="
form
-
control
" type="
hidden
" id="
periode_id
" name="
periode_id
" value="
{{
$proposal
?
$proposal
->
periode_id
:
$periode
->
periode_id
}}
" >
</div>
</div>
<div class="
row
mb
-
3
">
<label class="
col
-
sm
-
2
col
-
form
-
label
">Jenis PMW</label>
<label class="
col
-
sm
-
2
col
-
form
-
label
">Jenis PMW<
span style="
color
:
red
;
"> *</span><
/label>
<div class="
col
-
sm
-
10
">
<select class="
form
-
select
select2
" name="
jenis
">
<option selected>Pilih Jenis</option>
...
...
@@ -54,14 +54,33 @@
<option value="
{{
$item
}}
" {{
$proposal
?
$proposal->jenis_id
==
$item
? 'selected' : '' : '' }}>{{
$pkm
}}</option>
@endforeach
</select>
@if (
$errors->has
('jenis')) <span class="
text
-
danger
"><i>{{
$errors->first
('jenis') }}</i></span> @endif
</div>
</div>
<div class="
row
mb
-
3
" class="
dropzone
">
<label for="
kode
" class="
col
-
sm
-
2
col
-
form
-
label
">Upload Proposal</label>
<div class="
col
-
sm
-
10
">
@if (
$errors->has
('file')) <span class="
text
-
danger
">{{
$errors->first
('file') }}</span> @endif
<label for="
kode
" class="
col
-
sm
-
2
col
-
form
-
label
">Upload Proposal<span style="
color
:
red
;
"> *</span></label>
<div class="
col
-
sm
-
8
col
-
lg
-
8
">
<input type="
file
" name="
file
" class="
form
-
control
" id="
input
-
file
" accept="
application
/
pdf
">
<iframe id="
view
-
pdf
" width="
80
%
" height="
80
%
" frameborder="
0
" src="
{{
$proposal
?
'https://statik.unesa.ac.id/simpmw/proposal/'
.
$proposal
->
rPeriode
->
nama
.
'/'
.
$proposal
->
upload_dokumen
:
''
}}
"></iframe>
@if (
$errors->has
('file')) <span class="
text
-
danger
"><i>{{
$errors->first
('file') }}</i></span> @endif
{{-- <iframe id="
view
-
pdf
" width="
80
%
" height="
80
%
" frameborder="
0
" src="
{{
$proposal
?
'https://statik.unesa.ac.id/simpkm/proposal/'
.
$proposal
->
rPeriode
->
nama
.
'/'
.
$proposal
->
upload_dokumen
:
''
}}
"></iframe> --}}
</div>
<div class="
col
-
sm
-
2
col
-
lg
-
2
">
<button type="
button
" class="
form
-
control
btn
btn
-
warning
" id="
btnPreview
">Preview</button>
</div>
</div>
<div class="
row
mb
-
3
">
<label for="
kode
" class="
col
-
sm
-
2
col
-
form
-
label
">URL Video Produk<span style="
color
:
red
;
"> *</span></label>
<div class="
col
-
sm
-
3
col
-
lg
-
3
">
<input class="
form
-
control
" type="
text
" id="
url_name
" name="
url_name
" value="
{{
old
(
'url_name'
)
}}
" placeholder="
Nama
Video
Produk
" required>
</div>
<div class="
col
-
sm
-
7
col
-
lg
-
7
">
<input class="
form
-
control
" type="
text
" id="
url
" name="
url
" value="
{{
old
(
'url'
)
}}
" placeholder="
URL
Video
Produk
" required>
</div>
</div>
<div class="
row
mb
-
3
">
<div class="
col
-
sm
-
2
col
-
lg
-
2
"></div>
<div class="
col
-
sm
-
10
col
-
lg
-
10
">
<textarea class="
form
-
control
" type="
text
" id="
deskripsi
" name="
deskripsi
" placeholder="
Deskripsi
...
" required>{{ old('deskripsi') }}</textarea>
</div>
</div>
<div class="
mb
-
0
">
...
...
@@ -78,11 +97,28 @@
</div> <!-- end col -->
</div> <!-- end row -->
<!-- Modal -->
<div class="
modal
fade
" id="
pdfModal
" tabindex="
-
1
" role="
dialog
" aria-labelledby="
pdfModalLabel
" aria-hidden="
true
">
<div class="
modal
-
dialog
modal
-
lg
modal
-
dialog
-
centered
" role="
document
">
<div class="
modal
-
content
" style="
height
:
80
vh
;
">
<div class="
modal
-
header
">
<h5 class="
modal
-
title
" id="
pdfModalLabel
">Preview PDF</h5>
<button type="
button
" class="
btn
-
close
" data-bs-dismiss="
modal
" aria-label="
Close
">{{-- <span aria-hidden="
true
">×</span> --}}</button>
</div>
<div class="
modal
-
body
">
{{-- <iframe id="
pdfViewer
" width="
100
%
" height="
100
%
" frameborder="
0
"></iframe> --}}
{{-- <iframe id="
view
-
pdf
" width="
100
%
" height="
450
" frameborder="
0
" src="
{{
$proposal
?
'https://statik.unesa.ac.id/simpkm/proposal/'
.
$proposal
->
rPeriode
->
nama
.
'/'
.
$proposal
->
upload_dokumen
:
''
}}
"></iframe> --}}
<iframe id="
view
-
pdf
" width="
100
%
" height="
100
%
"></iframe>
</div>
</div>
</div>
</div>
@endsection
@section('js')
<script>
{{--
<script>
$(function(){
$('#input-file').change(function(){
var input = this;
...
...
@@ -91,6 +127,92 @@
$('#view-pdf').attr('height','500px');
})
})
</script>
</script> --}}
{{-- <script>
$(function(){
$('#input-file').change(function(){
var input = this;
var url = window.URL.createObjectURL(this.files[0]);
$('#pdfViewer').attr('src', url);
});
// Reset iframe saat modal ditutup
$('#pdfModal').on('hidden.bs.modal', function (e) {
$('#pdfViewer').attr('src', '');
});
});
</script> --}}
{{-- <script>
$(function(){
$('#btnPreview').click(function() {
// Ambil URL dari file yang dipilih
var url = window.URL.createObjectURL($('#input-file')[0].files[0]);
// Set iframe dengan URL file
$('#view-pdf').attr('src', url);
// Munculkan modal
$('#pdfModal').modal('show');
});
// Reset iframe saat modal ditutup
$('#pdfModal').on('hidden.bs.modal', function (e) {
$('#view-pdf').attr('src', '');
});
});
</script> --}}
<script>
$(document).ready(function () {
$('#input-file').on('change', function (e) {
var fileInput = e.target.files[0];
// Periksa apakah ada file yang dipilih
if (!fileInput) {
alert('Silakan pilih file PDF terlebih dahulu.');
return;
}
// Periksa tipe file (harus PDF)
if (fileInput.type !== 'application/pdf') {
alert('File harus berupa PDF.');
// Reset input file
$('#input-file').val('');
return;
}
// Periksa ukuran file (maksimal 5MB)
if (fileInput.size > 5 * 1024 * 1024) {
alert('Ukuran file maksimal adalah 5MB.');
// Reset input file
$('#input-file').val('');
return;
}
});
// Fungsi untuk tombol "
Preview
"
$('#btnPreview').click(function() {
var fileInput = $('#input-file')[0].files[0];
// Periksa apakah ada file yang dipilih
if (!fileInput) {
alert('Silakan pilih file PDF terlebih dahulu.');
return;
}
// Tampilkan pratinjau PDF di dalam modal jika file memenuhi syarat
var url = URL.createObjectURL(fileInput);
$('#view-pdf').attr('src', url);
$('#pdfModal').modal('show');
});
// Reset iframe saat modal ditutup
$('#pdfModal').on('hidden.bs.modal', function (e) {
$('#view-pdf').attr('src', '');
});
});
</script>
@endsection
resources/views/backend/mahasiswa/proposal/index.blade.php
View file @
93b52c70
@
extends
(
'layouts.master'
)
@
section
(
'css'
)
<
link
rel
=
"stylesheet"
href
=
"https://cdnjs.cloudflare.com/ajax/libs/magnific-popup.js/1.1.0/magnific-popup.min.css"
>
@
endsection
@
section
(
'title'
)
Dashboard
...
...
@@ -22,12 +25,11 @@
</ol>
</div>
<div class="
col
-
md
-
4
">
<div class="
float
-
end
d
-
none
d
-
md
-
block
">
<div class="
text
-
end
d
-
flex
justify
-
content
-
end
">
<a href="
{{
URL
::
to
(
'mahasiswa/proposal/create'
)
}}
" type="
button
" class="
btn
btn
-
primary
waves
-
effect
waves
-
light
"> <i class="
fas
fa
-
plus
-
circle
"></i> Tambah Data</a>
</div>
</div>
</div>
</div>
<!-- end page title -->
...
...
@@ -54,6 +56,7 @@
</div>
</form>
<br>
<div class="
table
-
responsive
">
<table id="
datatable
" class="
table
table
-
bordered
dt
-
responsive
nowrap
" style="
border
-
collapse
:
collapse
;
border
-
spacing
:
0
;
width
:
100
%
;
">
<thead>
<tr>
...
...
@@ -79,18 +82,18 @@
<td>{{
$item->judul
}}</td>
<td>
@if(is_null(
$item->upload_dokumen
))
<span class="
badge
bg
-
danger
">Belum Upload Proposal</span
>
<span class="
badge
bg
-
danger
">Belum Upload Proposal</span><br
>
<strong> Keterangan : </strong> <br>
Upload proposal pada : -<br>
Disetujui proposal pada : -<br>
@else
@if(
$item->status
== '0')
<span class="
badge
bg
-
warning
">Menunggu Persetujuan Dosen</span
>
<span class="
badge
bg
-
warning
">Menunggu Persetujuan Dosen</span><br
>
<strong> Keterangan : </strong> <br>
Upload proposal pada : <h6 class="
text
-
primary
"> {{
$item->date_upload
}} </h6>
Disetujui proposal pada : <h6 class="
text
-
primary
"> {{
$item->date_approval
}} </h6>
@elseif(
$item->status
== '2')
<span class="
badge
bg
-
danger
">Ditolak Dosen</span
>
<span class="
badge
bg
-
danger
">Ditolak Dosen</span><br
>
<strong> Keterangan : </strong> <br>
Upload proposal pada : <h6 class="
text
-
primary
"> {{
$item->date_upload
}} </h6>
Komentar : <h6 class="
text
-
primary
"> {{
$item->alasan_revisi
}} </h6>
...
...
@@ -113,7 +116,7 @@
<div id="
{{
'lihat'
.
$item
->
proposal_id
}}
" class="
modal
fade
" tabindex="
-
1
" role="
dialog
"
aria-labelledby="
lihatLabel
" aria-hidden="
true
">
<div class="
modal
-
dialog
modal
-
xl
">
<div class="
modal
-
dialog
modal
-
lg
modal
-
dialog
-
centered
">
<div class="
modal
-
content
">
<div class="
modal
-
header
">
<h5 class="
modal
-
title
" id="
lihatLabel
">Detail Proposal </h5>
...
...
@@ -146,7 +149,24 @@
<td>
@if(
$item->upload_dokumen
)
<a href="
https
://
statik
.
unesa
.
ac
.
id
/
simpmw
/
proposal
/
{{
$item
->
rPeriode
->
nama
}}
/
{{
$item
->
upload_dokumen
}}
" target="
_blank
" class="
btn
btn
-
success
btn
-
sm
"> <i class="
far
fa
-
eye
"></i> Lihat Proposal</a>
<iframe id="
view
-
pdf
" width="
100
%
" height="
400
px
" src="
https
://
statik
.
unesa
.
ac
.
id
/
simpmw
/
proposal
/
{{
$item
->
rPeriode
->
nama
}}
/
{{
$item
->
upload_dokumen
}}
" frameborder="
0
"></iframe>
{{-- <iframe id="
view
-
pdf
" width="
100
%
" height="
400
px
" src="
https
://
statik
.
unesa
.
ac
.
id
/
simpmw
/
proposal
/
{{
$item
->
rPeriode
->
nama
}}
/
{{
$item
->
upload_dokumen
}}
" frameborder="
0
"></iframe> --}}
@else
<div class="
alert
alert
-
danger
alert
-
dismissible
fade
show
mb
-
0
" role="
alert
">
<strong>Informasi!</strong> File tidak ditemukan.
</div>
@endif
</td>
</tr>
<tr>
<th>Video Produk</th>
<td>
@if(
$item->upload_dokumen
)
{{-- @php
@dd(
$item->rProposalUrl
->url);
@endphp --}}
<button id="
preview
-
video
" class="
btn
btn
-
success
btn
-
sm
" data-video="
{{
$item
->
rProposalUrl
->
url
}}
">
<i class="
far
fa
-
eye
"></i> Lihat Video
</button>
@else
<div class="
alert
alert
-
danger
alert
-
dismissible
fade
show
mb
-
0
" role="
alert
">
<strong>Informasi!</strong> File tidak ditemukan.
...
...
@@ -161,14 +181,12 @@
</div>
</div>
</div>
</div>
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
</div>
</div>
</div> <!-- end col -->
...
...
@@ -178,7 +196,6 @@
@section('js')
<script>
function hapus(id, rowId){
Swal.fire({
title: 'Apakah anda yakin untuk menghapus usulan ini?',
...
...
@@ -218,4 +235,95 @@
})
}
</script>
<script src="
https
://
code
.
jquery
.
com
/
jquery
-
3.6
.
0.
min
.
js
"></script>
<script src="
https
://
cdnjs
.
cloudflare
.
com
/
ajax
/
libs
/
magnific
-
popup
.
js
/
1.1
.
0
/
jquery
.
magnific
-
popup
.
min
.
js
"></script>
<!-- Kode JavaScript untuk Magnific Popup -->
<script>
$(document).ready(function() {
// Event handler untuk tombol "
Lihat
Video
" dengan ID preview-video
$('#preview-video').on('click', function() {
var videoUrl = $(this).data('video');
if (videoUrl) {
// Buka video dalam Magnific Popup
$.magnificPopup.open({
items: {
src: videoUrl
},
type: 'iframe',
iframe: {
markup: '<div class="
mfp
-
iframe
-
scaler
">'+
'<div class="
mfp
-
close
"></div>'+
'<iframe class="
mfp
-
iframe
" frameborder="
0
" allowfullscreen allow="
autoplay
"></iframe>'+
'</div>'
},
callbacks: {
open: function() {
// Sembunyikan modal lama saat Magnific Popup dibuka
$('#{{ 'lihat'.
$item->proposal_id
}}').modal('hide');
// Mulai autoplay video setelah Magnific Popup dibuka
var iframe = this.content.find('iframe');
if (iframe.length > 0) {
var videoSrc = iframe.attr('src');
iframe.attr('src', videoSrc + '&autoplay=1'); // Tambahkan autoplay=1 ke URL video
}
},
close: function() {
// Tampilkan kembali modal lama setelah Magnific Popup ditutup
$('#{{ 'lihat'.
$item->proposal_id
}}').modal('show');
// Hentikan autoplay video saat Magnific Popup ditutup
var iframe = this.content.find('iframe');
if (iframe.length > 0) {
var videoSrc = iframe.attr('src');
iframe.attr('src', videoSrc.replace('&autoplay=1', '')); // Hapus autoplay=1 dari URL video
}
}
}
});
} else {
// Tampilkan pesan kesalahan jika URL video tidak valid
console.error('URL video tidak valid:', videoUrl);
}
});
});
</script>
{{-- <script>
document.addEventListener("
DOMContentLoaded
", function() {
var openModalBtn = document.getElementById("
openModalBtn
");
var closeModalBtn = document.getElementById("
closeModalBtn
");
var modal = document.getElementById("
myModal
");
openModalBtn.addEventListener("
click
", function() {
modal.style.display = "
block
";
// Mengambil URL dari objek
$item
var proposalUrl = "
{{
$item
->
rProposalUrl
->
url
}}
";
// Load konten eksternal ke dalam div modalContent
var xhr = new XMLHttpRequest();
xhr.open("
GET
", proposalUrl, true);
xhr.onreadystatechange = function() {
if (xhr.readyState == 4 && xhr.status == 200) {
document.getElementById("
externalContent
").innerHTML = xhr.responseText;
}
};
xhr.send();
});
closeModalBtn.addEventListener("
click
", function() {
modal.style.display = "
none
";
});
window.addEventListener("
click
", function(event) {
if (event.target == modal) {
modal.style.display = "
none
";
}
});
});
</script> --}}
@endsection
resources/views/layouts/headpg.blade.php
View file @
93b52c70
...
...
@@ -49,5 +49,6 @@
<link
href=
"{{ asset('theme/libs/dropzone/min/dropzone.min.css') }}"
rel=
"stylesheet"
type=
"text/css"
>
<link
href=
"{{ asset('theme/libs/select2/css/select2.min.css') }}"
rel=
"stylesheet"
type=
"text/css"
>
@yield('css')
</head>
resources/views/layouts/master.blade.php
View file @
93b52c70
@
include
(
'layouts.headpg'
)
@
yield
(
'css'
)
<
body
data
-
sidebar
=
"dark"
>
...
...
@@ -95,6 +96,7 @@
<!-- END layout-wrapper -->
@include('layouts.inijs')
@yield('js')
<script>
document.getElementById('vertical-menu-btn').addEventListener('click', function() {
var icon = this.querySelector('i');
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment