whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
Modules
/
Zoom
/
Resources
/
views
/
meeting
/
ajax
/
Upload File:
files >> /home/kckglobal/www/portal/Modules/Zoom/Resources/views/meeting/ajax/notes.blade.php
<!-- TAB CONTENT START --> <div class="tab-pane fade show active" role="tabpanel" aria-labelledby="nav-email-tab"> <div class="row p-20"> <div class="col-md-12"> <a class="f-15 f-w-500" href="javascript:;" id="add-notes"><i class="icons icon-plus font-weight-bold mr-1"></i>@lang('app.add') @lang('app.note')</a> </div> </div> <x-form id="save-note-data-form" class="d-none"> <div class="col-md-12 p-20 "> <div class="media"> <img src="{{ user()->image_url }}" class="align-self-start mr-3 taskEmployeeImg rounded" alt="{{ user()->name }}"> <div class="media-body bg-white"> <div class="form-group"> <div id="task-note"></div> <textarea name="note" class="form-control invisible d-none" id="task-note-text"></textarea> </div> </div> </div> <div class="w-100 justify-content-end d-flex mt-2"> <x-forms.button-cancel id="cancel-note" class="border-0 mr-3">@lang('app.cancel') </x-forms.button-cancel> <x-forms.button-primary id="submit-note" icon="location-arrow">@lang('app.submit') </x-forms.button-primary> </div> </div> </x-form> <div class="d-flex flex-wrap justify-content-between p-20" id="note-list"> @forelse($event->notes as $note) <div class="card w-100 rounded-0 border-0 note"> <div class="card-horizontal"> <div class="card-img my-1 ml-0"> <img src="{{ $note->user->image_url }}" alt="{{ mb_ucwords($note->user->name) }}"> </div> <div class="card-body border-0 pl-0 py-1"> <div class="d-flex flex-grow-1"> <h4 class="card-title f-15 f-w-500 text-dark mr-3">{{ mb_ucwords($note->user->name) }}</h4> <p class="card-date f-11 text-lightest mb-0"> {{ ($note->created_at->diffForHumans()) }} </p> <div class="dropdown ml-auto note-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 ($editTaskNotePermission == 'all' || ($editTaskNotePermission == 'added' && $note->added_by == user()->id)) --}} <a class="cursor-pointer d-block text-dark-grey f-13 py-3 px-3 edit-note" href="javascript:;" data-row-id="{{ $note->id }}">@lang('app.edit')</a> {{-- @endif --}} {{-- @if ($deleteTaskNotePermission == 'all' || ($deleteTaskNotePermission == 'added' && $note->added_by == user()->id)) --}} <a class="cursor-pointer d-block text-dark-grey f-13 pb-3 px-3 delete-note" data-row-id="{{ $note->id }}" href="javascript:;">@lang('app.delete')</a> {{-- @endif --}} </div> </div> </div> <div class="card-text f-14 text-dark-grey text-justify ql-editor">{!! ($note->note) !!} </div> </div> </div> </div> @empty <x-cards.no-record :message="__('messages.noNoteFound')" icon="clipboard"/> @endforelse </div> </div> <!-- TAB CONTENT END --> <script> $('#add-notes').click(function () { $(this).closest('.row').addClass('d-none'); $('#save-note-data-form').removeClass('d-none'); }); $('#cancel-note').click(function () { $('#save-note-data-form').addClass('d-none'); $('#add-notes').closest('.row').removeClass('d-none'); }); $(document).ready(function () { // if (add_task_notes == "all" || add_task_notes == "added") { quillImageLoad('#task-note'); // } $('#submit-note').click(function () { var note = document.getElementById('task-note').children[0].innerHTML; document.getElementById('task-note-text').value = note; var token = '{{ csrf_token() }}'; const url = "{{ route('meeting-note.store') }}"; $.easyAjax({ url: url, container: '#save-note-data-form', type: "POST", disableButton: true, blockUI: true, buttonSelector: "#submit-note", data: { '_token': token, note: note, meetingID: '{{ $event->id }}' }, success: function (response) { if (response.status == "success") { $('#note-list').html(response.view); document.getElementById('task-note').children[0].innerHTML = ""; $('#task-note-text').val(''); } } }); }); }); </script>
Copyright ©2021 || Defacer Indonesia