Performance issue with BulkAction : selectedRecords (only IDs, not Eloquent?)
Hi guys, I'm working on a Filament app and I need to add some exports features. We have a lot of tables and data, so both the official Filament Export action and Dennis Koch package are not suitable for us.
I'm using Laravel Excel and DB Query without Eloquent, but I wish I could offer my users a way to filter the data before export them. For that, I'm trying to use BulkAction, however the
$selectedRecords
is an Eloquent collection and when using the Select All it makes my app crashes. Is that a way for the table select option to only retrieve an array of ID and not load the entire Eloquent collection?
I know this is a very specific request and maybe it's not possible, but I just want to be sure before switching to a custom solution.10 Replies
A possibility to fix it without ruling out Eloquent could be to use
chunk()
? Maybe it's already the case, idk.
Up βοΈDo you actually need the selection or would be searching/filtering okay? Then you could use a table header action and use the table query.
I think you can also access the property on the livewire component directly
The searching/filtering could be enough. I'll try this, thanks !
Okay it works like that, I will try to combine that and your Filament Excel package π§
It's working but not sure this is optimal. I added this method in my
ListMissions
page :
It works, but I can't move the modifyQueryUsing()
inside my MissionExport
class because I can't access the livewire
component inside the setUp
method. Maybe a better solution would be to be able to use a callback on the exports()
method of the ExportAction
, and override the getQuery()
default behavior by passing a custom query, maybe as an optional parameter in the make()
method of the ExcelExport
class ?
What do you think @Dennis Koch ?I think
->fromTable()
should already do this.
but I can't move the modifyQueryUsing() inside my MissionExport class because I can't access the livewire component inside the setUp methodIt's just the same as you already did?
$this->modifyQueryUsing(fn ($livewire) => ...)
. Just put it in the setUp()
I'll try it next week and give you a feedback, thanks !
whats the feedback ? would like too hear it
It was better, but still too slow as my exports are including a lot of table. I ended up using FastExcel (https://github.com/rap2hpoutre/fast-excel) with Laravel Query Builder and it's way faster/easier to maintain. I could give you a code snippet if you want to see how I implemented it.
GitHub
GitHub - rap2hpoutre/fast-excel: π¦ Fast Excel import/export for Lar...
π¦ Fast Excel import/export for Laravel. Contribute to rap2hpoutre/fast-excel development by creating an account on GitHub.
Yes please bro . Thank you
Here is an exemple @khairulazmi_
Thanks man!