]> git.earlybird.gay Git - today/commitdiff
Change name
authorearly <me@earlybird.gay>
Tue, 30 Jul 2024 16:31:42 +0000 (10:31 -0600)
committerearly <me@earlybird.gay>
Tue, 30 Jul 2024 16:31:42 +0000 (10:31 -0600)
51 files changed:
README.md
cmd/run-mast-examples/ex01-pages/example.go [deleted file]
cmd/run-mast-examples/ex01-pages/page.html [deleted file]
cmd/run-mast-examples/ex02-parts/example.go [deleted file]
cmd/run-mast-examples/ex02-parts/page.html [deleted file]
cmd/run-mast-examples/ex02-parts/section.html [deleted file]
cmd/run-mast-examples/ex03-slots/example.go [deleted file]
cmd/run-mast-examples/ex03-slots/page.html [deleted file]
cmd/run-mast-examples/ex03-slots/section.html [deleted file]
cmd/run-mast-examples/ex04-templates/example.go [deleted file]
cmd/run-mast-examples/ex04-templates/page.html [deleted file]
cmd/run-mast-examples/ex06-data/example.go [deleted file]
cmd/run-mast-examples/ex06-data/message-printer.html [deleted file]
cmd/run-mast-examples/ex06-data/page.html [deleted file]
cmd/run-mast-examples/ex07-components/counter.html [deleted file]
cmd/run-mast-examples/ex07-components/example.go [deleted file]
cmd/run-mast-examples/ex07-components/page.html [deleted file]
cmd/run-mast-examples/index.html [deleted file]
cmd/run-mast-examples/main.go [deleted file]
cmd/run-mast-examples/parts/example-nav.html [deleted file]
cmd/run-mast-examples/parts/parts.go [deleted file]
cmd/run-today-examples/ex01-pages/example.go [new file with mode: 0644]
cmd/run-today-examples/ex01-pages/page.html [new file with mode: 0644]
cmd/run-today-examples/ex02-parts/example.go [new file with mode: 0644]
cmd/run-today-examples/ex02-parts/page.html [new file with mode: 0644]
cmd/run-today-examples/ex02-parts/section.html [new file with mode: 0644]
cmd/run-today-examples/ex03-slots/example.go [new file with mode: 0644]
cmd/run-today-examples/ex03-slots/page.html [new file with mode: 0644]
cmd/run-today-examples/ex03-slots/section.html [new file with mode: 0644]
cmd/run-today-examples/ex04-templates/example.go [new file with mode: 0644]
cmd/run-today-examples/ex04-templates/page.html [new file with mode: 0644]
cmd/run-today-examples/ex06-data/example.go [new file with mode: 0644]
cmd/run-today-examples/ex06-data/message-printer.html [new file with mode: 0644]
cmd/run-today-examples/ex06-data/page.html [new file with mode: 0644]
cmd/run-today-examples/ex07-components/counter.html [new file with mode: 0644]
cmd/run-today-examples/ex07-components/example.go [new file with mode: 0644]
cmd/run-today-examples/ex07-components/page.html [new file with mode: 0644]
cmd/run-today-examples/index.html [new file with mode: 0644]
cmd/run-today-examples/main.go [new file with mode: 0644]
cmd/run-today-examples/parts/example-nav.html [new file with mode: 0644]
cmd/run-today-examples/parts/parts.go [new file with mode: 0644]
cmd/run-today-examples/public/style.css [new file with mode: 0644]
component/component.go
go.mod
include/callstack.go
internal/compile/compile.go
internal/compile/component.go
internal/compile/compute.go
internal/compile/template.go
page/page.go
part/part.go

index 085c5fbf31906f83184992d5abf8e955e8b67642..98c82e2162387380629efb2eb520c5a37976bc51 100644 (file)
--- a/README.md
+++ b/README.md
@@ -1,13 +1,13 @@
-# Make a Site Today (Mast) Web Engine
+# Today Web Engine
 
-The Mast engine builds on Go's templating with reusable parts in the style of
+The Today engine builds on Go's templating with reusable parts in the style of
 the Web Components standard. It aims to be usable for anything from static HTML
 websites to complex applications with a mix of server and client-side behavior.
 
 ## Install
 
 ```sh
-go get git.earlybird.gay/mast-engine@latest
+go get git.earlybird.gay/today-engine@latest
 ```
 
 ## Usage
@@ -17,8 +17,8 @@ example. You can walk through these examples yourself by installing them as
 an executable:
 
 ```sh
-go install git.earlybird.gay/mast-engine/cmd/run-mast-examples@latest
-run-mast-examples
+go install git.earlybird.gay/today-engine/cmd/run-today-examples@latest
+run-today-examples
 ```
 
 ## License
@@ -26,11 +26,11 @@ run-mast-examples
 > This section is not legally binding, please read the license text for
 > specifics! 
 
