DestinationInternalState
public final class DestinationInternalState<InteractorType, UserInteractionType, PresentationType, PresentationConfiguration> : DestinationInternalStateable where InteractorType : InteractorTypeable, UserInteractionType : UserInteractionTypeable, PresentationType : DestinationPresentationTypeable, PresentationConfiguration : DestinationPresentationConfiguring
This class holds the internal state of classes conforming to the Destinationable
protocol.
-
Declaration
Swift
public typealias UserInteractionType = UserInteractionType
-
Declaration
Swift
public typealias DestinationType = PresentationConfiguration.DestinationType
-
Declaration
Swift
public typealias InteractorType = InteractorType
-
Declaration
Swift
public typealias TabType = PresentationConfiguration.TabType
-
Declaration
Swift
public typealias PresentationType = PresentationType
-
Declaration
Swift
public typealias ContentType = PresentationConfiguration.ContentType
-
Declaration
Swift
public typealias PresentationConfiguration = PresentationConfiguration
-
The identifier of this object’s parent Destination.
Declaration
Swift
public var parentDestinationID: UUID?
-
An
AppDestinationConfigurations
object representing configurations to handle user interactions on this Destination’s associated UI.Declaration
Swift
public var destinationConfigurations: DestinationConfigurations?
-
An
AppDestinationConfigurations
instance that holds configurations to handle system navigation events related to this Destination.Declaration
Swift
public var systemNavigationConfigurations: NavigationConfigurations?
-
A Boolean that denotes whether the UI is currently in a navigation transition.
Declaration
Swift
public var isSystemNavigating: Bool
-
Declaration
Swift
public var interactors: [InteractorType : any AbstractInteractable]
-
Declaration
Swift
public var interfaceActions: [UserInteractionType : InterfaceAction<UserInteractionType, PresentationConfiguration.DestinationType, PresentationConfiguration.ContentType>]
-
Declaration
Swift
public var systemNavigationActions: [SystemNavigationType : InterfaceAction<SystemNavigationType, PresentationConfiguration.DestinationType, PresentationConfiguration.ContentType>]
-
Declaration
Swift
public var interactorAssistants: [UserInteractionType : any InteractorAssisting<InteractorType, PresentationConfiguration.ContentType>]
-
Undocumented
Declaration
Swift
public init()