43 lines
1002 B
Go
43 lines
1002 B
Go
package handlers
|
|
|
|
import (
|
|
"go-udemy-web-1/pkg/config"
|
|
"go-udemy-web-1/pkg/models"
|
|
"go-udemy-web-1/pkg/render"
|
|
"net/http"
|
|
)
|
|
|
|
// Repo the repository used by the handlers
|
|
var Repo *Repository
|
|
|
|
// Repository is the repository type
|
|
type Repository struct {
|
|
App *config.AppConfig
|
|
}
|
|
|
|
// NewRepo creates a new repository
|
|
func NewRepo(a *config.AppConfig) *Repository {
|
|
return &Repository{
|
|
App: a,
|
|
}
|
|
}
|
|
|
|
// NewHandlers sets the repository for the handlers
|
|
func NewHandlers(r *Repository) {
|
|
Repo = r
|
|
}
|
|
|
|
// Home is the about page handler
|
|
func (m *Repository) Home(w http.ResponseWriter, r *http.Request) {
|
|
render.RenderTemplate(w, "home.page.tmpl", &models.TemplateData{})
|
|
}
|
|
|
|
// About is the about page handler
|
|
func (m *Repository) About(w http.ResponseWriter, r *http.Request) {
|
|
// perform some logic
|
|
stringMap := make(map[string]string)
|
|
stringMap["test"] = "Hello world!"
|
|
// send the data to the template
|
|
render.RenderTemplate(w, "about.page.tmpl", &models.TemplateData{StringMap: stringMap})
|
|
}
|