towerops/lib/towerops_web/live/maintenance_live/index.html.heex
Graham McIntire 532d88ffb9
perf: disable Req retry for faster error tests
- Add retry: false to VISP Client HTTP requests
- Add retry: false to ReleaseChecker GitHub API requests
- Remove unused Plug.Conn import from RemoteIpLogger
- Remove unused default parameter from req_get/2

Results:
- VISP sync test: 7007ms → 113ms (62x faster)
- ReleaseChecker test: 7004ms → 17ms (402x faster)
- UserResetPasswordLive test: 1495ms → 284ms (5x faster)

Req's default retry behavior (1s, 2s, 4s exponential backoff) was
causing 7-second delays for HTTP 500/503 error responses in tests.
For these clients, immediate failure is preferred over retries.
2026-03-10 16:19:31 -05:00

143 lines
5.9 KiB
Text

<Layouts.authenticated
flash={@flash}
current_scope={@current_scope}
active_page="maintenance"
>
<div class="flex items-center justify-between mb-6">
<h1 class="text-xl font-bold text-gray-900 dark:text-white">{t("Maintenance Windows")}</h1>
<.link
navigate={~p"/maintenance/new"}
class="inline-flex items-center gap-2 rounded-lg bg-blue-600 px-4 py-2 text-sm font-semibold text-white hover:bg-blue-500 transition-colors"
>
<.icon name="hero-plus" class="h-4 w-4" />
{t("New Window")}
</.link>
</div>
<%!-- Filter tabs --%>
<div class="flex items-center gap-2 mb-4 flex-wrap">
<.link
patch={~p"/maintenance?filter=all"}
class={[
"inline-flex items-center px-3 py-1.5 rounded-full text-xs font-medium transition-colors",
@filter == "all" && "bg-gray-900 text-white dark:bg-white dark:text-gray-900",
@filter != "all" &&
"bg-gray-100 text-gray-700 hover:bg-gray-200 dark:bg-gray-800 dark:text-gray-300 dark:hover:bg-gray-700"
]}
>
{t("All")}
</.link>
<.link
patch={~p"/maintenance?filter=active"}
class={[
"inline-flex items-center px-3 py-1.5 rounded-full text-xs font-medium transition-colors",
@filter == "active" && "bg-gray-900 text-white dark:bg-white dark:text-gray-900",
@filter != "active" &&
"bg-gray-100 text-gray-700 hover:bg-gray-200 dark:bg-gray-800 dark:text-gray-300 dark:hover:bg-gray-700"
]}
>
{t("Active")}
</.link>
<.link
patch={~p"/maintenance?filter=upcoming"}
class={[
"inline-flex items-center px-3 py-1.5 rounded-full text-xs font-medium transition-colors",
@filter == "upcoming" && "bg-gray-900 text-white dark:bg-white dark:text-gray-900",
@filter != "upcoming" &&
"bg-gray-100 text-gray-700 hover:bg-gray-200 dark:bg-gray-800 dark:text-gray-300 dark:hover:bg-gray-700"
]}
>
{t("Upcoming")}
</.link>
<.link
patch={~p"/maintenance?filter=past"}
class={[
"inline-flex items-center px-3 py-1.5 rounded-full text-xs font-medium transition-colors",
@filter == "past" && "bg-gray-900 text-white dark:bg-white dark:text-gray-900",
@filter != "past" &&
"bg-gray-100 text-gray-700 hover:bg-gray-200 dark:bg-gray-800 dark:text-gray-300 dark:hover:bg-gray-700"
]}
>
{t("Past")}
</.link>
</div>
<%= if Enum.empty?(@windows) do %>
<div class="flex items-center justify-center py-16">
<div class="text-center">
<.icon
name="hero-wrench-screwdriver"
class="h-12 w-12 text-gray-300 dark:text-gray-600 mx-auto mb-4"
/>
<h3 class="text-lg font-semibold text-gray-700 dark:text-gray-300">
{t("No maintenance windows")}
</h3>
<p class="mt-2 text-sm text-gray-500 dark:text-gray-400">
{t("Schedule maintenance to suppress alerts during planned work.")}
</p>
</div>
</div>
<% else %>
<div class="overflow-hidden rounded-lg border border-gray-200 dark:border-white/10">
<table class="min-w-full divide-y divide-gray-200 dark:divide-white/10">
<thead class="bg-gray-50 dark:bg-gray-800/50">
<tr>
<th class="px-4 py-3 text-left text-xs font-semibold uppercase tracking-wider text-gray-500 dark:text-gray-400">
{t("Name")}
</th>
<th class="px-4 py-3 text-left text-xs font-semibold uppercase tracking-wider text-gray-500 dark:text-gray-400">
{t("Scope")}
</th>
<th class="px-4 py-3 text-left text-xs font-semibold uppercase tracking-wider text-gray-500 dark:text-gray-400">
{t("Time Range")}
</th>
<th class="px-4 py-3 text-left text-xs font-semibold uppercase tracking-wider text-gray-500 dark:text-gray-400">
{t("Status")}
</th>
<th class="px-4 py-3 text-left text-xs font-semibold uppercase tracking-wider text-gray-500 dark:text-gray-400">
{t("Created By")}
</th>
</tr>
</thead>
<tbody class="divide-y divide-gray-100 dark:divide-white/5 bg-white dark:bg-gray-900">
<%= for window <- @windows do %>
<tr
class="hover:bg-gray-50 dark:hover:bg-gray-800/30 transition-colors cursor-pointer"
phx-click={JS.navigate(~p"/maintenance/#{window.id}")}
>
<td class="px-4 py-3 text-sm font-medium text-gray-900 dark:text-white">
{window.name}
</td>
<td class="px-4 py-3 text-sm text-gray-600 dark:text-gray-400">
{scope_label(window)}
</td>
<td class="px-4 py-3 text-sm text-gray-600 dark:text-gray-400 whitespace-nowrap">
{format_datetime(window.starts_at, @timezone)} — {format_datetime(
window.ends_at,
@timezone
)}
</td>
<td class="px-4 py-3">
<% status = status_for(window) %>
<span class={[
"inline-flex items-center px-2 py-0.5 rounded-full text-xs font-medium",
status == :active &&
"bg-green-100 text-green-800 dark:bg-green-900/40 dark:text-green-300",
status == :upcoming &&
"bg-blue-100 text-blue-800 dark:bg-blue-900/40 dark:text-blue-300",
status == :past &&
"bg-gray-100 text-gray-600 dark:bg-gray-800 dark:text-gray-400"
]}>
{status_label(status)}
</span>
</td>
<td class="px-4 py-3 text-sm text-gray-600 dark:text-gray-400">
{if window.created_by, do: window.created_by.email, else: "—"}
</td>
</tr>
<% end %>
</tbody>
</table>
</div>
<% end %>
</Layouts.authenticated>