generated from coulomb/repo-seed
Phase 2 — Structured Feedback and Triage (IHUB-WP-0002): - Schema: annotation_threads, requirement_candidates, triage_states, reviewer_assignments; annotations extended with severity + thread_id - AnnotationThreadsController: create threads, assign annotations - RequirementCandidatesController: CRUD, escalation, triage lifecycle, reviewer assignment, my-queue - Annotation severity (low/medium/high/critical) with Tailwind color cues - TriageDashboardAction on HubsController with autoRefresh - Integration tests (T01–T09), SCOPE.md updated, docs/phase2-summary.md Phase 3 — Governance and Decision Linkage (IHUB-WP-0003): - Workplan registered: 9 tasks, State Hub workstream 5f201ee3 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
34 lines
1.1 KiB
Haskell
34 lines
1.1 KiB
Haskell
module Web.View.AnnotationThreads.New where
|
|
|
|
import Web.Types
|
|
import Generated.Types
|
|
import IHP.Prelude
|
|
import IHP.ViewPrelude
|
|
|
|
data NewView = NewView
|
|
{ widget :: !Widget
|
|
, thread :: !AnnotationThread
|
|
}
|
|
|
|
instance View NewView where
|
|
html NewView { .. } = [hsx|
|
|
<div class="mb-6 flex items-center gap-2 text-sm text-gray-500">
|
|
<a href={ShowWidgetAction { widgetId = widget.id }} class="hover:text-gray-700">{widget.name}</a>
|
|
<span>/</span>
|
|
<a href={WidgetAnnotationThreadsAction { widgetId = widget.id }} class="hover:text-gray-700">Threads</a>
|
|
<span>/</span>
|
|
<span>New</span>
|
|
</div>
|
|
<div class="max-w-lg">
|
|
<h1 class="text-2xl font-semibold mb-6">New Annotation Thread</h1>
|
|
{renderForm thread widget.id}
|
|
</div>
|
|
|]
|
|
|
|
renderForm :: AnnotationThread -> Id Widget -> Html
|
|
renderForm thread widgetId = formFor thread [hsx|
|
|
{(textField #title) { fieldLabel = "Title" }}
|
|
{(textareaField #description) { fieldLabel = "Description (optional)" }}
|
|
{submitButton}
|
|
|]
|