generated from coulomb/repo-seed
fix(WP-0014): pre-flight compilation fixes, Tailwind pipeline, and admin seed
A2 — Compilation fixes: - Remove inline FK constraints from Schema.sql; IHP schema compiler cannot parse them. Add 1744329600-restore-fk-constraints.sql migration to restore referential integrity at the DB level. - Rename `#label` → `#label_` throughout to avoid clash with Haskell built-in. - Fix `hub.id == hid` UUID comparisons to use `toUUID hub.id`. - Replace non-existent `setStatus`/`respondJson` calls with `renderJsonWithStatusCode` throughout Api controllers. - Fix qualified package import for `cryptohash-sha256` in Auth.hs. - Add `CanSelect (Text, Text)` instance in Helper.View. - Refactor HSX inline lambdas to named helper functions in 100+ views (GHC cannot infer types for anonymous functions inside quasi-quoted HSX). - Fix missing imports (IHP.QueryBuilder, IHP.Fetch, Web.Routes, Only, etc.) across helpers and controllers. - Remove duplicate `diffUTCTime` definition in BottleneckDetector. - Change `createEventForHub` return type from `IO ResponseReceived` to `IO ()`. - Seed type-registry vocabulary via 1744502400-seed-type-registries.sql (moved from Schema.sql where IHP does not execute INSERT statements). A3 — Tailwind build pipeline: - Add `tailwindcss` to flake.nix native packages. - Uncomment `tailwind.exec` process in devenv shell config. - Add tailwind/tailwind.config.js (scans Web/View/**/*.hs). - Add tailwind/app.css with @tailwind directives. A4 — Admin user seed: - Add 1744416000-seed-admin-user.sql: inserts admin@inter-hub.local with bcrypt-hashed password admin1234! (cost 10). - Add .env.example documenting all required environment variables and default admin credentials. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -4,6 +4,7 @@ import Web.Types
|
||||
import Generated.Types
|
||||
import IHP.Prelude
|
||||
import IHP.ViewPrelude
|
||||
import Web.Routes ()
|
||||
import Application.Helper.View (adapterStatusBadge)
|
||||
import Data.List (nub, sortBy)
|
||||
import Data.Ord (comparing, Down(..))
|
||||
@@ -23,7 +24,7 @@ instance View AdapterCompatibilityDashboardView where
|
||||
<h1 class="text-2xl font-semibold">Adapter Compatibility Dashboard</h1>
|
||||
<p class="text-sm text-gray-500">{hub.name}</p>
|
||||
</div>
|
||||
<a href={ShowHubAction { hubId = hub.id }}
|
||||
<a href={ShowHubAction (hub.id)}
|
||||
class="text-sm text-indigo-600 hover:underline">← Hub</a>
|
||||
</div>
|
||||
|
||||
@@ -71,17 +72,11 @@ instance View AdapterCompatibilityDashboardView where
|
||||
<div class="flex gap-6 text-sm">
|
||||
<div>
|
||||
<span class="text-gray-500 mr-1">Envelope:</span>
|
||||
{forEach envelopes (\e -> [hsx|
|
||||
<a href={ShowEnvelopeEmissionContractAction { envelopeEmissionContractId = e.id }}
|
||||
class="font-mono text-indigo-600 hover:underline mr-2">v{e.contractVersion}</a>
|
||||
|])}
|
||||
{forEach envelopes renderEnvelopeLink}
|
||||
</div>
|
||||
<div>
|
||||
<span class="text-gray-500 mr-1">Reporting:</span>
|
||||
{forEach reportings (\r -> [hsx|
|
||||
<a href={ShowInteractionReportingContractAction { interactionReportingContractId = r.id }}
|
||||
class="font-mono text-indigo-600 hover:underline mr-2">v{r.contractVersion}</a>
|
||||
|])}
|
||||
{forEach reportings renderReportingLink}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -92,19 +87,7 @@ instance View AdapterCompatibilityDashboardView where
|
||||
Unassigned Widgets
|
||||
<span class="ml-1 text-xs text-gray-400">(no adapter_spec_id)</span>
|
||||
</h2>
|
||||
{if null unassignedWidgets
|
||||
then [hsx|<p class="text-sm text-gray-400">All widgets have adapter assignments.</p>|]
|
||||
else [hsx|
|
||||
<div class="text-sm text-gray-600 space-y-1">
|
||||
{forEach unassignedWidgets (\w -> [hsx|
|
||||
<div>
|
||||
<a href={ShowWidgetAction { widgetId = w.id }}
|
||||
class="text-indigo-600 hover:underline">{w.name}</a>
|
||||
<span class="text-xs text-gray-400 ml-2">{w.widgetType}</span>
|
||||
</div>
|
||||
|])}
|
||||
</div>
|
||||
|]}
|
||||
{renderUnassignedWidgets unassignedWidgets}
|
||||
</div>
|
||||
|
||||
<!-- Panel 5: Stale adapters -->
|
||||
@@ -112,23 +95,7 @@ instance View AdapterCompatibilityDashboardView where
|
||||
<h2 class="text-sm font-semibold text-gray-700 mb-3">
|
||||
Active Adapter Specs
|
||||
</h2>
|
||||
{if null activeSpecs
|
||||
then [hsx|<p class="text-sm text-gray-400">No active adapter specs.</p>|]
|
||||
else [hsx|
|
||||
<table class="w-full text-sm">
|
||||
<thead class="bg-gray-50">
|
||||
<tr>
|
||||
<th class="text-left px-3 py-2 font-medium text-gray-600">Adapter</th>
|
||||
<th class="text-left px-3 py-2 font-medium text-gray-600">Framework</th>
|
||||
<th class="text-left px-3 py-2 font-medium text-gray-600">Widgets</th>
|
||||
<th class="text-left px-3 py-2 font-medium text-gray-600">Status</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody class="divide-y divide-gray-100">
|
||||
{forEach activeSpecs renderSpecRow}
|
||||
</tbody>
|
||||
</table>
|
||||
|]}
|
||||
{renderActiveSpecsTable activeSpecs}
|
||||
</div>
|
||||
|]
|
||||
where
|
||||
@@ -149,13 +116,31 @@ instance View AdapterCompatibilityDashboardView where
|
||||
in sortBy (comparing (Down . snd))
|
||||
[ (sid, length (filter (== sid) assigned)) | sid <- specIds ]
|
||||
|
||||
renderActiveSpecsTable :: [WidgetAdapterSpec] -> Html
|
||||
renderActiveSpecsTable [] = [hsx|<p class="text-sm text-gray-400">No active adapter specs.</p>|]
|
||||
renderActiveSpecsTable ss = [hsx|
|
||||
<table class="w-full text-sm">
|
||||
<thead class="bg-gray-50">
|
||||
<tr>
|
||||
<th class="text-left px-3 py-2 font-medium text-gray-600">Adapter</th>
|
||||
<th class="text-left px-3 py-2 font-medium text-gray-600">Framework</th>
|
||||
<th class="text-left px-3 py-2 font-medium text-gray-600">Widgets</th>
|
||||
<th class="text-left px-3 py-2 font-medium text-gray-600">Status</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody class="divide-y divide-gray-100">
|
||||
{forEach ss renderSpecRow}
|
||||
</tbody>
|
||||
</table>
|
||||
|]
|
||||
|
||||
renderSpecRow :: WidgetAdapterSpec -> Html
|
||||
renderSpecRow s =
|
||||
let widgetCount = length (filter (\w -> w.adapterSpecId == Just s.id) widgets)
|
||||
in [hsx|
|
||||
<tr class="hover:bg-gray-50">
|
||||
<td class="px-3 py-2">
|
||||
<a href={ShowWidgetAdapterSpecAction { widgetAdapterSpecId = s.id }}
|
||||
<a href={ShowWidgetAdapterSpecAction (s.id)}
|
||||
class="text-indigo-600 hover:underline">{s.name}</a>
|
||||
</td>
|
||||
<td class="px-3 py-2">
|
||||
@@ -170,6 +155,35 @@ instance View AdapterCompatibilityDashboardView where
|
||||
</tr>
|
||||
|]
|
||||
|
||||
renderEnvelopeLink :: EnvelopeEmissionContract -> Html
|
||||
renderEnvelopeLink e = [hsx|
|
||||
<a href={ShowEnvelopeEmissionContractAction (e.id)}
|
||||
class="font-mono text-indigo-600 hover:underline mr-2">v{e.contractVersion}</a>
|
||||
|]
|
||||
|
||||
renderReportingLink :: InteractionReportingContract -> Html
|
||||
renderReportingLink r = [hsx|
|
||||
<a href={ShowInteractionReportingContractAction (r.id)}
|
||||
class="font-mono text-indigo-600 hover:underline mr-2">v{r.contractVersion}</a>
|
||||
|]
|
||||
|
||||
renderUnassignedWidgets :: [Widget] -> Html
|
||||
renderUnassignedWidgets [] = [hsx|<p class="text-sm text-gray-400">All widgets have adapter assignments.</p>|]
|
||||
renderUnassignedWidgets ws = [hsx|
|
||||
<div class="text-sm text-gray-600 space-y-1">
|
||||
{forEach ws renderUnassignedWidgetRow}
|
||||
</div>
|
||||
|]
|
||||
|
||||
renderUnassignedWidgetRow :: Widget -> Html
|
||||
renderUnassignedWidgetRow w = [hsx|
|
||||
<div>
|
||||
<a href={ShowWidgetAction (w.id)}
|
||||
class="text-indigo-600 hover:underline">{w.name}</a>
|
||||
<span class="text-xs text-gray-400 ml-2">{w.widgetType}</span>
|
||||
</div>
|
||||
|]
|
||||
|
||||
kpiCard :: Text -> Text -> Text -> Html
|
||||
kpiCard label value textClass = [hsx|
|
||||
<div class="bg-white rounded-lg border border-gray-200 p-4">
|
||||
|
||||
Reference in New Issue
Block a user