/* * Copyright (c) 2021, Luke Wilde * Copyright (c) 2022, Andreas Kling * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include #include #include #include namespace Web::HTML { class History final : public Bindings::PlatformObject { WEB_PLATFORM_OBJECT(History, Bindings::PlatformObject); GC_DECLARE_ALLOCATOR(History); public: [[nodiscard]] static GC::Ref create(JS::Realm&, DOM::Document&); virtual ~History() override; WebIDL::ExceptionOr push_state(JS::Value data, String const& unused, Optional const& url = {}); WebIDL::ExceptionOr replace_state(JS::Value data, String const& unused, Optional const& url = {}); WebIDL::ExceptionOr go(WebIDL::Long delta); WebIDL::ExceptionOr back(); WebIDL::ExceptionOr forward(); WebIDL::ExceptionOr length() const; WebIDL::ExceptionOr scroll_restoration() const; WebIDL::ExceptionOr set_scroll_restoration(Bindings::ScrollRestoration); WebIDL::ExceptionOr state() const; u64 m_index { 0 }; u64 m_length { 0 }; JS::Value unsafe_state() const; void set_state(JS::Value s) { m_state = s; } private: History(JS::Realm&, DOM::Document&); virtual void initialize(JS::Realm&) override; virtual void visit_edges(Cell::Visitor&) override; WebIDL::ExceptionOr shared_history_push_replace_state(JS::Value data, Optional const& url, HistoryHandlingBehavior); GC::Ref m_associated_document; JS::Value m_state { JS::js_null() }; }; bool can_have_its_url_rewritten(DOM::Document const& document, URL::URL const& target_url); }