Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add the ability to use your own broadcast event #300

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions config/musonza_chat.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,15 @@
*/
'broadcasts' => false,

/*
* This will allow you to specify your own broadcast class incase you need to modify the payload for the event
* Example:
* Event: App\Events\ChatMessageWasSent
*
* */

'sent_message_event' => null,

/*
* Specify the fields that you want to return each time for the sender.
* If not set or empty, all the columns for the sender will be returned
Expand Down
3 changes: 2 additions & 1 deletion src/Models/Message.php
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,8 @@ public function send(Conversation $conversation, string $body, Participation $pa
]);

if (Chat::broadcasts()) {
broadcast(new MessageWasSent($message))->toOthers();
$class = Chat::sentMessageEvent() ? Chat::sentMessageEvent() : MessageWasSent::class;
broadcast(new $class($message))->toOthers();
}

$this->createNotifications($message);
Expand Down