Compare commits
No commits in common. "main" and "develop" have entirely different histories.
4 changed files with 6 additions and 19 deletions
4
core.go
4
core.go
|
@ -104,7 +104,7 @@ func (app *App) Run(router *httprouter.Router) {
|
||||||
|
|
||||||
// check if template engine is enable
|
// check if template engine is enable
|
||||||
TemplateEnableStr := os.Getenv("TEMPLATE_ENABLE")
|
TemplateEnableStr := os.Getenv("TEMPLATE_ENABLE")
|
||||||
if "" == TemplateEnableStr {
|
if TemplateEnableStr == "" {
|
||||||
TemplateEnableStr = "false"
|
TemplateEnableStr = "false"
|
||||||
}
|
}
|
||||||
TemplateEnable, _ := strconv.ParseBool(TemplateEnableStr)
|
TemplateEnable, _ := strconv.ParseBool(TemplateEnableStr)
|
||||||
|
@ -119,7 +119,7 @@ func (app *App) Run(router *httprouter.Router) {
|
||||||
}
|
}
|
||||||
useHttps, _ := strconv.ParseBool(useHttpsStr)
|
useHttps, _ := strconv.ParseBool(useHttpsStr)
|
||||||
|
|
||||||
if "dev" == runMode {
|
if runMode == "dev" {
|
||||||
fmt.Printf("Welcome to Goffee\n")
|
fmt.Printf("Welcome to Goffee\n")
|
||||||
if useHttps {
|
if useHttps {
|
||||||
fmt.Printf("Listening on https \nWaiting for requests...\n")
|
fmt.Printf("Listening on https \nWaiting for requests...\n")
|
||||||
|
|
10
response.go
10
response.go
|
@ -40,16 +40,6 @@ func (rs *Response) BufferFile(name string, filetype string, b bytes.Buffer) *Re
|
||||||
return rs
|
return rs
|
||||||
}
|
}
|
||||||
|
|
||||||
// writes the contents of a buffer to the HTTP response with specified file name and type if not terminated.
|
|
||||||
func (rs *Response) BufferInline(name string, filetype string, b bytes.Buffer) *Response {
|
|
||||||
|
|
||||||
if rs.isTerminated == false {
|
|
||||||
rs.HttpResponseWriter.Header().Add("Content-Type", filetype)
|
|
||||||
b.WriteTo(rs.HttpResponseWriter)
|
|
||||||
}
|
|
||||||
return rs
|
|
||||||
}
|
|
||||||
|
|
||||||
// sets the response's content type to HTML and assigns the provided body as the response body if not terminated.
|
// sets the response's content type to HTML and assigns the provided body as the response body if not terminated.
|
||||||
func (rs *Response) Any(body any) *Response {
|
func (rs *Response) Any(body any) *Response {
|
||||||
if rs.isTerminated == false {
|
if rs.isTerminated == false {
|
||||||
|
|
|
@ -15,7 +15,6 @@ type ContentTableTH struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
type ContentTableTD struct {
|
type ContentTableTD struct {
|
||||||
ID string
|
ID string
|
||||||
Value interface{} // string or component struct according ValueType
|
Value interface{} // string or component struct according ValueType
|
||||||
ValueClass string
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
{{- range .AllTD}}<tr scope="row">
|
{{- range .AllTD}}<tr scope="row">
|
||||||
{{range $index, $item := .}}<td {{ if $item.ID }}id="{{$item.ID}}"{{end}}{{ if $item.ValueClass }} class="{{$item.ValueClass}}"{{end}}>
|
{{range $index, $item := .}}<td {{ if $item.ID }}id="{{$item.ID}}"{{end}}>
|
||||||
{{ with $x := index $.AllTH $index }}
|
{{ with $x := index $.AllTH $index }}
|
||||||
{{ if eq $x.ValueType "href"}}
|
{{ if eq $x.ValueType "href"}}
|
||||||
{{template "content_href" $item.Value}}
|
{{template "content_href" $item.Value}}
|
||||||
|
@ -16,9 +16,7 @@
|
||||||
{{ else if eq $x.ValueType "list"}}
|
{{ else if eq $x.ValueType "list"}}
|
||||||
{{template "content_list" $item.Value}}
|
{{template "content_list" $item.Value}}
|
||||||
{{ else if eq $x.ValueType "checkbox"}}
|
{{ else if eq $x.ValueType "checkbox"}}
|
||||||
{{template "form_checkbox" $item.Value}}
|
{{template "form_checkbox" $item.Value}}
|
||||||
{{ else if eq $x.ValueType "image"}}
|
|
||||||
<img src="{{ $item.Value }}">
|
|
||||||
{{ else }}
|
{{ else }}
|
||||||
{{ $item.Value }}
|
{{ $item.Value }}
|
||||||
{{end}}
|
{{end}}
|
||||||
|
|
Loading…
Reference in a new issue