2016-06-23 09:47:54 -07:00
|
|
|
/**
|
|
|
|
* @license
|
|
|
|
* Copyright Google Inc. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
|
|
* found in the LICENSE file at https://angular.io/license
|
|
|
|
*/
|
|
|
|
|
2016-11-14 16:59:06 -08:00
|
|
|
import {AnimationPlayer} from '@angular/core';
|
2016-10-19 13:42:39 -07:00
|
|
|
import {isPresent} from '../facade/lang';
|
2016-09-27 17:12:25 -07:00
|
|
|
import {AnimationKeyframe, AnimationStyles} from '../private_import_core';
|
2016-08-30 18:07:40 -07:00
|
|
|
|
feat(browser): use AppModules for bootstrap in the browser
This introduces the `BrowserModule` to be used for long form
bootstrap and offline compile bootstrap:
```
@AppModule({
modules: [BrowserModule],
precompile: [MainComponent],
providers: […], // additional providers
directives: […], // additional platform directives
pipes: […] // additional platform pipes
})
class MyModule {
constructor(appRef: ApplicationRef) {
appRef.bootstrap(MainComponent);
}
}
// offline compile
import {bootstrapModuleFactory} from ‘@angular/platform-browser’;
bootstrapModuleFactory(MyModuleNgFactory);
// runtime compile long form
import {bootstrapModule} from ‘@angular/platform-browser-dynamic’;
bootstrapModule(MyModule);
```
The short form, `bootstrap(...)`, can now creates a module on the fly,
given `directives`, `pipes, `providers`, `precompile` and `modules`
properties.
Related changes:
- make `SanitizationService`, `SecurityContext` public in `@angular/core` so that the offline compiler can resolve the token
- move `AnimationDriver` to `platform-browser` and make it
public so that the offline compiler can resolve the token
BREAKING CHANGES:
- short form bootstrap does no longer allow
to inject compiler internals (i.e. everything
from `@angular/compiler). Inject `Compiler` instead.
To provide custom providers for the compiler,
create a custom compiler via `browserCompiler({providers: [...]})`
and pass that into the `bootstrap` method.
2016-06-30 13:07:17 -07:00
|
|
|
import {AnimationDriver} from './animation_driver';
|
2016-06-08 16:38:52 -07:00
|
|
|
import {WebAnimationsPlayer} from './web_animations_player';
|
2016-05-25 12:46:22 -07:00
|
|
|
|
|
|
|
export class WebAnimationsDriver implements AnimationDriver {
|
2016-06-08 16:38:52 -07:00
|
|
|
animate(
|
|
|
|
element: any, startingStyles: AnimationStyles, keyframes: AnimationKeyframe[],
|
2016-11-14 16:59:06 -08:00
|
|
|
duration: number, delay: number, easing: string,
|
|
|
|
previousPlayers: AnimationPlayer[] = []): WebAnimationsPlayer {
|
2016-11-12 14:08:58 +01:00
|
|
|
let formattedSteps: {[key: string]: string | number}[] = [];
|
|
|
|
let startingStyleLookup: {[key: string]: string | number} = {};
|
2016-05-25 12:46:22 -07:00
|
|
|
if (isPresent(startingStyles) && startingStyles.styles.length > 0) {
|
2016-11-14 16:59:06 -08:00
|
|
|
startingStyleLookup = _populateStyles(startingStyles, {});
|
2016-05-25 12:46:22 -07:00
|
|
|
startingStyleLookup['offset'] = 0;
|
|
|
|
formattedSteps.push(startingStyleLookup);
|
|
|
|
}
|
|
|
|
|
|
|
|
keyframes.forEach((keyframe: AnimationKeyframe) => {
|
2016-11-14 16:59:06 -08:00
|
|
|
const data = _populateStyles(keyframe.styles, startingStyleLookup);
|
2016-06-08 22:50:52 -07:00
|
|
|
data['offset'] = keyframe.offset;
|
2016-05-25 12:46:22 -07:00
|
|
|
formattedSteps.push(data);
|
|
|
|
});
|
|
|
|
|
|
|
|
// this is a special case when only styles are applied as an
|
|
|
|
// animation. When this occurs we want to animate from start to
|
|
|
|
// end with the same values. Removing the offset and having only
|
|
|
|
// start/end values is suitable enough for the web-animations API
|
|
|
|
if (formattedSteps.length == 1) {
|
2016-11-12 14:08:58 +01:00
|
|
|
const start = formattedSteps[0];
|
2016-06-08 22:50:52 -07:00
|
|
|
start['offset'] = null;
|
2016-05-25 12:46:22 -07:00
|
|
|
formattedSteps = [start, start];
|
|
|
|
}
|
|
|
|
|
2016-11-12 14:08:58 +01:00
|
|
|
const playerOptions: {[key: string]: string | number} = {
|
2016-06-17 16:49:05 -07:00
|
|
|
'duration': duration,
|
|
|
|
'delay': delay,
|
|
|
|
'fill': 'both' // we use `both` because it allows for styling at 0% to work with `delay`
|
|
|
|
};
|
|
|
|
|
2016-07-02 02:00:46 -07:00
|
|
|
// we check for this to avoid having a null|undefined value be present
|
|
|
|
// for the easing (which results in an error for certain browsers #9752)
|
|
|
|
if (easing) {
|
|
|
|
playerOptions['easing'] = easing;
|
|
|
|
}
|
|
|
|
|
2016-11-14 16:59:06 -08:00
|
|
|
return new WebAnimationsPlayer(
|
|
|
|
element, formattedSteps, playerOptions, <WebAnimationsPlayer[]>previousPlayers);
|
2016-06-08 22:50:52 -07:00
|
|
|
}
|
2016-05-25 12:46:22 -07:00
|
|
|
}
|
|
|
|
|
2016-11-14 16:59:06 -08:00
|
|
|
function _populateStyles(styles: AnimationStyles, defaultStyles: {[key: string]: string | number}):
|
|
|
|
{[key: string]: string | number} {
|
2016-11-12 14:08:58 +01:00
|
|
|
const data: {[key: string]: string | number} = {};
|
2016-11-08 15:45:30 -08:00
|
|
|
styles.styles.forEach(
|
|
|
|
(entry) => { Object.keys(entry).forEach(prop => { data[prop] = entry[prop]; }); });
|
2016-10-03 16:46:05 -07:00
|
|
|
Object.keys(defaultStyles).forEach(prop => {
|
2016-06-08 22:50:52 -07:00
|
|
|
if (!isPresent(data[prop])) {
|
2016-10-03 16:46:05 -07:00
|
|
|
data[prop] = defaultStyles[prop];
|
2016-06-08 22:50:52 -07:00
|
|
|
}
|
|
|
|
});
|
2016-05-25 12:46:22 -07:00
|
|
|
return data;
|
|
|
|
}
|