Skip to content

Commit

Permalink
fix(module:carousel): support SSR
Browse files Browse the repository at this point in the history
  • Loading branch information
wendellhu95 authored and hsuanxyz committed Sep 14, 2020
1 parent 2febb92 commit 3835ec0
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 12 deletions.
8 changes: 3 additions & 5 deletions components/carousel/carousel.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -170,9 +170,6 @@ export class NzCarouselComponent implements AfterContentInit, AfterViewInit, OnD
}

ngAfterViewInit(): void {
if (!this.platform.isBrowser) {
return;
}
this.slickListEl = this.slickList!.nativeElement;
this.slickTrackEl = this.slickTrack!.nativeElement;

Expand All @@ -194,6 +191,7 @@ export class NzCarouselComponent implements AfterContentInit, AfterViewInit, OnD

// If embedded in an entry component, it may do initial render at a inappropriate time.
// ngZone.onStable won't do this trick
// TODO: need to change this.
Promise.resolve().then(() => {
this.syncStrategy();
});
Expand Down Expand Up @@ -280,8 +278,8 @@ export class NzCarouselComponent implements AfterContentInit, AfterViewInit, OnD

this.strategy =
this.nzEffect === 'scrollx'
? new NzCarouselTransformStrategy(this, this.cdr, this.renderer)
: new NzCarouselOpacityStrategy(this, this.cdr, this.renderer);
? new NzCarouselTransformStrategy(this, this.cdr, this.renderer, this.platform)
: new NzCarouselOpacityStrategy(this, this.cdr, this.renderer, this.platform);
}

private scheduleNextTransition(): void {
Expand Down
29 changes: 23 additions & 6 deletions components/carousel/strategies/base-strategy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
* found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE
*/

import { Platform } from '@angular/cdk/platform';
import { ChangeDetectorRef, QueryList, Renderer2 } from '@angular/core';
import { Observable } from 'rxjs';

Expand Down Expand Up @@ -31,7 +32,12 @@ export abstract class NzCarouselBaseStrategy {
return this.contents[this.maxIndex].el;
}

constructor(carouselComponent: NzCarouselComponentAsSource, protected cdr: ChangeDetectorRef, protected renderer: Renderer2) {
constructor(
carouselComponent: NzCarouselComponentAsSource,
protected cdr: ChangeDetectorRef,
protected renderer: Renderer2,
protected platform: Platform
) {
this.carouselComponent = carouselComponent;
}

Expand All @@ -40,15 +46,26 @@ export abstract class NzCarouselBaseStrategy {
* @param contents
*/
withCarouselContents(contents: QueryList<NzCarouselContentDirective> | null): void {
// TODO: carousel and its contents should be separated.
const carousel = this.carouselComponent!;
const rect = carousel.el.getBoundingClientRect();
this.slickListEl = carousel.slickListEl;
this.slickTrackEl = carousel.slickTrackEl;
this.unitWidth = rect.width;
this.unitHeight = rect.height;
this.contents = contents ? contents.toArray() : [];
this.contents = contents?.toArray() || [];
this.length = this.contents.length;

if (this.platform.isBrowser) {
const rect = carousel.el.getBoundingClientRect();
this.unitWidth = rect.width;
this.unitHeight = rect.height;
} else {
// Since we cannot call getBoundingClientRect in server, we just hide all items except for the first one.
contents?.forEach((content, index) => {
if (index === 0) {
this.renderer.setStyle(content.el, 'width', '100%');
} else {
this.renderer.setStyle(content.el, 'display', 'none');
}
});
}
}

/**
Expand Down
3 changes: 2 additions & 1 deletion components/carousel/strategies/transform-strategy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ export class NzCarouselTransformStrategy extends NzCarouselBaseStrategy {
const carousel = this.carouselComponent!;
const activeIndex = carousel.activeIndex;

if (this.contents.length) {
// We only do when we are in browser.
if (this.platform.isBrowser && this.contents.length) {
this.renderer.setStyle(this.slickListEl, 'height', `${this.unitHeight}px`);

if (this.vertical) {
Expand Down

0 comments on commit 3835ec0

Please sign in to comment.