Ekapp/skolehjem/resources/views/admin/menuplans/index.blade.php

154 lines
6.0 KiB
PHP
Raw Normal View History

@extends("admin.layout.base")
@extends("admin.layout.header")
@section("title")
Menuplan - Vis
@endsection
@section("path")
2020-06-25 08:34:10 +00:00
<a href="{{ route('menu-plans.index') }}" class="text-white">Vis Menuplan</a> /
@endsection
@section("content")
<style>
.letterSpaceTable{
letter-spacing: 1.2px;
}
</style>
2020-08-11 07:27:07 +00:00
<script src="{{ asset("/js/jquery-3.2.1.min.js") }}"></script>
@if(auth()->user()->can('menuplan.create'))
2020-09-18 08:04:33 +00:00
<div class="row align-items-center">
<a class="btn btn-inline btn-sde-blue mb-0" href="{{ route('menu-plans.create') }}"><img src="{{ asset('/images/icons/plus.svg') }}" alt="Create">Opret Menuplan</a>
</div>
@endif
2020-08-04 08:11:18 +00:00
<table class="tbl letterSpaceTable" id="table_id">
2020-09-18 08:04:33 +00:00
<thead>
<th>Uge</th>
<th class="w-1em"><img class="w-100" src="{{ asset('/images/icons/preview.svg') }}" alt="preview"></th>
<th class="w-1em"><img class="w-100" src="{{ asset('/images/icons/print-hvid.svg') }}" alt="Print"></th>
@if(auth()->user()->can('menuplan.edit'))
<th class="w-1em"><img class="w-100" src="{{ asset('/images/icons/pencil.svg') }}" alt="Update"></th>
@endif
@if(auth()->user()->can('menuplan.delete'))
<th class="w-1em"><img class="w-100" src="{{ asset('/images/icons/trashcan.svg') }}" alt="Delete"></th>
@endif
2020-09-18 08:04:33 +00:00
</thead>
<tbody>
@foreach($menuPlans as $menuplan)
2020-12-01 11:05:18 +00:00
<tr id="row_{{ $menuplan->id }}">
2020-09-18 08:04:33 +00:00
<td>{{$menuplan->week}}</td>
<td><a id="preview" onclick="modalNewsContent({{$menuplan->id}})" style="cursor: pointer" ><img class="w-100" src="{{ asset('/images/icons/preview-dark.svg') }}" alt="preview"></a></td>
2020-09-18 08:04:33 +00:00
<td><a href="{{ route("pdf.genPDF", [ "menuPlan" => $menuplan ]) }}" target="_blank"><img class="w-100" src="{{ asset('/images/icons/print.svg') }}" alt="Print"></a></td>
@if(auth()->user()->can('menuplan.edit'))
<td><a href="{{ route("menu-plans.edit", [ "menu_plan" => $menuplan ]) }}"><img class="w-100" src="{{ asset('/images/icons/pencil-dark.svg') }}" alt="Update"></a></td>
@endif
@if(auth()->user()->can('menuplan.delete'))
2020-12-01 11:05:18 +00:00
<td>
@csrf
<a class="w-100 nostyle" onclick="delete_menu({{ $menuplan->id }})"><img class="w-100 cursor-pointer" src="{{ asset('/images/icons/trashcan-dark.svg') }}" alt="Delete"></a>
2020-09-18 08:04:33 +00:00
</td>
@endif
</tr>
@endforeach
</tbody>
</table>
<div id="newsModal" class="modal zindex-100">
<div id="modal-content" class="modal-content text-black d-block w-50">
<span class="close" onclick="closeModal()">&times;</span>
<center>
<h1 id="week"></h1>
<hr>
<strong><label for="monday">Mandag</label></strong>
<p id="monday"></p>
<strong><label for="tuesday">Tirsdag</label></strong>
<p id="tuesday"></p>
<strong><label for="wednesday">Onsdag</label></strong>
<p id="wednesday"></p>
<strong><label for="thursday">Torsdag</label></strong>
<p id="thursday"></p>
</center>
</div>
</div>
2020-09-18 08:04:33 +00:00
@endsection
@section('scripts')
<script>
var modalNews = document.getElementById("newsModal");
function modalNewsContent(id) {
$.ajax({
type: 'get',
url: '{{route('menuplans.preview')}}',
data: {'preview':id},
success:function (data) {
2021-04-19 06:12:50 +00:00
modalNews.style.display = "flex";
var l = JSON.parse(data);
$("#week").html("Menuplan for uge " + l.week);
$("#monday").html(l.monday);
$("#tuesday").html(l.tuesday);
$("#wednesday").html(l.wednesday);
$("#thursday").html(l.thursday);
},
error:function (data) {
console.log(data);
}
});
}
function closeModal() {
modalNews.style.display = "none";
}
window.onmousedown = function(event) {
if (event.target == modalNews) {
modalNews.style.display = "none";
}
}
</script>
2020-07-27 14:03:49 +00:00
<script>
2020-09-18 08:04:33 +00:00
$(document).ready( function () {
$('#table_id').DataTable({
columnDefs: [
{ orderable: false, targets: [-1, -2, -3, -4] }
2020-09-18 08:04:33 +00:00
]
2020-07-27 14:03:49 +00:00
});
2020-09-18 08:04:33 +00:00
});
2020-12-01 11:05:18 +00:00
function delete_menu(id) {
var token = $("input[name='_token']").val();
Swal.fire({
title: 'Er du sikker?',
text: "Dette kan ikke blive ændret tilbage!",
icon: 'warning',
showCancelButton: true,
confirmButtonColor: '#3085d6',
cancelButtonColor: '#d33',
confirmButtonText: 'Slet Menuplanen',
cancelButtonText: 'Annuller'
}).then((result) => {
if (result.isConfirmed) {
$.ajax({
type: "POST",
url: "menu-plans/"+id,
data:{'_token':token, _method: 'DELETE'},
success: function () {
$('#table_id').DataTable().row($('#row_'+id)[0]).remove().draw();
Swal.fire(
'Menuplanen er slettet!',
'',
'success'
)
},
error:function (data) {
console.log(data);
}
});
}
})
}
2020-07-27 14:03:49 +00:00
</script>
@endsection