2021-09-11 23:43:34 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2021, Luke Wilde <lukew@serenityos.org>
|
2024-10-04 13:19:50 +02:00
|
|
|
* Copyright (c) 2022, Andreas Kling <andreas@ladybird.org>
|
2021-09-11 23:43:34 +01:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2024-10-02 10:33:05 +02:00
|
|
|
#include <LibWeb/Bindings/HistoryPrototype.h>
|
2022-09-02 13:50:24 +02:00
|
|
|
#include <LibWeb/Bindings/PlatformObject.h>
|
2023-09-23 23:04:24 +02:00
|
|
|
#include <LibWeb/HTML/HistoryHandlingBehavior.h>
|
2022-09-25 17:03:42 +01:00
|
|
|
#include <LibWeb/WebIDL/ExceptionOr.h>
|
2024-02-26 18:54:36 +01:00
|
|
|
#include <LibWeb/WebIDL/Types.h>
|
2021-09-11 23:43:34 +01:00
|
|
|
|
|
|
|
namespace Web::HTML {
|
|
|
|
|
2022-09-02 13:50:24 +02:00
|
|
|
class History final : public Bindings::PlatformObject {
|
|
|
|
WEB_PLATFORM_OBJECT(History, Bindings::PlatformObject);
|
2024-11-15 04:01:23 +13:00
|
|
|
GC_DECLARE_ALLOCATOR(History);
|
2021-09-11 23:43:34 +01:00
|
|
|
|
2022-09-02 13:50:24 +02:00
|
|
|
public:
|
2024-11-15 04:01:23 +13:00
|
|
|
[[nodiscard]] static GC::Ref<History> create(JS::Realm&, DOM::Document&);
|
2021-09-11 23:43:34 +01:00
|
|
|
|
|
|
|
virtual ~History() override;
|
|
|
|
|
2023-08-26 17:03:52 +12:00
|
|
|
WebIDL::ExceptionOr<void> push_state(JS::Value data, String const& unused, Optional<String> const& url = {});
|
|
|
|
WebIDL::ExceptionOr<void> replace_state(JS::Value data, String const& unused, Optional<String> const& url = {});
|
2024-02-26 18:54:36 +01:00
|
|
|
WebIDL::ExceptionOr<void> go(WebIDL::Long delta);
|
2022-10-13 22:43:04 +08:00
|
|
|
WebIDL::ExceptionOr<void> back();
|
|
|
|
WebIDL::ExceptionOr<void> forward();
|
|
|
|
WebIDL::ExceptionOr<u64> length() const;
|
2024-10-02 10:33:05 +02:00
|
|
|
WebIDL::ExceptionOr<Bindings::ScrollRestoration> scroll_restoration() const;
|
|
|
|
WebIDL::ExceptionOr<void> set_scroll_restoration(Bindings::ScrollRestoration);
|
2023-09-27 22:39:44 -06:00
|
|
|
WebIDL::ExceptionOr<JS::Value> state() const;
|
2021-09-11 23:43:34 +01:00
|
|
|
|
2023-09-23 22:57:04 +02:00
|
|
|
u64 m_index { 0 };
|
|
|
|
u64 m_length { 0 };
|
|
|
|
|
2024-04-10 21:25:31 -07:00
|
|
|
JS::Value unsafe_state() const;
|
2023-09-27 22:39:44 -06:00
|
|
|
void set_state(JS::Value s) { m_state = s; }
|
|
|
|
|
2021-09-11 23:43:34 +01:00
|
|
|
private:
|
2022-09-25 16:38:21 -06:00
|
|
|
History(JS::Realm&, DOM::Document&);
|
2022-09-02 13:50:24 +02:00
|
|
|
|
2023-08-07 08:41:28 +02:00
|
|
|
virtual void initialize(JS::Realm&) override;
|
2022-09-02 13:50:24 +02:00
|
|
|
virtual void visit_edges(Cell::Visitor&) override;
|
2021-09-11 23:43:34 +01:00
|
|
|
|
2023-09-23 23:04:24 +02:00
|
|
|
WebIDL::ExceptionOr<void> shared_history_push_replace_state(JS::Value data, Optional<String> const& url, HistoryHandlingBehavior);
|
2021-09-11 23:43:34 +01:00
|
|
|
|
2024-11-15 04:01:23 +13:00
|
|
|
GC::Ref<DOM::Document> m_associated_document;
|
2023-09-27 22:39:44 -06:00
|
|
|
JS::Value m_state { JS::js_null() };
|
2021-09-11 23:43:34 +01:00
|
|
|
};
|
|
|
|
|
2024-03-18 16:22:27 +13:00
|
|
|
bool can_have_its_url_rewritten(DOM::Document const& document, URL::URL const& target_url);
|
2023-09-22 18:15:03 -06:00
|
|
|
|
2021-09-11 23:43:34 +01:00
|
|
|
}
|