Files
autocrm/app/Filament/Tenant/Pages/AiAssistant.php
T
Vasyka f7fc69077b feat(i18n): wrap 1103 hardcoded UI strings across Filament with __()
- Convert static $modelLabel/$pluralModelLabel/$title to getter methods
- Wrap ->label()/->placeholder()/->helperText()/->description()/->title()/->body() args
- Wrap Section::make()/Fieldset::make()/Notification::make()->title() args
- Fix RelationManagers::getTitle() signature to match parent (Model, string)
- Fix Pages::getTitle() to instance method (BasePage::getTitle is non-static)
- Extend lang/ru.json + lang/en.json with 700+ common terms; identity fallback for the rest
- Remove duplicate getters in 5 resources that had manual getModelLabel already

All 306 tests pass. Missing translations fall back to the RO key so the UI never breaks.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-07-15 05:04:24 +00:00

129 lines
3.4 KiB
PHP

<?php
namespace App\Filament\Tenant\Pages;
use App\Models\Tenant\AiChat;
use App\Services\Ai\AiAssistantService;
use App\Tenancy\TenantManager;
use Filament\Pages\Page;
use Livewire\Attributes\Url;
class AiAssistant extends Page
{
protected static string|\BackedEnum|null $navigationIcon = 'heroicon-o-sparkles';
public static function getNavigationLabel(): string
{
return __('nav.label.Asistent AI');
}
public static function getNavigationGroup(): ?string
{
return __('nav.group.Analiză');
}
protected static ?int $navigationSort = 71;
protected static ?string $title = null;
public function getTitle(): string
{
return __('Asistent AI');
}
protected string $view = 'filament.tenant.pages.ai-assistant';
public ?int $chatId = null;
public string $newMessage = '';
public bool $loading = false;
public function mount(): void
{
// Use last chat for the user, or create a new one.
$userId = auth()->id();
$companyId = app(TenantManager::class)->currentId();
if (! $userId || ! $companyId) return;
$chat = AiChat::where('user_id', $userId)->latest('updated_at')->first();
if (! $chat) {
$chat = AiChat::create([
'company_id' => $companyId,
'user_id' => $userId,
'title' => 'Conversație nouă',
'provider' => $this->defaultProvider(),
]);
}
$this->chatId = $chat->id;
}
public function getChat(): ?AiChat
{
return $this->chatId ? AiChat::with('messages')->find($this->chatId) : null;
}
public function getChats()
{
return AiChat::where('user_id', auth()->id())
->latest('updated_at')
->limit(20)
->get();
}
public function getUsage(): array
{
return app(AiAssistantService::class)->monthlyUsage();
}
public function newChat(): void
{
$chat = AiChat::create([
'company_id' => app(TenantManager::class)->currentId(),
'user_id' => auth()->id(),
'title' => 'Conversație nouă',
'provider' => $this->defaultProvider(),
]);
$this->chatId = $chat->id;
$this->newMessage = '';
}
public function selectChat(int $id): void
{
$chat = AiChat::where('user_id', auth()->id())->where('id', $id)->first();
if ($chat) $this->chatId = $chat->id;
}
public function deleteChat(int $id): void
{
AiChat::where('user_id', auth()->id())->where('id', $id)->delete();
if ($this->chatId === $id) {
$this->chatId = AiChat::where('user_id', auth()->id())->latest('updated_at')->value('id');
if (! $this->chatId) $this->newChat();
}
}
public function send(): void
{
$msg = trim($this->newMessage);
if ($msg === '' || ! $this->chatId) return;
$this->loading = true;
$this->newMessage = '';
$chat = AiChat::find($this->chatId);
if (! $chat) { $this->loading = false; return; }
try {
app(AiAssistantService::class)->ask($chat, $msg);
} finally {
$this->loading = false;
}
}
protected function defaultProvider(): string
{
$tenant = app(TenantManager::class)->current();
return ($tenant?->settings['ai']['default_provider'] ?? 'claude');
}
}