# Theme Showreel

## Package docs status

This page is generated from package source documentation in `the Capell packages repository` and the checked-in manifest. Source documentation is not distribution status. Before running a Composer command, verify that the exact package and compatible 1.x release are available through public Packagist or the authenticated marketplace account.

| Field | Value |
| --- | --- |
| Composer package | `capell-app/theme-showreel` |
| Package slug | `theme-showreel` |
| Product group | Capell Themes |
| Tier | premium |
| Bundle | `themes` |
| Runtime contexts | `frontend` |
| Capell version | `^1.0` |
| Source repository | `capell-app/packages` |
| Source path | `packages/theme-showreel` |
| Docs source | `packages/theme-showreel/docs` |
| Manifest | [`capell.json`](https://github.com/capell-app/packages/edit/main/packages/theme-showreel/capell.json) |

<!-- prettier-ignore-start -->

## What This Plugin Adds

Theme Showreel is an **Available**, **No schema impact** Capell theme in the **Capell Themes** product group. It ships as `capell-app/theme-showreel` and extends these surfaces: frontend.

Theme Showreel adds awards-archive presentation for winners, featured projects, jury scores, media credits, and past periods. Award and project content remains managed by Capell.

When selected, visitors can move from the current winners through scoring and credits into a dated archive of earlier work.

Evidence: [`src/ShowreelThemeServiceProvider.php`](src/ShowreelThemeServiceProvider.php), [`tests/Unit/ShowreelThemeDefinitionTest.php`](tests/Unit/ShowreelThemeDefinitionTest.php), [`tests/Unit/SignatureWidgetRenderTest.php`](tests/Unit/SignatureWidgetRenderTest.php), [`tests/Unit/PublicOutputSafetyTest.php`](tests/Unit/PublicOutputSafetyTest.php).

Status details:

- Status: Available
- Tier: premium
- Bundle: themes
- Composer package: `capell-app/theme-showreel`
- Namespace: `Capell\ThemeShowreel`
- Theme key: `showreel`

## Why It Matters

**For developers:** The package registers its archive and project sections through a Foundation-derived definition with tested public renderables.

**For teams:** Awards teams can present winners, judging context, attribution, and history without maintaining a separate archive frontend.

Evidence: [`src/ShowreelThemeServiceProvider.php`](src/ShowreelThemeServiceProvider.php), [`tests/Unit/ShowreelThemeDefinitionTest.php`](tests/Unit/ShowreelThemeDefinitionTest.php), [`tests/Unit/PublicOutputSafetyTest.php`](tests/Unit/PublicOutputSafetyTest.php), [`tests/Unit/SignatureWidgetRenderTest.php`](tests/Unit/SignatureWidgetRenderTest.php).

## Screens And Workflow

Screenshot contract: `docs/screenshots.json`.

<span class="theme-aware-image">
  <img class="theme-aware-image__light" src="screenshots/showreel-homepage.png" alt="Showreel Homepage" loading="lazy" />
  <img class="theme-aware-image__dark" src="screenshots/showreel-homepage-dark.png" alt="Showreel Homepage" loading="lazy" />
</span>

<span class="theme-aware-image">
  <img class="theme-aware-image__light" src="screenshots/showreel-landing.png" alt="Showreel Landing page" loading="lazy" />
  <img class="theme-aware-image__dark" src="screenshots/showreel-landing-dark.png" alt="Showreel Landing page" loading="lazy" />
</span>

Desktop, tablet, and mobile variants remain defined in the screenshot contract; this list groups them by workflow.

- Showreel Homepage (frontend, required).
- Showreel Landing page (frontend, required).
- Showreel Winner archive (frontend, required).
- Showreel Search results (frontend, required).
- Showreel Contact form (frontend, optional).
- Showreel Page Not Found (frontend, optional).
- Showreel Call To Action (frontend, optional).

## Technical Shape

- Service providers: `Capell\ThemeShowreel\ShowreelThemeServiceProvider`.
- Actions: `InstallShowreelThemeDemoAction`.
- Command signatures: `capell:theme-showreel-demo`.
- Console command classes: `DemoCommand`.
- Manifest contributions: `admin-page: Capell\ThemeShowreel\Manifest\ThemeManagementPageContribution`.
- Health checks: `Capell\ThemeShowreel\Health\ThemeShowreelHealthCheck`.
- Blade views: `packages/theme-showreel/resources/views/page.blade.php`, `packages/theme-showreel/resources/views/sections/archive-hero.blade.php`, `packages/theme-showreel/resources/views/sections/archive-wall-index--compact.blade.php`, `packages/theme-showreel/resources/views/sections/archive-wall-index.blade.php`, `packages/theme-showreel/resources/views/sections/content-listing--rows.blade.php`, `packages/theme-showreel/resources/views/sections/content-listing.blade.php`, `packages/theme-showreel/resources/views/sections/cta.blade.php`, `packages/theme-showreel/resources/views/sections/date-filter-rail--compact.blade.php`, `packages/theme-showreel/resources/views/sections/date-filter-rail.blade.php`, `packages/theme-showreel/resources/views/sections/featured-project--stacked.blade.php`, `packages/theme-showreel/resources/views/sections/featured-project.blade.php`, `packages/theme-showreel/resources/views/sections/footer.blade.php`, `and 11 more`.
- Cache tags: `theme-showreel`.

## Data Model

This theme has no schema impact. It relies on core Capell site, page, locale, and theme records instead of declaring package-owned tables.

## Install Impact

- Required packages: `capell-app/core`, `capell-app/theme-foundation`, `capell-app/frontend`.
- Admin navigation: declares `admin-page: ThemeManagementPageContribution`; each Filament page or resource controls its own navigation visibility.
- Admin/editor extensions: none declared.
- Permissions: none declared in `capell.json`.
- Public routes: none declared.
- Database changes: no package migrations declared.
- Config: no package config files.
- Settings: no package settings declared.
- Queues or schedules: none declared.
- Cache tags: `theme-showreel`.
- Commands: `capell:theme-showreel-demo`.

## Common Pitfalls

- Keep required Capell packages on compatible v4 releases: `capell-app/core`, `capell-app/theme-foundation`, `capell-app/frontend`.
- Keep public Blade and cached HTML free of authoring markers, model IDs, permissions, signed editor URLs, and lazy database queries.
- Custom write integrations must preserve invalidation for `theme-showreel` cache tags.

## Troubleshooting

| Symptom | Likely cause | Check | Fix |
| --- | --- | --- | --- |
| Package surface is missing after install | Provider or manifest is not loaded | Confirm `capell.json`, package `composer.json`, and provider registration | Reinstall the package, refresh Composer autoload, and clear host caches |
| Public output leaks unexpected state | Render data, cache variation, or authoring boundary has regressed | Check public Blade, cache tags, and public-output safety tests | Move data loading out of Blade and rerun the package public-output tests |

## Quick Start

1. Install the package: `composer require capell-app/theme-showreel`.
2. No package-specific setup command or migrations are declared.
3. Open the Showreel Homepage and confirm the public output renders without admin state.

## Next Steps

- [Package docs](README.md)
- [Overview](overview.md)
- [Troubleshooting](#troubleshooting)
- [Screenshot contract](screenshots.json)
- [Marketplace assets](assets/marketplace/)
- [Capell content language plan](../../docs/CONTENT_LANGUAGE_PLAN.md)
- [Capell documentation design system](../../docs/DESIGN_SYSTEM.md)
- [Capell and package ERD notes](../../docs/erd/capell-and-package-erds.md)
- Related packages: [Theme Foundation](../theme-foundation/README.md), [Form Builder](../form-builder/README.md), [Newsletter](../newsletter/README.md).
- Focused tests: `vendor/bin/pest packages/theme-showreel/tests --configuration=phpunit.xml`.

<!-- prettier-ignore-end -->