Skip to content

Commit 7562ff3

Browse files
authored
Merge pull request #28 from mikebarlow/gregorysouzasilva/main
Livewire 3 update
2 parents bbd9ffb + 9792969 commit 7562ff3

File tree

8 files changed

+66
-35
lines changed

8 files changed

+66
-35
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: ['7.4', '8.0', '8.1']
15+
php: ['8.1', '8.2']
1616

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

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
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.0.0] - 2023-09-11
7+
8+
* Updated PHP requirement to 8.1 and above (7.4 and 8.0 dropped) [PR#28](https://github.com/mikebarlow/megaphone/pull/28)
9+
* Updated to Livewire 3 [PR#28](https://github.com/mikebarlow/megaphone/pull/28)
10+
* Updated Testbench and Pest [PR#28](https://github.com/mikebarlow/megaphone/pull/28)
11+
612
## [1.2.0] - 2023-02-25
713

814
* 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)

README.md

+29-8
Original file line numberDiff line numberDiff line change
@@ -19,23 +19,48 @@ Before using Megaphone, a demo is available for you to view and try the Bell Ico
1919

2020
[View the Megaphone Demo](https://megaphone.mikebarlow.co.uk)
2121

22+
## Upgrade from 1.x
23+
24+
Megaphone has been updated to support Livewire 3. This also means PHP requirements have been updated to match the requirements of Livewire 3 which means you need to be running PHP 8.1 or above (PHP 7.4 and 8.0 are no longer supported).
25+
Then make sure you follow the [Livewire upgrade guide](https://livewire.laravel.com/docs/upgrading).
26+
27+
Update your Megaphone requirement to 2.* by running the following command in your terminal.
28+
29+
```bash
30+
composer require mbarlow/megaphone "^2.0"
31+
```
32+
33+
### AlpineJS
34+
35+
If you previously included AlpineJS specifically for Megaphone then you can now remove that from your JS include because it is now bundled with Livewire.
36+
37+
### Template Changes
38+
39+
If you are using the Admin component and are running with the Megaphone views published to your resources folder, you may wish to make these manual changes.
40+
41+
Changes are all to `create-announcement.blade.php` which, if published, should be found at `resources/views/vendor/megaphone/admin/create-announcement.blade.php`.
42+
43+
Find `wire:model="type"` and replace it with `wire:model.live="type"`.
44+
45+
Find all instances of `wire:model.lazy` and replace it with `wire:model.blur`.
46+
2247
## Installation
2348

2449
Simply require the package via composer into your Laravel app.
2550

2651
composer require mbarlow/megaphone
2752

28-
If you aren't already using Laravel Livewire in your app, Megaphone should include the package via its dependency. Once composer has finished installing, make sure you run the [Livewire installation steps](https://laravel-livewire.com/docs/2.x/installation).
53+
If you aren't already using Laravel Livewire in your app, Megaphone should include the package via its dependency. Once composer has finished installing, make sure you run the [Livewire installation steps](https://livewire.laravel.com/docs/installation).
2954

30-
Once Livewire has been installed, if you haven't already, ensure the [Laravel Database Notifications have been installed](https://laravel.com/docs/9.x/notifications#database-prerequisites) into your app.
55+
Once Livewire has been installed, if you haven't already, ensure the [Laravel Database Notifications have been installed](https://laravel.com/docs/10.x/notifications#database-prerequisites) into your app.
3156

3257
```bash
3358
php artisan notifications:table
3459

3560
php artisan migrate
3661
```
3762

38-
This should create database table used to house your notifications. Next, make sure your User model (or relevant alternative model) has the notifiable trait added as mentioned in the [Laravel Documentation](https://laravel.com/docs/9.x/notifications#using-the-notifiable-trait) and also add the `HasMegaphone` trait provided by Megaphone.
63+
This should create database table used to house your notifications. Next, make sure your User model (or relevant alternative model) has the notifiable trait added as mentioned in the [Laravel Documentation](https://laravel.com/docs/10.x/notifications#using-the-notifiable-trait) and also add the `HasMegaphone` trait provided by Megaphone.
3964

4065
```php
4166
<?php
@@ -79,10 +104,6 @@ As default, Megaphone uses TailwindCSS to style the Bell Icon and the notificati
79104
<link rel="stylesheet" href="{{ asset('vendor/megaphone/css/megaphone.css') }}">
80105
```
81106

82-
### AlpineJS
83-
84-
Megaphone requires AlpineJS to power some of its interactivity. If you are already using AlpineJS within your application, you can skip this step. If not you will need to [include AlpineJS into your application](https://alpinejs.dev/essentials/installation) for Megaphone to function properly.
85-
86107
## Sending Notifications
87108

88109
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.
@@ -100,7 +121,7 @@ $notification = new \MBarlow\Megaphone\Types\Important(
100121
);
101122
```
102123

103-
Now, simply notify the required user of the notification as per the [Laravel Documentation](https://laravel.com/docs/9.x/notifications#using-the-notifiable-trait).
124+
Now, simply notify the required user of the notification as per the [Laravel Documentation](https://laravel.com/docs/10.x/notifications#using-the-notifiable-trait).
104125

105126
```php
106127
$user = \App\Models\User::find(1);

composer.json

+7-5
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,16 @@
1212
}
1313
],
1414
"require": {
15-
"php": "^7.4 || ^8.0",
16-
"livewire/livewire": "^2.0"
15+
"php": "^8.1",
16+
"livewire/livewire": "^3.0.1"
1717
},
1818
"require-dev": {
1919
"squizlabs/php_codesniffer": "^3.7",
20-
"pestphp/pest-plugin-livewire": "^1.0",
21-
"orchestra/testbench": "^6.0",
22-
"pestphp/pest-plugin-faker": "^1.0"
20+
"pestphp/pest-plugin-livewire": "^2.1",
21+
"orchestra/testbench": "^8.10",
22+
"pestphp/pest-plugin-faker": "^2.0",
23+
"brianium/paratest": "^7.2",
24+
"pestphp/pest": "2.16"
2325
},
2426
"autoload": {
2527
"psr-4": {

phpunit.xml

+12-11
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" colors="true" bootstrap="vendor/autoload.php" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
3-
<coverage>
4-
<include>
5-
<directory suffix=".php">src/</directory>
6-
</include>
7-
</coverage>
8-
<testsuites>
9-
<testsuite name="mbarlow/megaphone tests">
10-
<directory>tests/</directory>
11-
</testsuite>
12-
</testsuites>
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" colors="true" bootstrap="vendor/autoload.php" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.3/phpunit.xsd">
3+
<coverage/>
4+
<testsuites>
5+
<testsuite name="mbarlow/megaphone tests">
6+
<directory>tests/</directory>
7+
</testsuite>
8+
</testsuites>
9+
<source>
10+
<include>
11+
<directory suffix=".php">src/</directory>
12+
</include>
13+
</source>
1314
</phpunit>

resources/views/admin/create-announcement.blade.php

+5-5
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<div class="mb-6">
1313
<label for="type" class="block mb-2 text-sm font-medium text-gray-900">{{ __('Type') }}*</label>
1414
<select id="type" class="bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded-lg focus:ring-blue-500 focus:border-blue-500 block w-full p-2.5
15-
@error('type') border-red-500 @enderror" wire:model="type">
15+
@error('type') border-red-500 @enderror" wire:model.live="type">
1616
<option>{{ __('Select Type') }}</option>
1717
@foreach ($notifTypes as $type => $name)
1818
<option value="{{ $type }}">
@@ -24,22 +24,22 @@
2424

2525
<div class="mb-6">
2626
<label for="title" class="block mb-2 text-sm font-medium text-gray-900">{{ __('Title') }}*</label>
27-
<input type="text" id="title" class="bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded-lg focus:ring-blue-500 focus:border-blue-500 block w-full p-2.5 @error('title') border-red-500 @enderror" wire:model.lazy="title" >
27+
<input type="text" id="title" class="bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded-lg focus:ring-blue-500 focus:border-blue-500 block w-full p-2.5 @error('title') border-red-500 @enderror" wire:model.blur="title" >
2828
</div>
2929

3030
<div class="mb-6">
3131
<label for="body" class="block mb-2 text-sm font-medium text-gray-900">{{ __('Body') }}*</label>
32-
<input type="text" id="body" class="bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded-lg focus:ring-blue-500 focus:border-blue-500 block w-full p-2.5 @error('body') border-red-500 @enderror" wire:model.lazy="body" >
32+
<input type="text" id="body" class="bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded-lg focus:ring-blue-500 focus:border-blue-500 block w-full p-2.5 @error('body') border-red-500 @enderror" wire:model.blur="body" >
3333
</div>
3434

3535
<div class="mb-6">
3636
<label for="link" class="block mb-2 text-sm font-medium text-gray-900">{{ __('Link URL') }}</label>
37-
<input type="text" id="link" class="bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded-lg focus:ring-blue-500 focus:border-blue-500 block w-full p-2.5" wire:model.lazy="link" >
37+
<input type="text" id="link" class="bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded-lg focus:ring-blue-500 focus:border-blue-500 block w-full p-2.5" wire:model.blur="link" >
3838
</div>
3939

4040
<div class="mb-6">
4141
<label for="linkText" class="block mb-2 text-sm font-medium text-gray-900">{{ __('Link Text') }}</label>
42-
<input type="text" id="linkText" class="bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded-lg focus:ring-blue-500 focus:border-blue-500 block w-full p-2.5" wire:model.lazy="linkText">
42+
<input type="text" id="linkText" class="bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded-lg focus:ring-blue-500 focus:border-blue-500 block w-full p-2.5" wire:model.blur="linkText">
4343
</div>
4444

4545
<button type="submit" class="text-white bg-blue-700 hover:bg-blue-800 focus:ring-4 focus:outline-none focus:ring-blue-300 font-medium rounded-lg text-sm w-full sm:w-auto px-5 py-2.5 text-center">{{ __('Send') }}</button>

tests/MegaphoneComponentTest.php

+3-2
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,10 @@
7272
);
7373
$user->unreadNotifications->first()->markAsRead();
7474

75+
7576
$this->livewire(Megaphone::class)
7677
->call('loadAnnouncements', $user)
77-
->assertSet('unread', $user->unreadNotifications()->get())
78+
->assertSet('unread', $user->announcements()->get()->whereNull('read_at'))
7879
->assertSet('announcements', $user->readNotifications);
7980
});
8081

@@ -95,7 +96,7 @@
9596

9697
$this->livewire(Megaphone::class)
9798
->call('markAsRead', $notification)
98-
->assertSet('unread', $user->unreadNotifications()->get())
99+
->assertSet('unread', $user->announcements()->get()->whereNull('read_at'))
99100
->assertSet('announcements', $user->readNotifications);
100101
});
101102

tests/Setup/TestCase.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
use Livewire\LivewireServiceProvider;
88
use MBarlow\Megaphone\MegaphoneServiceProvider;
99
use Orchestra\Testbench\TestCase as BaseTestCase;
10-
use function Pest\Faker\faker;
10+
use function Pest\Faker\fake;
1111

1212
class TestCase extends BaseTestCase
1313
{
@@ -22,7 +22,7 @@ protected function setUp(): void
2222

2323
protected function createTestUser(): User
2424
{
25-
$faker = faker();
25+
$faker = fake();
2626
$user = new User();
2727
$user->name = $faker->name;
2828
$user->email = $faker->email;
@@ -34,7 +34,7 @@ protected function createTestUser(): User
3434

3535
protected function createTestNotification($user, $notifClass)
3636
{
37-
$faker = faker();
37+
$faker = fake();
3838

3939
$notification = new $notifClass(
4040
$faker->sentence,

0 commit comments

Comments
 (0)