Update the license headers throughout the repository to reference Google LLC rather than Google Inc, for the required license headers. PR Close #37205
40 lines
1.3 KiB
TypeScript
40 lines
1.3 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright Google LLC 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
|
|
*/
|
|
|
|
import {DOCUMENT, ɵgetDOM as getDOM} from '@angular/common';
|
|
import {APP_INITIALIZER, ApplicationInitStatus, Inject, InjectionToken, Injector, StaticProvider} from '@angular/core';
|
|
|
|
/**
|
|
* An id that identifies a particular application being bootstrapped, that should
|
|
* match across the client/server boundary.
|
|
*/
|
|
export const TRANSITION_ID = new InjectionToken('TRANSITION_ID');
|
|
|
|
export function appInitializerFactory(transitionId: string, document: any, injector: Injector) {
|
|
return () => {
|
|
// Wait for all application initializers to be completed before removing the styles set by
|
|
// the server.
|
|
injector.get(ApplicationInitStatus).donePromise.then(() => {
|
|
const dom = getDOM();
|
|
const styles: any[] =
|
|
Array.prototype.slice.apply(document.querySelectorAll(`style[ng-transition]`));
|
|
styles.filter(el => el.getAttribute('ng-transition') === transitionId)
|
|
.forEach(el => dom.remove(el));
|
|
});
|
|
};
|
|
}
|
|
|
|
export const SERVER_TRANSITION_PROVIDERS: StaticProvider[] = [
|
|
{
|
|
provide: APP_INITIALIZER,
|
|
useFactory: appInitializerFactory,
|
|
deps: [TRANSITION_ID, DOCUMENT, Injector],
|
|
multi: true
|
|
},
|
|
];
|