An open source, community-driven fork of Front Router by Zurb.
Base Apps Router simplifies the creation of routes in AngularJS by allowing you to define them directly in your view templates.
State settings are defined in a Front Matter block at the top of each template.
---
name: post
url: /post/:id
controller: PostController
---
<h1>Post</h1>
Base Apps Router parses each file, removing the Front Matter from the HTML and storing it in a JavaScript object of states. This object is saved as a new JavaScript file, which can be read by another library and converted into actual routes.
This library was developed for use with Angular Base Apps, a responsive web app framework from Base Apps, to simplify the process of prototyping single-page web apps.
Get started by installing base-apps-router from npm.
npm install base-apps-router --save
Base Apps Router is a plugin that takes in HTML files, removes the Front Matter, and returns the modified file. On completion, the route data is written to disk as a new file.
The plugin can be used standalone:
var router = require('base-apps-router');
router({
src: './src/templates/**/*.html',
dest: './build/templates'
path: './build/js/routes.js',
root: './src/templates'
}).then(function() {
console.log("Base Apps Router complete!");
});
Or as part of a Gulp stream:
var gulp = require('gulp');
var router = require('base-apps-router');
gulp.src('./src/templates/**/*.html')
.pipe(router({
path: './build/js/routes.js',
root: './src/templates'
}))
.pipe(gulp.dest('./build/templates'));
Base Apps Router accepts the following parameters:
- src (String): Glob of HTML files to parse. Not used in a Gulp context.
- dest (String): Folder to output HTML files to. Not used in a Gulp context.
- If not provided, output of HTML files will be skipped.
- root (String): Common path to source HTML files.
- path (String): File path for JavaScript routes file.
- overwrite (String): Whether or not to overwrite the routes file (appends by default).
- library (String): Library to format routes file for.
- Values: default, angular, node
The following libraries are supported
If no library is provided, the route configuration will be output to the global variable BaseAppsRoutes
.
Use in combination with Angular Dynamic Routing to produce ui-router
states for angular from the route configurations. The BaseAppsState
service provided by the dynamicRouting
module will be used to configure the routes.
Exports routes as a node module using module.exports
.
Required. The name of the view. Refer to this when using ui-sref
to link between views.
---
name: home
url: /
---
The name
parameter can also use ui-router's dot notation to indicate a child view.
---
name: home.child
url: /child
---
Required. Defines the URL at which a page can be directly accessed.
---
name: home
url: /
---
When setting up a child view, don't include the segment of the URL for the parent view—it will be inserted automatically.
---
name: parent.child
url: /child
---
In the above example, the final URL is /parent/child
, assuming the URL of the parent view is /parent
.
A URL can also contain parameters, which will be passed to the view's controller when it loads. Learn more about URL parameters on ui-router's documentation.
---
name: post
url: /post/:id
---
Sets a transition to play when the view animates in. Refer to the Motion UI documentation to see the list of built-in transitions.
---
name: home
url: /
animationIn: slideInRight
---
Sets a transition to play when the view animates out. Refer to the Motion UI documentation to see the list of built-in transitions.
---
name: home
url: /
animationIn: fadeIn
animationOut: fadeOut
---
Defines the parent view for the current one. You can use this as an alternative to the parent.child
syntax.
----
name: child
parent: parent
url: /child
----
By default, all views use a controller called DefaultController
, but this can be changed.
---
name: home
url: /
controller: HomeController
---
Among other things, the default controller passes a bunch of data through. For instance, all of your front-matter settings will be accessible via vars
in your template. {{ vars.name }}
will return the name of your route while {{ vars.path }}
will return the relative path to the template.
Note that override a controller disables front-matter settings (except dynamic routing). If you want to use your own controller AND keep this feature, you can extend the DefaultController
:
angular.module('application')
.controller('MyController', MyController)
;
MyController.$inject = ['$scope', '$stateParams', '$state', '$controller'];
function MyController($scope, $stateParams, $state, $controller) {
angular.extend(this, $controller('DefaultController', {
$scope: $scope,
$stateParams: $stateParams,
$state: $state
}));
// Your code...
}
Defines a state as abstract. Abstract states can have child states, but can't be navigated to directly. Check out the ui-router documentation to learn more.
---
name: home
url: /
abstract: true
---