Deploy Ladill Meet / deploy (push) Successful in 29s
Remove the duplicate webinar header button and make the primary purple action first in the join card, with a mobile rotate icon when restarting. Co-authored-by: Cursor <cursoragent@cursor.com>
105 lines
6.0 KiB
PHP
105 lines
6.0 KiB
PHP
<x-app-layout title="{{ $room->title }}">
|
|
@php
|
|
$conferenceRestarting = $room->status === 'ended' || $room->sessions->isNotEmpty();
|
|
@endphp
|
|
<div class="mx-auto max-w-2xl">
|
|
<div>
|
|
<p class="text-xs font-semibold uppercase tracking-wide text-violet-600">Conference</p>
|
|
<h1 class="text-2xl font-semibold text-slate-900">{{ $room->title }}</h1>
|
|
<p class="mt-1 text-sm text-slate-500">{{ config('meet.room_statuses')[$room->status] ?? $room->status }}</p>
|
|
</div>
|
|
|
|
@if (session('success'))
|
|
<div class="mt-4 rounded-lg border border-emerald-200 bg-emerald-50 px-4 py-3 text-sm text-emerald-800">
|
|
{{ session('success') }}
|
|
</div>
|
|
@endif
|
|
|
|
@include('meet.partials.events-integration', ['room' => $room])
|
|
|
|
<div class="mt-6 rounded-2xl border border-slate-200 bg-white p-6">
|
|
<h2 class="text-sm font-medium text-slate-700">Join link</h2>
|
|
<div class="mt-2 flex gap-2">
|
|
<input type="text" readonly value="{{ $room->joinUrl() }}" class="flex-1 rounded-lg border-slate-300 bg-slate-50 text-sm font-mono">
|
|
<x-copy-button :text="$room->joinUrl()" class="btn-secondary btn-secondary-sm shrink-0" />
|
|
</div>
|
|
|
|
<div class="btn-group mt-4">
|
|
@if ($room->status === 'live' && $room->activeSession())
|
|
<a href="{{ route('meet.join', $room) }}" class="btn-primary btn-primary-sm">Join conference</a>
|
|
@elseif ($room->status === 'scheduled')
|
|
<form method="POST" action="{{ route('meet.conferences.start', $room) }}" class="inline">
|
|
@csrf
|
|
<button type="submit" class="btn-primary btn-primary-sm">Start conference</button>
|
|
</form>
|
|
@elseif ($room->canRestart())
|
|
<form method="POST" action="{{ route('meet.conferences.start', $room) }}" class="inline">
|
|
@csrf
|
|
<button type="submit"
|
|
class="btn-primary btn-primary-sm {{ $conferenceRestarting ? 'inline-flex max-lg:h-9 max-lg:w-9 max-lg:items-center max-lg:justify-center max-lg:rounded-full max-lg:p-0' : '' }}"
|
|
title="{{ $room->restartLabel() }}"
|
|
aria-label="{{ $room->restartLabel() }}">
|
|
@if ($conferenceRestarting)
|
|
<svg class="h-4 w-4 lg:hidden" fill="none" stroke="currentColor" stroke-width="1.5" viewBox="0 0 24 24" aria-hidden="true">
|
|
<path stroke-linecap="round" stroke-linejoin="round" d="M16.023 9.348h4.992v-.001M2.985 19.644v-4.992m0 0h4.992m-4.993 0 3.181 3.183a8.25 8.25 0 0 0 13.803-3.7M4.031 9.865a8.25 8.25 0 0 1 13.803-3.7l3.181 3.182m0-4.991v4.99"/>
|
|
</svg>
|
|
<span class="hidden lg:inline">{{ $room->restartLabel() }}</span>
|
|
@else
|
|
{{ $room->restartLabel() }}
|
|
@endif
|
|
</button>
|
|
</form>
|
|
@endif
|
|
<a href="{{ route('meet.rooms.ical', $room) }}" class="btn-secondary btn-secondary-sm">Download iCal</a>
|
|
@if ($room->sessions->isNotEmpty())
|
|
<a href="{{ route('meet.rooms.attendance', $room) }}" class="btn-secondary btn-secondary-sm">Attendance CSV</a>
|
|
@endif
|
|
</div>
|
|
|
|
@if ($room->passcode)
|
|
<p class="mt-3 text-sm text-slate-600">Passcode: <span class="font-mono font-medium">{{ $room->passcode }}</span></p>
|
|
@endif
|
|
|
|
@if ($room->scheduled_at)
|
|
<p class="mt-3 text-sm text-slate-600">
|
|
Scheduled: {{ $room->scheduled_at->timezone($room->safeTimezone())->format('M j, Y g:i A T') }}
|
|
</p>
|
|
@endif
|
|
|
|
@if ($room->setting('green_room'))
|
|
<p class="mt-3 text-sm text-violet-700">Green room is on — when you start, you and assigned speakers rehearse before going live to the audience.</p>
|
|
@endif
|
|
|
|
@if ($room->status === 'scheduled')
|
|
<form method="POST" action="{{ route('meet.conferences.speakers.update', $room) }}" class="mt-6 border-t border-slate-100 pt-6">
|
|
@csrf
|
|
<h2 class="text-sm font-medium text-slate-700">Stage layout</h2>
|
|
<label class="mt-3 flex items-center gap-2 text-sm text-slate-700">
|
|
<input type="checkbox" name="panel_discussions" value="1"
|
|
@checked(old('panel_discussions', $room->setting('panel_discussions'))) class="rounded border-slate-300">
|
|
Enable panel discussions (multi-speaker stage layout)
|
|
</label>
|
|
<input type="hidden" name="presenter_refs" value="">
|
|
<button type="submit" class="btn-primary btn-primary-sm mt-3">Save settings</button>
|
|
</form>
|
|
@endif
|
|
</div>
|
|
|
|
@include('meet.partials.programme-agenda', ['room' => $room])
|
|
|
|
@if ($room->sessions->isNotEmpty())
|
|
<div class="mt-6 rounded-2xl border border-slate-200 bg-white p-6">
|
|
<h2 class="text-sm font-medium text-slate-700">Sessions</h2>
|
|
<ul class="mt-3 divide-y divide-slate-100 text-sm">
|
|
@foreach ($room->sessions as $session)
|
|
<li class="flex items-center justify-between py-2">
|
|
<span>{{ $session->started_at?->format('M j, Y g:i A') ?? 'Pending' }}</span>
|
|
<span class="text-slate-500">{{ $session->peak_participants }} participants · {{ config('meet.session_statuses')[$session->status] ?? $session->status }}</span>
|
|
</li>
|
|
@endforeach
|
|
</ul>
|
|
</div>
|
|
@endif
|
|
</div>
|
|
</x-app-layout>
|