Currently styles are rendered to the root component element, which ensures they're cleaned up automatically
when the client application is bootstrapped. This is less than ideal as progressive rendering can cause HTML
to be rendered before the CSS is loaded, causing flicker.
This change returns to rendering <style> elements in the <head>, and introduces a mechanism for removing
them on client bootstrap. This relies on associating the server and client bootstrap. Another way to think
of this is that the client, when bootstrapping an app, needs to know whether to expect a server rendered
application exists on the page, and to identify the <style> elements that are part of that app in order
to remove them.
This is accomplished by providing a string TRANSITION_ID on both server and client. For most applications,
this will be achieved by writing a client app module that imports BrowserModule.withServerTransition({appId: <id>}).
The server app module will import this client app module and therefore inherit the provider for
TRANSITION_ID. renderModule[Factory] on the server will validate that a TRANSITION_ID has been provided.
39 lines
1.1 KiB
TypeScript
39 lines
1.1 KiB
TypeScript
/**
|
|
* @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
|
|
*/
|
|
|
|
import {APP_INITIALIZER, Inject, InjectionToken, Provider} from '@angular/core';
|
|
|
|
import {getDOM} from '../dom/dom_adapter';
|
|
import {DOCUMENT} from '../dom/dom_tokens';
|
|
|
|
/**
|
|
* 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 bootstrapListenerFactory(transitionId: string, document: any) {
|
|
const factory = () => {
|
|
const dom = getDOM();
|
|
const styles: any[] =
|
|
Array.prototype.slice.apply(dom.querySelectorAll(document, `style[ng-transition]`));
|
|
styles.filter(el => dom.getAttribute(el, 'ng-transition') === transitionId)
|
|
.forEach(el => dom.remove(el));
|
|
};
|
|
return factory;
|
|
}
|
|
|
|
export const SERVER_TRANSITION_PROVIDERS: Provider[] = [
|
|
{
|
|
provide: APP_INITIALIZER,
|
|
useFactory: bootstrapListenerFactory,
|
|
deps: [TRANSITION_ID, DOCUMENT],
|
|
multi: true
|
|
},
|
|
];
|