Files
SealShare/resources/views/components/page.blade.php
T
Andreas Reinhold / reiniandClaude Opus 5 5853f1f7d6 Give every page the share pages' layout, at one width
The pages were built five ways: two layouts, seven widths from 28 to
64rem and four heading styles. Every page now looks like the share
pages: a centred heading over one 40rem column of outlined cards, with
the floating toolbar below.

- <x-page> (components/page.blade.php) is the root of every page. It
  draws the h1 and its line (`brand` takes the site's logo, title and
  description from Admin settings), an optional `mark` and `navigation`
  slot, then the content. It has no width prop: every page is the same
  <x-pane width="narrow">.
- The sign-in, password reset, confirm, verify email, two-factor
  challenge, setup and system password pages move onto layouts/app with
  the brand heading and their form in a card titled with the task.
  layouts/auth, auth-header and the settings heading partial are gone,
  and so is the per-page width CSS.
- Settings put their section nav under the heading; the admin pages get
  a description line each. FileUploader and ShareDownload no longer pass
  the branding to their views.
- The admin dashboard's table needed about 49rem, so its shares are a
  list: created above the token, which opens the share, then files,
  size, downloads and expiry on two lines that wrap instead of clipping,
  and one delete button. A "Sort by" select replaces the column headers
  (newest, oldest, expiring soonest with never-expiring last, largest,
  most downloads, most files) and resets the page. The stats stay two
  by two. table.css and sort-header.css are no longer imported.
- Branding hints in Admin settings name every page the title shows on.
- Tests: PageTemplateTest renders every page once and checks one page
  template, one h1 and the width, and the brand heading with its
  fallbacks. FrameTest measures the page column instead of the auth
  card and the 64rem main; dashboard tests follow the list and the sort
  select, including expiry order. .ai/rules/views.md records <x-page>,
  the CHANGELOG notes the change and the website screenshots are
  regenerated.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
2026-09-16 21:42:04 +02:00

58 lines
2.2 KiB
PHP

{{-- Every page in SealShare: a centred header over one centred column of cards, the share pages'
shape carried to every other page, sign-in included.
<x-page :title="__('Settings')" :description="__('')">
<x-slot:navigation><x-section-nav :items="$items" /></x-slot:navigation>
<x-card variant="outlined" heading="h2" …>…</x-card>
</x-page>
`brand` heads the page with the site's own logo, title and description from Admin settings
instead of `title` and `description`, falling back to the app's name and SealShare's line.
`mark` is a visual above the title (share created's check). Every page is the same 40rem
column (`<x-pane width="narrow">`, M3's cap on a text field), so there is no width prop: content
that needs more room is rearranged to fit, as the admin dashboard's shares became a list. No
page sets a width or a heading of its own. The page's content stacks 24px apart under the
header and the optional `navigation`. --}}
@props([
'title' => null,
'description' => null,
'brand' => false,
])
@php
$logo = null;
if ($brand) {
$title = \App\Models\Setting::get('site_title') ?: config('app.name', 'SealShare');
$description = \App\Models\Setting::get('site_description') ?: __('Share your files safely and securely');
$logo = \App\Models\Setting::get('site_logo');
}
@endphp
<x-pane width="narrow" data-test="page" {{ $attributes }}>
<x-stack gap="space400">
<x-stack as="header" align="center" gap="space200">
@if ($logo)
<img src="{{ Storage::disk('public')->url($logo) }}" alt="{{ $title }}" class="page-logo" data-test="page-logo" />
@endif
{{ $mark ?? '' }}
<x-stack align="center" gap="space100">
<h1 class="md-type-headline-lg md-text-center">{{ $title }}</h1>
@if (filled($description))
<p class="md-type-body-lg md-ink-variant md-text-center">{{ $description }}</p>
@endif
</x-stack>
</x-stack>
{{ $navigation ?? '' }}
<x-stack gap="space300">
{{ $slot }}
</x-stack>
</x-stack>
</x-pane>