How to set custom data to RepeatableEntry inside infolist?

I'm just started with Filament and don't understand key concepts how to build anything. I have a simple View page for my resource, data came from Eloquent (MySQL), but extra data I need is from Service (ElasticSearch inside with some logic behind). How to deal with that? $messages is simple array of key->value (type, from...) and now all TextEntry are empty.
class ViewConversation extends ViewRecord
{
protected static string $resource = ConversationResource::class;

public function infolist(Infolist $infolist): Infolist
{
/** @var ESStorage $es */
$es = app(ESStorage::class);

$messages = $es->getConversationHistory($this->record->bot_id, $this->record->id);

$messagesEntry = RepeatableEntry::make('messages')
->default($messages)
->schema([
TextEntry::make('type'),
TextEntry::make('from'),
TextEntry::make('timestamp'),
TextEntry::make('message'),
]);

return parent::infolist($infolist)->schema([
Section::make('Details')->schema([
TextEntry::make('id'),
TextEntry::make('bot.name')->url(fn() => ChatbotResource::getUrl('edit', [$this->record->bot_id])),
TextEntry::make('created_at')->dateTime(),
]),
$messagesEntry,
]);
}
}
class ViewConversation extends ViewRecord
{
protected static string $resource = ConversationResource::class;

public function infolist(Infolist $infolist): Infolist
{
/** @var ESStorage $es */
$es = app(ESStorage::class);

$messages = $es->getConversationHistory($this->record->bot_id, $this->record->id);

$messagesEntry = RepeatableEntry::make('messages')
->default($messages)
->schema([
TextEntry::make('type'),
TextEntry::make('from'),
TextEntry::make('timestamp'),
TextEntry::make('message'),
]);

return parent::infolist($infolist)->schema([
Section::make('Details')->schema([
TextEntry::make('id'),
TextEntry::make('bot.name')->url(fn() => ChatbotResource::getUrl('edit', [$this->record->bot_id])),
TextEntry::make('created_at')->dateTime(),
]),
$messagesEntry,
]);
}
}
2 Replies
Daniel Reales
Daniel Reales2w ago
Were you able to solve it?
toeknee
toeknee2w ago
So, default is for creation only not editing etc. You need to form fill for that data. So: you can use getStateUsing() which then fills the messages with an array of data. or extend the mount method and set the data manually i.e.
public function mount(int | string $record): void
{
$this->record = $this->resolveRecord($record);
$this->record->messages = MyMessagesArray;

$this->authorizeAccess();

if (! $this->hasInfolist()) {
$this->fillForm();
}
}
public function mount(int | string $record): void
{
$this->record = $this->resolveRecord($record);
$this->record->messages = MyMessagesArray;

$this->authorizeAccess();

if (! $this->hasInfolist()) {
$this->fillForm();
}
}

Did you find this page helpful?