2020-06-15 06:56:21 +00:00
|
|
|
@extends("admin.layout.base")
|
|
|
|
@extends("admin.layout.header")
|
|
|
|
|
|
|
|
@section("title")
|
2020-06-16 07:04:25 +00:00
|
|
|
Bruger - Vis
|
2020-06-15 06:56:21 +00:00
|
|
|
@endsection
|
|
|
|
|
2020-06-15 09:29:38 +00:00
|
|
|
@section("path")
|
2020-06-17 09:28:48 +00:00
|
|
|
<a href="{{ route('users.index') }}" class="text-white">Vis Brugere</a> /
|
2020-06-15 09:29:38 +00:00
|
|
|
@endsection
|
2020-06-15 06:56:21 +00:00
|
|
|
|
2020-06-15 09:29:38 +00:00
|
|
|
@section("content")
|
2020-08-24 12:09:03 +00:00
|
|
|
<style>
|
|
|
|
.showUsers {
|
|
|
|
position: relative;
|
|
|
|
display: inline-block;
|
|
|
|
overflow: visible;
|
|
|
|
}
|
|
|
|
.showUsers .showUserImages {
|
|
|
|
visibility: hidden;
|
|
|
|
width: 250px;
|
|
|
|
max-height: 500px;
|
|
|
|
max-width: 300px;
|
|
|
|
object-fit: cover;
|
|
|
|
background-color: transparent;
|
|
|
|
color: #fff;
|
|
|
|
text-align: center;
|
|
|
|
border-radius: 6px;
|
|
|
|
padding: 5px 0;
|
|
|
|
position: absolute;
|
|
|
|
z-index: 10;
|
|
|
|
top: -5px;
|
|
|
|
right: 105%;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
.showUsers:hover .showUserImages {
|
|
|
|
visibility: visible;
|
|
|
|
z-index: 100;
|
|
|
|
}
|
|
|
|
.noImages{
|
|
|
|
cursor: not-allowed;
|
|
|
|
}
|
|
|
|
|
2020-10-21 07:12:53 +00:00
|
|
|
.letterSpaceTable{
|
|
|
|
letter-spacing: 1.2px;
|
|
|
|
}
|
2020-08-24 12:09:03 +00:00
|
|
|
</style>
|
2021-04-26 11:02:17 +00:00
|
|
|
<style>
|
|
|
|
/* The switch - the box around the slider */
|
|
|
|
.switch {
|
|
|
|
position: relative;
|
|
|
|
display: inline-block;
|
|
|
|
width: 60px;
|
|
|
|
height: 28px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Hide default HTML checkbox */
|
|
|
|
.switch input {
|
|
|
|
opacity: 0;
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* The slider */
|
|
|
|
.slider {
|
|
|
|
position: absolute;
|
|
|
|
cursor: pointer;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
background-color: #ccc;
|
|
|
|
transition: .4s;
|
|
|
|
}
|
|
|
|
|
|
|
|
.slider:before {
|
|
|
|
position: absolute;
|
|
|
|
content: "";
|
|
|
|
height: 20px;
|
|
|
|
width: 20px;
|
|
|
|
left: 4px;
|
|
|
|
bottom: 4px;
|
|
|
|
background-color: white;
|
|
|
|
transition: .4s;
|
|
|
|
}
|
|
|
|
|
|
|
|
input:checked + .slider {
|
|
|
|
background-color: #00788A;
|
|
|
|
}
|
|
|
|
|
|
|
|
input:focus + .slider {
|
|
|
|
box-shadow: 0 0 1px #00788A;
|
|
|
|
}
|
|
|
|
|
|
|
|
input:checked + .slider:before {
|
|
|
|
transform: translateX(32px);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Rounded sliders */
|
|
|
|
.slider.round {
|
|
|
|
border-radius: 34px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.slider.round:before {
|
|
|
|
border-radius: 50%;
|
|
|
|
}
|
|
|
|
</style>
|
2020-07-29 11:58:19 +00:00
|
|
|
<div class="row align-items-center">
|
2020-08-31 08:57:26 +00:00
|
|
|
@if(auth()->user()->can('user.create'))
|
|
|
|
<a class="btn btn-inline btn-sde-blue mb-0" href="{{ route('users.create') }}"><img src="{{ asset('/images/icons/plus.svg') }}" alt="Create">Opret Bruger</a>
|
|
|
|
@endif
|
2020-07-01 07:27:18 +00:00
|
|
|
</div>
|
2021-04-26 11:02:17 +00:00
|
|
|
<div class="pb-4 mt-1">
|
|
|
|
<label>Åben for registrering:</label>
|
|
|
|
<label class="switch">
|
|
|
|
<input type="checkbox" onclick="AllowActionRegistering(this)" @if(\App\AllowAction::query()->where('action', '=', 'Registering')->first()->allow == true) checked @endif>
|
|
|
|
<span class="slider round"></span>
|
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
<table class="tbl mt-2 letterSpaceTable" id="table_id">
|
2020-09-18 08:04:33 +00:00
|
|
|
<thead>
|
2020-06-15 09:29:38 +00:00
|
|
|
<th>Fornavn</th>
|
|
|
|
<th>Efternavn</th>
|
2020-10-21 07:12:53 +00:00
|
|
|
<th>Mail</th>
|
|
|
|
<th>Telefon</th>
|
2020-06-30 11:22:02 +00:00
|
|
|
<th>Rolle(r)</th>
|
2020-11-26 09:19:12 +00:00
|
|
|
<th class="w-1em"><img class="w-100" src="{{ asset('/images/icons/eye.svg') }}" alt="ShowImage"></th>
|
2020-08-31 08:57:26 +00:00
|
|
|
@if(auth()->user()->can('user.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('user.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($users as $user)
|
2020-12-01 11:05:18 +00:00
|
|
|
<tr id="row_{{ $user->id }}">
|
2020-09-18 08:04:33 +00:00
|
|
|
<td>{{ $user->name_first }}</td>
|
|
|
|
<td>{{ $user->name_last }}</td>
|
|
|
|
<td>{{ $user->email }}</td>
|
|
|
|
<td>{{ $user->phone }}</td>
|
|
|
|
<td>
|
|
|
|
@for($i = 0; $i < count($user->roles); $i++)
|
|
|
|
@if(count($user->roles)-1 != $i)
|
|
|
|
{{$user->roles[$i]->name}},
|
|
|
|
@else
|
|
|
|
{{$user->roles[$i]->name}}
|
|
|
|
@endif
|
|
|
|
@endfor
|
2020-08-31 08:57:26 +00:00
|
|
|
</td>
|
2020-09-18 08:04:33 +00:00
|
|
|
@if($user->resource_id !== null)
|
2021-04-26 11:02:17 +00:00
|
|
|
<td style="overflow: visible"><a class="showUsers"><img src="{{ asset('/images/icons/eye-dark.svg') }}"><img src="{{ asset(\App\Resource::query()->where("id", "=", $user->resource_id)->first()->filename) }}" class="showUserImages"></a></td>
|
2020-09-18 08:04:33 +00:00
|
|
|
@else
|
2021-04-26 11:02:17 +00:00
|
|
|
<td style="overflow: visible"><a class="showUsers noImages"><img src="{{ asset('/images/icons/eye-dark.svg') }}"><img src="" class="showUserImages"></a></td>
|
2020-09-18 08:04:33 +00:00
|
|
|
@endif
|
|
|
|
@if(auth()->user()->can('user.edit'))
|
|
|
|
<td><a href="{{ route("users.edit", [ "user" => $user->id ]) }}"><img class="w-100" src="{{ asset('/images/icons/pencil-dark.svg') }}" alt="Update"></a></td>
|
|
|
|
@endif
|
|
|
|
@if(auth()->user()->can('user.delete'))
|
2020-12-01 11:05:18 +00:00
|
|
|
<td>
|
|
|
|
@csrf
|
|
|
|
<a class="w-100 nostyle" onclick="delete_user({{ $user->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>
|
2020-06-15 09:29:38 +00:00
|
|
|
</table>
|
2020-09-18 08:04:33 +00:00
|
|
|
@endsection
|
2020-07-29 07:49:54 +00:00
|
|
|
|
2020-09-18 08:04:33 +00:00
|
|
|
@section('scripts')
|
|
|
|
<script>
|
|
|
|
$(document).ready( function () {
|
|
|
|
$('#table_id').DataTable({
|
|
|
|
columnDefs: [
|
|
|
|
{ orderable: false, targets: [-1, -2, -3] }
|
|
|
|
]
|
|
|
|
});
|
|
|
|
});
|
2020-12-01 11:05:18 +00:00
|
|
|
|
|
|
|
function delete_user(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 Bruger',
|
|
|
|
cancelButtonText: 'Annuller'
|
|
|
|
}).then((result) => {
|
|
|
|
if (result.isConfirmed) {
|
|
|
|
$.ajax({
|
|
|
|
type: "POST",
|
|
|
|
url: "users/"+id,
|
|
|
|
data:{'_token':token, _method: 'DELETE'},
|
|
|
|
success: function () {
|
|
|
|
if (id == 1) {
|
|
|
|
Swal.fire(
|
|
|
|
'Administrator brugeren kan ikke slettes',
|
|
|
|
'',
|
|
|
|
'warning'
|
|
|
|
)
|
|
|
|
} else {
|
|
|
|
$('#table_id').DataTable().row($('#row_'+id)[0]).remove().draw();
|
|
|
|
|
|
|
|
Swal.fire(
|
|
|
|
'Brugeren er slettet!',
|
|
|
|
'',
|
|
|
|
'success'
|
|
|
|
)
|
|
|
|
}
|
|
|
|
},
|
|
|
|
error:function (data) {
|
|
|
|
console.log(data);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
2021-04-26 11:02:17 +00:00
|
|
|
|
|
|
|
function AllowActionRegistering(el) {
|
|
|
|
if (el.hasAttribute('checked')) {
|
|
|
|
axios.post("{{ route("allowaction.allowactionregistering") }}", null, { params: { id: {{ \App\AllowAction::query()->where('action', '=', 'Registering')->first()->id }}, allow: '0' }}
|
|
|
|
).then(function (response) {
|
|
|
|
el.removeAttribute('checked');
|
|
|
|
|
|
|
|
Swal.fire(
|
|
|
|
'Der er nu lukket for registrering af brugere!',
|
|
|
|
'',
|
|
|
|
'success'
|
|
|
|
)
|
|
|
|
}).catch(function (error) {
|
|
|
|
console.log(error);
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
axios.post("{{ route("allowaction.allowactionregistering") }}", null, { params: { id: {{ \App\AllowAction::query()->where('action', '=', 'Registering')->first()->id }}, allow: '1' }}
|
|
|
|
).then(function (response) {
|
|
|
|
el.setAttribute('checked', 'checked');
|
|
|
|
|
|
|
|
Swal.fire(
|
|
|
|
'Der er nu åbnet for registrering af brugere!',
|
|
|
|
'',
|
|
|
|
'success'
|
|
|
|
)
|
|
|
|
}).catch(function (error) {
|
|
|
|
console.log(error);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
2020-09-18 08:04:33 +00:00
|
|
|
</script>
|
2020-06-15 06:56:21 +00:00
|
|
|
@endsection
|