diff --git a/dist/behaviors/transition.js b/dist/behaviors/transition.js index 54f3489f..5fca3ab4 100644 --- a/dist/behaviors/transition.js +++ b/dist/behaviors/transition.js @@ -1,52 +1,54 @@ -export default Behavior({ - properties: { - customStyle: String, - show: { - value: true, - type: Boolean, - observer(value) { - if (value) { - this.show(); - } else { +export default function(showDefaultValue) { + return Behavior({ + properties: { + customStyle: String, + show: { + value: showDefaultValue, + type: Boolean, + observer(value) { + if (value) { + this.show(); + } else { + this.setData({ + type: 'leave' + }); + } + } + }, + duration: { + type: Number, + value: 300 + } + }, + + data: { + type: '', + inited: false, + display: false + }, + + attached() { + if (this.data.show) { + this.show(); + } + }, + + methods: { + show() { + this.setData({ + inited: true, + display: true, + type: 'enter' + }); + }, + + onAnimationEnd() { + if (!this.data.show) { this.setData({ - type: 'leave' + display: false }); } } - }, - duration: { - type: Number, - value: 300 } - }, - - data: { - type: '', - inited: false, - display: false - }, - - attached() { - if (this.data.show) { - this.show(); - } - }, - - methods: { - show() { - this.setData({ - inited: true, - display: true, - type: 'enter' - }); - }, - - onAnimationEnd() { - if (!this.data.show) { - this.setData({ - display: false - }); - } - } - } -}); + }); +} diff --git a/dist/popup/index.js b/dist/popup/index.js index 51d41237..7aff61ad 100644 --- a/dist/popup/index.js +++ b/dist/popup/index.js @@ -5,28 +5,12 @@ Component({ addGlobalClass: true }, - externalClasses: [ - 'custom-class', - 'overlay-class' - ], + externalClasses: ['custom-class'], - behaviors: [transitionBehaviors], + behaviors: [transitionBehaviors(false)], properties: { overlayStyle: String, - show: { - value: false, - type: Boolean, - observer(value) { - if (value) { - this.show(); - } else { - this.setData({ - type: 'leave' - }); - } - } - }, overlay: { type: Boolean, value: true diff --git a/dist/transition/index.js b/dist/transition/index.js index 30003d3b..afc2cd40 100644 --- a/dist/transition/index.js +++ b/dist/transition/index.js @@ -7,7 +7,7 @@ Component({ externalClasses: ['custom-class'], - behaviors: [transitionBehaviors], + behaviors: [transitionBehaviors(true)], properties: { name: { diff --git a/packages/behaviors/transition.js b/packages/behaviors/transition.js index 54f3489f..5fca3ab4 100644 --- a/packages/behaviors/transition.js +++ b/packages/behaviors/transition.js @@ -1,52 +1,54 @@ -export default Behavior({ - properties: { - customStyle: String, - show: { - value: true, - type: Boolean, - observer(value) { - if (value) { - this.show(); - } else { +export default function(showDefaultValue) { + return Behavior({ + properties: { + customStyle: String, + show: { + value: showDefaultValue, + type: Boolean, + observer(value) { + if (value) { + this.show(); + } else { + this.setData({ + type: 'leave' + }); + } + } + }, + duration: { + type: Number, + value: 300 + } + }, + + data: { + type: '', + inited: false, + display: false + }, + + attached() { + if (this.data.show) { + this.show(); + } + }, + + methods: { + show() { + this.setData({ + inited: true, + display: true, + type: 'enter' + }); + }, + + onAnimationEnd() { + if (!this.data.show) { this.setData({ - type: 'leave' + display: false }); } } - }, - duration: { - type: Number, - value: 300 } - }, - - data: { - type: '', - inited: false, - display: false - }, - - attached() { - if (this.data.show) { - this.show(); - } - }, - - methods: { - show() { - this.setData({ - inited: true, - display: true, - type: 'enter' - }); - }, - - onAnimationEnd() { - if (!this.data.show) { - this.setData({ - display: false - }); - } - } - } -}); + }); +} diff --git a/packages/popup/index.js b/packages/popup/index.js index 51d41237..7aff61ad 100644 --- a/packages/popup/index.js +++ b/packages/popup/index.js @@ -5,28 +5,12 @@ Component({ addGlobalClass: true }, - externalClasses: [ - 'custom-class', - 'overlay-class' - ], + externalClasses: ['custom-class'], - behaviors: [transitionBehaviors], + behaviors: [transitionBehaviors(false)], properties: { overlayStyle: String, - show: { - value: false, - type: Boolean, - observer(value) { - if (value) { - this.show(); - } else { - this.setData({ - type: 'leave' - }); - } - } - }, overlay: { type: Boolean, value: true diff --git a/packages/transition/index.js b/packages/transition/index.js index 30003d3b..afc2cd40 100644 --- a/packages/transition/index.js +++ b/packages/transition/index.js @@ -7,7 +7,7 @@ Component({ externalClasses: ['custom-class'], - behaviors: [transitionBehaviors], + behaviors: [transitionBehaviors(true)], properties: { name: {