## Summary <!-- Kurz: Was ändert sich und warum? --> ## Spec-Driven Development (SDD) - [ ] Es gibt eine Spec unter `specs/<NNN>-<feature>/` - [ ] Enthaltene Dateien: `plan.md`, `tasks.md`, `spec.md` - [ ] Spec beschreibt Verhalten/Acceptance Criteria (nicht nur Implementation) - [ ] Wenn sich Anforderungen während der Umsetzung geändert haben: Spec/Plan/Tasks wurden aktualisiert ## Implementation - [ ] Implementierung entspricht der Spec - [ ] Edge cases / Fehlerfälle berücksichtigt - [ ] Keine unbeabsichtigten Änderungen außerhalb des Scopes ## Tests - [ ] Tests ergänzt/aktualisiert (Pest/PHPUnit) - [ ] Relevante Tests lokal ausgeführt (`./vendor/bin/sail artisan test` oder `php artisan test`) ## Migration / Config / Ops (falls relevant) - [ ] Migration(en) enthalten und getestet - [ ] Rollback bedacht (rückwärts kompatibel, sichere Migration) - [ ] Neue Env Vars dokumentiert (`.env.example` / Doku) - [ ] Queue/cron/storage Auswirkungen geprüft ## UI (Filament/Livewire) (falls relevant) - [ ] UI-Flows geprüft - [ ] Screenshots/Notizen hinzugefügt ## Notes <!-- Links, Screenshots, Follow-ups, offene Punkte --> Co-authored-by: Ahmed Darrazi <ahmeddarrazi@adsmac.local> Reviewed-on: #4
139 lines
7.6 KiB
PHP
139 lines
7.6 KiB
PHP
<div class="fi-section">
|
|
@if($version->assignments && count($version->assignments) > 0)
|
|
<div class="rounded-lg bg-white shadow-sm ring-1 ring-gray-950/5 dark:bg-gray-900 dark:ring-white/10">
|
|
<div class="px-6 py-4">
|
|
<div class="flex items-center justify-between">
|
|
<div>
|
|
<h3 class="text-base font-semibold leading-6 text-gray-950 dark:text-white">
|
|
Assignments
|
|
</h3>
|
|
<p class="mt-1 text-sm text-gray-500 dark:text-gray-400">
|
|
Captured with this version on {{ $version->captured_at->format('M d, Y H:i') }}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="border-t border-gray-200 px-6 py-4 dark:border-white/10">
|
|
<!-- Summary -->
|
|
<div class="mb-4">
|
|
<h4 class="text-sm font-medium text-gray-950 dark:text-white">Summary</h4>
|
|
<p class="mt-1 text-sm text-gray-600 dark:text-gray-400">
|
|
{{ count($version->assignments) }} assignment(s)
|
|
@php
|
|
$hasOrphaned = $version->metadata['has_orphaned_assignments'] ?? false;
|
|
@endphp
|
|
@if($hasOrphaned)
|
|
<span class="text-warning-600 dark:text-warning-400">(includes orphaned groups)</span>
|
|
@endif
|
|
</p>
|
|
</div>
|
|
|
|
<!-- Scope Tags -->
|
|
@php
|
|
$scopeTags = $version->scope_tags['names'] ?? [];
|
|
@endphp
|
|
@if(!empty($scopeTags))
|
|
<div class="mb-4">
|
|
<h4 class="text-sm font-medium text-gray-950 dark:text-white">Scope Tags</h4>
|
|
<div class="mt-2 flex flex-wrap gap-2">
|
|
@foreach($scopeTags as $tag)
|
|
<span class="inline-flex items-center rounded-md bg-primary-50 px-2 py-1 text-xs font-medium text-primary-700 ring-1 ring-inset ring-primary-700/10 dark:bg-primary-400/10 dark:text-primary-400 dark:ring-primary-400/30">
|
|
{{ $tag }}
|
|
</span>
|
|
@endforeach
|
|
</div>
|
|
</div>
|
|
@endif
|
|
|
|
<!-- Assignment Details -->
|
|
<div>
|
|
<h4 class="text-sm font-medium text-gray-950 dark:text-white">Assignment Details</h4>
|
|
<div class="mt-2 space-y-2">
|
|
@foreach($version->assignments as $assignment)
|
|
@php
|
|
$target = $assignment['target'] ?? [];
|
|
$type = $target['@odata.type'] ?? '';
|
|
$typeKey = strtolower((string) $type);
|
|
$intent = $assignment['intent'] ?? 'apply';
|
|
|
|
$typeName = match (true) {
|
|
str_contains($typeKey, 'exclusiongroupassignmenttarget') => 'Exclude group',
|
|
str_contains($typeKey, 'groupassignmenttarget') => 'Include group',
|
|
str_contains($typeKey, 'alllicensedusersassignmenttarget') => 'All Users',
|
|
str_contains($typeKey, 'alldevicesassignmenttarget') => 'All Devices',
|
|
default => 'Unknown',
|
|
};
|
|
|
|
$groupId = $target['groupId'] ?? null;
|
|
$groupName = $target['group_display_name'] ?? null;
|
|
$groupOrphaned = $target['group_orphaned'] ?? ($version->metadata['has_orphaned_assignments'] ?? false);
|
|
$filterId = $target['deviceAndAppManagementAssignmentFilterId'] ?? null;
|
|
$filterTypeRaw = strtolower((string) ($target['deviceAndAppManagementAssignmentFilterType'] ?? 'none'));
|
|
$filterType = $filterTypeRaw !== '' ? $filterTypeRaw : 'none';
|
|
$filterName = $target['assignment_filter_name'] ?? null;
|
|
$filterLabel = $filterName ?? $filterId;
|
|
@endphp
|
|
|
|
<div class="flex items-center gap-2 text-sm">
|
|
<span class="text-gray-600 dark:text-gray-400">•</span>
|
|
<span class="font-medium text-gray-900 dark:text-white">{{ $typeName }}</span>
|
|
|
|
@if($groupId)
|
|
<span class="text-gray-600 dark:text-gray-400">:</span>
|
|
@if($groupOrphaned)
|
|
<span class="text-warning-600 dark:text-warning-400">
|
|
⚠️ Unknown group (ID: {{ $groupId }})
|
|
</span>
|
|
@elseif($groupName)
|
|
<span class="text-gray-700 dark:text-gray-300">
|
|
{{ $groupName }}
|
|
</span>
|
|
<span class="text-xs text-gray-500 dark:text-gray-500">
|
|
({{ $groupId }})
|
|
</span>
|
|
@else
|
|
<span class="text-gray-700 dark:text-gray-300">
|
|
Group ID: {{ $groupId }}
|
|
</span>
|
|
@endif
|
|
@endif
|
|
|
|
@if($filterLabel)
|
|
<span class="text-xs text-gray-500 dark:text-gray-500">
|
|
Filter{{ $filterType !== 'none' ? " ({$filterType})" : '' }}: {{ $filterLabel }}
|
|
</span>
|
|
@endif
|
|
|
|
<span class="ml-auto text-xs text-gray-500 dark:text-gray-500">({{ $intent }})</span>
|
|
</div>
|
|
@endforeach
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@else
|
|
<div class="rounded-lg bg-white shadow-sm ring-1 ring-gray-950/5 dark:bg-gray-900 dark:ring-white/10">
|
|
<div class="px-6 py-4">
|
|
<h3 class="text-base font-semibold leading-6 text-gray-950 dark:text-white">
|
|
Assignments
|
|
</h3>
|
|
<p class="mt-2 text-sm text-gray-500 dark:text-gray-400">
|
|
Assignments were not captured for this version.
|
|
</p>
|
|
@php
|
|
$hasBackupItem = $version->policy->backupItems()
|
|
->whereNotNull('assignments')
|
|
->where('created_at', '<=', $version->captured_at)
|
|
->exists();
|
|
@endphp
|
|
@if($hasBackupItem)
|
|
<p class="mt-2 text-sm text-gray-600 dark:text-gray-400">
|
|
💡 Assignment data may be available in related backup items.
|
|
</p>
|
|
@endif
|
|
</div>
|
|
</div>
|
|
@endif
|
|
</div>
|