2017-02-14 19:48:48 -08:00
|
|
|
/**
|
|
|
|
* @license
|
2020-05-19 12:08:49 -07:00
|
|
|
* Copyright Google LLC All Rights Reserved.
|
2017-02-14 19:48:48 -08:00
|
|
|
*
|
|
|
|
* 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 {InjectionToken} from '@angular/core';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Config object passed to initialize the platform.
|
|
|
|
*
|
2018-10-19 12:12:20 +01:00
|
|
|
* @publicApi
|
2017-02-14 19:48:48 -08:00
|
|
|
*/
|
|
|
|
export interface PlatformConfig {
|
2020-06-11 11:42:31 -05:00
|
|
|
/**
|
|
|
|
* The initial DOM to use to bootstrap the server application.
|
|
|
|
* @default create a new DOM using Domino
|
|
|
|
*/
|
2017-02-14 19:48:48 -08:00
|
|
|
document?: string;
|
2020-06-11 11:42:31 -05:00
|
|
|
/**
|
|
|
|
* The URL for the current application state. This is
|
|
|
|
* used for initializing the platform's location and
|
|
|
|
* for setting absolute URL resolution for HTTP requests.
|
|
|
|
* @default none
|
|
|
|
*/
|
2017-02-14 19:48:48 -08:00
|
|
|
url?: string;
|
2020-06-11 11:42:31 -05:00
|
|
|
/**
|
|
|
|
* Whether to append the absolute URL to any relative HTTP
|
|
|
|
* requests. If set to true, this logic executes prior to
|
|
|
|
* any HTTP interceptors that may run later on in the request.
|
|
|
|
* @default false
|
|
|
|
*/
|
|
|
|
useAbsoluteUrl?: boolean;
|
2017-02-14 19:48:48 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The DI token for setting the initial config for the platform.
|
|
|
|
*
|
2018-10-19 12:12:20 +01:00
|
|
|
* @publicApi
|
2017-02-14 19:48:48 -08:00
|
|
|
*/
|
|
|
|
export const INITIAL_CONFIG = new InjectionToken<PlatformConfig>('Server.INITIAL_CONFIG');
|
2017-09-04 00:38:42 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* A function that will be executed when calling `renderModuleFactory` or `renderModule` just
|
|
|
|
* before current platform state is rendered to string.
|
|
|
|
*
|
2018-10-19 12:12:20 +01:00
|
|
|
* @publicApi
|
2017-09-04 00:38:42 -07:00
|
|
|
*/
|
|
|
|
export const BEFORE_APP_SERIALIZED =
|
2019-11-09 20:36:22 +02:00
|
|
|
new InjectionToken<Array<() => void | Promise<void>>>('Server.RENDER_MODULE_HOOK');
|