I'm using datatables and bootstrap's modal. In the datatables buttons, I added one extra button to add a new user, as this buttons are out of the livewire element, I added this script to the button:
$("body").on("click", "#agregar", function() { $("#createDataModal").modal("show"); Livewire.emit("openCreateModal");
This open the modal showing the form and runs the function openCreateModal in my livewire component.
When I click on save on my modal, it runs the function guardar() in my livewire component, but then the modal was not closing automatically, so I added a dispatchBrowserEvent in order to get the confirmation and run the script in my view to get the modal closed, but now I'm not getting the session variable 'sucess' updating, it's always showing as null, therefore, my sucess div in my view is never shown.... any ideas on how to handle this?
This is my livewire component:
public function guardar()
{
$validatedData = $this->validate([
'name' => ['required', 'max:50'],
'email' => ['required', 'email', 'max:50', Rule::unique('users', 'email')],
'phone' => 'required|numeric|digits:8',
'password' => ['required', 'min:5', 'max:20', 'confirmed'],
]);
$validatedData['password'] = bcrypt($validatedData['password']);
$user = User::create($validatedData);
$successMessage = 'El nuevo usuario se ha creado exitosamente.';
session()->flash('success', $successMessage );
$this->dispatchBrowserEvent('guardado', ['success' => $successMessage]);
}
protected $listeners = ['openCreateModal'];
public function openCreateModal()
{
$this->resetValidation();
$this->reset();
}
public function render()
{
$dataTable = (new UsersDataTable)->html();
return view('livewire.users', compact('dataTable'));
}
This is my view: https://paste.laravel.io/a8019886-6ce8-44b8-9f05-12c059501e8e
Thanks in advance!!!!
It seems that the issue you're facing is related to handling the modal closing and displaying the success message. You can modify your Livewire component and view to achieve the desired behavior by using emit and emitTo methods, and updating your view to listen for these events.
First, update your Livewire component to emit an event when the user is saved:
public function guardar()
{
// ...validation and user creation code
$successMessage = 'El nuevo usuario se ha creado exitosamente.';
session()->flash('success', $successMessage);
$this->emit('userSaved', ['success' => $successMessage]);
}
Next, update your view to listen for the userSaved event and close the modal when it's received. Also, update the script that listens for the guardado event to show the success message:
<!-- Add this script to your view -->
<script>
window.addEventListener('livewire:load', function () {
Livewire.on('userSaved', function (data) {
$("#createDataModal").modal("hide");
// Show the success message
let successDiv = document.getElementById('success-message');
successDiv.innerHTML = data.success;
successDiv.style.display = 'block';
});
});
</script>
Finally, update your view to display the success message:
<!-- Add this div to your view to display the success message -->
<div id="success-message" class="alert alert-success" role="alert" style="display: none;"></div>
By following these steps, you should be able to close the modal when the user is saved and display the success message properly.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community