angular-ui-router-title

WebJar for angular-ui-router-title

License

License

MIT
Categories

Categories

Angular User Interface Web Frameworks
GroupId

GroupId

org.webjars.bower
ArtifactId

ArtifactId

angular-ui-router-title
Last Version

Last Version

0.1.1
Release Date

Release Date

Type

Type

jar
Description

Description

angular-ui-router-title
WebJar for angular-ui-router-title
Project URL

Project URL

http://webjars.org
Source Code Management

Source Code Management

https://github.com/nonplus/angular-ui-router-title

Download angular-ui-router-title

How to add to project

<!-- https://jarcasting.com/artifacts/org.webjars.bower/angular-ui-router-title/ -->
<dependency>
    <groupId>org.webjars.bower</groupId>
    <artifactId>angular-ui-router-title</artifactId>
    <version>0.1.1</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.bower/angular-ui-router-title/
implementation 'org.webjars.bower:angular-ui-router-title:0.1.1'
// https://jarcasting.com/artifacts/org.webjars.bower/angular-ui-router-title/
implementation ("org.webjars.bower:angular-ui-router-title:0.1.1")
'org.webjars.bower:angular-ui-router-title:jar:0.1.1'
<dependency org="org.webjars.bower" name="angular-ui-router-title" rev="0.1.1">
  <artifact name="angular-ui-router-title" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.bower', module='angular-ui-router-title', version='0.1.1')
)
libraryDependencies += "org.webjars.bower" % "angular-ui-router-title" % "0.1.1"
[org.webjars.bower/angular-ui-router-title "0.1.1"]

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

There are no modules declared in this project.

angular-ui-router-title

Build Status

AngularJS module for updating browser title/history based on the current ui-router state.

Motivation

Using ui-router states with url configurations enables browser history support and bookmarking of application state. It is important that the title in the browser history/bookmark represent the application state so that the user can tell where she's navigating to.

The module provides a $title variable on the $rootScope that is populated based on the $title value resolved in $state.$current (or one of its parent states). If the current state doesn't resolve a $title, then $rootScope.$title will be undefined.

The module also provides a $breadcrumbs array that is populated based on the $title of $state.$current and its parent states.

The module sets the document.title to the value of the $title variable or, if configured, to the value returned by a documentTitle(title) callback. The browser sets bookmark and browser history text based on the document.title.

Installing the Module

Installation can be done through bower:

bower install angular-ui-router-title

In your page add:

  <script src="bower_components/angular-ui-router-title/angular-ui-router-title.js"></script>

Loading the Module

This module declares itself as ui.router.title, so it can be declared as a dependency of your application as normal:

var app = angular.module('myApp', ['ng', 'ui.router.title']);

Specifying the $title in the state definition

A state defines its title by declaring a $title value in its resolve block. It's a good idea for the $title to include information from the current state, so it may need to inject the $stateParam or another value that was resolved from them.

$stateProvider
  .state('home', {
    ...
    resolve: {
      // Constant title
      $title: function() { return 'Home'; }
    }
  })
  .state('about', {
    url: '/about',
    ...
    resolve: {
      // Constant title
      $title: function() { return 'About'; }
    }
  })
  .state('contacts', {
    url: '/contacts',
    ...
    resolve: {
      // List of contacts
      contacts: ['Contacts', function(Contacts) {
        // Use Contacts service to retrieve list
        return Contacts.query();
      }],
      // Dynamic title showing number of contacts
      $title: ['contacts', function(contacts) {
        return 'Contacts (' + contacts.length + ')';
      }]
    }
  })
  .state('contact', {
    url: '/contact/:contactId',
    ...
    resolve: {
      // Single contact
      contact: ['Contacts', '$stateParams', function(Contacts, $stateParams) {
        // Use Contacts service to retrieve a contact
        return Contacts.get({ id: $stateParams.contactId });
      }],
      // Dynamic title showing the name of contact
      $title: ['contact', function(contact) {
        return contact.name;
      }]
    }
  })
  .state('contact.edit', {
    url: '/edit',
    ...
    resolve: {
      // Dynamic title appending to parent state's title
      $title: ['$title', function($title) {
        return $title + " (edit)";
      }]
    }
  })

Configuring a custom document.title

By default, the module will set the document.title to the value of $rootScope.$title. A common convention is to include the application name in the document.title. Customization of the document.title can be achieved via the $titleProvier.documentTitle callback specification.

angular.module('myApp', ['ng', 'ui.router.title'])
  .config(function($titleProvider) {
    $titleProvider.documentTitle(function($rootScope) {
      return $rootScope.$title ? $rootScope.$title + " - My Application" : "My Application";
    });
  });

Using the $title in a header

The $title property contains the resolve title and cen be used, for example, to set the contents of an <h1> tag.

  <h1 ng-bind="($title || 'Home') + ' - My Application'">My Application</h1>

Using the $breadcrumbs

The $breadcrumbs array contains objects, one for each state that resolves a $title value. Each entry contains:

  • title: $title value of this state
  • state: name of the state
  • stateParams: $stateParams of the state.
<ol class="breadcrumb">
	<li ng-repeat="crumb in $breadcrumbs" ng-class="{ 'active' : $last }">
		<a ng-if="!$last" href="{{$state.href(crumb.state, crumb.stateParams)}}">{{crumb.title}}</a>
		<span ng-if="$last">{{crumb.title}}</span>
	</li>
</ol>

Copyright & License

Copyright 2015 Stepan Riha. All Rights Reserved.

This may be redistributed under the MIT licence. For the full license terms, see the LICENSE file which should be alongside this readme.

Versions

Version
0.1.1
0.0.4
0.0.3