generated from coulomb/repo-seed
feat(WP-0011): IHF Phase 10 — Hub Registry and Widget Marketplace
Some checks failed
Test / test (push) Has been cancelled
Some checks failed
Test / test (push) Has been cancelled
Delivers the hub registry discovery UI, widget pattern library, governance template library, and marketplace dashboard. Key changes: - Schema: widget_patterns (widget_type FK to registry), widget_pattern_versions, pattern_adoptions, governance_templates (categories JSONB, validated at controller), governance_template_clones — all GAAF-compliant, no bare TEXT type discriminators - Migration: 1743897600-ihf-phase10-hub-registry.sql - HubRegistry controller + views: browsable view over hub_capability_manifests, hub_health_snapshots, hubs with per-hub GAAF compliance indicator - WidgetPatterns controller + views: publish, version, adopt; adoption triggers manifest amendment draft when new types are introduced - GovernanceTemplates controller + views: CRUD, clone with category validation against annotation_category_registry - MarketplaceDashboard controller + view: full-text search, widget-type filter, sort, trending panel, autoRefresh - API v2: /api/v2/hub-registry, /api/v2/widget-patterns (+ adopt endpoint) - OpenAPI spec updated with Phase 10 paths - GAAF scorecard: Customization 2.5 → 3.2; overall 3.41 → 3.56 (Strong) - CLAUDE.md: Phase 10 complete; active workplan → Phase 11 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
64
Web/View/GovernanceTemplates/Index.hs
Normal file
64
Web/View/GovernanceTemplates/Index.hs
Normal file
@@ -0,0 +1,64 @@
|
||||
module Web.View.GovernanceTemplates.Index where
|
||||
|
||||
import Web.Types
|
||||
import Generated.Types
|
||||
import IHP.Prelude
|
||||
import IHP.ViewPrelude
|
||||
import Data.Aeson (Value(..), decode, encode)
|
||||
import qualified Data.ByteString.Lazy.Char8 as BL
|
||||
|
||||
type TemplateIndexRow = (GovernanceTemplate, Int)
|
||||
|
||||
data IndexView = IndexView
|
||||
{ templates :: ![TemplateIndexRow]
|
||||
}
|
||||
|
||||
instance View IndexView where
|
||||
html IndexView { .. } = [hsx|
|
||||
<div class="flex items-center justify-between mb-6">
|
||||
<div>
|
||||
<h1 class="text-2xl font-semibold">Governance Template Library</h1>
|
||||
<p class="text-sm text-gray-500 mt-1">Published reusable governance templates.</p>
|
||||
</div>
|
||||
<a href={NewGovernanceTemplateAction}
|
||||
class="text-sm bg-indigo-600 text-white px-3 py-1.5 rounded hover:bg-indigo-700">
|
||||
New Template
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div class="space-y-3">
|
||||
{forEach templates renderTemplateRow}
|
||||
{if null templates
|
||||
then [hsx|<p class="text-sm text-gray-400">No published templates yet.</p>|]
|
||||
else mempty}
|
||||
</div>
|
||||
|]
|
||||
|
||||
renderTemplateRow :: TemplateIndexRow -> Html
|
||||
renderTemplateRow (template, cloneCount) = [hsx|
|
||||
<div class="bg-white rounded-lg border border-gray-200 p-4 hover:border-indigo-200">
|
||||
<div class="flex items-center justify-between">
|
||||
<div>
|
||||
<a href={ShowGovernanceTemplateAction { governanceTemplateId = template.id }}
|
||||
class="font-medium text-indigo-700 hover:underline">
|
||||
{template.name}
|
||||
</a>
|
||||
{maybe mempty (\d -> [hsx|<p class="text-xs text-gray-500 mt-0.5">{d}</p>|]) template.description}
|
||||
</div>
|
||||
<span class="text-xs text-gray-400">{tshow cloneCount} clones</span>
|
||||
</div>
|
||||
<div class="mt-2 flex flex-wrap gap-1">
|
||||
{forEach (jsonArrayTexts template.categories) renderCategoryTag}
|
||||
</div>
|
||||
</div>
|
||||
|]
|
||||
|
||||
renderCategoryTag :: Text -> Html
|
||||
renderCategoryTag cat = [hsx|
|
||||
<span class="px-2 py-0.5 rounded text-xs bg-blue-100 text-blue-700 font-mono">{cat}</span>
|
||||
|]
|
||||
|
||||
jsonArrayTexts :: Value -> [Text]
|
||||
jsonArrayTexts val = case decode (encode val) of
|
||||
Just (arr :: [Text]) -> arr
|
||||
Nothing -> []
|
||||
73
Web/View/GovernanceTemplates/New.hs
Normal file
73
Web/View/GovernanceTemplates/New.hs
Normal file
@@ -0,0 +1,73 @@
|
||||
module Web.View.GovernanceTemplates.New where
|
||||
|
||||
import Web.Types
|
||||
import Generated.Types
|
||||
import IHP.Prelude
|
||||
import IHP.ViewPrelude
|
||||
|
||||
data NewView = NewView
|
||||
{ template :: !GovernanceTemplate
|
||||
, hubs :: ![Hub]
|
||||
, categories :: ![(Text, Text)] -- (name, label)
|
||||
}
|
||||
|
||||
instance View NewView where
|
||||
html NewView { .. } = [hsx|
|
||||
<div class="mb-4">
|
||||
<a href={GovernanceTemplatesAction} class="text-sm text-gray-500 hover:text-gray-700">
|
||||
← Governance Templates
|
||||
</a>
|
||||
</div>
|
||||
<h1 class="text-2xl font-semibold mb-6">New Governance Template</h1>
|
||||
|
||||
<form method="POST" action={CreateGovernanceTemplateAction}>
|
||||
{csrfTokenFormField}
|
||||
<div class="space-y-4 max-w-lg">
|
||||
<div>
|
||||
<label class="block text-sm font-medium text-gray-700 mb-1">Name</label>
|
||||
<input type="text" name="name" value={template.name}
|
||||
class="w-full border border-gray-300 rounded px-3 py-2 text-sm" />
|
||||
</div>
|
||||
<div>
|
||||
<label class="block text-sm font-medium text-gray-700 mb-1">Hub</label>
|
||||
<select name="hubId" class="w-full border border-gray-300 rounded px-3 py-2 text-sm">
|
||||
{forEach hubs (\h -> [hsx|
|
||||
<option value={tshow h.id}>{h.name}</option>
|
||||
|])}
|
||||
</select>
|
||||
</div>
|
||||
<div>
|
||||
<label class="block text-sm font-medium text-gray-700 mb-1">Description</label>
|
||||
<textarea name="description" rows="2"
|
||||
class="w-full border border-gray-300 rounded px-3 py-2 text-sm"
|
||||
>{fromMaybe "" template.description}</textarea>
|
||||
</div>
|
||||
<div>
|
||||
<label class="block text-sm font-medium text-gray-700 mb-1">
|
||||
Categories <span class="text-xs text-gray-400">(select all that apply)</span>
|
||||
</label>
|
||||
<div class="space-y-1 border border-gray-200 rounded p-3">
|
||||
{forEach categories (\(n, l) -> [hsx|
|
||||
<label class="flex items-center gap-2 text-sm">
|
||||
<input type="checkbox" name="categories" value={n} />
|
||||
<span class="font-mono text-xs text-gray-600">{n}</span>
|
||||
<span class="text-gray-700">{l}</span>
|
||||
</label>
|
||||
|])}
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<label class="block text-sm font-medium text-gray-700 mb-1">
|
||||
Template Body (JSON)
|
||||
</label>
|
||||
<textarea name="templateBody" rows="6"
|
||||
class="w-full border border-gray-300 rounded px-3 py-2 text-sm font-mono"
|
||||
placeholder='{"steps": [], "questions": []}'></textarea>
|
||||
</div>
|
||||
<button type="submit"
|
||||
class="text-sm bg-indigo-600 text-white px-4 py-2 rounded hover:bg-indigo-700">
|
||||
Create Template
|
||||
</button>
|
||||
</div>
|
||||
</form>
|
||||
|]
|
||||
71
Web/View/GovernanceTemplates/Show.hs
Normal file
71
Web/View/GovernanceTemplates/Show.hs
Normal file
@@ -0,0 +1,71 @@
|
||||
module Web.View.GovernanceTemplates.Show where
|
||||
|
||||
import Web.Types
|
||||
import Generated.Types
|
||||
import IHP.Prelude
|
||||
import IHP.ViewPrelude
|
||||
import Data.Aeson (Value(..), decode, encode)
|
||||
import qualified Data.ByteString.Lazy.Char8 as BL
|
||||
|
||||
data ShowView = ShowView
|
||||
{ template :: !GovernanceTemplate
|
||||
, hub :: !Hub
|
||||
, cloneCount :: !Int
|
||||
}
|
||||
|
||||
instance View ShowView where
|
||||
html ShowView { .. } = [hsx|
|
||||
<div class="mb-4">
|
||||
<a href={GovernanceTemplatesAction} class="text-sm text-gray-500 hover:text-gray-700">
|
||||
← Governance Templates
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div class="flex items-center gap-3 mb-2">
|
||||
<h1 class="text-2xl font-semibold">{template.name}</h1>
|
||||
{if template.isPublished
|
||||
then [hsx|<span class="px-2 py-0.5 rounded text-xs bg-green-100 text-green-800">published</span>|]
|
||||
else [hsx|<span class="px-2 py-0.5 rounded text-xs bg-amber-100 text-amber-800">draft</span>|]}
|
||||
</div>
|
||||
|
||||
<p class="text-sm text-gray-500 mb-1">Hub: {hub.name}</p>
|
||||
<p class="text-sm text-gray-500 mb-4">{tshow cloneCount} clones</p>
|
||||
|
||||
{maybe mempty (\d -> [hsx|<p class="text-sm text-gray-600 mb-4">{d}</p>|]) template.description}
|
||||
|
||||
<div class="mb-4">
|
||||
<h3 class="text-sm font-semibold text-gray-700 mb-2">Categories</h3>
|
||||
<div class="flex flex-wrap gap-1">
|
||||
{forEach (jsonArrayTexts template.categories) renderCategoryTag}
|
||||
{if null (jsonArrayTexts template.categories)
|
||||
then [hsx|<span class="text-xs text-gray-400">None</span>|]
|
||||
else mempty}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="mb-6">
|
||||
<h3 class="text-sm font-semibold text-gray-700 mb-2">Template Body</h3>
|
||||
<pre class="bg-gray-50 rounded border border-gray-200 p-3 text-xs font-mono overflow-x-auto">
|
||||
{cs (BL.unpack (encode template.templateBody)) :: Text}
|
||||
</pre>
|
||||
</div>
|
||||
|
||||
{if template.isPublished
|
||||
then [hsx|
|
||||
<a href={CloneGovernanceTemplateAction { governanceTemplateId = template.id }}
|
||||
class="text-sm bg-indigo-600 text-white px-3 py-1.5 rounded hover:bg-indigo-700">
|
||||
Clone to My Hub
|
||||
</a>
|
||||
|]
|
||||
else mempty}
|
||||
|]
|
||||
|
||||
renderCategoryTag :: Text -> Html
|
||||
renderCategoryTag cat = [hsx|
|
||||
<span class="px-2 py-0.5 rounded text-xs bg-blue-100 text-blue-700 font-mono">{cat}</span>
|
||||
|]
|
||||
|
||||
jsonArrayTexts :: Value -> [Text]
|
||||
jsonArrayTexts val = case decode (encode val) of
|
||||
Just (arr :: [Text]) -> arr
|
||||
Nothing -> []
|
||||
Reference in New Issue
Block a user