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>
79 lines
3.9 KiB
PHP
79 lines
3.9 KiB
PHP
<x-filament-panels::page>
|
||
<style>
|
||
.ig-grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); }
|
||
.ig-card {
|
||
background: #fff; border: 1px solid #e5e7eb; border-radius: 12px;
|
||
padding: 20px; position: relative;
|
||
}
|
||
.dark .ig-card { background: #1f2937; border-color: #374151; }
|
||
.ig-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
|
||
.ig-icon {
|
||
width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
|
||
border-radius: 8px; font-size: 22px; color: #fff;
|
||
}
|
||
.ig-name { font-size: 15px; font-weight: 600; flex: 1; }
|
||
.ig-desc { font-size: 12px; color: #6b7280; margin-bottom: 16px; line-height: 1.5; }
|
||
|
||
.ig-toggle { display: flex; align-items: center; gap: 8px; }
|
||
.ig-toggle input[type=checkbox] { transform: scale(1.2); cursor: pointer; }
|
||
.ig-status { font-size: 11px; color: #6b7280; }
|
||
.ig-status.on { color: #059669; font-weight: 600; }
|
||
|
||
.ig-fields { margin-top: 12px; }
|
||
.ig-fld { margin-bottom: 10px; }
|
||
.ig-lbl { font-size: 11px; color: #6b7280; display: block; margin-bottom: 4px; }
|
||
.ig-input {
|
||
width: 100%; padding: 8px 10px; border: 1px solid #e5e7eb; border-radius: 6px;
|
||
font-size: 12px; font-family: inherit;
|
||
}
|
||
.dark .ig-input { background: #111827; border-color: #374151; color: #f9fafb; }
|
||
|
||
.ig-save {
|
||
margin-top: 8px; padding: 6px 16px; font-size: 12px;
|
||
background: #3b82f6; color: #fff; border: none; border-radius: 6px; cursor: pointer;
|
||
}
|
||
</style>
|
||
|
||
<div style="background: #fef3c7; border-left: 4px solid #f59e0b; padding: 12px 16px; border-radius: 6px; margin-bottom: 16px; font-size: 13px;">
|
||
ℹ️ <b>Status:</b> {{ __('aceste integrări sunt placeholder UI — le configurezi aici, dar implementarea actuală a fiecărui canal e proiect separat.
|
||
Pentru moment, valorile salvate sunt accesibile în cod via') }} <code>$tenant->settings['integrations']</code>.
|
||
</div>
|
||
|
||
<div class="ig-grid">
|
||
@foreach ($this->integrations() as $key => $meta)
|
||
@php
|
||
$cfg = $config[$key] ?? [];
|
||
$enabled = $cfg['enabled'] ?? false;
|
||
@endphp
|
||
<div class="ig-card">
|
||
<div class="ig-head">
|
||
<div class="ig-icon" style="background:{{ $meta['color'] }};">{{ $meta['icon'] }}</div>
|
||
<div class="ig-name">{{ $meta['name'] }}</div>
|
||
<label class="ig-toggle">
|
||
<input type="checkbox" {{ $enabled ? 'checked' : '' }}
|
||
wire:click="setStatus('{{ $key }}', {{ $enabled ? 'false' : 'true' }})">
|
||
<span class="ig-status {{ $enabled ? 'on' : '' }}">{{ $enabled ? 'Activ' : 'Inactiv' }}</span>
|
||
</label>
|
||
</div>
|
||
<div class="ig-desc">{{ $meta['description'] }}</div>
|
||
|
||
<div class="ig-fields">
|
||
@foreach ($meta['fields'] as $fkey => $fmeta)
|
||
<div class="ig-fld">
|
||
<label class="ig-lbl">{{ $fmeta['label'] }}</label>
|
||
<input
|
||
type="{{ $fmeta['type'] }}"
|
||
class="ig-input"
|
||
placeholder="{{ $fmeta['placeholder'] ?? '' }}"
|
||
wire:change="updateField('{{ $key }}', '{{ $fkey }}', $event.target.value)"
|
||
value="{{ $cfg[$fkey] ?? '' }}"
|
||
>
|
||
</div>
|
||
@endforeach
|
||
</div>
|
||
<button type="button" class="ig-save" wire:click="save">{{ __('Salvează') }}</button>
|
||
</div>
|
||
@endforeach
|
||
</div>
|
||
</x-filament-panels::page>
|