Skip to content

Commit bbd9ffb

Browse files
authored
Merge pull request #22 from mikebarlow/remove-public-user-prop
Removing use of user model in public property
2 parents e0eb259 + 8ffb541 commit bbd9ffb

File tree

3 files changed

+36
-7
lines changed

3 files changed

+36
-7
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@
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.2.0] - 2023-02-25
7+
8+
* Removed `public $user` from component and changed loading of announcements to prevent user model data exposure. [PR #22](https://github.com/mikebarlow/megaphone/pull/22)
9+
* Added ability to pass in the notifiableId via component render
10+
611
## [1.1.0] - 2022-12-27
712

813
* Improvement: New SVG Bell Icon [PR #17](https://github.com/mikebarlow/megaphone/pull/17)

README.md

+16
Original file line numberDiff line numberDiff line change
@@ -229,6 +229,22 @@ This will clear any "read" Megaphone notifications older than 2 weeks old. This
229229

230230
The 2-week time limit for old notifications is controlled via the Megaphone config file, `config('megaphone.clearAfter')`. So should you wish to alter this cut off point, simply change this value to either extend or shorten the cut off.
231231

232+
## Changing Notifiable Model
233+
234+
Because notifications can be attached to any model via the `Notifiable` trait, Megaphone too can be attached to any model providing the model also has the `Notifiable` trait attached.
235+
236+
As default, Megaphone assumes you will be attaching it to the standard Laravel User model and when loading notifications, it will attempt to retrieve the ID of the logged in user from the Request object.
237+
238+
If you are wanting to attach Megaphone to a Team model for example, change the `model` attribute of the published megaphone config file, `megaphone.php`.
239+
240+
When rendering the Megaphone component, you will then need to pass in the ID of the notifiable model into the component so Megaphone can load the correct notifications
241+
242+
```html
243+
<livewire:megaphone :notifiableId="$user->team->id"></livewire:megaphone>
244+
```
245+
246+
247+
232248
## Testing
233249

234250
If you wish to run the tests, clone out the repository

src/Livewire/Megaphone.php

+15-7
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
class Megaphone extends Component
1010
{
11-
public $user;
11+
public $notifiableId;
1212

1313
public $announcements;
1414

@@ -23,20 +23,28 @@ class Megaphone extends Component
2323

2424
public function mount(Request $request)
2525
{
26-
$this->user = $request->user();
27-
$this->loadAnnouncements($this->user);
26+
if (empty($this->notifiableId) && $request->user() !== null) {
27+
$this->notifiableId = $request->user()->id;
28+
}
29+
30+
$this->loadAnnouncements($this->getNotifiable());
2831
$this->showCount = config('megaphone.showCount', true);
2932
}
3033

31-
public function loadAnnouncements($user)
34+
public function getNotifiable()
35+
{
36+
return config('megaphone.model')::find($this->notifiableId);
37+
}
38+
39+
public function loadAnnouncements($notifiable)
3240
{
3341
$this->unread = $this->announcements = collect([]);
3442

35-
if ($user === null || get_class($user) !== config('megaphone.model')) {
43+
if ($notifiable === null || get_class($notifiable) !== config('megaphone.model')) {
3644
return;
3745
}
3846

39-
$announcements = $user->announcements()->get();
47+
$announcements = $notifiable->announcements()->get();
4048
$this->unread = $announcements->whereNull('read_at');
4149
$this->announcements = $announcements->whereNotNull('read_at');
4250
}
@@ -49,6 +57,6 @@ public function render()
4957
public function markAsRead(DatabaseNotification $notification)
5058
{
5159
$notification->markAsRead();
52-
$this->loadAnnouncements($this->user);
60+
$this->loadAnnouncements($this->getNotifiable());
5361
}
5462
}

0 commit comments

Comments
 (0)