3911012c65
Broad sweep across the whole codebase:
- Blade views (39 files, 315 wraps): tag-text and title/placeholder/alt
attributes wrapped with {{ __() }}. Excludes scripts, styles, @php,
@verbatim, {{ }}, {!! !!}, comments to avoid touching interpolations.
- PHP (54 files, 179 wraps): array 'key' => 'RO value' patterns and
list items with diacritics wrapped with __(). Reverted __() inside
const arrays (PHP disallows non-constant expressions).
- Added 269 new keys to lang/{ru,en}.json (identity fallback for
unknowns → 161 human RU + 163 EN translations added for the most
common enums, stages, roles, statuses, payment methods, vehicle
categories, warehouse, portal, form actions.
Missing translations fall back to RO so the UI never breaks. All 306
tests pass; view cache compiles cleanly.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
88 lines
5.0 KiB
PHP
88 lines
5.0 KiB
PHP
<x-filament-panels::page>
|
|
<style>
|
|
.at-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; padding: 16px; }
|
|
.dark .at-card { background: #1f2937; border-color: #374151; }
|
|
.at-token {
|
|
background: #1f2937; color: #fbbf24;
|
|
font-family: ui-monospace, monospace; font-size: 12px;
|
|
padding: 12px; border-radius: 6px; word-break: break-all;
|
|
margin: 12px 0;
|
|
}
|
|
.at-table { width: 100%; border-collapse: collapse; font-size: 13px; }
|
|
.at-table th, .at-table td { text-align: left; padding: 8px 12px; border-bottom: 1px solid #f3f4f6; }
|
|
.dark .at-table th, .dark .at-table td { border-color: #374151; }
|
|
.at-table th { font-weight: 600; color: #6b7280; font-size: 11px; text-transform: uppercase; }
|
|
.at-empty { padding: 32px; text-align: center; color: #9ca3af; font-size: 13px; }
|
|
.at-revoke { background: #ef4444; color: white; padding: 4px 8px; border-radius: 4px; font-size: 11px; cursor: pointer; border: none; }
|
|
.at-revoke:hover { background: #dc2626; }
|
|
.at-doc { background: #eff6ff; border-left: 3px solid #3b82f6; padding: 12px 16px; border-radius: 4px; font-size: 12px; line-height: 1.6; }
|
|
.dark .at-doc { background: #1e3a8a40; }
|
|
.at-doc code { background: rgba(0,0,0,.06); padding: 2px 6px; border-radius: 3px; font-family: ui-monospace, monospace; font-size: 11px; }
|
|
.dark .at-doc code { background: rgba(255,255,255,.1); }
|
|
</style>
|
|
|
|
@if ($newToken)
|
|
<div class="at-card" style="border-color: #f59e0b; border-width: 2px;">
|
|
<h3 style="font-weight:600;font-size:15px;margin-bottom:6px;">{{ __('⚠ Token-ul tău nou (afișat o singură dată):') }}</h3>
|
|
<div class="at-token" x-data="{ copied: false }">
|
|
<span x-ref="t">{{ $newToken }}</span>
|
|
<button type="button"
|
|
@click="navigator.clipboard.writeText($refs.t.innerText); copied = true; setTimeout(() => copied = false, 2000)"
|
|
style="margin-left:12px;background:#3b82f6;color:white;padding:4px 10px;border:none;border-radius:4px;cursor:pointer;font-size:11px;">
|
|
<span x-show="!copied">{{ __('📋 Copiază') }}</span>
|
|
<span x-show="copied" x-cloak>✓ Copiat</span>
|
|
</button>
|
|
</div>
|
|
<button type="button" wire:click="dismissNew" style="font-size:12px;color:#6b7280;background:none;border:none;cursor:pointer;">
|
|
Am salvat token-ul, ascunde-l
|
|
</button>
|
|
</div>
|
|
@endif
|
|
|
|
<div class="at-card" style="margin-top:16px;">
|
|
@php $tokens = $this->getTokens(); @endphp
|
|
@if (empty($tokens))
|
|
<div class="at-empty">{{ __('Niciun token generat. Folosește butonul „Generează token" de sus.') }}</div>
|
|
@else
|
|
<table class="at-table">
|
|
<thead>
|
|
<tr>
|
|
<th>{{ __('Nume') }}</th>
|
|
<th>{{ __('Folosit ultima dată') }}</th>
|
|
<th>Creat</th>
|
|
<th>Permisiuni</th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@foreach ($tokens as $t)
|
|
<tr>
|
|
<td><b>{{ $t['name'] }}</b></td>
|
|
<td>{{ $t['last_used_at'] }}</td>
|
|
<td>{{ $t['created_at'] }}</td>
|
|
<td><code style="font-size:11px;">{{ $t['abilities'] }}</code></td>
|
|
<td>
|
|
<button type="button"
|
|
wire:click="deleteToken({{ $t['id'] }})"
|
|
wire:confirm="Revoci token-ul „{{ $t['name'] }}"? Apelurile API vor eșua imediat."
|
|
class="at-revoke">{{ __('Revocă') }}</button>
|
|
</td>
|
|
</tr>
|
|
@endforeach
|
|
</tbody>
|
|
</table>
|
|
@endif
|
|
</div>
|
|
|
|
<div class="at-doc" style="margin-top:16px;">
|
|
<b>{{ __('Cum folosești API-ul:') }}</b>
|
|
<ol style="margin:8px 0 0 20px;">
|
|
<li>{{ __('Obține token cu') }} <code>POST /api/v1/login</code> cu <code>email</code>+<code>password</code> JSON</li>
|
|
<li>{{ __('Sau generează unul aici (recomandat pentru integrări permanente)') }}</li>
|
|
<li>{{ __('Adaugă header') }} <code>Authorization: Bearer <token></code> la fiecare request</li>
|
|
<li>Endpoints disponibile: <code>/api/v1/clients</code>, <code>/api/v1/vehicles</code>, <code>/api/v1/work-orders</code> (GET, POST, PATCH, DELETE)</li>
|
|
<li>{{ __('Tot apelul trebuie făcut pe subdomain-ul tău:') }} <code>https://{{ tenant()?->slug ?? 'YOURSLUG' }}.service.mir.md/api/v1/...</code></li>
|
|
</ol>
|
|
</div>
|
|
</x-filament-panels::page>
|