app-route

WebJar for app-route

License

License

BSD 3-Clause
GroupId

GroupId

org.webjars.bowergithub.polymerelements
ArtifactId

ArtifactId

app-route
Last Version

Last Version

2.1.2
Release Date

Release Date

Type

Type

jar
Description

Description

app-route
WebJar for app-route
Project URL

Project URL

http://webjars.org
Source Code Management

Source Code Management

https://github.com/PolymerElements/app-route

Download app-route

How to add to project

<!-- https://jarcasting.com/artifacts/org.webjars.bowergithub.polymerelements/app-route/ -->
<dependency>
    <groupId>org.webjars.bowergithub.polymerelements</groupId>
    <artifactId>app-route</artifactId>
    <version>2.1.2</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.bowergithub.polymerelements/app-route/
implementation 'org.webjars.bowergithub.polymerelements:app-route:2.1.2'
// https://jarcasting.com/artifacts/org.webjars.bowergithub.polymerelements/app-route/
implementation ("org.webjars.bowergithub.polymerelements:app-route:2.1.2")
'org.webjars.bowergithub.polymerelements:app-route:jar:2.1.2'
<dependency org="org.webjars.bowergithub.polymerelements" name="app-route" rev="2.1.2">
  <artifact name="app-route" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.bowergithub.polymerelements', module='app-route', version='2.1.2')
)
libraryDependencies += "org.webjars.bowergithub.polymerelements" % "app-route" % "2.1.2"
[org.webjars.bowergithub.polymerelements/app-route "2.1.2"]

Dependencies

compile (2)

Group / Artifact Type Version
org.webjars.bowergithub.polymerelements : iron-location jar [1.0.0,3)
org.webjars.bowergithub.polymer : polymer jar [1.9.0,3)

Project Modules

There are no modules declared in this project.

Published on NPM Build status Published on webcomponents.org

<app-route>

app-route is an element that enables declarative, self-describing routing for a web app.

See: Documentation, Large Demo, Simple Demo, Data Loading Demo.

Usage

Installation

npm install --save @polymer/app-route

In an HTML file

<html>
  <head>
    <script type="module">
      import '@polymer/polymer/lib/elements/dom-bind.js';
      import '@polymer/app-route/app-location.js';
      import '@polymer/app-route/app-route.js';
    </script>
  </head>
  <body>
    <dom-bind>
      <template>
        <app-location route="{{route}}"></app-location>
        <app-route
            route="{{route}}"
            pattern="/:page"
            data="{{routeData}}"
            tail="{{subroute}}">
        </app-route>
        <app-route
            route="{{subroute}}"
            pattern="/:id"
            data="{{subrouteData}}">
        </app-route>
      </template>
    </dom-bind>
  </body>
</html>

In a Polymer 3 element

import {PolymerElement, html} from '@polymer/polymer';
import '@polymer/app-route/app-location.js';
import '@polymer/app-route/app-route.js';

class SampleElement extends PolymerElement {
  static get template() {
    return html`
      <app-location route="{{route}}"></app-location>
      <app-route
          route="{{route}}"
          pattern="/:page"
          data="{{routeData}}"
          tail="{{subroute}}">
      </app-route>
      <app-route
          route="{{subroute}}"
          pattern="/:id"
          data="{{subrouteData}}">
      </app-route>
    `;
  }
}
customElements.define('sample-element', SampleElement);

Contributing

If you want to send a PR to this element, here are the instructions for running the tests and demo locally:

Installation

git clone https://github.com/PolymerElements/app-route
cd app-route
npm install
npm install -g polymer-cli

Running the demo locally

polymer serve --npm
open http://127.0.0.1:<port>/demo/index.html
open http://127.0.0.1:<port>/demo/simple-demo.html
open http://127.0.0.1:<port>/demo/data-loading-demo.html

Running the tests

polymer test --npm
org.webjars.bowergithub.polymerelements

Versions

Version
2.1.2
2.1.0