TenantAtlas/app/Support/Diff/DiffSummary.php
ahmido 0b5cadc234 feat: add shared diff presentation foundation (#170)
## Summary
- add a shared diff presentation layer under `app/Support/Diff` with deterministic row classification, summary derivation, and value stringification
- centralize diff-state badge semantics through `BadgeCatalog` with a dedicated `DiffRowStatusBadge`
- add reusable Filament diff partials, focused Pest coverage, and the full SpecKit artifact set for spec 141

## Testing
- `vendor/bin/sail artisan test --compact tests/Unit/Support/Diff/DiffRowStatusTest.php tests/Unit/Support/Diff/DiffRowTest.php tests/Unit/Support/Diff/DiffPresenterTest.php tests/Unit/Support/Diff/ValueStringifierTest.php tests/Unit/Badges/DiffRowStatusBadgeTest.php tests/Feature/Support/Diff/SharedDiffSummaryPartialTest.php tests/Feature/Support/Diff/SharedDiffRowPartialTest.php tests/Feature/Support/Diff/SharedInlineListDiffPartialTest.php`
- `vendor/bin/sail bin pint --dirty --format agent`

## Filament / Livewire Contract
- Livewire v4.0+ compliance: unchanged and respected; this feature adds presentation support only within the existing Filament v5 / Livewire v4 stack
- Provider registration: unchanged; no panel/provider changes were required, so `bootstrap/providers.php` remains the correct registration location
- Global search: unchanged; no Resource or global-search behavior was added or modified
- Destructive actions: none introduced in this feature
- Asset strategy: no new registered Filament assets; shared Blade partials rely on the existing asset pipeline and standard deploy step for `php artisan filament:assets` when assets change generally
- Testing coverage: presenter, DTOs, stringifier, badge semantics, summary partial, row partial, and inline-list partial are covered by focused Pest unit and feature tests

## Notes
- Spec checklist status is complete for `specs/141-shared-diff-presentation-foundation/checklists/requirements.md`
- This PR preserves specialized diff renderers and documents incremental adoption rather than forcing migration in the same change

Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de>
Reviewed-on: #170
2026-03-14 12:32:08 +00:00

100 lines
2.8 KiB
PHP

<?php
declare(strict_types=1);
namespace App\Support\Diff;
use InvalidArgumentException;
final readonly class DiffSummary
{
public int $changedCount;
public int $addedCount;
public int $removedCount;
public int $unchangedCount;
public bool $hasRows;
public ?string $message;
public function __construct(
int $changedCount = 0,
int $addedCount = 0,
int $removedCount = 0,
int $unchangedCount = 0,
?string $message = null,
) {
foreach ([
'changedCount' => $changedCount,
'addedCount' => $addedCount,
'removedCount' => $removedCount,
'unchangedCount' => $unchangedCount,
] as $field => $value) {
if ($value < 0) {
throw new InvalidArgumentException(sprintf('DiffSummary %s must be zero or greater.', $field));
}
}
$this->changedCount = $changedCount;
$this->addedCount = $addedCount;
$this->removedCount = $removedCount;
$this->unchangedCount = $unchangedCount;
$this->message = is_string($message) && trim($message) !== ''
? trim($message)
: null;
$this->hasRows = ($changedCount + $addedCount + $removedCount + $unchangedCount) > 0;
}
/**
* @param array<int, DiffRow> $rows
*/
public static function fromRows(array $rows, ?string $message = null): self
{
$counts = [
DiffRowStatus::Changed->value => 0,
DiffRowStatus::Added->value => 0,
DiffRowStatus::Removed->value => 0,
DiffRowStatus::Unchanged->value => 0,
];
foreach ($rows as $row) {
if (! $row instanceof DiffRow) {
continue;
}
$counts[$row->status->value]++;
}
if ($message === null) {
$message = match (true) {
$rows === [] => 'No diff data available.',
($counts[DiffRowStatus::Changed->value]
+ $counts[DiffRowStatus::Added->value]
+ $counts[DiffRowStatus::Removed->value]) === 0 => 'No changes detected.',
default => null,
};
}
return new self(
changedCount: $counts[DiffRowStatus::Changed->value],
addedCount: $counts[DiffRowStatus::Added->value],
removedCount: $counts[DiffRowStatus::Removed->value],
unchangedCount: $counts[DiffRowStatus::Unchanged->value],
message: $message,
);
}
public static function empty(?string $message = 'No diff data available.'): self
{
return new self(message: $message);
}
public function totalCount(): int
{
return $this->changedCount + $this->addedCount + $this->removedCount + $this->unchangedCount;
}
}