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!
- 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
npm i --save betsol-ng-ui-router-styles
bower install --save betsol-ng-ui-router-styles
<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.
var application = angular.module('application', [
// ...
'betsol.uiRouterStyles'
]);
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' }
]
}
})
;
})
;
This module fires the following events on the $rootScope
:
uiRouterStyles.loadingStarted
when loading of stylesheets is starteduiRouterStyles.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.
Please see the changelog for list of changes.
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!
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 projectgulp build
to re-build the dist filesgulp test
orkarma start
to test the codegulp 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.
If you like this library consider to add star on GitHub repository.
Thank you!
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.