Set custom data on RepeatableEntry

I need to set custom data on RepeatableEntry:
Tables\Actions\ViewAction::make('generateNewsProd') //Esto para produccion
->hidden(fn(Model $record) => !$record->notifiedPapers)
->label('Generar Noticias')
->modalAutofocus(false)
->infolist([
RepeatableEntry::make('papers')
->label('Noticias Procesadas')
->schema([
TextEntry::make('title')->label('Título'),
TextEntry::make('description')->label('Resumen'),
TextEntry::make('notified')->label('Notificado'),
// TextEntry::make('additional_data')->label('Datos Adicionales'), // Campo adicional
Actions::make([
Action::make('generateNews')
->label('Generar Noticia')
->action(fn(array $data) => dd($data)) // Procesar la noticia
->icon('heroicon-o-document-text')
])
])
->default(fn (Model $record) => $record->getProcessedNews())
])
Tables\Actions\ViewAction::make('generateNewsProd') //Esto para produccion
->hidden(fn(Model $record) => !$record->notifiedPapers)
->label('Generar Noticias')
->modalAutofocus(false)
->infolist([
RepeatableEntry::make('papers')
->label('Noticias Procesadas')
->schema([
TextEntry::make('title')->label('Título'),
TextEntry::make('description')->label('Resumen'),
TextEntry::make('notified')->label('Notificado'),
// TextEntry::make('additional_data')->label('Datos Adicionales'), // Campo adicional
Actions::make([
Action::make('generateNews')
->label('Generar Noticia')
->action(fn(array $data) => dd($data)) // Procesar la noticia
->icon('heroicon-o-document-text')
])
])
->default(fn (Model $record) => $record->getProcessedNews())
])
I'm returning an array with the title, description, and notified fields, but the data isn't displayed. The total is loading correctly, though.
11 Replies
toeknee
toeknee2w ago
So 1. ->default() only works on creation not editing. What do you mean totla? I can't see a total there?
Daniel Reales
Daniel RealesOP2w ago
I mean that in the view it shows me N elements (that really exist) but it does not set the values.
Daniel Reales
Daniel RealesOP2w ago
No description
Daniel Reales
Daniel RealesOP2w ago
It's a ViewAction:
Tables\Actions\ViewAction::make('generateNewsProd')
->hidden(fn(Model $record) => !$record->notifiedPapers)
->label('Generar Noticias')
->modalAutofocus(false)
->infolist([
RepeatableEntry::make('papers')
->label('Noticias Procesadas')
->state(fn (Model $record) =>
collect($record->getProcessedNews())->map(function ($item) {
return [
'title' => $item['title'],
'description' => $item['description'],
'notified' => $item['notified']
];
})->toArray()
)
->schema([
TextEntry::make('title')->label('Titulo'),
TextEntry::make('description')->label('Resumen'),
TextEntry::make('notified')->label('Notificado'),
// TextEntry::make('additional_data')->label('Datos Adicionales'), // Campo adicional
Actions::make([
Action::make('generateNews')
->label('Generar Noticia')
->action(fn(array $data) => dd($data)) // Procesar la noticia
->icon('heroicon-o-document-text')
])
])
])
Tables\Actions\ViewAction::make('generateNewsProd')
->hidden(fn(Model $record) => !$record->notifiedPapers)
->label('Generar Noticias')
->modalAutofocus(false)
->infolist([
RepeatableEntry::make('papers')
->label('Noticias Procesadas')
->state(fn (Model $record) =>
collect($record->getProcessedNews())->map(function ($item) {
return [
'title' => $item['title'],
'description' => $item['description'],
'notified' => $item['notified']
];
})->toArray()
)
->schema([
TextEntry::make('title')->label('Titulo'),
TextEntry::make('description')->label('Resumen'),
TextEntry::make('notified')->label('Notificado'),
// TextEntry::make('additional_data')->label('Datos Adicionales'), // Campo adicional
Actions::make([
Action::make('generateNews')
->label('Generar Noticia')
->action(fn(array $data) => dd($data)) // Procesar la noticia
->icon('heroicon-o-document-text')
])
])
])
toeknee
toeknee2w ago
I've not used that particular function, but I suspect it's how you are connecting the state. View action will load the data from the record. On the view, papers will be the relationship, if you remove the state and ensure the papers relationchip of the record is returned correctly, does that work?
Daniel Reales
Daniel RealesOP2w ago
The thing is, I don't really have a relationship (I guess that's why it doesn't work), I have a custom array of elements that I get from a relationship.
toeknee
toeknee2w ago
But you do? If you are getProcessedNews that is the relationship? no?
Daniel Reales
Daniel RealesOP2w ago
no. this is a function:
public function getProcessedNews(): array
{
return $this->notifiedPapers
->flatMap(function ($notifiedPaper) {
return $notifiedPaper->processedPapers
->map(fn ($processedPaper) => [
'title' => (string) $processedPaper->paper_title,
'description' => (string) $processedPaper->paper_description,
'notified' => true,
]);
})
->merge(
$this->processedPapers()
->whereNotIn('paper_uid', $this->notifiedPapers->pluck('paper_uid'))
->get()
->map(fn ($processedPaper) => [
'title' => (string) $processedPaper->paper_title,
'description' => (string) $processedPaper->paper_description,
'notified' => false,
])
)
->sortByDesc('notified')
->values()
->toArray();
}
public function getProcessedNews(): array
{
return $this->notifiedPapers
->flatMap(function ($notifiedPaper) {
return $notifiedPaper->processedPapers
->map(fn ($processedPaper) => [
'title' => (string) $processedPaper->paper_title,
'description' => (string) $processedPaper->paper_description,
'notified' => true,
]);
})
->merge(
$this->processedPapers()
->whereNotIn('paper_uid', $this->notifiedPapers->pluck('paper_uid'))
->get()
->map(fn ($processedPaper) => [
'title' => (string) $processedPaper->paper_title,
'description' => (string) $processedPaper->paper_description,
'notified' => false,
])
)
->sortByDesc('notified')
->values()
->toArray();
}
toeknee
toeknee2w ago
Right ok, if you dd on your collect what do you get in the state
Daniel Reales
Daniel RealesOP2w ago
I have this: array:137 [▼ // app/Filament/Admin/Resources/ExecutionResource.php:123 0 => array:3 [▼ "title" => "Zukünftige Regierung plant Elektroauto-Förderung" "description" => " Der Preisabstand zwischen neuen E-Autos und Verbrennern sinkt. Jetzt hat die zukünftige Bundesregierung eine E-Auto-Förderung angekündigt. Auch aus anderen Grün ▶ " "notified" => true ] 1 => array:3 [▶]
toeknee
toeknee6d ago
Yeah it looks good and i tested it too, it would apear at present it only works with eloquent results.

Did you find this page helpful?