Skip to content

Commit 9d15c55

Browse files
authored
Merge pull request #41 from mikebarlow/develop
V2.1.0
2 parents d612386 + 14398cb commit 9d15c55

28 files changed

+5205
-3888
lines changed

.github/workflows/tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
matrix:
1414
operating-system: [ubuntu-20.04]
15-
php: ['8.1', '8.2']
15+
php: ['8.1', '8.2', '8.3']
1616

1717
name: P${{ matrix.php }}
1818
steps:

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
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+
## [2.1.0] - 2024-09-11
7+
8+
* Moved SVG icons into anonymous components for easier reuse / overwriting.[PR#35](https://github.com/mikebarlow/megaphone/pull/35)
9+
* Reworked notification type templates into components. [PR#35](https://github.com/mikebarlow/megaphone/pull/35)
10+
* Added "mark all as read" feature for unread notifications. [PR#37](https://github.com/mikebarlow/megaphone/pull/37)
11+
* Added support for `wire:poll` to give the impression of a live component. [PR#38](https://github.com/mikebarlow/megaphone/pull/38)
12+
* Added `@megaphoneStyles` blade directive + improved default styles. [PR#39](https://github.com/mikebarlow/megaphone/pull/39)
13+
614
## [2.0.0] - 2023-09-11
715

816
* Updated PHP requirement to 8.1 and above (7.4 and 8.0 dropped) [PR#28](https://github.com/mikebarlow/megaphone/pull/28)

README.md

+7-3
Original file line numberDiff line numberDiff line change
@@ -93,19 +93,23 @@ If you are not using the default user model found at `App\Models\User`, you will
9393
To get started using megaphone, drop in the Megaphone Livewire component into your template.
9494

9595
```html
96-
<livewire:megaphone></livewire:megaphone>
96+
<livewire:megaphone />
9797
```
9898

9999
This will render a Bell Icon where the component has been placed. When clicked a static sidebar will appear on the right of the screen which will show all the existing and any new notifications to the user.
100100

101101
### Styling
102102

103-
As default, Megaphone uses TailwindCSS to style the Bell Icon and the notification sidebar. If you are not using Tailwind you may want to include the Megaphone CSS into your template.
103+
As default, Megaphone uses TailwindCSS to style the Bell Icon and the notification sidebar. If you are not using Tailwind you may want to include the Megaphone CSS into your template. Add the following blade directive to your sites `<head></head>`.
104104

105105
```html
106-
<link rel="stylesheet" href="{{ asset('vendor/megaphone/css/megaphone.css') }}">
106+
@megaphoneStyles
107107
```
108108

109+
If you are using TailwindCSS, make sure the Megaphone views are added to any Tailwind config to ensure the correct classes are compiled.
110+
111+
If you wish to recompile Megaphone stylesheet, ensure you have node and npm installed and run `npm install`. To compile the styles then run `npx mix` as per the [Larave Mix Documentation](https://laravel-mix.com/docs/6.0/installation)
112+
109113
## Sending Notifications
110114

111115
As default, Megaphone will only load notifications that have been registered within the Megaphone config file. Notifications shipped with Megaphone will be within `config('megaphone.types')`. This will be merged with the key values of `config('megaphone.customTypes')` to create the list of supported notifications.

config/megaphone.php

+15
Original file line numberDiff line numberDiff line change
@@ -46,4 +46,19 @@
4646
* show a dot instead
4747
*/
4848
'showCount' => true,
49+
50+
/*
51+
* Enable Livewire Poll feature for auto updating.
52+
* See livewire docs for poll option descriptions
53+
* @link https://livewire.laravel.com/docs/wire-poll
54+
*/
55+
'poll' => [
56+
'enabled' => false,
57+
58+
'options' => [
59+
'time' => '15s',
60+
'keepAlive' => false,
61+
'viewportVisible' => false,
62+
],
63+
],
4964
];

0 commit comments

Comments
 (0)