GithubHelp home page GithubHelp logo

isabella232 / ng-ui-router-styles Goto Github PK

View Code? Open in Web Editor NEW

This project forked from betsol/ng-ui-router-styles

0.0 0.0 0.0 22 KB

Load custom CSS for different routes

JavaScript 69.66% CSS 3.81% HTML 26.53%

ng-ui-router-styles's Introduction

betsol-ng-ui-router-styles

Bower version npm version

This module for Angular.js UI Router allows you to specify CSS-resources for different states. It will make sure that specified styles are loaded before the state is rendered.

With it, you could split your application into fully-independent layout sections and get rid of style conflicts once and for all!

Features

  • Simple installation, no directives needed
  • Straightforward and flexible resource definition
  • Supports named resources with ability to override them down the chain
  • All CSS is loaded during the resolve stage

Installation

Install library with npm

npm i --save betsol-ng-ui-router-styles

Install library with Bower

bower install --save betsol-ng-ui-router-styles

Add library to your page

<script src="/node_modules/betsol-ng-ui-router-styles/dist/betsol-ng-ui-router-styles.js"></script>

You should use minified version (betsol-ng-ui-router-styles.min.js) in production.

Add dependency in your application's module definition

var application = angular.module('application', [
  // ...
  'betsol.uiRouterStyles'
]);

Usage

angular
  .module('application', [
    'betsol.uiRouterStyles'
  ])
  .config(function ($stateProvider) {
    $stateProvider
      .state('root', {
        abstract: true,
        data: {
          // Single un-named resource defined:
          // Globally for entire application.
          css: '/css/root.css'
        }
      })
        .state('home', {
          url: '/',
          parent: 'root',
          data: {
            // Multiple named resources defined:
            // You could override them down the chain if you want.
            css: {
              home: '/css/home.css',
              dashboard: '/css/dashboard.css'
            }
          }
        })
          .state('home-about', {
            url: '/about',
            parent: 'home',
            data: {
              css: {

                // Disabling parent named resource:
                // You could also override it if you want.
                dashboard: null,

                // Adding another named resource:
                about: '/css/about.css'
              }
            }
          })
        .state('sign-up', {
          url: '/sign-up',
          parent: 'root',
          data: {
            // Mixed array-style definition.
            css: [

              // Un-named resource defined by URL:
              '/css/forms.css',

              // Complete resource definition object provided:
              { id: 'sign-up', url: '/css/sign-up.css' },

              // Minimal resource definition object with no name:
              { url: '/css/forms-extra.css' }

            ]
          }
        })
      ;
    })
;

Events

This module fires the following events on the $rootScope:

  • uiRouterStyles.loadingStarted when loading of stylesheets is started
  • uiRouterStyles.loadingFinished when loading of stylesheets is finished

You can use these events to, for example, hide the content of the page using some animation in order to prevent FOUC.

Changelog

Please see the changelog for list of changes.

Feedback

If you have found a bug or have another issue with the library โ€” please create an issue.

If you have a question regarding the library or it's integration with your project โ€” consider asking a question at StackOverflow and sending me a link via E-Mail. I will be glad to help.

Have any ideas or propositions? Feel free to contact me by E-Mail.

Cheers!

Developer guide

Fork, clone, create a feature branch, implement your feature, cover it with tests, commit, create a PR.

Run:

  • npm i && bower install to initialize the project
  • gulp build to re-build the dist files
  • gulp test or karma start to test the code
  • gulp test:e2e:server to run test server on http://localhost:1337

Do not add dist files to the PR itself. We will re-compile the module manually each time before releasing.

Support

If you like this library consider to add star on GitHub repository.

Thank you!

License

The MIT License (MIT)

Copyright (c) 2016 Slava Fomin II, BETTER SOLUTIONS

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

ng-ui-router-styles's People

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.