defined template and view directory seperately

This commit is contained in:
Chris kerr 2024-05-27 22:05:25 -04:00
parent 6f755be6cf
commit e699eec6e0
9 changed files with 37 additions and 17 deletions

View File

@ -3,16 +3,15 @@ package main
import ( import (
"GoStart/src/api" "GoStart/src/api"
"GoStart/src/routes" "GoStart/src/routes"
"GoStart/src/util" "GoStart/src/utils"
"fmt" "fmt"
"net/http" "net/http"
) )
func main() { func main() {
// Load Configurations // Load Configurations
cfg, err := util.LoadConfig() cfg, err := utils.LoadConfig()
if err != nil { if err != nil {
fmt.Printf("Failed to load config: %v\n", err) fmt.Printf("Failed to load config: %v\n", err)
return return

View File

@ -10,5 +10,5 @@ func ExampleHandler(w http.ResponseWriter, r *http.Request) {
} }
// Call renderTemplate with the specific template for this route // Call renderTemplate with the specific template for this route
renderTemplate(w, data, "web/views/example.html") renderTemplate(w, data, "example.html")
} }

View File

@ -10,5 +10,5 @@ func RootHandler(w http.ResponseWriter, r *http.Request) {
} }
// Call renderTemplate with the specific template for this route // Call renderTemplate with the specific template for this route
renderTemplate(w, data, "web/views/index.html") renderTemplate(w, data, "index.html")
} }

View File

@ -1,6 +1,7 @@
package routes package routes
import ( import (
"GoStart/src/utils"
"html/template" "html/template"
"net/http" "net/http"
) )
@ -9,16 +10,26 @@ type PageData struct {
Title string Title string
} }
func renderTemplate(w http.ResponseWriter, data PageData, view string) { // Define the base directories for views and templates
// List of common templates const (
layout := []string{ viewsDir = "web/views/"
"web/views/template/#layout.html", templatesDir = "web/views/templates/"
"web/views/template/#header.html", )
"web/views/template/#footer.html",
// Define the common layout templates filenames
var layoutFiles = []string{
"#layout.html",
"header.html",
"footer.html",
} }
// Initialize the common templates with full paths
var layout = utils.PrependDir(templatesDir, layoutFiles)
func renderTemplate(w http.ResponseWriter, data PageData, view string) {
// Append the specific template for the route // Append the specific template for the route
templates := append(layout, view) templates := append(layout, viewsDir+view)
// Parse all templates // Parse all templates
tmpl, err := template.ParseFiles(templates...) tmpl, err := template.ParseFiles(templates...)

View File

@ -1,4 +1,4 @@
package util package utils
import ( import (
"encoding/json" "encoding/json"

10
src/utils/helpers.go Normal file
View File

@ -0,0 +1,10 @@
package utils
// Helper function to prepend a directory path to a list of filenames
func PrependDir(dir string, files []string) []string {
var fullPaths []string
for _, file := range files {
fullPaths = append(fullPaths, dir+file)
}
return fullPaths
}