F
Filament4w ago
flex

Get the block's key when using ->extraItemActions()

Is there anyway to access the block item's key when using custom actions in extraItemActions()? I can access the items data with getItemState() but I would need to know, what type of block it is. Thank you!
4 Replies
ChesterS
ChesterS4w ago
What do you mean 'what type of block it is?' You can get the uuid in the $arguments parameter An example can be found here https://filamentphp.com/docs/3.x/forms/fields/repeater#adding-extra-item-actions-to-a-repeater
flex
flexOP3w ago
The uuid I have, yes. But each block has a key. I need the key.
No description
ChesterS
ChesterS3w ago
I guess you can try using $component->getChildComponents() ?
Builder::make('stuff')
->extraItemActions([
\Filament\Forms\Components\Actions\Action::make('testAction')
->icon('heroicon-m-user')
->action(function ($state, array $arguments, $component): void {
dd($component->getChildComponents()[0]->getName());
})
])
->blocks([
Block::make('test')
->schema([
TextInput::make('content'),
])
])
Builder::make('stuff')
->extraItemActions([
\Filament\Forms\Components\Actions\Action::make('testAction')
->icon('heroicon-m-user')
->action(function ($state, array $arguments, $component): void {
dd($component->getChildComponents()[0]->getName());
})
])
->blocks([
Block::make('test')
->schema([
TextInput::make('content'),
])
])
flex
flexOP3w ago
The trick for me was using $state[ $arguments['item']]

Did you find this page helpful?