StateObject | @uirouter/angular
Options
Menu

Class StateObject

Internal representation of a UI-Router state.

Instances of this class are created when a StateDeclaration is registered with the StateRegistry.

A registered StateDeclaration is augmented with a getter (StateDeclaration.$$state) which returns the corresponding StateObject object.

This class prototypally inherits from the corresponding StateDeclaration. Each of its own properties (i.e., hasOwnProperty) are built using builders from the StateBuilder.

Hierarchy

  • StateObject

Index

Constructors

Properties

abstract: boolean

Prototypally inherits from StateDeclaration.abstract

Prototypally inherits from StateDeclaration.abstract

data: any

Prototypally inherits from StateDeclaration.data Note: This is the only field on the StateDeclaration which is mutated. The definition object's data field is replaced with a new object which prototypally inherits from the parent state definition's data field.

Prototypally inherits from StateDeclaration.data Note: This is the only field on the StateDeclaration which is mutated. The definition object's data field is replaced with a new object which prototypally inherits from the parent state definition's data field.

includes: object

An array of strings of the parent States' names

An array of strings of the parent States' names

Type declaration

  • [name: string]: boolean
lazyLoad: function

Prototypally inherits from StateDeclaration.lazyLoad

Prototypally inherits from StateDeclaration.lazyLoad

Type declaration

name: string

The name used to register the state

The name used to register the state

navigable: StateObject

The nearest parent StateObject which has a URL

The nearest parent StateObject which has a URL

onEnter: TransitionStateHookFn

Prototypally inherits from StateDeclaration.onEnter

Prototypally inherits from StateDeclaration.onEnter

onExit: TransitionStateHookFn

Prototypally inherits from StateDeclaration.onExit

Prototypally inherits from StateDeclaration.onExit

onRetain: TransitionStateHookFn

Prototypally inherits from StateDeclaration.onRetain

Prototypally inherits from StateDeclaration.onRetain

params: object

The parameters for the state, built from the URL and StateDeclaration.params

The parameters for the state, built from the URL and StateDeclaration.params

Type declaration

parent: StateObject

The parent StateObject

The parent StateObject

path: StateObject[]

The parent StateObject objects from this state up to the root

The parent StateObject objects from this state up to the root

redirectTo: string | function | object

Prototypally inherits from StateDeclaration.redirectTo

Prototypally inherits from StateDeclaration.redirectTo

resolvables: Resolvable[]

A list of Resolvable objects. The internal representation of resolve.

A list of Resolvable objects. The internal representation of resolve.

resolve: Array<any> | object

Prototypally inherits from StateDeclaration.resolve

Prototypally inherits from StateDeclaration.resolve

resolvePolicy: any

Prototypally inherits from StateDeclaration.resolvePolicy

Prototypally inherits from StateDeclaration.resolvePolicy

self: StateDeclaration

The original StateDeclaration used to build this StateObject. Note: this object also prototypally inherits from the self declaration object.

The original StateDeclaration used to build this StateObject. Note: this object also prototypally inherits from the self declaration object.

url: UrlMatcher

A compiled URLMatcher which detects when the state's URL is matched

A compiled URLMatcher which detects when the state's URL is matched

views: object

The views for the state. Note: @uirouter/core does not register a builder for views. The framework specific code should register a views builder.

The views for the state. Note: @uirouter/core does not register a builder for views. The framework specific code should register a views builder.

Type declaration

Methods

  • fqn(): string
  • Returns true if the provided parameter is the same state.

    Compares the identity of the state against the passed value, which is either an object reference to the actual State instance, the original definition object passed to $stateProvider.state(), or the fully-qualified name.

    Parameters

    • ref StateObject | StateDeclaration | string
      :

      Can be one of (a) a State instance, (b) an object that was passed into $stateProvider.state(), (c) the fully-qualified name of a state as a string.

    Returns boolean

    :

    Returns true if ref matches the current State instance.


  • parameter(id: string, opts?: object): Param
  • Returns a single Param that is owned by the state

  • Returns a single Param that is owned by the state

    If opts.inherit is true, it also searches the ancestor states` Params.

    Parameters

    • id string
      :

      the name of the Param to return

    • opts: Default value  object = {}
      :

      options

      • Optional inherit?: boolean

    Returns Param


  • parameters(opts?: object): Param[]
  • Gets the state's Param objects

  • Gets the state's Param objects

    Gets the list of Param objects owned by the state. If opts.inherit is true, it also includes the ancestor states' Param objects. If opts.matchingKeys exists, returns only Params whose id is a key on the matchingKeys object

    Parameters

    • opts: Optional  object
      :

      options

      • Optional inherit?: boolean
      • Optional matchingKeys?: any

    Returns Param[]


  • root(): StateObject
  • Returns the root node of this state's tree.

  • toString(): string
  • create(stateDecl: _StateDeclaration): StateObject
  • Create a state object to put the private/internal implementation details onto. The object's prototype chain looks like: (Internal State Object) -> (Copy of State.prototype) -> (State Declaration object) -> (State Declaration's prototype...)

  • Create a state object to put the private/internal implementation details onto. The object's prototype chain looks like: (Internal State Object) -> (Copy of State.prototype) -> (State Declaration object) -> (State Declaration's prototype...)

    Parameters

    Returns StateObject

    :

    an internal State object


  • isState(obj: any): boolean
  • Predicate which returns true if the object is an internal StateObject object

  • isStateClass(stateDecl: _StateDeclaration): boolean
  • Predicate which returns true if the object is an class with @State() decorator

Generated using TypeDoc