-The Mast Web Engine is licensed under the LGPL (GNU Lesser General Public
+The Today Web Engine is licensed under the LGPL (GNU Lesser General Public
 License). This license affects how you can run, modify, and distribute
-mast-engine. In short:
+today-engine. In short:
 
-- If you modify mast-engine, you have to publish your modifications under the
+- If you modify today-engine, you have to publish your modifications under the
   GPL or LGPL.
-- If you use mast-engine without modifying it, you're in the clear.
-- Building a website using mast-engine does not count as modifying mast-engine.
+- If you use today-engine without modifying it, you're in the clear.
+- Building a website using today-engine does not count as modifying today-engine.
diff --git a/cmd/run-mast-examples/ex01-pages/example.go b/cmd/run-mast-examples/ex01-pages/example.go
deleted file mode 100644 (file)
index 1978a2e..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-// Copyright (C) 2024 early (LGPL)
-package ex01
-
-import (
-       "git.earlybird.gay/mast-engine/cmd/run-mast-examples/parts"
-       "git.earlybird.gay/mast-engine/page"
-)
-
-var Page = page.New("ex01", "page.html", page.Includes(parts.ExampleNav))
diff --git a/cmd/run-mast-examples/ex01-pages/page.html b/cmd/run-mast-examples/ex01-pages/page.html
deleted file mode 100644 (file)
index 17ef3b1..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-<!DOCTYPE html>
-<html>
-    <header>
-        <title>Example 1</title>
-    </header>
-    <body>
-        <h1>Basic Page</h1>
-        <p>This is a static page. Hooray.</p>
-
-        <!-- Ignore me!! I'll be explained in a second! -->
-        <example-nav>
-            <a href="ex02" slot="next">Parts</a>
-        </example-nav>
-    </body>
-</html>
\ No newline at end of file
diff --git a/cmd/run-mast-examples/ex02-parts/example.go b/cmd/run-mast-examples/ex02-parts/example.go
deleted file mode 100644 (file)
index 8226eff..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-// Copyright (C) 2024 early (LGPL)
-package ex02
-
-import (
-       "git.earlybird.gay/mast-engine/cmd/run-mast-examples/parts"
-       "git.earlybird.gay/mast-engine/page"
-       "git.earlybird.gay/mast-engine/part"
-)
-
-var section = part.New("my-section", "section.html")
-
-// Use *.Includes to include a part as a dependency.
-var Page = page.New("ex02", "page.html", page.Includes(section, parts.ExampleNav))
diff --git a/cmd/run-mast-examples/ex02-parts/page.html b/cmd/run-mast-examples/ex02-parts/page.html
deleted file mode 100644 (file)
index 830c64d..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-<!DOCTYPE html>
-<html>
-    <header>
-        <title>Example 2</title>
-    </header>
-    <body>
-        <h1>Page with Parts</h1>
-        <p>This page uses "parts" to create sections on the page. Parts are
-            HTML blocks that you can re-use.
-        </p>
-    </body>
-    <my-section>
-        <h2>Section</h2>
-        <p>This is inner HTML for a my-section "part". It replaces the slot tag
-            in the part.
-        </p>
-    </my-section>
-
-    <example-nav>
-        <a href="ex01" slot="previous">Pages</a>
-        <a href="ex03" slot="next">Slots</a>
-    </example-nav>
-</html>
\ No newline at end of file
diff --git a/cmd/run-mast-examples/ex02-parts/section.html b/cmd/run-mast-examples/ex02-parts/section.html
deleted file mode 100644 (file)
index a4fb103..0000000
+++ /dev/null
@@ -1,6 +0,0 @@
-<template>
-    <section>
-        <!-- Slots are where the inner HTML of the part goes when rendered. -->
-        <slot></slot>
-    </section>
-</template>
\ No newline at end of file
diff --git a/cmd/run-mast-examples/ex03-slots/example.go b/cmd/run-mast-examples/ex03-slots/example.go
deleted file mode 100644 (file)
index 687cdea..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-// Copyright (C) 2024 early (LGPL)
-package ex03
-
-import (
-       "git.earlybird.gay/mast-engine/cmd/run-mast-examples/parts"
-       "git.earlybird.gay/mast-engine/page"
-       "git.earlybird.gay/mast-engine/part"
-)
-
-var section = part.New("my-section", "section.html")
-
-// Use *.Includes to include a part as a dependency.
-var Page = page.New("ex03", "page.html", page.Includes(section, parts.ExampleNav))
diff --git a/cmd/run-mast-examples/ex03-slots/page.html b/cmd/run-mast-examples/ex03-slots/page.html
deleted file mode 100644 (file)
index 2ea74a3..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-<!DOCTYPE html>
-<html>
-    <header>
-        <title>Example 3</title>
-    </header>
-    <body>
-        <h1>Page with Parts</h1>
-        <p>This page uses "parts" to create sections on the page. Parts are
-            HTML blocks that you can re-use.
-        </p>
-    </body>
-    <!-- Use named slots to choose where HTML goes in the part. -->
-    <my-section>
-        <h2 slot="header">Section with Named Slots</h2>
-        <p slot="content">Use the slot tag to fill in named slots.</p>
-        <p slot="content">You can do this with multiple HTML elements!</p>
-    </my-section>
-    <!-- Slots left empty have default HTML; see section.html for details! -->
-    <my-section/>
-    <my-section>
-        <h2 slot="header">Section with a Subsection</h2>
-        <p slot="content">You can also include parts inside parts.</p>
-        <my-section slot="content">
-            <h3 slot="header">Subsection</h3>
-            <p slot="content">This my-section is a subsection!</p>
-        </my-section>
-    </my-section>
-
-    <example-nav>
-        <a href="ex02" slot="previous">Parts</a>
-        <a href="ex04" slot="next">Go Templates</a>
-    </example-nav>
-</html>
\ No newline at end of file
diff --git a/cmd/run-mast-examples/ex03-slots/section.html b/cmd/run-mast-examples/ex03-slots/section.html
deleted file mode 100644 (file)
index 75f31ac..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-<template>
-    <section>
-        <!-- Slots are where the inner HTML of the part goes when rendered. -->
-        <slot name="header">
-            <h2>Section</h2>
-        </slot>
-        <slot name="content">
-            <p>When no HTML is provided for a slot, it uses the HTML provided
-                in the template.
-            </p>
-        </slot>
-    </section>
-</template>
\ No newline at end of file
diff --git a/cmd/run-mast-examples/ex04-templates/example.go b/cmd/run-mast-examples/ex04-templates/example.go
deleted file mode 100644 (file)
index 32f0ae6..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-// Copyright (C) 2024 early (LGPL)
-package ex04
-
-import (
-       "text/template"
-
-       "git.earlybird.gay/mast-engine/cmd/run-mast-examples/parts"
-       "git.earlybird.gay/mast-engine/page"
-       "git.earlybird.gay/mast-engine/render"
-)
-
-var Page = page.New("ex04", "page.html",
-       page.OnLoad(func(data render.Data) error {
-               data.Set("message", "Hello, Mast!")
-               return nil
-       }),
-       page.Funcs(template.FuncMap{
-               "reverse": func(s string) string {
-                       out := make([]byte, len(s))
-                       for i := range (len(s) + 1) / 2 {
-                               j := len(s) - i - 1
-                               out[i] = s[j]
-                               out[j] = s[i]
-                       }
-                       return string(out)
-               },
-       }),
-       page.Includes(parts.ExampleNav),
-)
diff --git a/cmd/run-mast-examples/ex04-templates/page.html b/cmd/run-mast-examples/ex04-templates/page.html
deleted file mode 100644 (file)
index 7bea144..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
-<!DOCTYPE html>
-<html>
-    <header>
-        <title>Example 4</title>
-    </header>
-    <body>
-        <h1>Template Data</h1>
-        <p>Let's step back to talk about template data. Go provides templates
-            using "handlebars" notation to create server-side behavior on your
-            pages. For example, on this page, {{ `{{ .message }}` }} is 
-            "{{ .message }}".
-        </p>
-        <p>You can also add functions, if the ones provided do not do everything
-            you need. On this page, {{ `{{ reverse "hello" }}`}} is
-            "{{ reverse "hello" }}".
-        </p>
-        <pre><code>var index = page.New("index", "index.html",
-    page.OnLoad(func(data render.Data) error {
-        data.Set("message", "Hello, Mast!")
-        return nil
-    }),
-    page.Funcs(template.FuncMap{
-        "reverse": func(s string) string {
-            out := make([]byte, len(s))
-            for i := range (len(s) + 1) / 2 {
-                j := len(s) - i - 1
-                out[i] = s[j]
-                out[j] = s[i]
-            }
-            return string(out)
-        },
-    }),
-)</code></pre>
-
-    <example-nav>
-        <a href="ex03" slot="previous">Slots</a>
-    </example-nav>
-    </body>
-</html>
\ No newline at end of file
diff --git a/cmd/run-mast-examples/ex06-data/example.go b/cmd/run-mast-examples/ex06-data/example.go
deleted file mode 100644 (file)
index d85da0f..0000000
+++ /dev/null
@@ -1,42 +0,0 @@
-// Copyright (C) 2024 early (LGPL)
-package ex06
-
-import (
-       "errors"
-       "strings"
-
-       "git.earlybird.gay/mast-engine/cmd/run-mast-examples/parts"
-       "git.earlybird.gay/mast-engine/page"
-       "git.earlybird.gay/mast-engine/part"
-       "git.earlybird.gay/mast-engine/render"
-)
-
-type exampleStruct struct {
-       Data string
-}
-
-var Page = page.New("ex01", "page.html",
-       page.OnLoad(func(data render.Data) error {
-               // This sets .some.really.nested.Data to "hello!".
-               // Bit of a silly example, but it shows the point.
-               data.Set("some", map[string]any{
-                       "really": map[string]any{
-                               "nested": exampleStruct{
-                                       Data: "hello, nested data!",
-                               },
-                       },
-               })
-               return nil
-       }),
-       page.Includes(parts.ExampleNav, messagePrinter),
-)
-var messagePrinter = part.New("message-printer", "message-printer.html",
-       part.OnLoad(func(data render.Data) error {
-               message, ok := data.Get("message").(string)
-               if !ok {
-                       return errors.New("no message set")
-               }
-               data.Set("transformedMessage", strings.ToUpper(message))
-               return nil
-       }),
-)
diff --git a/cmd/run-mast-examples/ex06-data/message-printer.html b/cmd/run-mast-examples/ex06-data/message-printer.html
deleted file mode 100644 (file)
index 7ee3d8b..0000000
+++ /dev/null
@@ -1,4 +0,0 @@
-<template>
-    <p>{{ .message }}</p>
-    <p>{{ .transformedMessage }}</p>
-</template>
\ No newline at end of file
diff --git a/cmd/run-mast-examples/ex06-data/page.html b/cmd/run-mast-examples/ex06-data/page.html
deleted file mode 100644 (file)
index cf6c2b6..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-<!DOCTYPE html>
-<html>
-    <header>
-        <title>Example 6</title>
-    </header>
-    <body>
-        <h1>Passing Data to Parts</h1>
-        <p>Sometimes, you may want to provide more data to a part than just the
-            HTML to include. To do this, write attributes on the part that start
-            with a colon ":".
-        </p>
-        <p>You can even do this with template fields by starting with a ".".
-            Unfortunately, full template pipelines aren't supported this way
-            right now. You can only pass a string or a value contained in the
-            parent data.
-        </p>
-
-        <message-printer :message="hello"></message-printer>
-        <message-printer :message=".some.really.nested.Data"></message-printer>
-
-        <example-nav>
-            <a href="ex02" slot="next">Parts</a>
-        </example-nav>
-    </body>
-</html>
\ No newline at end of file
diff --git a/cmd/run-mast-examples/ex07-components/counter.html b/cmd/run-mast-examples/ex07-components/counter.html
deleted file mode 100644 (file)
index 5ee7850..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-<template id="example-counter-template">
-    <slot name="text">Count:</slot>
-</template>
-<script>
-class ExampleCounter extends HTMLElement {
-    constructor() {
-        super();
-        const shadowRoot = this.attachShadow({ mode: "open" });
-        const template = document.getElementById("example-counter-template");
-        
-        shadowRoot.appendChild(template.content.cloneNode(true));
-    }
-}
-customElements.define('example-counter', ExampleCounter);
-</script>
diff --git a/cmd/run-mast-examples/ex07-components/example.go b/cmd/run-mast-examples/ex07-components/example.go
deleted file mode 100644 (file)
index f9413be..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-// Copyright (C) 2024 early (LGPL)
-package ex07
-
-import (
-       "git.earlybird.gay/mast-engine/cmd/run-mast-examples/parts"
-       "git.earlybird.gay/mast-engine/component"
-       "git.earlybird.gay/mast-engine/page"
-)
-
-var Page = page.New("ex01", "page.html", page.Includes(parts.ExampleNav, counter))
-var counter = component.New("example-counter", "counter.html")
diff --git a/cmd/run-mast-examples/ex07-components/page.html b/cmd/run-mast-examples/ex07-components/page.html
deleted file mode 100644 (file)
index 7a81538..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-<!DOCTYPE html>
-<html>
-    <header>
-        <title>Example 1</title>
-    </header>
-    <body>
-        <h1>Web Components</h1>
-
-        <example-counter>
-            <span slot="text">Example:</span>
-        </example-counter>
-        <!-- Ignore me!! I'll be explained in a second! -->
-        <example-nav>
-            <a href="ex02" slot="next">Parts</a>
-        </example-nav>
-    </body>
-</html>
\ No newline at end of file
diff --git a/cmd/run-mast-examples/index.html b/cmd/run-mast-examples/index.html
deleted file mode 100644 (file)
index c75f526..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-<!DOCTYPE html>
-<html>
-    <header>
-        <title>Mast Engine Examples</title>
-    </header>
-    <body>
-        <h1>Mast Engine Examples</h1>
-        <p>This is a set of examples for usage of the Mast Web Engine!</p>
-        <h2>Links</h2>
-        <ol>
-            <li><a href="/ex01">Pages</a></li>
-            <li><a href="/ex02">Parts</a></li>
-            <li><a href="/ex03">Slots</a></li>
-            <li><a href="/ex04">Go Templates</a></li>
-            <li>N/A</li>
-            <li><a href="/ex06">Passing Data to Parts</a></li>
-            <li><a href="/ex07">Web Components</a></li>
-        </ol>
-    </body>
-</html>
\ No newline at end of file
diff --git a/cmd/run-mast-examples/main.go b/cmd/run-mast-examples/main.go
deleted file mode 100644 (file)
index f99e1b4..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-// Copyright (C) 2024 early (LGPL)
-package main
-
-import (
-       "net/http"
-
-       "git.earlybird.gay/mast-engine/cmd/run-mast-examples/ex01-pages"
-       "git.earlybird.gay/mast-engine/cmd/run-mast-examples/ex02-parts"
-       "git.earlybird.gay/mast-engine/cmd/run-mast-examples/ex03-slots"
-       "git.earlybird.gay/mast-engine/cmd/run-mast-examples/ex04-templates"
-       "git.earlybird.gay/mast-engine/cmd/run-mast-examples/ex06-data"
-       "git.earlybird.gay/mast-engine/cmd/run-mast-examples/ex07-components"
-       "git.earlybird.gay/mast-engine/page"
-)
-
-var index = page.New("index", "index.html")
-
-func main() {
-       mux := new(http.ServeMux)
-       mux.Handle("GET /{$}", index)
-       mux.Handle("GET /ex01", ex01.Page)
-       mux.Handle("GET /ex02", ex02.Page)
-       mux.Handle("GET /ex03", ex03.Page)
-       mux.Handle("GET /ex04", ex04.Page)
-       mux.Handle("GET /ex06", ex06.Page)
-       mux.Handle("GET /ex07", ex07.Page)
-
-       http.ListenAndServe("0.0.0.0:3000", mux)
-}
diff --git a/cmd/run-mast-examples/parts/example-nav.html b/cmd/run-mast-examples/parts/example-nav.html
deleted file mode 100644 (file)
index d230c9a..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-<template>
-    <slot name="style">
-        <style>
-            example-nav nav {
-                display: grid;
-                grid-template-columns: 1fr 1fr;
-                border-radius: 5px;
-                background-color: lightgray;
-                width: fit-content;
-            }
-            example-nav > nav > span {
-                padding: 10px 2rem;
-                display: flex;
-                gap: .4rem;
-                justify-content: center;
-            }
-        </style>
-    </slot>
-    <nav>
-        <span>Previous: <slot name="previous">None</slot></span>
-        <span>Next: <slot name="next">None</slot></span>
-        <span style="grid-column: span 2;"><a href="/">Back to Overview</a></span>
-    </nav>
-</template>
\ No newline at end of file
diff --git a/cmd/run-mast-examples/parts/parts.go b/cmd/run-mast-examples/parts/parts.go
deleted file mode 100644 (file)
index 2a7fc4e..0000000
+++ /dev/null
@@ -1,6 +0,0 @@
-// Copyright (C) 2024 early (LGPL)
-package parts
-
-import "git.earlybird.gay/mast-engine/part"
-
-var ExampleNav = part.New("example-nav", "example-nav.html")
diff --git a/cmd/run-today-examples/ex01-pages/example.go b/cmd/run-today-examples/ex01-pages/example.go
new file mode 100644 (file)
index 0000000..82bd9b2
--- /dev/null
@@ -0,0 +1,9 @@
+// Copyright (C) 2024 early (LGPL)
+package ex01
+
+import (
+       "git.earlybird.gay/today-engine/cmd/run-today-examples/parts"
+       "git.earlybird.gay/today-engine/page"
+)
+
+var Page = page.New("ex01", "page.html", page.Includes(parts.ExampleNav))
diff --git a/cmd/run-today-examples/ex01-pages/page.html b/cmd/run-today-examples/ex01-pages/page.html
new file mode 100644 (file)
index 0000000..1e3cc1d
--- /dev/null
@@ -0,0 +1,15 @@
+<!DOCTYPE html>
+<html>
+    <header>
+        <title>Example 1</title>
+    </header>
+    <body>
+        <h1>Static HTML</h1>
+        <p>This is a static page. Hooray.</p>
+
+        <!-- Ignore me!! I'll be explained in a second! -->
+        <example-nav>
+            <a href="ex02" slot="next">Parts</a>
+        </example-nav>
+    </body>
+</html>
\ No newline at end of file
diff --git a/cmd/run-today-examples/ex02-parts/example.go b/cmd/run-today-examples/ex02-parts/example.go
new file mode 100644 (file)
index 0000000..3a7b821
--- /dev/null
@@ -0,0 +1,13 @@
+// Copyright (C) 2024 early (LGPL)
+package ex02
+
+import (
+       "git.earlybird.gay/today-engine/cmd/run-today-examples/parts"
+       "git.earlybird.gay/today-engine/page"
+       "git.earlybird.gay/today-engine/part"
+)
+
+var section = part.New("my-section", "section.html")
+
+// Use *.Includes to include a part as a dependency.
+var Page = page.New("ex02", "page.html", page.Includes(section, parts.ExampleNav))
diff --git a/cmd/run-today-examples/ex02-parts/page.html b/cmd/run-today-examples/ex02-parts/page.html
new file mode 100644 (file)
index 0000000..830c64d
--- /dev/null
@@ -0,0 +1,23 @@
+<!DOCTYPE html>
+<html>
+    <header>
+        <title>Example 2</title>
+    </header>
+    <body>
+        <h1>Page with Parts</h1>
+        <p>This page uses "parts" to create sections on the page. Parts are
+            HTML blocks that you can re-use.
+        </p>
+    </body>
+    <my-section>
+        <h2>Section</h2>
+        <p>This is inner HTML for a my-section "part". It replaces the slot tag
+            in the part.
+        </p>
+    </my-section>
+
+    <example-nav>
+        <a href="ex01" slot="previous">Pages</a>
+        <a href="ex03" slot="next">Slots</a>
+    </example-nav>
+</html>
\ No newline at end of file
diff --git a/cmd/run-today-examples/ex02-parts/section.html b/cmd/run-today-examples/ex02-parts/section.html
new file mode 100644 (file)
index 0000000..a4fb103
--- /dev/null
@@ -0,0 +1,6 @@
+<template>
+    <section>
+        <!-- Slots are where the inner HTML of the part goes when rendered. -->
+        <slot></slot>
+    </section>
+</template>
\ No newline at end of file
diff --git a/cmd/run-today-examples/ex03-slots/example.go b/cmd/run-today-examples/ex03-slots/example.go
new file mode 100644 (file)
index 0000000..823218b
--- /dev/null
@@ -0,0 +1,13 @@
+// Copyright (C) 2024 early (LGPL)
+package ex03
+
+import (
+       "git.earlybird.gay/today-engine/cmd/run-today-examples/parts"
+       "git.earlybird.gay/today-engine/page"
+       "git.earlybird.gay/today-engine/part"
+)
+
+var section = part.New("my-section", "section.html")
+
+// Use *.Includes to include a part as a dependency.
+var Page = page.New("ex03", "page.html", page.Includes(section, parts.ExampleNav))
diff --git a/cmd/run-today-examples/ex03-slots/page.html b/cmd/run-today-examples/ex03-slots/page.html
new file mode 100644 (file)
index 0000000..2ea74a3
--- /dev/null
@@ -0,0 +1,33 @@
+<!DOCTYPE html>
+<html>
+    <header>
+        <title>Example 3</title>
+    </header>
+    <body>
+        <h1>Page with Parts</h1>
+        <p>This page uses "parts" to create sections on the page. Parts are
+            HTML blocks that you can re-use.
+        </p>
+    </body>
+    <!-- Use named slots to choose where HTML goes in the part. -->
+    <my-section>
+        <h2 slot="header">Section with Named Slots</h2>
+        <p slot="content">Use the slot tag to fill in named slots.</p>
+        <p slot="content">You can do this with multiple HTML elements!</p>
+    </my-section>
+    <!-- Slots left empty have default HTML; see section.html for details! -->
+    <my-section/>
+    <my-section>
+        <h2 slot="header">Section with a Subsection</h2>
+        <p slot="content">You can also include parts inside parts.</p>
+        <my-section slot="content">
+            <h3 slot="header">Subsection</h3>
+            <p slot="content">This my-section is a subsection!</p>
+        </my-section>
+    </my-section>
+
+    <example-nav>
+        <a href="ex02" slot="previous">Parts</a>
+        <a href="ex04" slot="next">Go Templates</a>
+    </example-nav>
+</html>
\ No newline at end of file
diff --git a/cmd/run-today-examples/ex03-slots/section.html b/cmd/run-today-examples/ex03-slots/section.html
new file mode 100644 (file)
index 0000000..75f31ac
--- /dev/null
@@ -0,0 +1,13 @@
+<template>
+    <section>
+        <!-- Slots are where the inner HTML of the part goes when rendered. -->
+        <slot name="header">
+            <h2>Section</h2>
+        </slot>
+        <slot name="content">
+            <p>When no HTML is provided for a slot, it uses the HTML provided
+                in the template.
+            </p>
+        </slot>
+    </section>
+</template>
\ No newline at end of file
diff --git a/cmd/run-today-examples/ex04-templates/example.go b/cmd/run-today-examples/ex04-templates/example.go
new file mode 100644 (file)
index 0000000..43f4cd2
--- /dev/null
@@ -0,0 +1,29 @@
+// Copyright (C) 2024 early (LGPL)
+package ex04
+
+import (
+       "text/template"
+
+       "git.earlybird.gay/today-engine/cmd/run-today-examples/parts"
+       "git.earlybird.gay/today-engine/page"
+       "git.earlybird.gay/today-engine/render"
+)
+
+var Page = page.New("ex04", "page.html",
+       page.OnLoad(func(data render.Data) error {
+               data.Set("message", "Hello, Today!")
+               return nil
+       }),
+       page.Funcs(template.FuncMap{
+               "reverse": func(s string) string {
+                       out := make([]byte, len(s))
+                       for i := range (len(s) + 1) / 2 {
+                               j := len(s) - i - 1
+                               out[i] = s[j]
+                               out[j] = s[i]
+                       }
+                       return string(out)
+               },
+       }),
+       page.Includes(parts.ExampleNav),
+)
diff --git a/cmd/run-today-examples/ex04-templates/page.html b/cmd/run-today-examples/ex04-templates/page.html
new file mode 100644 (file)
index 0000000..23f0124
--- /dev/null
@@ -0,0 +1,39 @@
+<!DOCTYPE html>
+<html>
+    <header>
+        <title>Example 4</title>
+    </header>
+    <body>
+        <h1>Template Data</h1>
+        <p>Let's step back to talk about template data. Go provides templates
+            using "handlebars" notation to create server-side behavior on your
+            pages. For example, on this page, {{ `{{ .message }}` }} is 
+            "{{ .message }}".
+        </p>
+        <p>You can also add functions, if the ones provided do not do everything
+            you need. On this page, {{ `{{ reverse "hello" }}`}} is
+            "{{ reverse "hello" }}".
+        </p>
+        <pre><code>var index = page.New("index", "index.html",
+    page.OnLoad(func(data render.Data) error {
+        data.Set("message", "Hello, Today!")
+        return nil
+    }),
+    page.Funcs(template.FuncMap{
+        "reverse": func(s string) string {
+            out := make([]byte, len(s))
+            for i := range (len(s) + 1) / 2 {
+                j := len(s) - i - 1
+                out[i] = s[j]
+                out[j] = s[i]
+            }
+            return string(out)
+        },
+    }),
+)</code></pre>
+
+    <example-nav>
+        <a href="ex03" slot="previous">Slots</a>
+    </example-nav>
+    </body>
+</html>
\ No newline at end of file
diff --git a/cmd/run-today-examples/ex06-data/example.go b/cmd/run-today-examples/ex06-data/example.go
new file mode 100644 (file)
index 0000000..7154bd2
--- /dev/null
@@ -0,0 +1,42 @@
+// Copyright (C) 2024 early (LGPL)
+package ex06
+
+import (
+       "errors"
+       "strings"
+
+       "git.earlybird.gay/today-engine/cmd/run-today-examples/parts"
+       "git.earlybird.gay/today-engine/page"
+       "git.earlybird.gay/today-engine/part"
+       "git.earlybird.gay/today-engine/render"
+)
+
+type exampleStruct struct {
+       Data string
+}
+
+var Page = page.New("ex01", "page.html",
+       page.OnLoad(func(data render.Data) error {
+               // This sets .some.really.nested.Data to "hello!".
+               // Bit of a silly example, but it shows the point.
+               data.Set("some", map[string]any{
+                       "really": map[string]any{
+                               "nested": exampleStruct{
+                                       Data: "hello, nested data!",
+                               },
+                       },
+               })
+               return nil
+       }),
+       page.Includes(parts.ExampleNav, messagePrinter),
+)
+var messagePrinter = part.New("message-printer", "message-printer.html",
+       part.OnLoad(func(data render.Data) error {
+               message, ok := data.Get("message").(string)
+               if !ok {
+                       return errors.New("no message set")
+               }
+               data.Set("transformedMessage", strings.ToUpper(message))
+               return nil
+       }),
+)
diff --git a/cmd/run-today-examples/ex06-data/message-printer.html b/cmd/run-today-examples/ex06-data/message-printer.html
new file mode 100644 (file)
index 0000000..7ee3d8b
--- /dev/null
@@ -0,0 +1,4 @@
+<template>
+    <p>{{ .message }}</p>
+    <p>{{ .transformedMessage }}</p>
+</template>
\ No newline at end of file
diff --git a/cmd/run-today-examples/ex06-data/page.html b/cmd/run-today-examples/ex06-data/page.html
new file mode 100644 (file)
index 0000000..cf6c2b6
--- /dev/null
@@ -0,0 +1,25 @@
+<!DOCTYPE html>
+<html>
+    <header>
+        <title>Example 6</title>
+    </header>
+    <body>
+        <h1>Passing Data to Parts</h1>
+        <p>Sometimes, you may want to provide more data to a part than just the
+            HTML to include. To do this, write attributes on the part that start
+            with a colon ":".
+        </p>
+        <p>You can even do this with template fields by starting with a ".".
+            Unfortunately, full template pipelines aren't supported this way
+            right now. You can only pass a string or a value contained in the
+            parent data.
+        </p>
+
+        <message-printer :message="hello"></message-printer>
+        <message-printer :message=".some.really.nested.Data"></message-printer>
+
+        <example-nav>
+            <a href="ex02" slot="next">Parts</a>
+        </example-nav>
+    </body>
+</html>
\ No newline at end of file
diff --git a/cmd/run-today-examples/ex07-components/counter.html b/cmd/run-today-examples/ex07-components/counter.html
new file mode 100644 (file)
index 0000000..5ee7850
--- /dev/null
@@ -0,0 +1,15 @@
+<template id="example-counter-template">
+    <slot name="text">Count:</slot>
+</template>
+<script>
+class ExampleCounter extends HTMLElement {
+    constructor() {
+        super();
+        const shadowRoot = this.attachShadow({ mode: "open" });
+        const template = document.getElementById("example-counter-template");
+        
+        shadowRoot.appendChild(template.content.cloneNode(true));
+    }
+}
+customElements.define('example-counter', ExampleCounter);
+</script>
diff --git a/cmd/run-today-examples/ex07-components/example.go b/cmd/run-today-examples/ex07-components/example.go
new file mode 100644 (file)
index 0000000..8f7afb8
--- /dev/null
@@ -0,0 +1,11 @@
+// Copyright (C) 2024 early (LGPL)
+package ex07
+
+import (
+       "git.earlybird.gay/today-engine/cmd/run-today-examples/parts"
+       "git.earlybird.gay/today-engine/component"
+       "git.earlybird.gay/today-engine/page"
+)
+
+var Page = page.New("ex01", "page.html", page.Includes(parts.ExampleNav, counter))
+var counter = component.New("example-counter", "counter.html")
diff --git a/cmd/run-today-examples/ex07-components/page.html b/cmd/run-today-examples/ex07-components/page.html
new file mode 100644 (file)
index 0000000..7a81538
--- /dev/null
@@ -0,0 +1,17 @@
+<!DOCTYPE html>
+<html>
+    <header>
+        <title>Example 1</title>
+    </header>
+    <body>
+        <h1>Web Components</h1>
+
+        <example-counter>
+            <span slot="text">Example:</span>
+        </example-counter>
+        <!-- Ignore me!! I'll be explained in a second! -->
+        <example-nav>
+            <a href="ex02" slot="next">Parts</a>
+        </example-nav>
+    </body>
+</html>
\ No newline at end of file
diff --git a/cmd/run-today-examples/index.html b/cmd/run-today-examples/index.html
new file mode 100644 (file)
index 0000000..ab51f28
--- /dev/null
@@ -0,0 +1,20 @@
+<!DOCTYPE html>
+<html>
+    <header>
+        <title>Today Engine Examples</title>
+    </header>
+    <body>
+        <h1>Today Engine Examples</h1>
+        <p>This is a set of examples for usage of the Today Web Engine!</p>
+        <h2>Links</h2>
+        <ol>
+            <li><a href="/ex01">Pages</a></li>
+            <li><a href="/ex02">Parts</a></li>
+            <li><a href="/ex03">Slots</a></li>
+            <li><a href="/ex04">Go Templates</a></li>
+            <li>N/A</li>
+            <li><a href="/ex06">Passing Data to Parts</a></li>
+            <li><a href="/ex07">Web Components</a></li>
+        </ol>
+    </body>
+</html>
\ No newline at end of file
diff --git a/cmd/run-today-examples/main.go b/cmd/run-today-examples/main.go
new file mode 100644 (file)
index 0000000..bf0c9c2
--- /dev/null
@@ -0,0 +1,29 @@
+// Copyright (C) 2024 early (LGPL)
+package main
+
+import (
+       "net/http"
+
+       "git.earlybird.gay/today-engine/cmd/run-today-examples/ex01-pages"
+       "git.earlybird.gay/today-engine/cmd/run-today-examples/ex02-parts"
+       "git.earlybird.gay/today-engine/cmd/run-today-examples/ex03-slots"
+       "git.earlybird.gay/today-engine/cmd/run-today-examples/ex04-templates"
+       "git.earlybird.gay/today-engine/cmd/run-today-examples/ex06-data"
+       "git.earlybird.gay/today-engine/cmd/run-today-examples/ex07-components"
+       "git.earlybird.gay/today-engine/page"
+)
+
+var index = page.New("index", "index.html")
+
+func main() {
+       mux := new(http.ServeMux)
+       mux.Handle("GET /{$}", index)
+       mux.Handle("GET /ex01", ex01.Page)
+       mux.Handle("GET /ex02", ex02.Page)
+       mux.Handle("GET /ex03", ex03.Page)
+       mux.Handle("GET /ex04", ex04.Page)
+       mux.Handle("GET /ex06", ex06.Page)
+       mux.Handle("GET /ex07", ex07.Page)
+
+       http.ListenAndServe("0.0.0.0:3000", mux)
+}
diff --git a/cmd/run-today-examples/parts/example-nav.html b/cmd/run-today-examples/parts/example-nav.html
new file mode 100644 (file)
index 0000000..e704aae
--- /dev/null
@@ -0,0 +1,7 @@
+<template>
+    <nav>
+        <span>Previous: <slot name="previous">None</slot></span>
+        <span>Next: <slot name="next">None</slot></span>
+        <span style="grid-column: span 2;"><a href="/">Back to Overview</a></span>
+    </nav>
+</template>
\ No newline at end of file
diff --git a/cmd/run-today-examples/parts/parts.go b/cmd/run-today-examples/parts/parts.go
new file mode 100644 (file)
index 0000000..2921182
--- /dev/null
@@ -0,0 +1,6 @@
+// Copyright (C) 2024 early (LGPL)
+package parts
+
+import "git.earlybird.gay/today-engine/part"
+
+var ExampleNav = part.New("example-nav", "example-nav.html")
diff --git a/cmd/run-today-examples/public/style.css b/cmd/run-today-examples/public/style.css
new file mode 100644 (file)
index 0000000..7d27a61
--- /dev/null
@@ -0,0 +1,5 @@
+nav {
+    display: flex;
+    flex-direction: column;
+    gap: 1rem;
+}
\ No newline at end of file
index 6c26470135abf7e479975a8192c6f52fdb84bd3f..b918c50d2de06f4946b2332298b27b7b5bb142a0 100644 (file)
@@ -2,8 +2,8 @@
 package component
 
 import (
-       "git.earlybird.gay/mast-engine/include"
-       "git.earlybird.gay/mast-engine/internal/compile"
+       "git.earlybird.gay/today-engine/include"
+       "git.earlybird.gay/today-engine/internal/compile"
 )
 
 type Component struct {
@@ -25,7 +25,7 @@ func New(name string, source string, optional ...func(*Component)) *Component {
        p := new(Component)
        // Assign basic parameters
        p.name = name
-       p.source = include.File(source, "git.earlybird.gay/mast-engine/component")
+       p.source = include.File(source, "git.earlybird.gay/today-engine/component")
        // Run optional arguments
        for _, of := range optional {
                of(p)
diff --git a/go.mod b/go.mod
index 68938755f26f3a5cc0100544a07a009a12839e0b..94e6cec4c83307b057a06ae9c258a9940bf10fc4 100644 (file)
--- a/go.mod
+++ b/go.mod
@@ -1,4 +1,4 @@
-module git.earlybird.gay/mast-engine
+module git.earlybird.gay/today-engine
 
 go 1.22.0
 
index 91b57d09ebd04b18aa3cbed38ea6a274945a44cc..e006993834a51c771ff207c8dda6ff87699fb0eb 100644 (file)
@@ -13,7 +13,7 @@ var ErrNoRuntimeAccess = errors.New("couldn't access the runtime")
 
 var callStackNotEligible = []string{
        "runtime",
-       "git.earlybird.gay/mast-engine/include",
+       "git.earlybird.gay/today-engine/include",
 }
 
 func isNotEligible(caller string, ignorePackages []string) bool {
index 4dd8cf1d8baf380a0acc7fca66889419180d6269..7b12752ea0f971d5b652ca32a66a0a178c4742c5 100644 (file)
@@ -7,8 +7,8 @@ import (
        "maps"
        "strings"
 
-       "git.earlybird.gay/mast-engine/include"
-       "git.earlybird.gay/mast-engine/render"
+       "git.earlybird.gay/today-engine/include"
+       "git.earlybird.gay/today-engine/render"
        "golang.org/x/net/html"
 )
 
index b0d7aa70ee2c9ccab522e92d2a333291483dc7e2..e335559612a0d5e399c57e28a068b1820edfdc61 100644 (file)
@@ -4,7 +4,7 @@ import (
        "errors"
        "fmt"
 
-       "git.earlybird.gay/mast-engine/htmltree"
+       "git.earlybird.gay/today-engine/htmltree"
        "golang.org/x/net/html"
        "golang.org/x/net/html/atom"
 )
index 97735fc132742c962564bf7e45ce50327bccef29..d14e84bdafb236179d2061cb2d8bcd8340809e29 100644 (file)
@@ -7,7 +7,7 @@ import (
        "reflect"
        "strings"
 
-       "git.earlybird.gay/mast-engine/render"
+       "git.earlybird.gay/today-engine/render"
 )
 
 type computeNode struct {
index 0077ce906fc31f3563f25ac51f27ed61fdade900..a53bdc69ff9141d56266e9d64808e9ee41a6e87a 100644 (file)
@@ -7,8 +7,8 @@ import (
        "regexp"
        "strings"
 
-       "git.earlybird.gay/mast-engine/htmltree"
-       "git.earlybird.gay/mast-engine/render"
+       "git.earlybird.gay/today-engine/htmltree"
+       "git.earlybird.gay/today-engine/render"
        "golang.org/x/net/html"
 )
 
index 539e4e35f690c61610bab09de75afa4fa42ff500..416b10b0fe59969ebd6340594e6804aadb658f6e 100644 (file)
@@ -4,10 +4,10 @@ package page
 import (
        "html/template"
 
-       "git.earlybird.gay/mast-engine/htmltree"
-       "git.earlybird.gay/mast-engine/include"
-       "git.earlybird.gay/mast-engine/internal/compile"
-       "git.earlybird.gay/mast-engine/render"
+       "git.earlybird.gay/today-engine/htmltree"
+       "git.earlybird.gay/today-engine/include"
+       "git.earlybird.gay/today-engine/internal/compile"
+       "git.earlybird.gay/today-engine/render"
 )
 
 type Page struct {
@@ -56,7 +56,7 @@ func New(name string, source string, optional ...func(*Page)) *Page {
        p := new(Page)
        // Assign basic parameters
        p.name = name
-       p.source = include.File(source, "git.earlybird.gay/mast-engine/page")
+       p.source = include.File(source, "git.earlybird.gay/today-engine/page")
        p.onLoad = func(d render.Data) error {
                return nil
        }
index 00d0a6c988a1d05f7bb86da4c7edec6302451d50..cefe05c73b5c81a9cb2c77b261804393efd8f5f4 100644 (file)
@@ -4,9 +4,9 @@ package part
 import (
        "text/template"
 
-       "git.earlybird.gay/mast-engine/include"
-       "git.earlybird.gay/mast-engine/internal/compile"
-       "git.earlybird.gay/mast-engine/render"
+       "git.earlybird.gay/today-engine/include"
+       "git.earlybird.gay/today-engine/internal/compile"
+       "git.earlybird.gay/today-engine/render"
 )
 
 type Part struct {
@@ -44,7 +44,7 @@ func New(name string, source string, optional ...func(*Part)) *Part {
        p := new(Part)
        // Assign basic parameters
        p.name = name
-       p.source = include.File(source, "git.earlybird.gay/mast-engine/part")
+       p.source = include.File(source, "git.earlybird.gay/today-engine/part")
        p.onLoad = func(d render.Data) error {
                return nil
        }