SSR: dirty hack to fix initial blockchain scroll
This commit is contained in:
19
frontend/src/app/shared/directives/server-only.directive.ts
Normal file
19
frontend/src/app/shared/directives/server-only.directive.ts
Normal file
@@ -0,0 +1,19 @@
|
||||
import { Directive, TemplateRef, ViewContainerRef, Inject, PLATFORM_ID } from '@angular/core';
|
||||
import { isPlatformServer } from '@angular/common';
|
||||
|
||||
@Directive({
|
||||
selector: '[serverOnly]'
|
||||
})
|
||||
export class ServerOnlyDirective {
|
||||
constructor(
|
||||
private templateRef: TemplateRef<any>,
|
||||
private viewContainer: ViewContainerRef,
|
||||
@Inject(PLATFORM_ID) private platformId: Object
|
||||
) {
|
||||
if (isPlatformServer(this.platformId)) {
|
||||
this.viewContainer.createEmbeddedView(this.templateRef);
|
||||
} else {
|
||||
this.viewContainer.clear();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user