blob: 0b1306ad3948793657d98b34bb7a9f8ba2219631 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
const std = @import("std");
const Allocator = std.mem.Allocator;
const HTML = Element.HTML;
const Element = @import("Element.zig");
const Node = Element.Node;
fn List(comptime tag: []const u8) type {
return struct {
content: std.ArrayList(Element),
node: Node = .{
.ptr = undefined,
.vtable = .{ .element = fromNode },
},
const Self = @This();
pub fn init(alloc: Allocator) !*Self {
const v = try alloc.create(Self);
v.* = .{
.content = try .initCapacity(alloc, 2),
};
v.node.ptr = v;
return v;
}
pub fn element(self: *Self) Element {
return Element.Wrapper(Self, html).init(self);
}
fn fromNode(context: *anyopaque) Element {
const self: *Self = @ptrCast(@alignCast(context));
return self.element();
}
fn html(self: *Self, alloc: Allocator) HTML.Error!HTML {
var el = try HTML.Content.init(alloc, tag);
var root = try HTML.Root.init(alloc);
el.content = root.element();
for (self.content.items) |it| {
var li = try HTML.Content.init(root.allocator(), "li");
li.content = try it.html(root.allocator());
try root.append(li.element());
}
return el.element();
}
};
}
pub const Ordored = List("ol");
pub const Unordored = List("ul");
|