@ovh-ux/ng-uirouter-layout

1.2.1 • Public • Published

ng-uirouter-layout

Support layout:modal when using ui-router

Downloads Dependencies Dev Dependencies Gitter

Install

yarn add @ovh-ux/ng-uirouter-layout

Usage

// index.js
import angular from 'angular';
import ngUiRouterLayout from '@ovh-ux/ng-uirouter-layout';

angular
  .module('myApp', [
    ngUiRouterLayout,
  ]);

With controller and template

// routing.js
import controller from './controller';
import template from './template.html';
...

  $stateProvider
    .state('state.name', {
      url,
      views: {
        modal: {
          controller,
          template
        },
      },
      layout: 'modal',
    });

With component

// routing.js
  $stateProvider
    .state('state.name', {
      url,
      views: {
        modal: {
          component: 'awesomeModal',
        },
      },
      layout: 'modal',
    });

With a component provider

// routing.js
  $stateProvider
    .state('state.name', {
      url,
      views: {
        modal: {
          componentProvider: 
            predicate => predicate 
              ? 'awesomeModalForTruePredicate' 
              : 'awesomeModalForFalsePredicate',
        },
      },
      layout: 'modal',
    });

Contributing

Always feel free to help out! Whether it's filing bugs and feature requests or working on some of the open issues, our contributing guide will help get you started.

License

BSD-3-Clause © OVH SAS

Package Sidebar

Install

npm i @ovh-ux/ng-uirouter-layout

Weekly Downloads

0

Version

1.2.1

License

BSD-3-Clause

Unpacked Size

1.2 MB

Total Files

15

Last publish

Collaborators

  • jisay
  • blary_jp
  • antleblanc
  • cbourgois
  • ovh-ux-cds
  • lizardk
  • ovh
  • marie-j