const std = @import("std"); const Arena = std.heap.ArenaAllocator; const Allocator = std.mem.Allocator; const eql = std.mem.eql; const html = @import("html.zig"); pub const Void = @import("Void.zig"); pub const Content = @import("Content.zig"); pub const Literal = @import("Literal.zig"); pub const Root = @import("Root.zig"); pub const Error = html.Error || Allocator.Error; pub fn Wrapper(comptime V: type) type { comptime { if (!@hasField(V, "node")) @compileError("missing field 'node' for " ++ @typeName(V)); const nd = @FieldType(V, "node"); if (nd != Node) @compileError("invalid node's type: " ++ @typeName(nd) ++ ", want " ++ @typeName(Node)); if (!std.meta.hasMethod(V, "element")) @compileError("missing declaration 'element' for " ++ @typeName(V)); if (!std.meta.hasMethod(V, "render")) @compileError("missing declaration 'render' for " ++ @typeName(V)); } return struct { ptr: *V, const Self = @This(); fn node(context: *anyopaque) *Node { const self: *V = @ptrCast(@alignCast(context)); return &self.node; } fn render(context: *anyopaque, alloc: Allocator) Error![]const u8 { const self: *V = @ptrCast(@alignCast(context)); return try self.render(alloc); } pub fn element(self: Self) Element { return .{ .ptr = self.ptr, .vtable = .{ .node = Self.node, .render = Self.render } }; } }; } pub const Node = struct { ptr: *anyopaque, vtable: struct { element: *const fn (*anyopaque) Element }, node: std.DoublyLinkedList.Node = .{}, pub fn from(n: *std.DoublyLinkedList.Node) Element { const self: *Node = @fieldParentPtr("node", n); return self.vtable.element(self.ptr); } pub fn element(self: Node) Element { return self.vtable.element(self.ptr); } }; const Element = @This(); vtable: struct { render: *const fn (*anyopaque, Allocator) Error![]const u8, node: *const fn (*anyopaque) *Node, }, ptr: *anyopaque, pub fn render(self: Element, alloc: Allocator) Error![]const u8 { return self.vtable.render(self.ptr, alloc); } pub fn node(self: Element) *Node { return self.vtable.node(self.ptr); } fn doTest(alloc: Allocator, el: Element, exp: []const u8) !void { const got = try el.render(alloc); defer alloc.free(got); std.testing.expect(eql(u8, got, exp)) catch |err| { std.debug.print("{s}\n", .{got}); return err; }; } test "void" { var arena = Arena.init(std.testing.allocator); defer arena.deinit(); const alloc = arena.allocator(); var br = try Void.init(alloc, "br"); try doTest(alloc, br.element(), "
"); var img = try Void.init(alloc, "img"); try img.setAttribute("src", "foo"); try img.setAttribute("alt", "bar"); try doTest(alloc, img.element(), "\"bar\""); } test "content" { var arena = Arena.init(std.testing.allocator); defer arena.deinit(); const alloc = arena.allocator(); var p = try Content.init(alloc, "p"); var root = try Root.init(alloc); p.content = root.element(); var content = try Literal.init(alloc, "hello world"); try root.append(content.element()); try doTest(alloc, content.element(), "hello world"); try doTest(alloc, p.element(), "

hello world

"); var div = try Content.init(alloc, "div"); var rootDiv = try Root.init(alloc); div.content = rootDiv.element(); try div.base.appendClass("foo-bar"); try rootDiv.append(p.element()); try rootDiv.append((try Void.init(alloc, "br")).element()); try doTest(alloc, div.element(), "

hello world


"); }