UrlRule | @uirouter/react
Options
All
  • Public
  • Public/Protected
  • All
Menu

The interface for a URL Rule

If you are creating a rule for use with UrlRules.rule, it should implement this interface.

Hierarchy

Index

Properties

$id

$id: number

The rule's ID.

IDs are auto-assigned when the rule is registered, in increasing order.

handler

This function is called if the rule matched, and was selected as the "best match". This function handles the rule match event.

See UrlRuleHandlerFn for details

match

This function should match the url and return the match details

See UrlRuleMatchFn for details

priority

priority: number

The rule's priority (defaults to 0).

This can be used to explicitly modify the rule's priority. Higher numbers are higher priority.

type

type: UrlRuleType

The type of the rule

Methods

matchPriority

  • matchPriority(match: any): number
  • The priority of a given match.

    Sometimes more than one UrlRule might have matched. This method is used to choose the best match.

    If multiple rules matched, each rule's matchPriority is called with the value from match. The rule with the highest matchPriority has its handler called.

    Parameters

    • match: any

    Returns number

Generated using TypeDoc