1.0.0 • Published 5 years ago

aurelia-meta v1.0.0

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

aurelia-meta

A plugin on top of aurelia-router to handle meta tags of your application, both automatically and manually.

Usage

  1. Install the plugin
yarn install aurelia-meta
  1. Make Aurelia aware of your application
aurelia.use.plugin('aurelia-meta');
  • Bear in mind to use PLATFORM.moduleName if you use webpack
  1. It's ready to use, just add your meta tags to your routes as a property, no matter whether it's a parent route or a child one.
config.map([
      {
        route: '',
        name: 'home',
        moduleId: PLATFORM.moduleName('./routes/home'),
        nav: true,
        title: 'Home',

        meta: [
          {
            name: 'home', content: 'This is a Home page'
          },
          {
            property: 'og:title' , content:'Home'
          },
          {
            property: 'og:description' , content:'Aurelia meta is a plugin for Aurelia'
          }
        ]
      },
  ...
]);
  • If you want to add meta tags manually and not necessarily on route changes, use one of these services: Router, AureliaMetaService and use the appropriate methods for your purpose.
import { autoinject } from "aurelia-framework";
import { AureliaMetaService } from "aurelia-meta";

@autoinject()
export class HomeRouteComponent{

  message: string = "Hello world!";

  constructor(private aureliaMetaService: AureliaMetaService) { }

  activate() {
    this.aureliaMetaService.addTag({
      name: 'author' , content:'Saeed Ganji'
    });
  }
  
  deactivate() {
    this.aureliaMetaService.removeTag({
      name: 'author' , content:'Saeed Ganji'
    })
  }
}
  • Keep in mind that you are responsible to remove tags that you have added manually, the plugin only automatically handles tags defined on the routes.

Build

  • To build the plugin clone this repository and run au build-plugin
  • To run the sample project run npm start