[c6b84df] | 1 | @extends('layouts.app')
|
---|
| 2 |
|
---|
| 3 | @section("title", "SaveSpace - Files")
|
---|
| 4 |
|
---|
| 5 | @section('head')
|
---|
[169fcc8] | 6 |
|
---|
[c6b84df] | 7 | @endsection
|
---|
| 8 |
|
---|
| 9 | @section('content')
|
---|
| 10 |
|
---|
| 11 | <div class="page-header justify-content-between">
|
---|
| 12 | <nav aria-label="breadcrumb" class="d-flex align-items-start">
|
---|
| 13 | <ol class="breadcrumb">
|
---|
| 14 | <li class="breadcrumb-item">
|
---|
| 15 | <a href="{{ url('/') }}">Dashboard</a>
|
---|
| 16 | </li>
|
---|
[aab55f4] | 17 | <li class="breadcrumb-item active" aria-current="page">Departments</li>
|
---|
[c6b84df] | 18 | </ol>
|
---|
| 19 | </nav>
|
---|
| 20 | <div class="dropdown">
|
---|
[0df7a93] | 21 | @if(auth()->user()->hasPermission('manage_all_files'))
|
---|
[aab55f4] | 22 | <a href="javascript:void(0)" data-toggle="modal" data-target="#createModal" class="btn btn-primary text-white">Add</a>
|
---|
[0df7a93] | 23 | @endif
|
---|
| 24 | @if(auth()->user()->hasPermission('download_data'))
|
---|
[aab55f4] | 25 | <a href="{{ route("dashboard.departments.downloadAll") }}" class="btn btn-danger text-white">Download</a>
|
---|
[0df7a93] | 26 | @endif
|
---|
| 27 | @if(auth()->user()->hasPermission('export_data'))
|
---|
[aab55f4] | 28 | <a href="{{ route('dashboard.files.export') }}" class="btn btn-success text-white">Export</a>
|
---|
[0df7a93] | 29 | @endif
|
---|
[c6b84df] | 30 | </div>
|
---|
| 31 | </div>
|
---|
| 32 |
|
---|
| 33 | <div class="row">
|
---|
| 34 | <div class="col-md-12">
|
---|
| 35 | <div class="card">
|
---|
| 36 | <div class="card-body">
|
---|
| 37 | <div class="table-responsive">
|
---|
| 38 | <table id="user-list" class="table table-lg">
|
---|
| 39 | <thead>
|
---|
| 40 | <tr>
|
---|
| 41 | <th>
|
---|
| 42 | </th>
|
---|
| 43 | <th>Image</th>
|
---|
| 44 | <th>Name</th>
|
---|
| 45 | <th>Created at</th>
|
---|
| 46 | <th>Updated at</th>
|
---|
| 47 | <th>Folder name</th>
|
---|
| 48 | <th>Folder archive ID</th>
|
---|
| 49 | <th>Directory</th>
|
---|
| 50 | <th>Actions</th>
|
---|
| 51 | </tr>
|
---|
| 52 | </thead>
|
---|
| 53 | <tbody>
|
---|
| 54 | @foreach($files as $file)
|
---|
| 55 | <tr>
|
---|
| 56 | <td></td>
|
---|
| 57 | <td>
|
---|
| 58 | @if(in_array(explode('.', $file->name)[1], $excelExt))
|
---|
| 59 | <div class="col-xl-1 col-lg-1 col-md-1 col-sm-2">
|
---|
| 60 | <i class="fa fa-file-excel-o text-success fa-2x"></i>
|
---|
| 61 | </div>
|
---|
| 62 | @else @if(in_array(explode('.', $file->name)[1], $textExt))
|
---|
| 63 | <div class="col-xl-1 col-lg-1 col-md-1 col-sm-2">
|
---|
| 64 | <i class="fa fa-file-word-o text-info fa-2x"></i>
|
---|
| 65 | </div>
|
---|
| 66 | @else @if(explode('.', $file->name)[1] == 'pdf')
|
---|
| 67 | <div class="col-xl-1 col-lg-1 col-md-1 col-sm-2">
|
---|
| 68 | <i class="fa fa-file-pdf-o text-danger fa-2x"></i>
|
---|
| 69 | </div>
|
---|
| 70 | @else @if(in_array(explode('.', $file->name)[1], $imageExt))
|
---|
[ff5b46e] | 71 | {{-- <div class="col-xl-1 col-lg-1 col-md-1 col-sm-2">--}}
|
---|
| 72 | {{-- <a href="{{ url('/storage/' . $file->location) }}" class="image-popup-gallery-item">--}}
|
---|
| 73 | {{-- <div class="image-hover">--}}
|
---|
| 74 | {{-- <img src="{{ url('/storage/' . $file->location) }}" class="rounded" width="30" alt="image">--}}
|
---|
| 75 | {{-- </div>--}}
|
---|
| 76 | {{-- </a>--}}
|
---|
| 77 | {{-- </div>--}}
|
---|
[4521f25] | 78 | <i class="fa fa-file-image-o text-danger"></i>
|
---|
[c6b84df] | 79 | @else
|
---|
[4521f25] | 80 | <i class="fa fa-file-text-o text-warning"></i>
|
---|
[c6b84df] | 81 | @endif
|
---|
| 82 | @endif
|
---|
| 83 | @endif
|
---|
| 84 | @endif
|
---|
| 85 |
|
---|
| 86 |
|
---|
| 87 | </td>
|
---|
| 88 | <td>{{ $file->name }}</td>
|
---|
| 89 | <td>{{ date('d.m.Y - H:i', strtotime($file->created_at)) }}</td>
|
---|
| 90 | @if($file->updated_at==NULL)
|
---|
| 91 | <td>/</td>
|
---|
| 92 | @else
|
---|
| 93 | <td>{{ date('d.m.Y - H:i', strtotime($file->updated_at)) }}</td>
|
---|
| 94 | @endif
|
---|
| 95 | <td><a href="{{ route('dashboard.folders.files', ['id' => $file->folder_id]) }}" class="text-linkedin">{{ \App\Models\Folder::find($file->folder_id)->name }}</a></td>
|
---|
| 96 | <td>{{ \App\Models\Folder::find($file->folder_id)->arch_id }}</td>
|
---|
| 97 | <!-- Trigger -->
|
---|
| 98 | <td><button data-clipboard-text="{{$file->location}}" class="btn btn-sm btn-primary text-white" data-toggle="tooltip" data-placement="right" title="{{$file->location}}"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-clipboard" viewBox="0 0 16 16">
|
---|
| 99 | <path d="M4 1.5H3a2 2 0 0 0-2 2V14a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V3.5a2 2 0 0 0-2-2h-1v1h1a1 1 0 0 1 1 1V14a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V3.5a1 1 0 0 1 1-1h1v-1z"/>
|
---|
| 100 | <path d="M9.5 1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5v-1a.5.5 0 0 1 .5-.5h3zm-3-1A1.5 1.5 0 0 0 5 1.5v1A1.5 1.5 0 0 0 6.5 4h3A1.5 1.5 0 0 0 11 2.5v-1A1.5 1.5 0 0 0 9.5 0h-3z"/>
|
---|
| 101 | </svg></button>
|
---|
| 102 | </td>
|
---|
[0df7a93] | 103 | @if(auth()->user()->hasPermission('manage_all_files'))
|
---|
[c6b84df] | 104 | <td>
|
---|
[4521f25] | 105 | <a href="javascript:void(0)" class="text-secondary" data-toggle="modal" data-target="#editModal_{{$file->id}}" title="Edit">
|
---|
| 106 | <i class="ti-pencil"></i>
|
---|
| 107 | </a>
|
---|
[c6b84df] | 108 | <a href="{{ route("dashboard.files.downloadFile", ['id' => $file->id]) }}" class="text-danger ml-2"title="Download">
|
---|
| 109 | <i class="ti-download"></i>
|
---|
| 110 | </a>
|
---|
[190db9f] | 111 | @if(auth()->user()->hasPermission('delete_data'))
|
---|
[c6b84df] | 112 | <a href="javascript:void(0)" class="text-danger ml-2" data-toggle="modal" data-target="#deleteModal_{{$file->id}}" title="Delete">
|
---|
| 113 | <i class="ti-trash"></i>
|
---|
| 114 | </a>
|
---|
[190db9f] | 115 | @endif
|
---|
[c6b84df] | 116 | </td>
|
---|
[0df7a93] | 117 | @else
|
---|
| 118 | <td></td>
|
---|
| 119 | @endif
|
---|
[c6b84df] | 120 | </tr>
|
---|
| 121 | <div class="modal fade" id="deleteModal_{{$file->id}}" tabindex="-1" role="dialog" aria-hidden="true">
|
---|
| 122 | <div class="modal-dialog modal-dialog-centered" role="document">
|
---|
| 123 | <div class="modal-content">
|
---|
| 124 | <div class="modal-header">
|
---|
| 125 | <h5 class="modal-title" id="exampleModalCenterTitle">Delete confirmation</h5>
|
---|
| 126 | <button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
---|
| 127 | <i class="ti-close"></i>
|
---|
| 128 | </button>
|
---|
| 129 | </div>
|
---|
| 130 | <div class="modal-body">
|
---|
| 131 | <form action="{{ route("dashboard.files.deleteFile", $file->id) }}" method="POST">
|
---|
| 132 | @csrf
|
---|
| 133 | @method('DELETE')
|
---|
| 134 | <p>Are you sure you want to delete file {{$file->name}}?</p>
|
---|
| 135 | <p>Location: <span class="pr-1">{{$file->location}}</span></p>
|
---|
| 136 | <div class="modal-footer">
|
---|
| 137 | <button type="button" class="btn btn-secondary" data-dismiss="modal">Close
|
---|
| 138 | </button>
|
---|
| 139 | <button type="submit" class="btn btn-primary">Save changes</button>
|
---|
| 140 | </div>
|
---|
| 141 | </form>
|
---|
| 142 | </div>
|
---|
| 143 |
|
---|
| 144 | </div>
|
---|
| 145 | </div>
|
---|
| 146 | </div>
|
---|
| 147 |
|
---|
[4521f25] | 148 | <div class="modal fade" id="editModal_{{$file->id}}" tabindex="-1" role="dialog" aria-hidden="true">
|
---|
| 149 | <div class="modal-dialog modal-dialog-centered" role="document">
|
---|
| 150 | <div class="modal-content">
|
---|
| 151 | <div class="modal-header">
|
---|
| 152 | <h5 class="modal-title" id="exampleModalCenterTitle">Rename file</h5>
|
---|
| 153 | <button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
---|
| 154 | <i class="ti-close"></i>
|
---|
| 155 | </button>
|
---|
| 156 | </div>
|
---|
| 157 | <div class="modal-body">
|
---|
| 158 | <form action="{{ route("dashboard.files.renameFile", ["id" =>$file->id]) }}" method="post" accept-charset="utf-8">
|
---|
| 159 | @method("patch")
|
---|
| 160 | @csrf
|
---|
| 161 | <div class="row">
|
---|
| 162 | <div class="col-md-12">
|
---|
| 163 | <div class="form-group">
|
---|
| 164 | <label class="form-label">Current name: {{$file->name}}</label>
|
---|
| 165 | <input type="text" name="name" value="{{ explode('.', $file->name)[0] }}" maxlength="255" title="Don't include: '\/.|'" pattern="^[^.\/|]+$" class="form-control" required>
|
---|
| 166 | </div>
|
---|
| 167 | </div>
|
---|
| 168 | </div>
|
---|
| 169 | <br/>
|
---|
| 170 | <div class="modal-footer">
|
---|
| 171 | <button type="button" class="btn btn-secondary" data-dismiss="modal">Close
|
---|
| 172 | </button>
|
---|
| 173 | <button type="submit" class="btn btn-primary">Save changes</button>
|
---|
| 174 | </div>
|
---|
| 175 | </form>
|
---|
| 176 | </div>
|
---|
| 177 |
|
---|
| 178 | </div>
|
---|
| 179 | </div>
|
---|
| 180 | </div>
|
---|
[c6b84df] | 181 | @endforeach
|
---|
| 182 |
|
---|
| 183 | </tbody>
|
---|
| 184 | </table>
|
---|
| 185 |
|
---|
[9b4689a] | 186 | </div>
|
---|
| 187 | </div>
|
---|
| 188 | </div>
|
---|
| 189 | </div>
|
---|
| 190 | </div>
|
---|
[c6b84df] | 191 |
|
---|
[9b4689a] | 192 | <div class="modal fade" id="createModal" tabindex="-1" role="dialog" aria-hidden="true">
|
---|
| 193 | <div class="modal-dialog modal-dialog-centered" role="document">
|
---|
| 194 | <div class="modal-content">
|
---|
| 195 | <div class="modal-header">
|
---|
| 196 | <h5 class="modal-title" id="exampleModalCenterTitle">Upload</h5>
|
---|
| 197 | <button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
---|
| 198 | <i class="ti-close"></i>
|
---|
| 199 | </button>
|
---|
| 200 | </div>
|
---|
| 201 | <div class="modal-body">
|
---|
| 202 | <form action="{{ route("dashboard.files.store") }}" method="post" accept-charset="utf-8" enctype="multipart/form-data">
|
---|
| 203 | @csrf
|
---|
| 204 | <div class="row">
|
---|
| 205 | <div class="col-md-10">
|
---|
| 206 | <div class="form-group">
|
---|
| 207 | <label for="exampleFormControlSelect1">Folder</label>
|
---|
| 208 | @if($folders->count())
|
---|
| 209 | <select class="form-control" name="folder" required>
|
---|
| 210 | @foreach ($folders as $folder)
|
---|
| 211 | <option value="{{ $folder->id }}" {{ (old("folder") == $folder->id ? "selected" : "") }}>{{ $folder->name }}</option>
|
---|
| 212 | @endforeach
|
---|
| 213 | @else
|
---|
| 214 | <p>You haven't created any folders yet. <a class="text-primary" href="{{ route("dashboard.folders.index") }}">Create now.</a></p>
|
---|
| 215 | @endif
|
---|
| 216 | </select>
|
---|
| 217 | </div>
|
---|
| 218 | </div>
|
---|
| 219 | <div class="col-md-10">
|
---|
| 220 | <div class="form-group">
|
---|
| 221 | <label for="exampleFormControlSelect1">Uploads</label>
|
---|
[c6b84df] | 222 |
|
---|
| 223 |
|
---|
[9b4689a] | 224 | <input type="file" class="form-control" id="file-item" name="file_item[]" accept="{{ $fileTypes }}" multiple>
|
---|
[c6b84df] | 225 | </div>
|
---|
| 226 | </div>
|
---|
| 227 | </div>
|
---|
[9b4689a] | 228 | <br/>
|
---|
| 229 | <div class="modal-footer">
|
---|
| 230 | <button type="button" class="btn btn-secondary" data-dismiss="modal">Close
|
---|
| 231 | </button>
|
---|
| 232 | <button type="submit" class="btn btn-primary">Save changes</button>
|
---|
| 233 | </div>
|
---|
| 234 | </form>
|
---|
[c6b84df] | 235 | </div>
|
---|
[9b4689a] | 236 |
|
---|
[c6b84df] | 237 | </div>
|
---|
| 238 | </div>
|
---|
| 239 | </div>
|
---|
| 240 |
|
---|
| 241 | @endsection
|
---|
| 242 |
|
---|
| 243 | @section('script')
|
---|
| 244 |
|
---|
| 245 | @yield('script')
|
---|
| 246 |
|
---|
| 247 | <script src="{{ url('assets/js/examples/pages/user-list.js') }}"></script>
|
---|
| 248 | @endsection
|
---|