2020-06-22 13:25:39 +00:00
|
|
|
@extends("admin.layout.base")
|
|
|
|
@extends("admin.layout.header")
|
|
|
|
|
|
|
|
@section("title")
|
2020-08-18 17:09:40 +00:00
|
|
|
Aktiviteter - Vis
|
2020-06-22 13:25:39 +00:00
|
|
|
@endsection
|
|
|
|
|
|
|
|
@section("path")
|
2020-08-18 17:09:40 +00:00
|
|
|
<a href="" class="text-white">Vis Aktiviteter</a> /
|
2020-06-22 13:25:39 +00:00
|
|
|
@endsection
|
|
|
|
|
|
|
|
@section("content")
|
2020-08-24 07:00:21 +00:00
|
|
|
<?php
|
|
|
|
date_default_timezone_set('Europe/Copenhagen');
|
|
|
|
?>
|
2020-10-21 07:12:53 +00:00
|
|
|
<style>
|
|
|
|
.letterSpaceTable{
|
|
|
|
letter-spacing: 1.2px;
|
|
|
|
}
|
2021-04-27 13:15:23 +00:00
|
|
|
|
|
|
|
#table_id2_wrapper {
|
|
|
|
margin-top: 3rem;
|
|
|
|
}
|
2020-10-21 07:12:53 +00:00
|
|
|
</style>
|
2020-12-01 11:05:18 +00:00
|
|
|
|
2020-07-01 07:27:18 +00:00
|
|
|
<div class="row align-items-center">
|
2020-08-31 08:57:26 +00:00
|
|
|
@if(auth()->user()->can('event.show'))
|
|
|
|
<a class="btn btn-inline btn-sde-blue mb-0" href="{{ route('events.create') }}"><img src="{{ asset('/images/icons/plus.svg') }}" alt="Create">Opret Aktivitet</a>
|
2021-04-22 13:31:08 +00:00
|
|
|
<a class="btn btn-inline btn-sde-blue mb-0 ml-1" href="{{ route('multiple-events.create') }}"><img src="{{ asset('/images/icons/plus.svg') }}" alt="Create">Opret ugentligt aktivitet</a>
|
|
|
|
|
2020-08-31 08:57:26 +00:00
|
|
|
@endif
|
2020-07-01 07:27:18 +00:00
|
|
|
</div>
|
2020-11-24 12:14:25 +00:00
|
|
|
<table class="tbl mt-2 letterSpaceTable fixOverflow" id="table_id">
|
2020-09-18 08:04:33 +00:00
|
|
|
<thead>
|
2021-04-09 23:43:05 +00:00
|
|
|
<th>Aktivitets Navn</th>
|
|
|
|
<th>Aktivitets Ansvarlig</th>
|
|
|
|
<th>Aktivitets Dato</th>
|
2020-11-26 09:19:12 +00:00
|
|
|
<th class="w-1em"><img class="w-100" src="{{ asset('/images/icons/eye.svg') }}" alt="Show"></th>
|
2021-04-09 23:43:05 +00:00
|
|
|
<th class="w-1em"><img class="w-100" src="{{ asset('/images/icons/preview.svg') }}" alt="preview"></th>
|
2020-08-31 08:57:26 +00:00
|
|
|
@if(auth()->user()->can('event.edit'))
|
2020-11-26 09:19:12 +00:00
|
|
|
<th class="w-1em"><img class="w-100" src="{{ asset('/images/icons/pencil.svg') }}" alt="Update"></th>
|
2020-08-31 08:57:26 +00:00
|
|
|
@endif
|
|
|
|
@if(auth()->user()->can('event.delete'))
|
2020-11-26 09:19:12 +00:00
|
|
|
<th class="w-1em"><img class="w-100" src="{{ asset('/images/icons/trashcan.svg') }}" alt="Delete"></th>
|
2020-08-31 08:57:26 +00:00
|
|
|
@endif
|
2020-09-18 08:04:33 +00:00
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
@foreach($events as $event)
|
|
|
|
@if (date('Y-m-d H:i', strtotime('-1 day')) < date('Y-m-d H:i', strtotime($event->date)))
|
2020-12-01 11:05:18 +00:00
|
|
|
<tr id="row_{{ $event->id }}">
|
2020-09-18 08:04:33 +00:00
|
|
|
<td>{{ $event->name }}</td>
|
|
|
|
<td>{{ $event->accountable }}</td>
|
|
|
|
<td>{{ \Illuminate\Support\Facades\Date::createFromTimeStamp(strtotime($event->date))->format('d/m/Y \k\l\. H:i') }}</td>
|
|
|
|
<td><a href="{{ route("events.signups", [ "event" => $event ]) }}"><img class="w-100" src="{{ asset('/images/icons/eye-dark.svg') }}" alt="Show"></a></td>
|
2021-04-27 10:27:46 +00:00
|
|
|
<td><a id="preview" onclick="modalEventContent({{$event->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
|
|
|
@if(auth()->user()->can('event.edit'))
|
|
|
|
<td><a href="{{ route("events.edit", [ "event" => $event ]) }}"><img class="w-100" src="{{ asset('/images/icons/pencil-dark.svg') }}" alt="Update"></a></td>
|
|
|
|
@endif
|
|
|
|
@if(auth()->user()->can('event.delete'))
|
2020-12-01 11:05:18 +00:00
|
|
|
<td>
|
|
|
|
@csrf
|
|
|
|
<a class="w-100 nostyle" onclick="delete_event({{ $event->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>
|
|
|
|
@endif
|
|
|
|
@endforeach
|
|
|
|
</tbody>
|
2020-06-22 13:25:39 +00:00
|
|
|
</table>
|
2021-04-09 23:43:05 +00:00
|
|
|
|
2021-04-27 13:15:23 +00:00
|
|
|
<table class="tbl mt-2 letterSpaceTable fixOverflow" id="table_id2">
|
|
|
|
<thead>
|
|
|
|
<th>Uge</th>
|
|
|
|
<th class="w-1em"><img class="w-100" src="{{ asset('/images/icons/preview.svg') }}" alt="preview"></th>
|
|
|
|
@if(auth()->user()->can('event.edit'))
|
|
|
|
<th class="w-1em"><img class="w-100" src="{{ asset('/images/icons/pencil.svg') }}" alt="Update"></th>
|
|
|
|
@endif
|
|
|
|
@if(auth()->user()->can('event.delete'))
|
|
|
|
<th class="w-1em"><img class="w-100" src="{{ asset('/images/icons/trashcan.svg') }}" alt="Delete"></th>
|
|
|
|
@endif
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
@foreach(\App\MultipleEventsParent::query()->orderBY('id' , 'desc')->get() as $event)
|
|
|
|
<tr id="row2_{{ $event->id }}">
|
|
|
|
<td>{{ $event->week}}</td>
|
|
|
|
<td><a id="preview" onclick="modalMultiEventContent({{$event->id}})" style="cursor: pointer"><img class="w-100" src="{{ asset('/images/icons/preview-dark.svg') }}" alt="preview"></a></td>
|
|
|
|
@if(auth()->user()->can('event.edit'))
|
|
|
|
<td><a href="#"><img class="w-100" src="{{ asset('/images/icons/pencil-dark.svg') }}" alt="Update"></a></td>
|
|
|
|
@endif
|
|
|
|
@if(auth()->user()->can('event.delete'))
|
|
|
|
<td>
|
|
|
|
@csrf
|
|
|
|
<a class="w-100 nostyle" onclick="delete_multievent({{ $event->id }})"><img class="w-100 cursor-pointer" src="{{ asset('/images/icons/trashcan-dark.svg') }}" alt="Delete"></a>
|
|
|
|
</td>
|
|
|
|
@endif
|
|
|
|
</tr>
|
|
|
|
@endforeach
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
|
2021-04-27 10:27:46 +00:00
|
|
|
<div id="eventModal" class="modal zindex-100">
|
2021-04-09 23:43:05 +00:00
|
|
|
<div id="modal-content" class="modal-content text-black d-block w-50">
|
|
|
|
<span class="close" onclick="closeModal()">×</span>
|
|
|
|
<center>
|
|
|
|
<h1 id="name"></h1>
|
|
|
|
<hr>
|
|
|
|
<strong><label for="date">Aktivitets dato</label></strong>
|
|
|
|
<p id="date"></p>
|
|
|
|
<strong><label for="accountable">Aktivitets ansvarlig</label></strong>
|
|
|
|
<p id="accountable"></p>
|
|
|
|
<hr>
|
2021-04-19 12:42:03 +00:00
|
|
|
<img id="eventimg">
|
2021-04-09 23:43:05 +00:00
|
|
|
<p id="description"></p>
|
|
|
|
</center>
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-04-27 13:15:23 +00:00
|
|
|
|
|
|
|
<div id="eventMultiModal" class="modal zindex-100">
|
|
|
|
<div id="modal-content" class="modal-content text-black d-block w-50">
|
|
|
|
<span class="close" onclick="closeModal()">×</span>
|
|
|
|
<center>
|
|
|
|
<h1 id="week"></h1>
|
|
|
|
<hr>
|
|
|
|
<img id="eventmultiimg">
|
|
|
|
<p id="events"></p>
|
|
|
|
</center>
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-09-18 08:04:33 +00:00
|
|
|
@endsection
|
|
|
|
@section('scripts')
|
2021-04-09 23:43:05 +00:00
|
|
|
<script>
|
2021-04-27 10:27:46 +00:00
|
|
|
var modalEvent = document.getElementById("eventModal");
|
2021-04-27 13:15:23 +00:00
|
|
|
var modalMultiEvent = document.getElementById("eventMultiModal");
|
2021-04-09 23:43:05 +00:00
|
|
|
|
2021-04-27 10:27:46 +00:00
|
|
|
function modalEventContent(id) {
|
2021-04-09 23:43:05 +00:00
|
|
|
$.ajax({
|
|
|
|
type: 'get',
|
|
|
|
url: '{{route('events.preview')}}',
|
|
|
|
data: {'preview':id},
|
|
|
|
success:function (data) {
|
2021-04-27 13:15:23 +00:00
|
|
|
modalEvent.style.display = "flex";
|
2021-04-09 23:43:05 +00:00
|
|
|
var l = JSON.parse(data);
|
|
|
|
$("#name").html(l.name);
|
|
|
|
$("#date").html(l.date);
|
|
|
|
$("#accountable").html(l.accountable);
|
|
|
|
$("#description").html(l.description);
|
2021-04-19 12:42:03 +00:00
|
|
|
|
2021-04-27 13:15:23 +00:00
|
|
|
console.log(l);
|
|
|
|
|
2021-04-19 12:42:03 +00:00
|
|
|
if (l.filename)
|
|
|
|
$("#eventimg").attr('src', l.filename);
|
2021-04-09 23:43:05 +00:00
|
|
|
},
|
|
|
|
error:function (data) {
|
|
|
|
console.log(data);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-04-27 13:15:23 +00:00
|
|
|
function modalMultiEventContent(id) {
|
|
|
|
$.ajax({
|
|
|
|
type: 'get',
|
|
|
|
url: '{{route('multiple-events.preview')}}',
|
|
|
|
data: {'preview':id},
|
|
|
|
dataType: 'JSON',
|
|
|
|
success:function (data) {
|
|
|
|
modalMultiEvent.style.display = "flex";
|
|
|
|
$("#week").html('Uge: '+data[0].week);
|
|
|
|
if (data[0].resource_id != null)
|
|
|
|
$("#eventmultiimg").attr('src', data[0].filename);
|
|
|
|
|
|
|
|
for (var i = 0; i < data[1].length; i++) {
|
|
|
|
$("#events").append("<div class='container text-center'><div class='row justify-content-center'><div class='col'><h1 class='mb-0'>"+data[1][i].name+"</h1>" +
|
|
|
|
"<h3 class='mt-0 mb-0'>"+data[1][i].date+" - "+data[1][i].event_end+"</h3>" +
|
|
|
|
"<h3 class='mt-0'>Tovholder: "+data[1][i].accountable+"</h3>" +
|
|
|
|
"<h3 class='mb-0'>Beskrivelse:</h3>" +
|
|
|
|
"<p class='mt-0'>"+data[1][i].description+"</p>" +
|
|
|
|
"</div>" +
|
|
|
|
"</div>" +
|
|
|
|
"</div><hr>");
|
|
|
|
}
|
|
|
|
},
|
|
|
|
error:function (data) {
|
|
|
|
console.log(data);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-04-09 23:43:05 +00:00
|
|
|
function closeModal() {
|
2021-04-27 10:27:46 +00:00
|
|
|
modalEvent.style.display = "none";
|
2021-04-27 13:15:23 +00:00
|
|
|
modalMultiEvent.style.display = "none";
|
2021-04-19 12:42:03 +00:00
|
|
|
|
|
|
|
$("#name").html('');
|
|
|
|
$("#date").html('');
|
|
|
|
$("#accountable").html('');
|
|
|
|
$("#description").html('');
|
|
|
|
$("#eventimg").attr('src', '');
|
2021-04-27 13:15:23 +00:00
|
|
|
$("#eventmultiimg").attr('src', '');
|
|
|
|
$("#week").html('');
|
|
|
|
$("#events").html('');
|
2021-04-09 23:43:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
window.onmousedown = function(event) {
|
2021-04-27 13:15:23 +00:00
|
|
|
if (event.target == modalEvent || event.target == modalMultiEvent) {
|
2021-04-27 10:27:46 +00:00
|
|
|
modalEvent.style.display = "none";
|
2021-04-27 13:15:23 +00:00
|
|
|
modalMultiEvent.style.display = "none";
|
2021-04-19 12:42:03 +00:00
|
|
|
|
|
|
|
$("#name").html('');
|
|
|
|
$("#date").html('');
|
|
|
|
$("#accountable").html('');
|
|
|
|
$("#description").html('');
|
|
|
|
$("#eventimg").attr('src', '');
|
2021-04-27 13:15:23 +00:00
|
|
|
$("#eventmultiimg").attr('src', '');
|
|
|
|
$("#week").html('');
|
|
|
|
$("#events").html('');
|
2021-04-09 23:43:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</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: [
|
2021-04-09 23:43:05 +00:00
|
|
|
{ orderable: false, targets: [-1, -2, -3, -4] }
|
2020-09-18 08:04:33 +00:00
|
|
|
]
|
2020-07-27 14:03:49 +00:00
|
|
|
});
|
2021-04-27 13:15:23 +00:00
|
|
|
|
|
|
|
$('#table_id2').DataTable({
|
|
|
|
columnDefs: [
|
|
|
|
{ orderable: false, targets: [-1, -2, -3, -4] }
|
|
|
|
]
|
|
|
|
});
|
2020-09-18 08:04:33 +00:00
|
|
|
});
|
2020-12-01 11:05:18 +00:00
|
|
|
|
|
|
|
function delete_event(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 Aktiviteten',
|
|
|
|
cancelButtonText: 'Annuller'
|
|
|
|
}).then((result) => {
|
|
|
|
if (result.isConfirmed) {
|
|
|
|
$.ajax({
|
|
|
|
type: "POST",
|
|
|
|
url: "events/"+id,
|
|
|
|
data:{'_token':token, _method: 'DELETE'},
|
|
|
|
success: function () {
|
|
|
|
$('#table_id').DataTable().row($('#row_'+id)[0]).remove().draw();
|
|
|
|
|
|
|
|
Swal.fire(
|
|
|
|
'Aktiviteten er slettet!',
|
|
|
|
'',
|
|
|
|
'success'
|
|
|
|
)
|
|
|
|
},
|
|
|
|
error:function (data) {
|
|
|
|
console.log(data);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
2021-04-27 13:15:23 +00:00
|
|
|
|
|
|
|
function delete_multievent(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 Ugentlig Aktivitet',
|
|
|
|
cancelButtonText: 'Annuller'
|
|
|
|
}).then((result) => {
|
|
|
|
if (result.isConfirmed) {
|
|
|
|
$.ajax({
|
|
|
|
type: "POST",
|
|
|
|
url: "multiple-events/"+id,
|
|
|
|
data:{'_token':token, _method: 'DELETE'},
|
|
|
|
success: function () {
|
|
|
|
$('#table_id2').DataTable().row($('#row2_'+id)[0]).remove().draw();
|
|
|
|
|
|
|
|
Swal.fire(
|
|
|
|
'Den ugentlige aktivitet er slettet!',
|
|
|
|
'',
|
|
|
|
'success'
|
|
|
|
)
|
|
|
|
},
|
|
|
|
error:function (data) {
|
|
|
|
console.log(data);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
2020-07-27 14:03:49 +00:00
|
|
|
</script>
|
2020-06-22 13:25:39 +00:00
|
|
|
@endsection
|