]> git.earlybird.gay Git - today/commitdiff
add a test app
authorearly <me@earlybird.gay>
Sun, 25 Aug 2024 06:50:37 +0000 (00:50 -0600)
committerearly <me@earlybird.gay>
Sun, 25 Aug 2024 06:50:37 +0000 (00:50 -0600)
cmd/standard-test/index.html [new file with mode: 0644]
cmd/standard-test/main.go [new file with mode: 0644]
cmd/standard-test/public/style.css [new file with mode: 0644]
go.mod
go.sum

diff --git a/cmd/standard-test/index.html b/cmd/standard-test/index.html
new file mode 100644 (file)
index 0000000..ca3b29a
--- /dev/null
@@ -0,0 +1,14 @@
+<!DOCTYPE html>
+<html>
+<header>
+    <title>Today Engine Examples</title>
+    <link rel="stylesheet" href="/style.css">
+</header>
+
+<body>
+    <main>
+        <stdp-contact-form :action="/contact" :method="POST"></stdp-contact-form>
+    </main>
+</body>
+
+</html>
\ No newline at end of file
diff --git a/cmd/standard-test/main.go b/cmd/standard-test/main.go
new file mode 100644 (file)
index 0000000..d2ed56c
--- /dev/null
@@ -0,0 +1,29 @@
+package main
+
+import (
+       "net/http"
+       "syscall"
+
+       "git.earlybird.gay/today-engine/page"
+       stdpart "git.earlybird.gay/today-engine/standard/part"
+
+       tapp "git.earlybird.gay/today-app/app"
+)
+
+var Page = page.New("index", "index.html",
+       page.Includes(
+               stdpart.ContactForm([]string{"Feedback"}),
+       ),
+)
+
+func main() {
+       app := tapp.New()
+       tapp.GetEnv().Apply(app)
+       app.ShutdownOnSignal(syscall.SIGINT, syscall.SIGTERM)
+
+       app.Handle("GET /{$}", Page)
+       app.Handle("GET /", http.FileServer(http.Dir("public")))
+       app.Handle("POST /contact", stdpart.HandleContactForm(nil, stdpart.PrintContact))
+
+       app.ListenAndServe()
+}
diff --git a/cmd/standard-test/public/style.css b/cmd/standard-test/public/style.css
new file mode 100644 (file)
index 0000000..c0a3157
--- /dev/null
@@ -0,0 +1,51 @@
+/* The Great Reset */
+* {
+    padding: 0;
+    margin: 0;
+}
+
+/* Containers */
+
+html {
+    font-family: sans-serif;
+}
+
+main, section, nav {
+    display: flex;
+    flex-direction: column;
+    gap: 1rem;
+}
+
+main {
+    margin: 2rem 25%;
+}
+
+span {
+    display: inline;
+}
+
+span + span {
+    margin-left: .5rem;
+}
+
+/* Forms */
+
+form {
+    display: grid;
+    grid-template-columns: 1fr 3fr;
+    gap: .5rem;
+}
+
+form > input[type="submit"] {
+    grid-column: span 2;
+}
+
+/* Typography */
+
+:not(pre) > code {
+    font-size: 1rem;
+}
+
+li {
+    margin-left: 20px;
+}
\ No newline at end of file
diff --git a/go.mod b/go.mod
index 27bc81929fd10c9136575a70baa7032e03650b24..4a7affafa2087b51c568135d487d719c339c0afd 100644 (file)
--- a/go.mod
+++ b/go.mod
@@ -3,3 +3,5 @@ module git.earlybird.gay/today-engine
 go 1.22.4
 
 require golang.org/x/net v0.27.0
+
+require git.earlybird.gay/today-app v0.0.0-20240813010007-675f08ae35b1
diff --git a/go.sum b/go.sum
index 756671423f7fd693cd3d34907dd60b218fe99dd5..e4e88d5dcb33d1cf12bcf9de95ac6e7544851463 100644 (file)
--- a/go.sum
+++ b/go.sum
@@ -1,2 +1,4 @@
+git.earlybird.gay/today-app v0.0.0-20240813010007-675f08ae35b1 h1:Fbz2uRIWK6CR+jcNN0KQrna4u/kYZccn2obcla7dPfQ=
+git.earlybird.gay/today-app v0.0.0-20240813010007-675f08ae35b1/go.mod h1:AxsoC2ERffYriW60C1vdV34ew6JPKxllG9mHOTs128I=
 golang.org/x/net v0.27.0 h1:5K3Njcw06/l2y9vpGCSdcxWOYHOUk3dVNGDXN+FvAys=
 golang.org/x/net v0.27.0/go.mod h1:dDi0PyhWNoiUOrAS8uXv/vnScO4wnHQO4mj9fn/RytE=