Files
autocrm/app/Filament/Tenant/Pages/AiAssistant.php
T
Vasyka 78ff8d4b43 feat: i18n on Filament admin sidebar — 54 resources/pages translated
User screenshots showed the tenant admin panel (Filament) had sidebar
labels stuck in Romanian even when switching to Russian: 'Cereri',
'Calendar vizual', 'Atelierul meu', 'KPI mecanici', 'Fișe lucru',
'Norme-ore', 'Tehnicieni', 'Șabloane servicii', 'Depozite', 'Scaner',
'Depozit', 'VIN-căutare', 'Furnizori', 'Achiziții', 'Procentaj',
'Coeficienți preț', plus all group headers.

Root cause: every Filament Resource and Page had static properties
'protected static ?string $navigationLabel = "Fișe lucru"' — string
literals baked into class definitions. Static properties don't run
through the translation layer.

Fix in two parts:

1. New translation files with 52 label keys + 12 group keys:
   - lang/ro/nav.php — Romanian (identity)
   - lang/ru/nav.php — full Russian translations (Заказ-наряды,
     Автомобили, Клиенты, Календарь, Моя мастерская, Механики KPI,
     Настройки, etc.)
   - lang/en/nav.php — English translations (Work orders, Vehicles,
     Clients, Calendar, My workshop, Mechanic KPI, Settings, etc.)

   Keyed by the Romanian original so lookups map 1:1 —
   'nav.label.Fișe lucru' returns 'Заказ-наряды' in RU, 'Work orders'
   in EN, 'Fișe lucru' in RO.

2. Python transformer converted 54 files:
   - 33 Filament Tenant Resources
   - 15 Filament Tenant Pages
   - 4 Filament Central Resources
   - 1 Filament Central Page
   - 1 Widget

   Each 'protected static ?string $navigationLabel = "X";' became
   'public static function getNavigationLabel(): string { return
   __("nav.label.X"); }'. Same treatment for $navigationGroup.

Cleanup: 6 resources already had manually-added getNavigationLabel
methods from an earlier partial effort — those used flat JSON keys
(__("Cereri")) that never resolved. Deduped so only the nav.label.*
version remains.

Untouched (intentional):
- $modelLabel / $pluralModelLabel (used in breadcrumbs and headings —
  still hardcoded, next tier of work)
- Section titles, column headers, form field labels (medium priority)
- $navigationSort (numeric, no translation needed)
- $navigationIcon (icon reference)

Suite: 306 passed (853 assertions). Unchanged.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-07-13 20:41:55 +00:00

124 lines
3.3 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 = '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');
}
}