%PDF- %GIF98; %PNG;
Server : ApacheSystem : Linux host.digitalbabaji.in 4.18.0-513.11.1.el8_9.x86_64 #1 SMP Wed Jan 17 02:00:40 EST 2024 x86_64 User : addictionfreeind ( 1003) PHP Version : 7.2.34 Disable Function : exec,passthru,shell_exec,system Directory : /home/addictionfreeind/www/admin1/resources/views/event-calendar/ajax/ |
Upload File : |
@php
$editPermission = user()->permission('edit_events');
$deletePermission = user()->permission('delete_events');
$attendeesIds = $event->attendee->pluck('user_id')->toArray();
@endphp
<div id="task-detail-section">
<div class="row">
<div class="col-sm-12">
<div class="card bg-white border-0 b-shadow-4">
<div class="card-header bg-white border-bottom-grey justify-content-between p-20">
<div class="row">
<div class="col-md-10">
<h3 class="heading-h1 mb-3">{{ $event->event_name }}</h3>
</div>
<div class="col-md-2 text-right">
<div class="dropdown">
<button
class="btn btn-lg f-14 px-2 py-1 text-dark-grey text-capitalize rounded dropdown-toggle"
type="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<i class="fa fa-ellipsis-h"></i>
</button>
<div class="dropdown-menu dropdown-menu-right border-grey rounded b-shadow-4 p-0"
aria-labelledby="dropdownMenuLink" tabindex="0">
@if ($editPermission == 'all'
|| ($editPermission == 'added' && $event->added_by == user()->id)
|| ($editPermission == 'owned' && in_array(user()->id, $attendeesIds))
|| ($editPermission == 'both' && (in_array(user()->id, $attendeesIds) || $event->added_by == user()->id))
)
<a class="dropdown-item openRightModal"
href="{{ route('events.edit', $event->id) }}">@lang('app.edit')
</a>
@endif
@if (
$deletePermission == 'all'
|| ($deletePermission == 'added' && $event->added_by == user()->id)
|| ($deletePermission == 'owned' && in_array(user()->id, $attendeesIds))
|| ($deletePermission == 'both' && (in_array(user()->id, $attendeesIds) || $event->added_by == user()->id))
)
<a class="dropdown-item delete-event">@lang('app.delete')</a>
@endif
</div>
</div>
</div>
</div>
</div>
<div class="card-body">
<x-cards.data-row :label="__('modules.events.eventName')" :value="$event->event_name"
html="true" />
<div class="col-12 px-0 pb-3 d-flex">
<p class="mb-0 text-lightest f-14 w-30 d-inline-block text-capitalize">
@lang('modules.events.attendees') @lang('app.employee')</p>
<p class="mb-0 text-dark-grey f-14">
@foreach ($event->attendee as $item)
@if(in_array('employee', $item->user->roles->pluck('name')->toArray()))
<div class="taskEmployeeImg rounded-circle mr-1">
<img data-toggle="tooltip" data-original-title="{{ $item->user->name }}"
src="{{ $item->user->image_url }}">
</div>
@endif
@endforeach
</p>
</div>
<div class="col-12 px-0 pb-3 d-flex">
<p class="mb-0 text-lightest f-14 w-30 d-inline-block text-capitalize">
@lang('modules.events.attendees') @lang('app.client')</p>
<p class="mb-0 text-dark-grey f-14">
@foreach ($event->attendee as $item)
@if(in_array('client', $item->user->roles->pluck('name')->toArray()))
<div class="taskEmployeeImg rounded-circle mr-1">
<img data-toggle="tooltip" data-original-title="{{ $item->user->name }}"
src="{{ $item->user->image_url }}">
</div>
@endif
@endforeach
</p>
</div>
<x-cards.data-row :label="__('app.description')" :value="$event->description"
html="true" />
<x-cards.data-row :label="__('app.where')" :value="$event->where"
html="true" />
<x-cards.data-row :label="__('modules.events.startOn')"
:value="$event->start_date_time->translatedFormat(company()->date_format. ' - '.company()->time_format)"
html="true" />
<x-cards.data-row :label="__('modules.events.endOn')"
:value="$event->end_date_time->translatedFormat(company()->date_format. ' - '.company()->time_format)"
html="true" />
@php
$url = str_starts_with($event->event_link, 'http') ? $event->event_link : 'http://'.$event->event_link;
$link = "<a href=".$url." style='color:black; cursor: pointer;' target='_blank'>$event->event_link</a>";
@endphp
<x-cards.data-row :label="__('modules.events.eventLink')"
html="true" :value="$link"/>
<x-cards.data-row :label="__('app.file')"
html="true" :value="''"/>
<div div class="d-flex flex-wrap mt-3" id="event-file-list">
@forelse($event->files as $file)
<x-file-card :fileName="$file->filename" :dateAdded="$file->created_at->diffForHumans()">
@if ($file->icon == 'images')
<img src="{{ $file->file_url }}">
@else
<i class="fa {{ $file->icon }} text-lightest"></i>
@endif
<x-slot name="action">
<div class="dropdown ml-auto file-action">
<button class="btn btn-lg f-14 p-0 text-lightest text-capitalize rounded dropdown-toggle"
type="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<i class="fa fa-ellipsis-h"></i>
</button>
<div class="dropdown-menu dropdown-menu-right border-grey rounded b-shadow-4 p-0"
aria-labelledby="dropdownMenuLink" tabindex="0">
@if ($file->icon = 'images')
<a class="cursor-pointer d-block text-dark-grey f-13 pt-3 px-3 " target="_blank"
href="{{ $file->file_url }}">@lang('app.view')</a>
@endif
<a class="cursor-pointer d-block text-dark-grey f-13 py-3 px-3 "
href="{{ route('event-files.download', md5($file->id)) }}">@lang('app.download')</a>
<a class="cursor-pointer d-block text-dark-grey f-13 pb-3 px-3 delete-file"
data-row-id="{{ $file->id }}" href="javascript:;">@lang('app.delete')</a>
</div>
</div>
</x-slot>
</x-file-card>
@empty
<x-cards.no-record :message="__('messages.noFileUploaded')" icon="file" />
@endforelse
</div>
</div>
</div>
</div>
</div>
</div>
<script>
$('body').on('click', '.delete-event', function() {
Swal.fire({
title: "@lang('messages.sweetAlertTitle')",
text: "@lang('messages.recoverRecord')",
icon: 'warning',
showCancelButton: true,
focusConfirm: false,
confirmButtonText: "@lang('messages.confirmDelete')",
cancelButtonText: "@lang('app.cancel')",
customClass: {
confirmButton: 'btn btn-primary mr-3',
cancelButton: 'btn btn-secondary'
},
showClass: {
popup: 'swal2-noanimation',
backdrop: 'swal2-noanimation'
},
buttonsStyling: false
}).then((result) => {
if (result.isConfirmed) {
var url = "{{ route('events.destroy', $event->id) }}";
var token = "{{ csrf_token() }}";
$.easyAjax({
type: 'POST',
url: url,
data: {
'_token': token,
'_method': 'DELETE'
},
success: function(response) {
if (response.status == "success") {
window.location.href = response.redirectUrl;
}
}
});
}
});
});
$('body').on('click', '.delete-file', function() {
var id = $(this).data('row-id');
Swal.fire({
title: "@lang('messages.sweetAlertTitle')",
text: "@lang('messages.recoverRecord')",
icon: 'warning',
showCancelButton: true,
focusConfirm: false,
confirmButtonText: "@lang('messages.confirmDelete')",
cancelButtonText: "@lang('app.cancel')",
customClass: {
confirmButton: 'btn btn-primary mr-3',
cancelButton: 'btn btn-secondary'
},
showClass: {
popup: 'swal2-noanimation',
backdrop: 'swal2-noanimation'
},
buttonsStyling: false
}).then((result) => {
if (result.isConfirmed) {
var url = "{{ route('event-files.destroy', ':id') }}";
url = url.replace(':id', id);
var token = "{{ csrf_token() }}";
$.easyAjax({
type: 'POST',
url: url,
data: {
'_token': token,
'_method': 'DELETE'
},
success: function(response) {
if (response.status == "success") {
$('#event-file-list').html(response.view);
}
}
});
}
});
});
</script>