-
-
Save jfstephe/e659e4d172030613182570ed5f30792f to your computer and use it in GitHub Desktop.
Aurelia Router Demo
This file contains 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="components/navigation.html"></require> | |
<h1>Aurelia Router Demo</h1> | |
<navigation router.bind="router" class="primary-navigation"></navigation> | |
<div class="page-host"> | |
<router-view></router-view> | |
</div> | |
</template> |
This file contains 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 App { | |
configureRouter(config, router) { | |
config.title = 'Aurelia'; | |
config.map([ | |
{route: ['', 'home'], name: 'home', moduleId: 'home/home', nav: true, title: 'Home'}, | |
{route: 'profile', name: 'profile', moduleId: 'profile/profile', nav: true, title: 'Profile'}, | |
{route: 'settings', name: 'settings', moduleId: 'settings/settings', nav: true, title: 'Settings'} | |
]); | |
this.router = router; | |
} | |
} |
This file contains 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>Home</h2> | |
</template> |
This file contains 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 { | |
} |
This file contains 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"> | |
<link rel="stylesheet" href="styles.css"> | |
</head> | |
<body aurelia-app="main"> | |
<h1>Loading...</h1> | |
<script src="https://cdn.rawgit.com/jdanyow/aurelia-bundle/v1.0.3/jspm_packages/system.js"></script> | |
<script src="https://cdn.rawgit.com/jdanyow/aurelia-bundle/v1.0.3/config.js"></script> | |
<script> | |
System.import('aurelia-bootstrapper'); | |
</script> | |
</body> | |
</html> |
This file contains 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 function configure(aurelia) { | |
aurelia.use | |
.standardConfiguration() | |
.developmentLogging() | |
.plugin('aurelia-dialog'); | |
aurelia.start().then(() => aurelia.setRoot()); | |
} |
This file contains 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="components/navigation.html"></require> | |
<navigation router.bind="router" class="tertiary-navigation"></navigation> | |
<div class="page-host"> | |
<router-view></router-view> | |
</div> | |
</template> |
This file contains 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 Account { | |
configureRouter(config, router) { | |
config.map([ | |
{ route: '', redirect: 'username' }, | |
{ route: 'username', name: 'username', moduleId: 'profile/account/username/username', nav: true, title: 'Username' }, | |
{ route: 'password', name: 'password', moduleId: 'profile/account/password/password', nav: true, title: 'Password' } | |
]); | |
this.router = router; | |
} | |
} |
This file contains 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>Password</h2> | |
</template> |
This file contains 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 Password { | |
activate() { | |
} | |
} | |
This file contains 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>Username</h2> | |
<p>${username}</p> | |
</template> |
This file contains 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 { parseQueryString, buildQueryString } from 'aurelia-path'; | |
export class Username { | |
activate() { | |
let location = window.location; | |
let search = location ? location.search : ''; | |
let hash = location ? location.hash : ''; | |
let queryString = search; | |
// Aurelia uses the hash to store what loks like the query state | |
if (search === '' && hash && hash.indexOf('?')) { | |
queryString = hash.substr(hash.indexOf('?')); | |
} | |
this.username = parseQueryString(queryString).username || 'unknown'; | |
} | |
} |
This file contains 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>Emails</h2> | |
</template> |
This file contains 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 Emails { | |
} |
This file contains 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>Notifications</h2> | |
</template> |
This file contains 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 Notifications { | |
} |
This file contains 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="components/navigation.html"></require> | |
<navigation router.bind="router" class="secondary-navigation"></navigation> | |
<div class="page-host"> | |
<router-view></router-view> | |
</div> | |
</template> |
This file contains 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 Profile { | |
configureRouter(config, router) { | |
config.map([ | |
{ route: '', redirect: 'account' }, | |
{ route: 'account', name: 'account', moduleId: 'profile/account/account', nav: true, title: 'Account' }, | |
{ route: 'emails', name: 'emails', moduleId: 'profile/emails/emails', nav: true, title: 'Emails' }, | |
{ route: 'notifications', name: 'notifications', moduleId: 'profile/notifications/notifications', nav: true, title: 'Notifications' } | |
]); | |
this.router = router; | |
} | |
} |
This file contains 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>Settings</h2> | |
</template> |
This file contains 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 Settings { | |
} |
This file contains 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
:root { | |
--accent: rgba(236,12,104,.8); | |
--white: #fff; | |
--light-grey: #666; | |
--medium-grey: #444; | |
--dark-grey: #333; | |
--default-border-width: 1px; | |
--default-border-color: #eee; | |
--default-border: var(--default-border-width) solid var(--default-border-color); | |
--page-host-border-color: var(--default-border-color); | |
--page-host-border-width: var(--default-border-width); | |
--navigation-bgc: var(--light-grey); | |
--navigation-item-hover-bgc: var(--medium-grey); | |
--navigation-item-active-bgc: var(--accent); | |
--navigation-item-border-color: var(--default-border-color); | |
} | |
* { | |
margin: 0; | |
padding: 0; | |
box-sizing: border-box; | |
} | |
body { | |
padding: 1em; | |
font-family: sans-serif; | |
} | |
ul { | |
overflow: hidden; | |
list-style-type: none; | |
} | |
a { | |
display: inline-block; | |
text-decoration: none; | |
} | |
.page-host { | |
margin-top: .5em; | |
padding: 1em; | |
border: var(--default-border); | |
} | |
.primary-navigation, | |
.secondary-navigation { | |
display: block; | |
background-color: var(--navigation-bgc); | |
} | |
.primary-navigation { | |
margin: 1em 0; | |
} | |
.primary-navigation li:not(.active):hover, | |
.secondary-navigation li:not(.active):hover { | |
background-color: var(--navigation-item-hover-bgc); | |
} | |
.primary-navigation li, | |
.secondary-navigation li, | |
.tertiary-navigation li { | |
float: left; | |
border-right: var(--default-border-width) solid var(--navigation-item-border-color); | |
} | |
.tertiary-navigation li { | |
padding: 0 .5em; | |
} | |
.tertiary-navigation li:first-child { | |
padding-left: 0; | |
} | |
.tertiary-navigation li:last-child { | |
border-right: none; | |
} | |
.primary-navigation a, | |
.secondary-navigation a { | |
color: var(--white); | |
} | |
.tertiary-navigation a { | |
color: var(--dark-grey); | |
} | |
.primary-navigation a { | |
padding: 1em 2em; | |
} | |
.secondary-navigation a { | |
padding: .5em 1em; | |
} | |
.primary-navigation .active , | |
.secondary-navigation .active { | |
background-color: var(--navigation-item-active-bgc); | |
} | |
.tertiary-navigation .active { | |
font-weight: bold; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment