Skip to content

Commit fca72b0

Browse files
authored
Merge pull request #14 from mikebarlow/add-click-mark-as-read
Add a physical "Mark as read" button + extra publishes tags
2 parents 5c0a772 + 6f8c9ba commit fca72b0

File tree

3 files changed

+40
-17
lines changed

3 files changed

+40
-17
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
All notable changes to this project will be documented in this file.
44
This project adheres to [Semantic Versioning](http://semver.org/).
55

6+
## [1.0.2] - 2022-11-15
7+
8+
* Improvement: Removed the mouse over event for marking as read and added a button with click event to mark notification as read.
9+
610
## [1.0.1] - 2022-11-13
711

812
* Fix: Numerous Readme updates, fixing incorrect instructions. Demo also added! [PR #10](https://github.com/mikebarlow/megaphone/pull/10)

resources/views/popout.blade.php

+24-17
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<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">
22
<div class="fixed w-full h-full top-0 left-0 z-0" @click="open = false"></div>
33

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">
55
<div class="flex items-center justify-between">
66
<p tabindex="0" class="focus:outline-none text-2xl font-semibold leading-6 text-gray-800">Notifications</p>
77
<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,37 +18,44 @@
1818
</h2>
1919

2020
@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" : "" }}">
2622
<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
2734
</div>
2835
@endforeach
2936

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
3342
@endif
3443

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" : "" }}">
4146
<x-megaphone::display :notification="$announcement"></x-megaphone::display>
4247
</div>
43-
@empty
48+
@endforeach
49+
50+
@if ($unread->count() === 0 && $announcements->count() === 0)
4451
<div class="flex items-center justify-between">
4552
<hr class="w-full">
4653
<p tabindex="0" class="focus:outline-none text-sm flex flex-shrink-0 leading-normal px-3 py-16 text-gray-500">
4754
No new announcements
4855
</p>
4956
<hr class="w-full">
5057
</div>
51-
@endforelse
58+
@endif
5259
</div>
5360
</div>
5461

src/MegaphoneServiceProvider.php

+12
Original file line numberDiff line numberDiff line change
@@ -42,5 +42,17 @@ public function boot()
4242
__DIR__.'/../config/megaphone.php' => config_path('megaphone.php'),
4343
__DIR__.'/../resources/views' => resource_path('views/vendor/megaphone'),
4444
], 'megaphone');
45+
46+
$this->publishes([
47+
__DIR__.'/../public' => public_path('vendor/megaphone'),
48+
], 'megaphone-assets');
49+
50+
$this->publishes([
51+
__DIR__.'/../config/megaphone.php' => config_path('megaphone.php'),
52+
], 'megaphone-config');
53+
54+
$this->publishes([
55+
__DIR__.'/../resources/views' => resource_path('views/vendor/megaphone'),
56+
], 'megaphone-views');
4557
}
4658
}

0 commit comments

Comments
 (0)