-
-
Save AustinBrunkhorst/766b653db2020b300c9b62524940972e to your computer and use it in GitHub Desktop.
Aurelia Menu Sample
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<require from="resources-elements-nav-menu.html" as="nav-menu"></require> | |
<nav-menu router.bind="router"></nav-menu> | |
<h1>Aurelia Menu with Child Routes example</h1> | |
<div> | |
<router-view></router-view> | |
</div> | |
</template> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { inject } from 'aurelia-framework'; | |
import { Router, RouterConfiguration, RouteConfig, NavModel } from 'aurelia-router'; | |
import { relativeToFile } from 'aurelia-path'; | |
import { CompositionEngine, CompositionContext } from 'aurelia-templating'; | |
import { Origin } from 'aurelia-metadata'; | |
@inject( CompositionEngine ) | |
export class App { | |
constructor(compositionEngine) { | |
this.compositionEngine = compositionEngine; | |
} | |
configureRouter(config, router) { | |
config.title = 'Child Route Menu Example'; | |
config.map( [ | |
{ route: ['', 'home'], name: 'home', moduleId: 'routes-home-index', nav: true, title: 'Home' }, | |
{ route: 'cats', name: 'cats', moduleId: 'routes-cats-index', nav: true, title: 'Cats' }, | |
{ route: 'dogs', name: 'dogs', moduleId: 'routes-dogs-index', nav: true, title: 'Dogs' }, | |
{ route: 'birds', name: 'birds', moduleId: 'routes-birds-index', nav: true, title: 'Birds' } | |
] ); | |
this.router = router; | |
} | |
attached() { | |
return this.mapNavigation( this.router ); | |
} | |
mapNavigation(router, config) { | |
const promises = [ ]; | |
const c = config ? config : { route: null }; | |
router.navigation.forEach( nav => { | |
if (c.route !== nav.config.route) { | |
promises.push( this.mapNavigationItem( nav, router ) ); | |
} else { | |
promises.push( Promise.resolve( nav ) ); | |
} | |
} ); | |
return Promise.all( promises ); | |
} | |
mapNavigationItem(nav, router) { | |
const config = nav.config; | |
const navModel = nav; | |
if (config.moduleId) { | |
const childContainer = router.container.createChild(); | |
const instruction = { | |
viewModel: relativeToFile( config.moduleId, Origin.get( router.container.viewModel.constructor ).moduleId ), | |
childContainer: childContainer, | |
view: config.view || config.viewStrategy, | |
}; | |
return this.compositionEngine | |
.ensureViewModel( instruction ) | |
.then( context => { | |
if ('configureRouter' in context.viewModel) { | |
const childRouter = new Router( childContainer, router.history ); | |
const childConfig = new RouterConfiguration(); | |
context.viewModel.configureRouter( childConfig, childRouter ); | |
childConfig.exportToRouter( childRouter ); | |
childRouter.navigation.forEach( nav => { | |
nav.href = `${navModel.href}/${nav.config.href ? nav.config.href : nav.config.name}`; | |
} ); | |
return this.mapNavigation( childRouter, config ) | |
.then( r => navModel.navigation = r ) | |
.then( () => navModel ); | |
} | |
return navModel; | |
} ); | |
} | |
return Promise.resolve( navModel ); | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html> | |
<head> | |
<title>Aurelia</title> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
</head> | |
<body aurelia-app> | |
<h1>Loading...</h1> | |
<script src="https://jdanyow.github.io/rjs-bundle/node_modules/requirejs/require.js"></script> | |
<script src="https://jdanyow.github.io/rjs-bundle/config.js"></script> | |
<script src="https://jdanyow.github.io/rjs-bundle/bundles/aurelia.js"></script> | |
<script src="https://jdanyow.github.io/rjs-bundle/bundles/babel.js"></script> | |
<script> | |
require(['aurelia-bootstrapper']); | |
</script> | |
</body> | |
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<h3>Breeds</h3> | |
</template> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export class Breeds { | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<h3>Care</h3> | |
</template> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export class Care { | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<h2>Birds Page</h2> | |
<router-view></router-view> | |
</template> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { RouterConfiguration, Router } from 'aurelia-router'; | |
export class Birds { | |
configureRouter(config, router) { | |
config.title = "Birds"; | |
config.map([ | |
{ route: ['', 'care'], name: 'care', moduleId: 'routes-birds-care-index', nav: true, title: 'Caring' }, | |
{ route: 'breeds', name: 'breeds', moduleId: 'routes-birds-breeds-index', nav: true, title: 'Breeds' }, | |
{ route: 'toys', name: 'toys', moduleId: 'routes-birds-toys-index', nav: true, title: 'Toys' }, | |
]); | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<h3>Toys</h3> | |
</template> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export class Toys { | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<h3>Breeds</h3> | |
</template> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export class Breeds { | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<h3>Care</h3> | |
</template> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export class Care { | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<h2>Cats Page</h2> | |
<router-view></router-view> | |
</template> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { RouterConfiguration, Router } from 'aurelia-router'; | |
export class Cats { | |
configureRouter(config: RouterConfiguration, router: Router) { | |
config.title = "Cats"; | |
config.map([ | |
{ route: ['', 'care'], name: 'care', moduleId: 'routes-cats-care-index', nav: true, title: 'Caring' }, | |
{ route: 'breeds', name: 'breeds', moduleId: 'routes-cats-breeds-index', nav: true, title: 'Breeds' }, | |
{ route: 'toys', name: 'toys', moduleId: 'routes-cats-toys-index', nav: true, title: 'Toys' }, | |
]); | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<h3>Toys</h3> | |
</template> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export class Toys { | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<h3>Golden Retriever</h3> | |
</template> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export class GoldenRetriever { | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<h3>Breeds</h3> | |
<router-view></router-view> | |
</template> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { RouterConfiguration, Router } from 'aurelia-router'; | |
export class Breeds { | |
configureRouter(config, router) { | |
config.title = "Breeds"; | |
config.map([ | |
{ route: ['', 'golden-retriever'], name: 'golden-retriever', moduleId: 'routes-dogs-breeds-golden-retriever-index', nav: true, title: 'Golden Retriever' }, | |
]); | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<h3>Care</h3> | |
</template> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export class Care { | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<h2>Dogs Page</h2> | |
<router-view></router-view> | |
</template> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { RouterConfiguration, Router } from 'aurelia-router'; | |
export class Dogs { | |
configureRouter(config: RouterConfiguration, router: Router) { | |
config.title = "Dogs"; | |
config.map([ | |
{ route: ['', 'care'], name: 'care', moduleId: 'routes-dogs-care-index', nav: true, title: 'Caring' }, | |
{ route: 'breeds', name: 'breeds', moduleId: 'routes-dogs-breeds-index', nav: true, title: 'Breeds' }, | |
{ route: 'toys', name: 'toys', moduleId: 'routes-dogs-toys-index', nav: true, title: 'Toys' }, | |
]); | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<h3>Toys</h3> | |
</template> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export class Toys { | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<h1>Home</h1> | |
</template> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export class Home { | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment