Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/elwayman02/ember-is-fastboot
Provides a mixin for addons to check the FastBoot status of their consuming apps
https://github.com/elwayman02/ember-is-fastboot
ember ember-addon emberjs fastboot
Last synced: 29 days ago
JSON representation
Provides a mixin for addons to check the FastBoot status of their consuming apps
- Host: GitHub
- URL: https://github.com/elwayman02/ember-is-fastboot
- Owner: elwayman02
- License: mit
- Created: 2018-02-25T20:05:52.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-02-25T20:13:23.000Z (almost 7 years ago)
- Last Synced: 2024-10-18T23:25:53.516Z (2 months ago)
- Topics: ember, ember-addon, emberjs, fastboot
- Language: JavaScript
- Homepage:
- Size: 153 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
Ember Is Fastboot
=================This addon provides a mixin to make it easy to know if your addon is currently in FastBoot mode.
This approach is lovingly stolen from a great [PR](https://github.com/elwayman02/ember-user-activity/pull/67)
made by [@tylerturdenpants](https://github.com/tylerturdenpants)!Installation
------------------------------------------------------------------------------```
ember install ember-is-fastboot
```Usage
------------------------------------------------------------------------------The `is-fastboot` mixin is the only utility you need to use! It provides an
`_isFastBoot` computed that tells you if FastBoot mode is currently active.For example, if you have a service that needs to short-circuit some logic in FastBoot:
```javascript
// services/foo.js
import Service from '@ember/service';
import IsFastbootMixin from 'ember-is-fastboot/mixins/is-fastboot';export default Service.extend(IsFastbootMixin, {
doStuff() {
if (this.get('_isFastBoot')) {
return; // Don't do the stuff, we're in FastBoot mode
}
// Do the stuff, we're not in FastBoot mode
}
});
```That's it! You can throw this mixin into any Ember object that needs to be FastBoot-aware.
Contributing
------------------------------------------------------------------------------### Installation
* `git clone `
* `cd ember-is-fastboot`
* `npm install`### Linting
* `npm run lint:js`
* `npm run lint:js -- --fix`### Running tests
* `ember test` – Runs the test suite on the current Ember version
* `ember test --server` – Runs the test suite in "watch mode"
* `ember try:each` – Runs the test suite against multiple Ember versions### Running the dummy application
* `ember serve`
* Visit the dummy application at [http://localhost:4200](http://localhost:4200).For more information on using ember-cli, visit [https://ember-cli.com/](https://ember-cli.com/).
License
------------------------------------------------------------------------------This project is licensed under the [MIT License](LICENSE.md).