Browse Source

the garden of Eden to till it and keep it

jordyn 4 years ago
parent
commit
de3487dfa3
6 changed files with 82 additions and 4 deletions
  1. 3 0
      css/style.css
  2. 35 4
      main.go
  3. 12 0
      pages/allfigs.html
  4. 6 0
      pages/driedfig.html
  5. 19 0
      pages/dryfig.html
  6. 7 0
      pages/home.html

+ 3 - 0
css/style.css

@@ -0,0 +1,3 @@
+img {
+	width: 200px;
+}

+ 35 - 4
main.go

@@ -1,26 +1,34 @@
 package main
 
 import (
-	"fmt"
 	"log"
 	"os"
 	"io"
 
 	"encoding/json"
+	"html/template"
 	"net/http"
 
 	"git.sr.ht/~jordyn/imagination/figtree"
 )
 
 func main() {
+	fs := http.FileServer(http.Dir(figtree.FIGS))
+	http.Handle("/imagination/", http.StripPrefix("/imagination/", fs))
+	css := http.FileServer(http.Dir("css/"))
+	http.Handle("/style/", http.StripPrefix("/style/", css))
 	http.HandleFunc("/", homeHandler)
-	http.HandleFunc("/figs/", figHandler)
-	http.HandleFunc("/all/", allHandler)
+	http.HandleFunc("/fig/", figHandler)
+	http.HandleFunc("/all/", seeFigs)
+	http.HandleFunc("/dry/", dryHandler)
 	log.Fatal(http.ListenAndServe(":8080", nil))
 }
 
 func homeHandler(w http.ResponseWriter, r *http.Request) {
-	fmt.Fprintf(w, "<h1>my beautiful figs</h1>")
+	page := template.Must(template.ParseFiles("pages/home.html"))
+	if err := page.Execute(w, nil); err != nil {
+		panic(err)
+	}
 }
 
 func figHandler(w http.ResponseWriter, r *http.Request) {
@@ -54,9 +62,32 @@ func figHandler(w http.ResponseWriter, r *http.Request) {
 	io.Copy(f, file)
 
 	figtree.DryFig(newfig)
+
+	page := template.Must(template.ParseFiles("pages/driedfig.html"))
+
+	fancyfig := newfig.Fancy()
+
+	if err := page.Execute(w, fancyfig); err != nil {
+		panic(err)
+	}
 }
 
 func allHandler(w http.ResponseWriter, r *http.Request) {
 	figs, _ := figtree.AllFigsFancy()
 	json.NewEncoder(w).Encode(figs)
 }
+
+func seeFigs(w http.ResponseWriter, r *http.Request) {
+	figs, _ := figtree.AllFigsFancy()
+	page := template.Must(template.ParseFiles("pages/allfigs.html"))
+	if err := page.Execute(w, figs); err != nil {
+		panic(err)
+	}
+}
+
+func dryHandler(w http.ResponseWriter, r *http.Request) {
+	page := template.Must(template.ParseFiles("pages/dryfig.html"))
+	if err := page.Execute(w, nil); err != nil {
+		panic(err)
+	}
+}

+ 12 - 0
pages/allfigs.html

@@ -0,0 +1,12 @@
+<head>
+	<link rel="stylesheet" type="text/css" href="/style/style.css">
+</head>
+<html>
+	{{ range . }}
+		<h1>{{.Name}}</h1>
+		<p>{{.Desc}}</p>
+
+		{{.View}}
+
+	{{ end}}
+</html>

+ 6 - 0
pages/driedfig.html

@@ -0,0 +1,6 @@
+<html>
+	<h1>{{.Name}}</h1>
+	<p>{{.Desc}}</p>
+
+	{{.View}}
+</html>

+ 19 - 0
pages/dryfig.html

@@ -0,0 +1,19 @@
+<html>
+	<form method="post" action="/fig/" enctype="multipart/form-data">
+		<label for="name">name:</label><br>
+		<input type="text" id="name" name="name"><br>
+		<label for="desc">desc:</label><br>
+		<input type="text" id="desc" name="desc"><br>
+		<label for="type">type:</label><br>
+		<input type="text" id="type" name="type"><br>
+		<label for="ext">ext:</label><br>
+		<input type="text" id="ext" name="ext"><br>
+		<label for="birth">birth:</label><br>
+		<input type="date" id="birth" name="birth"><br>
+
+		<label for="newfig">newfig:</label><br>
+		<input type="file" id="newfig" name="newfig"><br>
+
+		<input type="submit" value="go">
+	</form>
+</html>

+ 7 - 0
pages/home.html

@@ -0,0 +1,7 @@
+<html>
+	<h1>my beautiful figs</h1>
+	<ul>
+		<li><a href="/dry/">dry a fig</a></li>
+		<li><a href="/all/">see all figs</a></li>
+	</ul>
+</html>