htmdart 0.6.0
htmdart: ^0.6.0 copied to clipboard
Build simple systems with Dart + HTMX
import "dart:async";
import "package:htmdart/htmdart.dart";
import "package:shelf/shelf.dart";
import "package:shelf/shelf_io.dart" as io;
final router = Router()
..notFoundHandler((req) => "404".h1().response)
..get("/", homePageHandler)
..post("/increase_counter", increaseCounterHandler)
..post("/decrease_counter", decreaseCounterHandler);
Future<void> main() async {
final server = await io.serve(router.call, "localhost", 8080);
//
// ignore: avoid_print
print("Serving at http://${server.address.host}:${server.port}");
}
Response homePageHandler(Request request) {
return html([
link([$href("https://cdn.jsdelivr.net/npm/daisyui@4.12.23/dist/full.min.css"), $rel("stylesheet"), $type("text/css")]),
script([$src("https://unpkg.com/htmx.org@2.0.4")]),
script([$src("https://cdn.tailwindcss.com")]),
body([
$class("h-screen place-content-center"),
div([
$class("flex flex-col gap-6 items-center"),
counter(0),
counterActions,
]),
h1([
$class("text-xs text-center mt-8"),
"Powered by shelf and htmdart".t,
]),
]),
]).response;
}
Future<Response> increaseCounterHandler(Request request) async {
final fd = Uri.splitQueryString(await request.readAsString());
final c = fd["count"] ?? "0";
return counter(int.parse(c) + 1).add($hx.swapOob.yes).response;
}
Future<Response> decreaseCounterHandler(Request request) async {
final fd = Uri.splitQueryString(await request.readAsString());
final c = fd["count"] ?? "0";
return counter(int.parse(c) - 1).add($hx.swapOob.yes).response;
}
HTML counter(int count) => h1([$id("counter"), $class("text-9xl font-bold"), count.toString().t]);
final counterActions = div([
$class("flex gap-4"),
button([
$class("btn btn-primary"),
$hx.swap.none,
$hx.vals("js:{ count: document.getElementById('counter').textContent }"),
$hx.handle(decreaseCounterHandler),
"-1".t,
]),
button([
$class("btn btn-primary"),
$hx.swap.none,
$hx.vals("js:{ count: document.getElementById('counter').textContent }"),
$hx.handle(increaseCounterHandler),
"+1".t,
]),
]);