2025-02-22 09:42:15 +01:00
// Code generated by templ - DO NOT EDIT.
// templ: version: v0.3.819
package component
//lint:file-ignore SA4006 This context is only used if a nested component is present.
import "github.com/a-h/templ"
import templruntime "github.com/a-h/templ/runtime"
import (
2025-02-23 14:26:40 +01:00
"bytes"
"context"
2025-02-22 09:42:15 +01:00
"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"
2025-02-23 14:26:40 +01:00
"github.com/pkg/errors"
"github.com/yuin/goldmark"
"log/slog"
2025-02-22 09:42:15 +01:00
)
type IssuePageVModel struct {
2025-02-22 18:01:45 +01:00
IssueURL string
2025-02-22 09:42:15 +01:00
SummaryForm * form . Form
IssueForm * form . Form
2025-02-23 14:26:40 +01:00
IssueTips string
2025-02-22 09:42:15 +01:00
Projects [ ] * model . Project
SelectedProjectID string
}
func NewIssueSummaryForm ( ) * form . Form {
return form . New (
form . NewField (
"project" ,
form . Attrs { } ,
2025-02-22 16:28:46 +01:00
form . NonEmpty ( "Ce champs ne doit pas être vide." ) ,
2025-02-22 09:42:15 +01:00
) ,
form . NewField (
"summary" ,
form . Attrs {
"type" : "textarea" ,
"rows" : "20" ,
2025-02-22 16:28:46 +01:00
"placeholder" : "Décrivez rapidement le sujet du problème rencontré ou de l'évolution souhaitée..." ,
2025-02-22 09:42:15 +01:00
} ,
2025-02-22 16:28:46 +01:00
form . NonEmpty ( "Ce champs ne doit pas être vide." ) ,
2025-02-22 09:42:15 +01:00
) ,
)
}
func NewIssueForm ( ) * form . Form {
return form . New (
2025-02-22 16:28:46 +01:00
form . NewField (
"title" ,
form . Attrs {
"type" : "text" ,
} ,
form . NonEmpty ( "Ce champs ne doit pas être vide." ) ,
) ,
2025-02-22 09:42:15 +01:00
form . NewField (
2025-02-22 18:01:45 +01:00
"body" ,
2025-02-22 09:42:15 +01:00
form . Attrs {
"type" : "textarea" ,
2025-02-22 16:28:46 +01:00
"rows" : "20" ,
2025-02-22 09:42:15 +01:00
} ,
2025-02-22 16:28:46 +01:00
form . NonEmpty ( "Ce champs ne doit pas être vide." ) ,
2025-02-22 09:42:15 +01:00
) ,
)
}
func IssuePage ( vmodel IssuePageVModel ) templ . Component {
return templruntime . GeneratedTemplate ( func ( templ_7745c5c3_Input templruntime . GeneratedComponentInput ) ( templ_7745c5c3_Err error ) {
templ_7745c5c3_W , ctx := templ_7745c5c3_Input . Writer , templ_7745c5c3_Input . Context
if templ_7745c5c3_CtxErr := ctx . Err ( ) ; templ_7745c5c3_CtxErr != nil {
return templ_7745c5c3_CtxErr
}
templ_7745c5c3_Buffer , templ_7745c5c3_IsBuffer := templruntime . GetBuffer ( templ_7745c5c3_W )
if ! templ_7745c5c3_IsBuffer {
defer func ( ) {
templ_7745c5c3_BufErr := templruntime . ReleaseBuffer ( templ_7745c5c3_Buffer )
if templ_7745c5c3_Err == nil {
templ_7745c5c3_Err = templ_7745c5c3_BufErr
}
} ( )
}
ctx = templ . InitializeContext ( ctx )
templ_7745c5c3_Var1 := templ . GetChildren ( ctx )
if templ_7745c5c3_Var1 == nil {
templ_7745c5c3_Var1 = templ . NopComponent
}
ctx = templ . ClearChildren ( ctx )
templ_7745c5c3_Var2 := templruntime . GeneratedTemplate ( func ( templ_7745c5c3_Input templruntime . GeneratedComponentInput ) ( templ_7745c5c3_Err error ) {
templ_7745c5c3_W , ctx := templ_7745c5c3_Input . Writer , templ_7745c5c3_Input . Context
templ_7745c5c3_Buffer , templ_7745c5c3_IsBuffer := templruntime . GetBuffer ( templ_7745c5c3_W )
if ! templ_7745c5c3_IsBuffer {
defer func ( ) {
templ_7745c5c3_BufErr := templruntime . ReleaseBuffer ( templ_7745c5c3_Buffer )
if templ_7745c5c3_Err == nil {
templ_7745c5c3_Err = templ_7745c5c3_BufErr
}
} ( )
}
ctx = templ . InitializeContext ( ctx )
templ_7745c5c3_Err = templruntime . WriteString ( templ_7745c5c3_Buffer , 1 , "<div class=\"container is-fluid\"><section class=\"section\"><div class=\"buttons is-right\"><a class=\"button is-medium\" href=\"" )
if templ_7745c5c3_Err != nil {
return templ_7745c5c3_Err
}
var templ_7745c5c3_Var3 templ . SafeURL = common . BaseURL ( ctx , common . WithPath ( "/auth/logout" ) )
_ , templ_7745c5c3_Err = templ_7745c5c3_Buffer . WriteString ( templ . EscapeString ( string ( templ_7745c5c3_Var3 ) ) )
if templ_7745c5c3_Err != nil {
return templ_7745c5c3_Err
}
2025-02-22 18:01:45 +01:00
templ_7745c5c3_Err = templruntime . WriteString ( templ_7745c5c3_Buffer , 2 , "\">Se déconnecter</a></div>" )
2025-02-22 09:42:15 +01:00
if templ_7745c5c3_Err != nil {
return templ_7745c5c3_Err
}
2025-02-22 18:01:45 +01:00
if vmodel . IssueURL != "" {
templ_7745c5c3_Err = templruntime . WriteString ( templ_7745c5c3_Buffer , 3 , "<article class=\"message is-primary\"><div class=\"message-header\"><p>Demande créée !</p><button class=\"delete\" aria-label=\"delete\" hx-on:click=\"onCloseMessage(this)\"></button></div><div class=\"message-body\">Votre demande a été créée et est disponible à l'adresse suivante: <a href=\"" )
if templ_7745c5c3_Err != nil {
return templ_7745c5c3_Err
}
var templ_7745c5c3_Var4 templ . SafeURL = templ . SafeURL ( vmodel . IssueURL )
_ , templ_7745c5c3_Err = templ_7745c5c3_Buffer . WriteString ( templ . EscapeString ( string ( templ_7745c5c3_Var4 ) ) )
if templ_7745c5c3_Err != nil {
return templ_7745c5c3_Err
}
templ_7745c5c3_Err = templruntime . WriteString ( templ_7745c5c3_Buffer , 4 , "\" target=\"_blank\"><code>" )
if templ_7745c5c3_Err != nil {
return templ_7745c5c3_Err
}
var templ_7745c5c3_Var5 string
templ_7745c5c3_Var5 , templ_7745c5c3_Err = templ . JoinStringErrs ( vmodel . IssueURL )
if templ_7745c5c3_Err != nil {
2025-02-23 14:26:40 +01:00
return templ . Error { Err : templ_7745c5c3_Err , FileName : ` internal/http/handler/webui/issue/component/issue_page.templ ` , Line : 77 , Col : 89 }
2025-02-22 18:01:45 +01:00
}
_ , templ_7745c5c3_Err = templ_7745c5c3_Buffer . WriteString ( templ . EscapeString ( templ_7745c5c3_Var5 ) )
if templ_7745c5c3_Err != nil {
return templ_7745c5c3_Err
}
templ_7745c5c3_Err = templruntime . WriteString ( templ_7745c5c3_Buffer , 5 , "</code></a>.</div></article><script type=\"text/javascript\">\n\t\t\t\t\t\tfunction clearSummary(projectId) {\n\t\t\t\t\t\t\tsessionStorage.removeItem(`summary-${projectId}`)\n\t\t\t\t\t\t}\n\t\t\t\t\t\tfunction openIssue(issueUrl) {\n\t\t\t\t\t\t\twindow.open(issueUrl, \"_blank\");\n\t\t\t\t\t\t}\n\t\t\t\t\t</script> " )
if templ_7745c5c3_Err != nil {
return templ_7745c5c3_Err
}
templ_7745c5c3_Err = templ . JSFuncCall ( "clearSummary" , vmodel . SelectedProjectID ) . Render ( ctx , templ_7745c5c3_Buffer )
if templ_7745c5c3_Err != nil {
return templ_7745c5c3_Err
}
templ_7745c5c3_Err = templruntime . WriteString ( templ_7745c5c3_Buffer , 6 , " " )
if templ_7745c5c3_Err != nil {
return templ_7745c5c3_Err
}
templ_7745c5c3_Err = templ . JSFuncCall ( "openIssue" , vmodel . IssueURL ) . Render ( ctx , templ_7745c5c3_Buffer )
if templ_7745c5c3_Err != nil {
return templ_7745c5c3_Err
}
}
2025-02-22 19:30:27 +01:00
templ_7745c5c3_Err = templruntime . WriteString ( templ_7745c5c3_Buffer , 7 , "<div class=\"columns\"><div class=\"column is-4\"><form id=\"summary-form\" action=\"" )
2025-02-22 09:42:15 +01:00
if templ_7745c5c3_Err != nil {
return templ_7745c5c3_Err
}
2025-02-22 18:01:45 +01:00
var templ_7745c5c3_Var6 templ . SafeURL = common . CurrentURL ( ctx )
_ , templ_7745c5c3_Err = templ_7745c5c3_Buffer . WriteString ( templ . EscapeString ( string ( templ_7745c5c3_Var6 ) ) )
if templ_7745c5c3_Err != nil {
return templ_7745c5c3_Err
}
2025-02-23 13:08:08 +01:00
templ_7745c5c3_Err = templruntime . WriteString ( templ_7745c5c3_Buffer , 8 , "\" method=\"put\" hx-disabled-elt=\"textarea, input, select, button\" hx-on:htmx:before-send=\"savePreferredProject()\" hx-indicator=\"#generation-progress\"><h2 class=\"title is-size-2\">Résumé de la demande</h2>" )
2025-02-22 09:42:15 +01:00
if templ_7745c5c3_Err != nil {
return templ_7745c5c3_Err
}
templ_7745c5c3_Err = common . FormSelect (
2025-02-22 16:28:46 +01:00
vmodel . SummaryForm , "issue-project" , "project" , "Projet" ,
2025-02-22 09:42:15 +01:00
common . WithOptions ( projectsToOptions ( vmodel . Projects ) ... ) ,
common . WithAttrs (
"hx-get" , string ( common . CurrentURL ( ctx , common . WithoutValues ( "project" , "*" ) ) ) ,
"hx-target" , "body" ,
"hx-push-url" , "true" ,
) ,
) . Render ( ctx , templ_7745c5c3_Buffer )
if templ_7745c5c3_Err != nil {
return templ_7745c5c3_Err
}
2025-02-22 15:32:10 +01:00
templ_7745c5c3_Err = common . FormTextarea (
2025-02-22 16:28:46 +01:00
vmodel . SummaryForm , "issue-summary" , "summary" , "Résumé" ,
2025-02-22 15:32:10 +01:00
common . WithTextareaAttrs (
"hx-on:change" , "onSummaryChange(event)" ,
) ,
) . Render ( ctx , templ_7745c5c3_Buffer )
2025-02-22 09:42:15 +01:00
if templ_7745c5c3_Err != nil {
return templ_7745c5c3_Err
}
2025-02-22 18:01:45 +01:00
templ_7745c5c3_Err = templruntime . WriteString ( templ_7745c5c3_Buffer , 9 , "<div class=\"buttons is-right\"><button type=\"submit\" class=\"button is-primary is-large\"><span class=\"icon\"><i class=\"fa fa-robot\"></i></span> <span>Générer le ticket</span></button></div></form></div><div class=\"column\"><h2 class=\"title is-size-2\">Votre demande</h2><form action=\"" )
if templ_7745c5c3_Err != nil {
return templ_7745c5c3_Err
}
var templ_7745c5c3_Var7 templ . SafeURL = common . CurrentURL ( ctx )
_ , templ_7745c5c3_Err = templ_7745c5c3_Buffer . WriteString ( templ . EscapeString ( string ( templ_7745c5c3_Var7 ) ) )
if templ_7745c5c3_Err != nil {
return templ_7745c5c3_Err
}
templ_7745c5c3_Err = templruntime . WriteString ( templ_7745c5c3_Buffer , 10 , "\" method=\"post\" hx-disabled-elt=\"textarea, input, select, button\" hx-indicator=\"#generation-progress\">" )
2025-02-22 16:28:46 +01:00
if templ_7745c5c3_Err != nil {
return templ_7745c5c3_Err
}
2025-02-22 18:01:45 +01:00
templ_7745c5c3_Err = common . FormField ( vmodel . IssueForm , "issue-title" , "title" , "Titre" ) . Render ( ctx , templ_7745c5c3_Buffer )
2025-02-22 09:42:15 +01:00
if templ_7745c5c3_Err != nil {
return templ_7745c5c3_Err
}
2025-02-22 18:01:45 +01:00
templ_7745c5c3_Err = common . FormTextarea ( vmodel . IssueForm , "issue-body" , "body" , "Corps" ) . Render ( ctx , templ_7745c5c3_Buffer )
2025-02-22 09:42:15 +01:00
if templ_7745c5c3_Err != nil {
return templ_7745c5c3_Err
}
2025-02-23 14:26:40 +01:00
templ_7745c5c3_Err = templruntime . WriteString ( templ_7745c5c3_Buffer , 11 , "<div class=\"buttons is-right\"><button type=\"submit\" class=\"button is-primary is-large\"><span class=\"icon\"><i class=\"fa fa-rocket\"></i></span> <span>Créer le ticket</span></button></div></form></div></div><progress id=\"generation-progress\" class=\"htmx-indicator progress\"></progress> " )
if templ_7745c5c3_Err != nil {
return templ_7745c5c3_Err
}
if vmodel . IssueTips != "" {
html := markdownToHTML ( ctx , vmodel . IssueTips )
if html != "" {
templ_7745c5c3_Err = templruntime . WriteString ( templ_7745c5c3_Buffer , 12 , "<article class=\"message is-info mt-5\"><div class=\"message-header\"><p><span class=\"icon\"><i class=\"fa fa-lightbulb\"></i></span>Suggestions</p><button class=\"delete\" aria-label=\"delete\" hx-on:click=\"onCloseMessage(this)\"></button></div><div class=\"message-body\"><div class=\"content\">" )
if templ_7745c5c3_Err != nil {
return templ_7745c5c3_Err
}
templ_7745c5c3_Err = templ . Raw ( html ) . Render ( ctx , templ_7745c5c3_Buffer )
if templ_7745c5c3_Err != nil {
return templ_7745c5c3_Err
}
templ_7745c5c3_Err = templruntime . WriteString ( templ_7745c5c3_Buffer , 13 , "</div></div></article>" )
if templ_7745c5c3_Err != nil {
return templ_7745c5c3_Err
}
}
}
templ_7745c5c3_Err = templruntime . WriteString ( templ_7745c5c3_Buffer , 14 , "</section></div><script type=\"text/javascript\">\n\t\tfunction onCloseMessage(closeElement) {\n\t\t\tcloseElement.closest('.message').style.display = 'none';\n\t\t}\n\n\t\tfunction onSummaryChange(evt) {\n\t\t\tconst summary = evt.currentTarget.value;\n\t\t\tconst projectId = document.getElementById(\"issue-project\").value;\n\t\t\tsessionStorage.setItem(`summary-${projectId}`, summary);\n\t\t}\n\n\t\tfunction savePreferredProject() {\n\t\t\tconst projectId = document.getElementById(\"issue-project\").value;\n\t\t\tlocalStorage.setItem(`preferred-project`, projectId);\n\t\t}\n\n\t\tfunction restorePreferredProject() {\n\t\t\tconst preferredProject = localStorage.getItem(`preferred-project`);\n\t\t\tif (!preferredProject) return;\n\t\t\tconst projectElement = document.getElementById(\"issue-project\");\n\t\t\tif (!projectElement) return;\n\t\t\tif (preferredProject === projectElement.value) return;\n\t\t\tprojectElement.value = preferredProject;\n\t\t\tprojectElement.dispatchEvent(new Event('change'));\n\t\t}\n\n\t\tfunction restoreLastSummary() {\n\t\t\tconst summaryTextarea = document.getElementById(\"issue-summary\");\n\t\t\tif (!summaryTextarea) return;\n const summary = summaryTextarea.value;\n\t\t\tif (summary !== \"\") return;\n\t\t\tconst projectId = document.getElementById(\"issue-project\").value;\n\t\t\tif (!projectId) return;\n\t\t\tconst savedSummary = sessionStorage.getItem(`summary-${projectId}`);\n\t\t\tif (!savedSummary) return;\n\t\t\tsummaryTextarea.value = savedSummary;\n\t\t}\n\n\t\thtmx.onLoad(function(){\n\t\t\trestoreLastSummary();\n\t\t\trestorePreferredProject();\n })\n\t\t</script>" )
2025-02-22 09:42:15 +01:00
if templ_7745c5c3_Err != nil {
return templ_7745c5c3_Err
}
return nil
} )
2025-02-22 16:28:46 +01:00
templ_7745c5c3_Err = common . Page ( common . WithTitle ( "Nouvelle demande" ) ) . Render ( templ . WithChildren ( ctx , templ_7745c5c3_Var2 ) , templ_7745c5c3_Buffer )
2025-02-22 09:42:15 +01:00
if templ_7745c5c3_Err != nil {
return templ_7745c5c3_Err
}
return nil
} )
}
func projectsToOptions ( projects [ ] * model . Project ) [ ] string {
options := make ( [ ] string , 0 , len ( projects ) * 2 )
for _ , p := range projects {
2025-02-23 13:08:08 +01:00
options = append ( options , p . Name , p . ID )
2025-02-22 09:42:15 +01:00
}
return options
}
2025-02-23 14:26:40 +01:00
func markdownToHTML ( ctx context . Context , text string ) string {
var buff bytes . Buffer
if err := goldmark . Convert ( [ ] byte ( text ) , & buff ) ; err != nil {
slog . ErrorContext ( ctx , "could not convert markdown to html" , slog . Any ( "error" , errors . WithStack ( err ) ) )
return ""
}
return buff . String ( )
}
2025-02-22 09:42:15 +01:00
var _ = templruntime . GeneratedTemplate