2024-04-07 07:28:58 +00:00
|
|
|
@extends('layouts.app')
|
2024-04-05 05:22:15 +00:00
|
|
|
@section('content')
|
2024-04-07 07:28:58 +00:00
|
|
|
<div class="card">
|
|
|
|
<div class="card-header d-flex justify-content-between align-items-center">
|
|
|
|
<h2>{{ label('Settings List') }}</h2>
|
|
|
|
<a href="{{ route('settings.create') }}" class="btn btn-primary"><span>{{ label('Create New') }}</span></a>
|
|
|
|
</div>
|
|
|
|
<div class="card-body">
|
|
|
|
<table class="dataTable table" id="tbl_settings" data-url="{{ route('settings.sort') }}">
|
|
|
|
<thead class="table-light">
|
|
|
|
<tr>
|
|
|
|
<th class="tb-col"><span class="overline-title">{{ label('Sn.') }}</span></th>
|
|
|
|
<th class="tb-col"><span class="overline-title">{{ label('title') }}</span></th>
|
|
|
|
<th class="tb-col"><span class="overline-title">{{ label('url1') }}</span></th>
|
|
|
|
<th class="tb-col"><span class="overline-title">{{ label('url2') }}</span></th>
|
|
|
|
<th class="tb-col"><span class="overline-title">{{ label('email') }}</span></th>
|
|
|
|
<th class="tb-col"><span class="overline-title">{{ label('phone') }}</span></th>
|
|
|
|
<th class="tb-col"><span class="overline-title">{{ label('secondary_phone') }}</span></th>
|
|
|
|
<th class="tb-col"><span class="overline-title">{{ label('fb') }}</span></th>
|
|
|
|
<th class="tb-col"><span class="overline-title">{{ label('insta') }}</span></th>
|
|
|
|
<th class="tb-col"><span class="overline-title">{{ label('twitter') }}</span></th>
|
|
|
|
<th class="tb-col"><span class="overline-title">{{ label('tiktok') }}</span></th>
|
|
|
|
<th class="tb-col"><span class="overline-title">{{ label('primary_logo') }}</span></th>
|
|
|
|
<th class="tb-col"><span class="overline-title">{{ label('secondary_logo') }}</span></th>
|
|
|
|
<th class="tb-col"><span class="overline-title">{{ label('thumb') }}</span></th>
|
|
|
|
<th class="tb-col"><span class="overline-title">{{ label('icon') }}</span></th>
|
|
|
|
<th class="tb-col"><span class="overline-title">{{ label('og_image') }}</span></th>
|
|
|
|
<th class="tb-col"><span class="overline-title">{{ label('no_image') }}</span></th>
|
|
|
|
<th class="tb-col"><span class="overline-title">{{ label('copyright_text') }}</span></th>
|
|
|
|
<th class="tb-col"><span class="overline-title">{{ label('content1') }}</span></th>
|
|
|
|
<th class="tb-col"><span class="overline-title">{{ label('content2') }}</span></th>
|
|
|
|
<th class="tb-col"><span class="overline-title">{{ label('content3') }}</span></th>
|
|
|
|
<th class="tb-col" data-sortable="false"><span class="overline-title">{{ label('Action') }}</span>
|
|
|
|
</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
@php
|
|
|
|
$i = 1;
|
|
|
|
@endphp
|
|
|
|
@foreach ($data as $item)
|
|
|
|
<tr data-id="{{ $item->setting_id }}" data-display_order="{{ $item->display_order }}"
|
|
|
|
class="draggable-row <?php echo $item->status == 0 ? 'bg-light bg-danger' : ''; ?>">
|
|
|
|
<td class="tb-col">{{ $i++ }}</td>
|
|
|
|
<td class="tb-col">{{ $item->title }}</td>
|
|
|
|
<td class="tb-col">{{ $item->url1 }}</td>
|
|
|
|
<td class="tb-col">{{ $item->url2 }}</td>
|
|
|
|
<td class="tb-col">{{ $item->email }}</td>
|
|
|
|
<td class="tb-col">{{ $item->phone }}</td>
|
|
|
|
<td class="tb-col">{{ $item->secondary_phone }}</td>
|
|
|
|
<td class="tb-col">{{ $item->fb }}</td>
|
|
|
|
<td class="tb-col">{{ $item->insta }}</td>
|
|
|
|
<td class="tb-col">{{ $item->twitter }}</td>
|
|
|
|
<td class="tb-col">{{ $item->tiktok }}</td>
|
|
|
|
<td class="tb-col">{{ showImageThumb($item->primary_logo) }}</td>
|
|
|
|
<td class="tb-col">{{ showImageThumb($item->secondary_logo) }}</td>
|
|
|
|
<td class="tb-col">{{ showImageThumb($item->thumb) }}</td>
|
|
|
|
<td class="tb-col">{{ showImageThumb($item->icon) }}</td>
|
|
|
|
<td class="tb-col">{{ showImageThumb($item->og_image) }}</td>
|
|
|
|
<td class="tb-col">{{ showImageThumb($item->no_image) }}</td>
|
|
|
|
<td class="tb-col">{{ $item->copyright_text }}</td>
|
|
|
|
<td class="tb-col">{{ $item->content1 }}</td>
|
|
|
|
<td class="tb-col">{{ $item->content2 }}</td>
|
|
|
|
<td class="tb-col">{{ $item->content3 }}</td>
|
|
|
|
<td class="tb-col">
|
|
|
|
<div class="dropdown d-inline-block">
|
|
|
|
<button class="btn btn-soft-secondary btn-sm dropdown" type="button" data-bs-toggle="dropdown"
|
|
|
|
aria-expanded="false">
|
|
|
|
<i class="ri-more-fill align-middle"></i>
|
|
|
|
</button>
|
|
|
|
<ul class="dropdown-menu dropdown-menu-end">
|
|
|
|
<li><a href="{{ route('settings.show', [$item->setting_id]) }}" class="dropdown-item"><i
|
|
|
|
class="ri-eye-fill text-muted me-2 align-bottom"></i> {{ label('View') }}</a></li>
|
|
|
|
<li><a href="{{ route('settings.edit', [$item->setting_id]) }}" class="dropdown-item edit-item-btn"><i
|
|
|
|
class="ri-pencil-fill text-muted me-2 align-bottom"></i> {{ label('Edit') }}</a></li>
|
|
|
|
<li>
|
|
|
|
<a href="{{ route('settings.toggle', [$item->setting_id]) }}" class="dropdown-item toggle-item-btn"
|
|
|
|
onclick="confirmToggle(this.href)">
|
|
|
|
<i class="ri-article-fill text-muted me-2 align-bottom"></i>
|
|
|
|
{{ $item->status == 1 ? label('Unpublish') : label('Publish') }}
|
|
|
|
</a>
|
2024-04-05 05:22:15 +00:00
|
|
|
|
2024-04-07 07:28:58 +00:00
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<a href="{{ route('settings.destroy', [$item->setting_id]) }}" class="dropdown-item remove-item-btn"
|
|
|
|
onclick="confirmDelete(this.href)">
|
|
|
|
<i class="ri-delete-bin-fill text-muted me-2 align-bottom"></i> {{ label('Delete') }}
|
|
|
|
</a>
|
2024-04-05 05:22:15 +00:00
|
|
|
|
2024-04-07 07:28:58 +00:00
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
2024-04-05 05:22:15 +00:00
|
|
|
|
|
|
|
|
2024-04-07 07:28:58 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
@endforeach
|
2024-04-05 05:22:15 +00:00
|
|
|
|
2024-04-07 07:28:58 +00:00
|
|
|
</tbody>
|
|
|
|
</table>
|
2024-04-05 05:22:15 +00:00
|
|
|
|
|
|
|
|
2024-04-07 07:28:58 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@endsection
|
|
|
|
|
|
|
|
@push('css')
|
|
|
|
<link rel="stylesheet" href="https://cdn.datatables.net/1.13.5/css/dataTables.bootstrap4.min.css">
|
|
|
|
<link rel="stylesheet" href="https://cdn.datatables.net/rowreorder/1.4.0/css/rowReorder.dataTables.min.css">
|
2024-04-05 05:22:15 +00:00
|
|
|
@endpush
|
2024-04-07 07:28:58 +00:00
|
|
|
@push('js')
|
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/pdfmake/0.1.68/pdfmake.min.js"></script>
|
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/pdfmake/0.1.68/vfs_fonts.js"></script>
|
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
|
|
|
|
<script src="https://cdn.datatables.net/1.13.5/js/jquery.dataTables.min.js"></script>
|
|
|
|
<script src="https://cdn.datatables.net/buttons/2.4.1/js/buttons.html5.min.js"></script>
|
|
|
|
<script src="https://cdn.datatables.net/rowreorder/1.4.0/js/dataTables.rowReorder.min.js"></script>
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script>
|
2024-04-05 05:22:15 +00:00
|
|
|
|
|
|
|
|
2024-04-07 07:28:58 +00:00
|
|
|
<script>
|
|
|
|
$(document).ready(function(e) {
|
|
|
|
$('.change-alias-badge').on('click', function() {
|
2024-04-05 05:22:15 +00:00
|
|
|
var aliasWrapper = $(this).prev('.alias-wrapper');
|
|
|
|
var aliasSpan = aliasWrapper.find('.alias');
|
|
|
|
var aliasInput = aliasWrapper.find('.alias-input');
|
|
|
|
var isEditing = $(this).hasClass('editing');
|
|
|
|
aliasInput.toggleClass("d-none");
|
|
|
|
if (isEditing) {
|
2024-04-07 07:28:58 +00:00
|
|
|
// Update alias text and switch to non-editing state
|
|
|
|
var newAlias = aliasInput.val();
|
|
|
|
aliasSpan.text(newAlias);
|
|
|
|
aliasSpan.show();
|
|
|
|
aliasInput.hide();
|
|
|
|
$(this).removeClass('editing').text('Change Alias');
|
|
|
|
var articleId = $(aliasWrapper).data('id');
|
|
|
|
var ajaxUrl = "{{ route('settings.updatealias') }}";
|
|
|
|
var data = {
|
|
|
|
articleId: articleId,
|
|
|
|
newAlias: newAlias
|
|
|
|
};
|
|
|
|
|
|
|
|
$.ajax({
|
|
|
|
url: ajaxUrl,
|
|
|
|
type: 'POST',
|
|
|
|
headers: {
|
|
|
|
'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
|
|
|
|
},
|
|
|
|
data: data,
|
|
|
|
success: function(response) {
|
|
|
|
console.log(response);
|
|
|
|
},
|
|
|
|
error: function(xhr, status, error) {
|
|
|
|
console.error(error);
|
|
|
|
}
|
|
|
|
});
|
2024-04-05 05:22:15 +00:00
|
|
|
} else {
|
2024-04-07 07:28:58 +00:00
|
|
|
// Switch to editing state
|
|
|
|
aliasSpan.hide();
|
|
|
|
aliasInput.show().focus();
|
|
|
|
$(this).addClass('editing').text('Save Alias');
|
2024-04-05 05:22:15 +00:00
|
|
|
}
|
2024-04-07 07:28:58 +00:00
|
|
|
});
|
|
|
|
var mytable = $(".dataTable").DataTable({
|
2024-04-05 05:22:15 +00:00
|
|
|
ordering: true,
|
|
|
|
rowReorder: {
|
2024-04-07 07:28:58 +00:00
|
|
|
//selector: 'tr'
|
2024-04-05 05:22:15 +00:00
|
|
|
},
|
2024-04-07 07:28:58 +00:00
|
|
|
});
|
2024-04-05 05:22:15 +00:00
|
|
|
|
2024-04-07 07:28:58 +00:00
|
|
|
var isRowReorderComplete = false;
|
2024-04-05 05:22:15 +00:00
|
|
|
|
2024-04-07 07:28:58 +00:00
|
|
|
mytable.on('row-reorder', function(e, diff, edit) {
|
2024-04-05 05:22:15 +00:00
|
|
|
isRowReorderComplete = true;
|
2024-04-07 07:28:58 +00:00
|
|
|
});
|
2024-04-05 05:22:15 +00:00
|
|
|
|
2024-04-07 07:28:58 +00:00
|
|
|
mytable.on('draw', function() {
|
2024-04-05 05:22:15 +00:00
|
|
|
if (isRowReorderComplete) {
|
2024-04-07 07:28:58 +00:00
|
|
|
var url = mytable.table().node().getAttribute('data-url');
|
|
|
|
var ids = mytable.rows().nodes().map(function(node) {
|
|
|
|
return $(node).data('id');
|
|
|
|
}).toArray();
|
2024-04-05 05:22:15 +00:00
|
|
|
|
2024-04-07 07:28:58 +00:00
|
|
|
console.log(ids);
|
|
|
|
$.ajax({
|
|
|
|
url: url,
|
|
|
|
type: "POST",
|
|
|
|
headers: {
|
|
|
|
"X-CSRF-TOKEN": $('meta[name="csrf-token"]').attr('content')
|
|
|
|
},
|
|
|
|
data: {
|
|
|
|
id_order: ids
|
|
|
|
},
|
|
|
|
success: function(response) {
|
|
|
|
console.log(response);
|
|
|
|
},
|
|
|
|
error: function(xhr, status, error) {
|
|
|
|
console.error(error);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
isRowReorderComplete = false;
|
2024-04-05 05:22:15 +00:00
|
|
|
}
|
2024-04-07 07:28:58 +00:00
|
|
|
});
|
2024-04-05 05:22:15 +00:00
|
|
|
});
|
2024-04-07 07:28:58 +00:00
|
|
|
|
|
|
|
function confirmDelete(url) {
|
|
|
|
event.preventDefault();
|
|
|
|
Swal.fire({
|
2024-04-05 05:22:15 +00:00
|
|
|
title: 'Are you sure?',
|
|
|
|
text: 'You will not be able to recover this item!',
|
|
|
|
icon: 'warning',
|
|
|
|
showCancelButton: true,
|
|
|
|
confirmButtonText: 'Delete',
|
|
|
|
cancelButtonText: 'Cancel',
|
|
|
|
reverseButtons: true
|
2024-04-07 07:28:58 +00:00
|
|
|
}).then((result) => {
|
2024-04-05 05:22:15 +00:00
|
|
|
if (result.isConfirmed) {
|
2024-04-07 07:28:58 +00:00
|
|
|
$.ajax({
|
|
|
|
url: url,
|
|
|
|
type: 'DELETE',
|
|
|
|
headers: {
|
|
|
|
'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
|
|
|
|
},
|
|
|
|
success: function(response) {
|
|
|
|
Swal.fire('Deleted!', 'The item has been deleted.', 'success');
|
|
|
|
location.reload();
|
|
|
|
},
|
|
|
|
error: function(xhr, status, error) {
|
|
|
|
Swal.fire('Error!', 'An error occurred while deleting the item.', 'error');
|
|
|
|
}
|
|
|
|
});
|
2024-04-05 05:22:15 +00:00
|
|
|
}
|
2024-04-07 07:28:58 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function confirmToggle(url) {
|
|
|
|
event.preventDefault();
|
|
|
|
Swal.fire({
|
2024-04-05 05:22:15 +00:00
|
|
|
title: 'Are you sure?',
|
|
|
|
text: 'Publish Status of Item will be changed!! if Unpublished, links will be dead!',
|
|
|
|
icon: 'warning',
|
|
|
|
showCancelButton: true,
|
|
|
|
confirmButtonText: 'Proceed',
|
|
|
|
cancelButtonText: 'Cancel',
|
|
|
|
reverseButtons: true
|
2024-04-07 07:28:58 +00:00
|
|
|
}).then((result) => {
|
2024-04-05 05:22:15 +00:00
|
|
|
if (result.isConfirmed) {
|
2024-04-07 07:28:58 +00:00
|
|
|
$.ajax({
|
|
|
|
url: url,
|
|
|
|
type: 'GET',
|
|
|
|
headers: {
|
|
|
|
'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
|
|
|
|
},
|
|
|
|
success: function(response) {
|
|
|
|
Swal.fire('Updated!', 'Publishing Status has been updated.', 'success');
|
|
|
|
location.reload();
|
|
|
|
},
|
|
|
|
error: function(xhr, status, error) {
|
|
|
|
Swal.fire('Error!', 'An error occurred.', 'error');
|
|
|
|
}
|
|
|
|
});
|
2024-04-05 05:22:15 +00:00
|
|
|
}
|
2024-04-07 07:28:58 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
</script>
|
2024-04-05 05:22:15 +00:00
|
|
|
@endpush
|