|
1 | 1 | <div x-cloak x-show="open" @click.outside="open = false" class="w-full fixed z-50 top-0 right-0 h-full overflow-x-hidden transform translate-x-0 transition ease-in-out duration-700" id="notification">
|
2 | 2 | <div class="fixed w-full h-full top-0 left-0 z-0" @click="open = false"></div>
|
3 | 3 |
|
4 |
| - <div class="2xl:w-4/12 bg-gray-50 h-screen overflow-y-auto p-8 pt-3 absolute right-0 z-30"> |
| 4 | + <div class="2xl:w-4/12 bg-gray-50 shadow-md h-screen overflow-y-auto p-8 pt-3 absolute right-0 z-30"> |
5 | 5 | <div class="flex items-center justify-between">
|
6 | 6 | <p tabindex="0" class="focus:outline-none text-2xl font-semibold leading-6 text-gray-800">Notifications</p>
|
7 | 7 | <button role="button" aria-label="close modal" class="focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-gray-500 rounded-md cursor-pointer" @click="open = false">
|
|
18 | 18 | </h2>
|
19 | 19 |
|
20 | 20 | @foreach ($unread as $announcement)
|
21 |
| - <div class="w-full p-3 mt-4 bg-white rounded flex flex-shrink-0 {{ $announcement->read_at === null ? "drop-shadow shadow border" : "" }}" |
22 |
| - @if($announcement->read_at === null) |
23 |
| - x-on:mouseenter="$wire.markAsRead('{{ $announcement->id }}')" |
24 |
| - @endif |
25 |
| - > |
| 21 | + <div class="w-full p-3 mt-4 bg-white rounded flex flex-shrink-0 {{ $announcement->read_at === null ? "drop-shadow shadow border" : "" }}"> |
26 | 22 | <x-megaphone::display :notification="$announcement"></x-megaphone::display>
|
| 23 | + |
| 24 | + @if($announcement->read_at === null) |
| 25 | + <button role="button" aria-label="Mark as Read" class="w-6 h-6 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-gray-500 rounded-md cursor-pointer" |
| 26 | + x-on:click="$wire.markAsRead('{{ $announcement->id }}')" |
| 27 | + > |
| 28 | + <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> |
| 29 | + <path d="M18 6L6 18" stroke="#4B5563" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round" /> |
| 30 | + <path d="M6 6L18 18" stroke="#4B5563" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round" /> |
| 31 | + </svg> |
| 32 | + </button> |
| 33 | + @endif |
27 | 34 | </div>
|
28 | 35 | @endforeach
|
29 | 36 |
|
30 |
| - <h2 tabindex="0" class="focus:outline-none text-sm leading-normal pt-8 border-b pb-2 border-gray-300 text-gray-600"> |
31 |
| - Previous Notifications |
32 |
| - </h2> |
| 37 | + @if ($announcements->count() > 0) |
| 38 | + <h2 tabindex="0" class="focus:outline-none text-sm leading-normal pt-8 border-b pb-2 border-gray-300 text-gray-600"> |
| 39 | + Previous Notifications |
| 40 | + </h2> |
| 41 | + @endif |
33 | 42 | @endif
|
34 | 43 |
|
35 |
| - @forelse ($announcements as $announcement) |
36 |
| - <div class="w-full p-3 mt-4 bg-white rounded flex flex-shrink-0 {{ $announcement->read_at === null ? "drop-shadow shadow border" : "" }}" |
37 |
| - @if($announcement->read_at === null) |
38 |
| - x-on:mouseenter="$wire.markAsRead('{{ $announcement->id }}')" |
39 |
| - @endif |
40 |
| - > |
| 44 | + @foreach ($announcements as $announcement) |
| 45 | + <div class="w-full p-3 mt-4 bg-white rounded flex flex-shrink-0 {{ $announcement->read_at === null ? "drop-shadow shadow border" : "" }}"> |
41 | 46 | <x-megaphone::display :notification="$announcement"></x-megaphone::display>
|
42 | 47 | </div>
|
43 |
| - @empty |
| 48 | + @endforeach |
| 49 | + |
| 50 | + @if ($unread->count() === 0 && $announcements->count() === 0) |
44 | 51 | <div class="flex items-center justify-between">
|
45 | 52 | <hr class="w-full">
|
46 | 53 | <p tabindex="0" class="focus:outline-none text-sm flex flex-shrink-0 leading-normal px-3 py-16 text-gray-500">
|
47 | 54 | No new announcements
|
48 | 55 | </p>
|
49 | 56 | <hr class="w-full">
|
50 | 57 | </div>
|
51 |
| - @endforelse |
| 58 | + @endif |
52 | 59 | </div>
|
53 | 60 | </div>
|
54 | 61 |
|
0 commit comments