From 76aa0e5dd9ad121371179f5c44e620248eaa14e0 Mon Sep 17 00:00:00 2001 From: neverland Date: Sat, 26 Dec 2020 15:18:28 +0800 Subject: [PATCH] fix(Swipe): incorrect size during ssr (#7821) --- .../test/__snapshots__/index.spec.js.snap | 18 +++++++++--------- .../test/__snapshots__/demo.spec.js.snap | 8 ++++---- src/swipe-item/index.js | 4 +++- src/swipe/index.js | 16 ++++++++++------ src/swipe/test/__snapshots__/demo.spec.js.snap | 12 ++++++------ 5 files changed, 32 insertions(+), 26 deletions(-) diff --git a/src/image-preview/test/__snapshots__/index.spec.js.snap b/src/image-preview/test/__snapshots__/index.spec.js.snap index ea96f5ab7..fb3dfe278 100644 --- a/src/image-preview/test/__snapshots__/index.spec.js.snap +++ b/src/image-preview/test/__snapshots__/index.spec.js.snap @@ -4,7 +4,7 @@ exports[`close-icon prop 1`] = `
-
+
1 / 0
@@ -14,7 +14,7 @@ exports[`close-icon-position prop 1`] = `
-
+
1 / 0
@@ -23,7 +23,7 @@ exports[`close-icon-position prop 1`] = ` exports[`cover slot 1`] = `
-
+
1 / 0
Custom Cover Content
@@ -33,7 +33,7 @@ exports[`cover slot 1`] = ` exports[`index slot 1`] = `
-
+
Custom Index
@@ -42,10 +42,10 @@ exports[`index slot 1`] = ` exports[`render image 1`] = `
-
-
-
-
+
+
+
+
1 / 3
@@ -55,7 +55,7 @@ exports[`render image 1`] = ` exports[`set show-index prop to false 1`] = `
-
+
`; diff --git a/src/notice-bar/test/__snapshots__/demo.spec.js.snap b/src/notice-bar/test/__snapshots__/demo.spec.js.snap index f28b3b021..2806a899f 100644 --- a/src/notice-bar/test/__snapshots__/demo.spec.js.snap +++ b/src/notice-bar/test/__snapshots__/demo.spec.js.snap @@ -57,10 +57,10 @@ exports[`renders demo correctly 1`] = `
-
-
内容 1
-
内容 2
-
内容 3
+
+
内容 1
+
内容 2
+
内容 3
diff --git a/src/swipe-item/index.js b/src/swipe-item/index.js index 8039d0996..37fa21910 100644 --- a/src/swipe-item/index.js +++ b/src/swipe-item/index.js @@ -25,7 +25,9 @@ export default createComponent({ const style = {}; const { size, vertical } = this.parent; - style[vertical ? 'height' : 'width'] = `${size}px`; + if (size) { + style[vertical ? 'height' : 'width'] = `${size}px`; + } if (this.offset) { style.transform = `translate${vertical ? 'Y' : 'X'}(${this.offset}px)`; diff --git a/src/swipe/index.js b/src/swipe/index.js index 947516082..bd74a4843 100644 --- a/src/swipe/index.js +++ b/src/swipe/index.js @@ -124,15 +124,19 @@ export default createComponent({ }, trackStyle() { - const mainAxis = this.vertical ? 'height' : 'width'; - const crossAxis = this.vertical ? 'width' : 'height'; - - return { - [mainAxis]: `${this.trackSize}px`, - [crossAxis]: this[crossAxis] ? `${this[crossAxis]}px` : '', + const style = { transitionDuration: `${this.swiping ? 0 : this.duration}ms`, transform: `translate${this.vertical ? 'Y' : 'X'}(${this.offset}px)`, }; + + if (this.size) { + const mainAxis = this.vertical ? 'height' : 'width'; + const crossAxis = this.vertical ? 'width' : 'height'; + style[mainAxis] = `${this.trackSize}px`; + style[crossAxis] = this[crossAxis] ? `${this[crossAxis]}px` : ''; + } + + return style; }, indicatorStyle() { diff --git a/src/swipe/test/__snapshots__/demo.spec.js.snap b/src/swipe/test/__snapshots__/demo.spec.js.snap index 799f7af64..7c42a21af 100644 --- a/src/swipe/test/__snapshots__/demo.spec.js.snap +++ b/src/swipe/test/__snapshots__/demo.spec.js.snap @@ -4,7 +4,7 @@ exports[`renders demo correctly 1`] = `
-
+
1
2
3
@@ -15,7 +15,7 @@ exports[`renders demo correctly 1`] = `
-
+
@@ -26,7 +26,7 @@ exports[`renders demo correctly 1`] = `
-
+
1
2
3
@@ -37,7 +37,7 @@ exports[`renders demo correctly 1`] = `
-
+
1
2
3
@@ -48,7 +48,7 @@ exports[`renders demo correctly 1`] = `
-
+
1
2
3
@@ -59,7 +59,7 @@ exports[`renders demo correctly 1`] = `
-
+
1
2
3