diff --git a/src/html/history.zig b/src/html/history.zig
index b2ad5f0a..f3e96dc0 100644
--- a/src/html/history.zig
+++ b/src/html/history.zig
@@ -28,15 +28,70 @@ const checkCases = jsruntime.test_utils.checkCases;
pub const History = struct {
pub const mem_guarantied = true;
- const ScrollRestaurationMode = enum {
+ const ScrollRestorationMode = enum {
auto,
manual,
};
- scrollRestauration: ScrollRestaurationMode = .audio,
+ scrollRestoration: ScrollRestorationMode = .auto,
+ state: std.json.Value = .null,
- pub fn get_length(_: *History) u64 {
- return 0;
+ // count tracks the history length until we implement correctly pushstate.
+ count: u32 = 0,
+
+ pub fn get_length(self: *History) u32 {
+ // TODO return the real history length value.
+ return self.count;
+ }
+
+ pub fn get_scrollRestoration(self: *History) []const u8 {
+ return switch (self.scrollRestoration) {
+ .auto => "auto",
+ .manual => "manual",
+ };
+ }
+
+ pub fn set_scrollRestoration(self: *History, mode: []const u8) void {
+ if (std.mem.eql(u8, "manual", mode)) self.scrollRestoration = .manual;
+ if (std.mem.eql(u8, "auto", mode)) self.scrollRestoration = .auto;
+ }
+
+ pub fn get_state(self: *History) std.json.Value {
+ return self.state;
+ }
+
+ // TODO implement the function
+ // data must handle any argument. We could expect a std.json.Value but
+ // https://github.com/lightpanda-io/zig-js-runtime/issues/267 is missing.
+ pub fn _pushState(self: *History, data: []const u8, _: ?[]const u8, url: ?[]const u8) void {
+ self.count += 1;
+ _ = url;
+ _ = data;
+ }
+
+ // TODO implement the function
+ // data must handle any argument. We could expect a std.json.Value but
+ // https://github.com/lightpanda-io/zig-js-runtime/issues/267 is missing.
+ pub fn _replaceState(self: *History, data: []const u8, _: ?[]const u8, url: ?[]const u8) void {
+ _ = self;
+ _ = url;
+ _ = data;
+ }
+
+ // TODO implement the function
+ pub fn _go(self: *History, delta: ?i32) void {
+ _ = self;
+ _ = delta;
+ }
+
+ // TODO implement the function
+ pub fn _back(self: *History) void {
+ _ = self;
+ }
+
+ // TODO implement the function
+ pub fn _forward(self: *History) void {
+ _ = self;
}
};
@@ -48,7 +103,26 @@ pub fn testExecFn(
js_env: *jsruntime.Env,
) anyerror!void {
var history = [_]Case{
- .{ .src = "true", .ex = "true" },
+ .{ .src = "history.scrollRestoration", .ex = "auto" },
+ .{ .src = "history.scrollRestoration = 'manual'", .ex = "manual" },
+ .{ .src = "history.scrollRestoration = 'foo'", .ex = "foo" },
+ .{ .src = "history.scrollRestoration", .ex = "manual" },
+ .{ .src = "history.scrollRestoration = 'auto'", .ex = "auto" },
+ .{ .src = "history.scrollRestoration", .ex = "auto" },
+
+ .{ .src = "history.state", .ex = "null" },
+
+ .{ .src = "history.pushState({}, null, '')", .ex = "undefined" },
+
+ .{ .src = "history.replaceState({}, null, '')", .ex = "undefined" },
+
+ .{ .src = "history.go()", .ex = "undefined" },
+ .{ .src = "history.go(1)", .ex = "undefined" },
+ .{ .src = "history.go(-1)", .ex = "undefined" },
+
+ .{ .src = "history.forward()", .ex = "undefined" },
+
+ .{ .src = "history.back()", .ex = "undefined" },
};
try checkCases(js_env, &history);
}
diff --git a/src/html/html.zig b/src/html/html.zig
index 2bb439d1..29b467cb 100644
--- a/src/html/html.zig
+++ b/src/html/html.zig
@@ -22,6 +22,7 @@ const HTMLDocument = @import("document.zig").HTMLDocument;
const HTMLElem = @import("elements.zig");
const Window = @import("window.zig").Window;
const Navigator = @import("navigator.zig").Navigator;
+const History = @import("history.zig").History;
pub const Interfaces = generate.Tuple(.{
HTMLDocument,
@@ -30,4 +31,5 @@ pub const Interfaces = generate.Tuple(.{
HTMLElem.Interfaces,
Window,
Navigator,
+ History,
});
diff --git a/src/html/window.zig b/src/html/window.zig
index 414b660d..65a8af67 100644
--- a/src/html/window.zig
+++ b/src/html/window.zig
@@ -26,6 +26,7 @@ const Loop = jsruntime.Loop;
const EventTarget = @import("../dom/event_target.zig").EventTarget;
const Navigator = @import("navigator.zig").Navigator;
+const History = @import("history.zig").History;
const storage = @import("../storage/storage.zig");
@@ -41,6 +42,7 @@ pub const Window = struct {
document: ?*parser.DocumentHTML = null,
target: []const u8,
+ history: History = .{},
storageShelf: ?*storage.Shelf = null,
@@ -86,6 +88,10 @@ pub const Window = struct {
return self.document;
}
+ pub fn get_history(self: *Window) *History {
+ return &self.history;
+ }
+
pub fn get_name(self: *Window) []const u8 {
return self.target;
}
diff --git a/src/run_tests.zig b/src/run_tests.zig
index 077e56e2..838a6047 100644
--- a/src/run_tests.zig
+++ b/src/run_tests.zig
@@ -138,6 +138,7 @@ fn testsAllExecFn(
MutationObserverTestExecFn,
@import("polyfill/fetch.zig").testExecFn,
@import("html/navigator.zig").testExecFn,
+ @import("html/history.zig").testExecFn,
};
inline for (testFns) |testFn| {