u-popup.vue 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301
  1. <template>
  2. <view class="u-popup">
  3. <u-overlay
  4. :show="show"
  5. @click="overlayClick"
  6. v-if="overlay"
  7. :duration="duration"
  8. :customStyle="overlayStyle"
  9. :opacity="overlayOpacity"
  10. ></u-overlay>
  11. <u-transition
  12. :show="show"
  13. :customStyle="transitionStyle"
  14. :mode="position"
  15. :duration="duration"
  16. @after-enter="afterEnter"
  17. @click="clickHandler"
  18. >
  19. <view
  20. class="u-popup__content"
  21. :style="[contentStyle]"
  22. @tap.stop="noop"
  23. >
  24. <u-status-bar v-if="safeAreaInsetTop"></u-status-bar>
  25. <slot></slot>
  26. <view
  27. v-if="closeable"
  28. @tap.stop="close"
  29. class="u-popup__content__close"
  30. :class="['u-popup__content__close--' + closeIconPos]"
  31. hover-class="u-popup__content__close--hover"
  32. hover-stay-time="150"
  33. >
  34. <u-icon
  35. name="close"
  36. color="#909399"
  37. size="18"
  38. bold
  39. ></u-icon>
  40. </view>
  41. <u-safe-bottom v-if="safeAreaInsetBottom"></u-safe-bottom>
  42. </view>
  43. </u-transition>
  44. </view>
  45. </template>
  46. <script>
  47. import props from './props.js';
  48. /**
  49. * popup 弹窗
  50. * @description 弹出层容器,用于展示弹窗、信息提示等内容,支持上、下、左、右和中部弹出。组件只提供容器,内部内容由用户自定义
  51. * @tutorial https://www.uviewui.com/components/popup.html
  52. * @property {Boolean} show 是否展示弹窗 (默认 false )
  53. * @property {Boolean} overlay 是否显示遮罩 (默认 true )
  54. * @property {String} mode 弹出方向(默认 'bottom' )
  55. * @property {String | Number} duration 动画时长,单位ms (默认 300 )
  56. * @property {Boolean} closeable 是否显示关闭图标(默认 false )
  57. * @property {Object | String} overlayStyle 自定义遮罩的样式
  58. * @property {String | Number} overlayOpacity 遮罩透明度,0-1之间(默认 0.5)
  59. * @property {Boolean} closeOnClickOverlay 点击遮罩是否关闭弹窗 (默认 true )
  60. * @property {String | Number} zIndex 层级 (默认 10075 )
  61. * @property {Boolean} safeAreaInsetBottom 是否为iPhoneX留出底部安全距离 (默认 true )
  62. * @property {Boolean} safeAreaInsetTop 是否留出顶部安全距离(状态栏高度) (默认 false )
  63. * @property {String} closeIconPos 自定义关闭图标位置(默认 'top-right' )
  64. * @property {String | Number} round 圆角值(默认 0)
  65. * @property {Boolean} zoom 当mode=center时 是否开启缩放(默认 true )
  66. * @property {Object} customStyle 组件的样式,对象形式
  67. * @event {Function} open 弹出层打开
  68. * @event {Function} close 弹出层收起
  69. * @example <u-popup v-model="show"><text>出淤泥而不染,濯清涟而不妖</text></u-popup>
  70. */
  71. export default {
  72. name: 'u-popup',
  73. mixins: [uni.$u.mpMixin, uni.$u.mixin, props],
  74. data() {
  75. return {}
  76. },
  77. watch: {
  78. show(newValue, oldValue) {
  79. if (newValue === true) {
  80. // #ifdef MP-WEIXIN
  81. const children = this.$children
  82. this.retryComputedComponentRect(children)
  83. // #endif
  84. }
  85. }
  86. },
  87. computed: {
  88. transitionStyle() {
  89. const style = {
  90. zIndex: this.zIndex,
  91. position: 'fixed',
  92. display: 'flex',
  93. }
  94. style[this.mode] = 0
  95. if (this.mode === 'left') {
  96. return uni.$u.deepMerge(style, {
  97. bottom: 0,
  98. top: 0,
  99. })
  100. } else if (this.mode === 'right') {
  101. return uni.$u.deepMerge(style, {
  102. bottom: 0,
  103. top: 0,
  104. })
  105. } else if (this.mode === 'top') {
  106. return uni.$u.deepMerge(style, {
  107. left: 0,
  108. right: 0
  109. })
  110. } else if (this.mode === 'bottom') {
  111. return uni.$u.deepMerge(style, {
  112. left: 0,
  113. right: 0,
  114. })
  115. } else if (this.mode === 'center') {
  116. return uni.$u.deepMerge(style, {
  117. alignItems: 'center',
  118. 'justify-content': 'center',
  119. top: 0,
  120. left: 0,
  121. right: 0,
  122. bottom: 0
  123. })
  124. }
  125. },
  126. contentStyle() {
  127. const style = {}
  128. // 通过设备信息的safeAreaInsets值来判断是否需要预留顶部状态栏和底部安全局的位置
  129. // 不使用css方案,是因为nvue不支持css的iPhoneX安全区查询属性
  130. const {
  131. safeAreaInsets
  132. } = uni.$u.sys()
  133. if (this.mode !== 'center') {
  134. style.flex = 1
  135. }
  136. // 背景色,一般用于设置为transparent,去除默认的白色背景
  137. if (this.bgColor) {
  138. style.backgroundColor = this.bgColor
  139. }
  140. if(this.round) {
  141. const value = uni.$u.addUnit(this.round)
  142. if(this.mode === 'top') {
  143. style.borderBottomLeftRadius = value
  144. style.borderBottomRightRadius = value
  145. } else if(this.mode === 'bottom') {
  146. style.borderTopLeftRadius = value
  147. style.borderTopRightRadius = value
  148. } else if(this.mode === 'center') {
  149. style.borderRadius = value
  150. }
  151. }
  152. return uni.$u.deepMerge(style, uni.$u.addStyle(this.customStyle))
  153. },
  154. position() {
  155. if (this.mode === 'center') {
  156. return this.zoom ? 'fade-zoom' : 'fade'
  157. }
  158. if (this.mode === 'left') {
  159. return 'slide-left'
  160. }
  161. if (this.mode === 'right') {
  162. return 'slide-right'
  163. }
  164. if (this.mode === 'bottom') {
  165. return 'slide-up'
  166. }
  167. if (this.mode === 'top') {
  168. return 'slide-down'
  169. }
  170. },
  171. },
  172. methods: {
  173. // 点击遮罩
  174. overlayClick() {
  175. if (this.closeOnClickOverlay) {
  176. this.$emit('close')
  177. }
  178. },
  179. close(e) {
  180. this.$emit('close')
  181. },
  182. afterEnter() {
  183. this.$emit('open')
  184. },
  185. clickHandler() {
  186. // 由于中部弹出时,其u-transition占据了整个页面相当于遮罩,此时需要发出遮罩点击事件,是否无法通过点击遮罩关闭弹窗
  187. if(this.mode === 'center') {
  188. this.overlayClick()
  189. }
  190. this.$emit('click')
  191. },
  192. // #ifdef MP-WEIXIN
  193. retryComputedComponentRect(children) {
  194. // 组件内部需要计算节点的组件
  195. const names = ['u-calendar-month', 'u-album', 'u-collapse-item', 'u-dropdown', 'u-index-item', 'u-index-list',
  196. 'u-line-progress', 'u-list-item', 'u-rate', 'u-read-more', 'u-row', 'u-row-notice', 'u-scroll-list',
  197. 'u-skeleton', 'u-slider', 'u-steps-item', 'u-sticky', 'u-subsection', 'u-swipe-action-item', 'u-tabbar',
  198. 'u-tabs', 'u-tooltip'
  199. ]
  200. // 历遍所有的子组件节点
  201. for (let i = 0; i < children.length; i++) {
  202. const child = children[i]
  203. // 拿到子组件的子组件
  204. const grandChild = child.$children
  205. // 判断如果在需要重新初始化的组件数组中名中,并且存在init方法的话,则执行
  206. if (names.includes(child.$options.name) && typeof child?.init === 'function') {
  207. // 需要进行一定的延时,因为初始化页面需要时间
  208. uni.$u.sleep(50).then(() => {
  209. child.init()
  210. })
  211. }
  212. // 如果子组件还有孙组件,进行递归历遍
  213. if (grandChild.length) {
  214. this.retryComputedComponentRect(grandChild)
  215. }
  216. }
  217. }
  218. // #endif
  219. }
  220. }
  221. </script>
  222. <style lang="scss" scoped>
  223. @import "../../libs/css/components.scss";
  224. $u-popup-flex:1 !default;
  225. $u-popup-content-background-color: #fff !default;
  226. .u-popup {
  227. flex: $u-popup-flex;
  228. &__content {
  229. background-color: $u-popup-content-background-color;
  230. position: relative;
  231. &--round-top {
  232. border-top-left-radius: 0;
  233. border-top-right-radius: 0;
  234. border-bottom-left-radius: 10px;
  235. border-bottom-right-radius: 10px;
  236. }
  237. &--round-left {
  238. border-top-left-radius: 0;
  239. border-top-right-radius: 10px;
  240. border-bottom-left-radius: 0;
  241. border-bottom-right-radius: 10px;
  242. }
  243. &--round-right {
  244. border-top-left-radius: 10px;
  245. border-top-right-radius: 0;
  246. border-bottom-left-radius: 10px;
  247. border-bottom-right-radius: 0;
  248. }
  249. &--round-bottom {
  250. border-top-left-radius: 10px;
  251. border-top-right-radius: 10px;
  252. border-bottom-left-radius: 0;
  253. border-bottom-right-radius: 0;
  254. }
  255. &--round-center {
  256. border-top-left-radius: 10px;
  257. border-top-right-radius: 10px;
  258. border-bottom-left-radius: 10px;
  259. border-bottom-right-radius: 10px;
  260. }
  261. &__close {
  262. position: absolute;
  263. &--hover {
  264. opacity: 0.4;
  265. }
  266. }
  267. &__close--top-left {
  268. top: 15px;
  269. left: 15px;
  270. }
  271. &__close--top-right {
  272. top: 15px;
  273. right: 15px;
  274. }
  275. &__close--bottom-left {
  276. bottom: 15px;
  277. left: 15px;
  278. }
  279. &__close--bottom-right {
  280. right: 15px;
  281. bottom: 15px;
  282. }
  283. }
  284. }
  285. </style>