package component import ( "forge.cadoles.com/wpetit/clearcase/internal/core/model" "forge.cadoles.com/wpetit/clearcase/internal/http/form" common "forge.cadoles.com/wpetit/clearcase/internal/http/handler/webui/common/component" ) type IssuePageVModel struct { SummaryForm *form.Form IssueForm *form.Form Projects []*model.Project SelectedProjectID string } func NewIssueSummaryForm() *form.Form { return form.New( form.NewField( "project", form.Attrs{}, form.NonEmpty("Ce champs ne doit pas être vide."), ), form.NewField( "summary", form.Attrs{ "type": "textarea", "rows": "20", "placeholder": "Décrivez rapidement le sujet du problème rencontré ou de l'évolution souhaitée...", }, form.NonEmpty("Ce champs ne doit pas être vide."), ), ) } func NewIssueForm() *form.Form { return form.New( form.NewField( "title", form.Attrs{ "type": "text", }, form.NonEmpty("Ce champs ne doit pas être vide."), ), form.NewField( "content", form.Attrs{ "type": "textarea", "rows": "20", }, form.NonEmpty("Ce champs ne doit pas être vide."), ), ) } templ IssuePage(vmodel IssuePageVModel) { @common.Page(common.WithTitle("Nouvelle demande")) {

Résumé de la demande

@common.FormSelect( vmodel.SummaryForm, "issue-project", "project", "Projet", common.WithOptions(projectsToOptions(vmodel.Projects)...), common.WithAttrs( "hx-get", string(common.CurrentURL(ctx, common.WithoutValues("project", "*"))), "hx-target", "body", "hx-push-url", "true", ), ) @common.FormTextarea( vmodel.SummaryForm, "issue-summary", "summary", "Résumé", common.WithTextareaAttrs( "hx-on:change", "onSummaryChange(event)", ), )

Votre demande

@common.FormField(vmodel.IssueForm, "issue-content", "title", "Titre") @common.FormTextarea(vmodel.IssueForm, "issue-content", "content", "Contenu")
} } func projectsToOptions(projects []*model.Project) []string { options := make([]string, 0, len(projects)*2) for _, p := range projects { options = append(options, p.Label, p.ID) } return options }