Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Readme: how to enabe the slider during initial app loading #24

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,22 @@ e.g. `app/controllers/application.js` to avoid getting an `Assertion Failed` err

v1.3.x is implemented as a service and controllers are no longer used.


## Enabling during initial app loading

Normally, the loading slider would only appear for transitions that happen after the app has loaded. During initial app loading (including loading models), the slider is not visible.

To enable the app slider during initial loading, do these extra steps:

1. Do not return a promise from the `application` route's `model` hook. If you do, the `application.hbs` template will not render until the data is loaded, and the slider will appear only when it's no longer necessary. If you need to load data app-wise, create an intermediate route (e. g. `main`) with `{path: '/'}` between the application route and your other routes.
2. Create an empty `loading.hbs` template. This will tell Ember not to postpone rendering of the `application.hbs` component.
3. In the `application` route, set a `bubbleLoadingSlider` property to `true`. This will tell the loading slider's `ApplicationRouteMixin` not to suppress the `loading` event.
4. In the application template, pass the following arguments to the `loading-slider` component:
* `runManageInitially` - `true`. It tells the slider to start sliding when it initializes.
* `expanding` - `true`. Current sliding (`expanding: false`) implementation lets the slider disappear before the routes finish loading models. We don't want it do disappear prematurely.
* `color` - an array of at least two colors. It is required by `expanding: true`. To pass an array, create a simple helper or redefine the `loading-slider` component.


## API

* isLoading
Expand Down