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 { IssueURL string 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( "body", 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")) {
if vmodel.IssueURL != "" {

Demande créée !

Votre demande a été créée et est disponible à l'adresse suivante: { vmodel.IssueURL }.
@templ.JSFuncCall("clearSummary", vmodel.SelectedProjectID) @templ.JSFuncCall("openIssue", vmodel.IssueURL) }

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", "hx-on:htmx:beforeSend", "onProjectChange(event)", ), ) @common.FormTextarea( vmodel.SummaryForm, "issue-summary", "summary", "Résumé", common.WithTextareaAttrs( "hx-on:change", "onSummaryChange(event)", ), )

Votre demande

@common.FormField(vmodel.IssueForm, "issue-title", "title", "Titre") @common.FormTextarea(vmodel.IssueForm, "issue-body", "body", "Corps")
} } 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 }