/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

#ifndef mozilla_dom_NavigationTransition_h_
#define mozilla_dom_NavigationTransition_h_

#include "mozilla/RefPtr.h"
#include "nsCOMPtr.h"
#include "nsCycleCollectionParticipant.h"
#include "nsISupports.h"
#include "nsWrapperCache.h"

class nsIGlobalObject;

namespace mozilla::dom {

class NavigationHistoryEntry;
enum class NavigationType : uint8_t;
class Promise;

// https://html.spec.whatwg.org/#navigationtransition
class NavigationTransition final : public nsISupports, public nsWrapperCache {
 public:
  NS_DECL_CYCLE_COLLECTING_ISUPPORTS_FINAL
  NS_DECL_CYCLE_COLLECTION_WRAPPERCACHE_CLASS(NavigationTransition)

  NavigationTransition(nsIGlobalObject* aGlobalObject,
                       NavigationType aNavigationType,
                       NavigationHistoryEntry* aFrom, Promise* aCommitted,
                       Promise* aFinished);

  enum NavigationType NavigationType() const;
  NavigationHistoryEntry* From() const;

  Promise* Committed() const;

  Promise* Finished() const;

  JSObject* WrapObject(JSContext* aCx,
                       JS::Handle<JSObject*> aGivenProto) override;
  nsIGlobalObject* GetParentObject() const;

 private:
  ~NavigationTransition() = default;

  nsCOMPtr<nsIGlobalObject> mGlobalObject;

  // https://html.spec.whatwg.org/#concept-navigationtransition-navigationtype
  enum NavigationType mNavigationType;

  // https://html.spec.whatwg.org/#concept-navigationtransition-from
  RefPtr<NavigationHistoryEntry> mFrom;

  // https://html.spec.whatwg.org/#concept-navigationtransition-committed
  RefPtr<Promise> mCommitted;

  // https://html.spec.whatwg.org/#concept-navigationtransition-finished
  RefPtr<Promise> mFinished;
};

}  // namespace mozilla::dom

#endif  // mozilla_dom_NavigationTransition_h_
