uni-popup.vue 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293
  1. <template>
  2. <view v-if="showPopup" class="uni-popup" :class="[popupstyle]" @touchmove.stop.prevent="clear">
  3. <uni-transition v-if="maskShow" :mode-class="['fade']" :styles="maskClass" :duration="duration" :show="showTrans" @click="onTap" />
  4. <uni-transition :mode-class="ani" :styles="transClass" :duration="duration" :show="showTrans" @click="onTap">
  5. <view class="uni-popup__wrapper-box" @click.stop="clear">
  6. <slot />
  7. </view>
  8. </uni-transition>
  9. </view>
  10. </template>
  11. <script>
  12. import uniTransition from '../uni-transition/uni-transition.vue'
  13. import popup from './popup.js'
  14. /**
  15. * PopUp 弹出层
  16. * @description 弹出层组件,为了解决遮罩弹层的问题
  17. * @tutorial https://ext.dcloud.net.cn/plugin?id=329
  18. * @property {String} type = [top|center|bottom] 弹出方式
  19. * @value top 顶部弹出
  20. * @value center 中间弹出
  21. * @value bottom 底部弹出
  22. * @value message 消息提示
  23. * @value dialog 对话框
  24. * @value share 底部分享示例
  25. * @property {Boolean} animation = [ture|false] 是否开启动画
  26. * @property {Boolean} maskClick = [ture|false] 蒙版点击是否关闭弹窗
  27. * @event {Function} change 打开关闭弹窗触发,e={show: false}
  28. */
  29. export default {
  30. name: 'UniPopup',
  31. components: {
  32. uniTransition
  33. },
  34. props: {
  35. // 开启动画
  36. animation: {
  37. type: Boolean,
  38. default: true
  39. },
  40. // 弹出层类型,可选值,top: 顶部弹出层;bottom:底部弹出层;center:全屏弹出层
  41. // message: 消息提示 ; dialog : 对话框
  42. type: {
  43. type: String,
  44. default: 'center'
  45. },
  46. // maskClick
  47. maskClick: {
  48. type: Boolean,
  49. default: true
  50. }
  51. },
  52. provide() {
  53. return {
  54. popup: this
  55. }
  56. },
  57. mixins: [popup],
  58. watch: {
  59. /**
  60. * 监听type类型
  61. */
  62. type: {
  63. handler: function(newVal) {
  64. this[this.config[newVal]]()
  65. },
  66. immediate: true
  67. },
  68. /**
  69. * 监听遮罩是否可点击
  70. * @param {Object} val
  71. */
  72. maskClick(val) {
  73. this.mkclick = val
  74. }
  75. },
  76. data() {
  77. return {
  78. duration: 300,
  79. ani: [],
  80. showPopup: false,
  81. showTrans: false,
  82. maskClass: {
  83. 'position': 'fixed',
  84. 'bottom': 0,
  85. 'top': 0,
  86. 'left': 0,
  87. 'right': 0,
  88. 'backgroundColor': 'rgba(0, 0, 0, 0.4)'
  89. },
  90. transClass: {
  91. 'position': 'fixed',
  92. 'left': 0,
  93. 'right': 0,
  94. },
  95. maskShow: true,
  96. mkclick: true,
  97. popupstyle: 'top'
  98. }
  99. },
  100. created() {
  101. if (this.animation) {
  102. this.duration = 300
  103. } else {
  104. this.duration = 0
  105. }
  106. },
  107. methods: {
  108. clear(e) {
  109. // TODO nvue 取消冒泡
  110. e.stopPropagation()
  111. },
  112. open() {
  113. this.showPopup = true
  114. this.$nextTick(() => {
  115. new Promise(resolve => {
  116. clearTimeout(this.timer)
  117. this.timer = setTimeout(() => {
  118. this.showTrans = true
  119. // fixed by mehaotian 兼容 app 端
  120. this.$nextTick(() => {
  121. resolve();
  122. })
  123. }, 50);
  124. }).then(res => {
  125. // 自定义打开事件
  126. clearTimeout(this.msgtimer)
  127. this.msgtimer = setTimeout(() => {
  128. this.customOpen && this.customOpen()
  129. }, 100)
  130. this.$emit('change', {
  131. show: true,
  132. type: this.type
  133. })
  134. })
  135. })
  136. },
  137. close(type) {
  138. this.showTrans = false
  139. this.$nextTick(() => {
  140. this.$emit('change', {
  141. show: false,
  142. type: this.type
  143. })
  144. clearTimeout(this.timer)
  145. // 自定义关闭事件
  146. this.customOpen && this.customClose()
  147. this.timer = setTimeout(() => {
  148. this.showPopup = false
  149. }, 300)
  150. })
  151. },
  152. onTap() {
  153. if (!this.mkclick) return
  154. this.close()
  155. },
  156. /**
  157. * 顶部弹出样式处理
  158. */
  159. top() {
  160. this.popupstyle = 'top'
  161. this.ani = ['slide-top']
  162. this.transClass = {
  163. 'position': 'fixed',
  164. 'left': 0,
  165. 'right': 0,
  166. }
  167. },
  168. /**
  169. * 底部弹出样式处理
  170. */
  171. bottom() {
  172. this.popupstyle = 'bottom'
  173. this.ani = ['slide-bottom']
  174. this.transClass = {
  175. 'position': 'fixed',
  176. 'left': 0,
  177. 'right': 0,
  178. 'bottom': 0
  179. }
  180. },
  181. /**
  182. * 中间弹出样式处理
  183. */
  184. center() {
  185. this.popupstyle = 'center'
  186. this.ani = ['zoom-out', 'fade']
  187. this.transClass = {
  188. 'position': 'fixed',
  189. /* #ifndef APP-NVUE */
  190. 'display': 'flex',
  191. 'flexDirection': 'column',
  192. /* #endif */
  193. 'bottom': 0,
  194. 'left': 0,
  195. 'right': 0,
  196. 'top': 0,
  197. 'justifyContent': 'center',
  198. 'alignItems': 'center'
  199. }
  200. }
  201. }
  202. }
  203. </script>
  204. <style scoped>
  205. .uni-popup {
  206. position: fixed;
  207. /* #ifndef APP-NVUE */
  208. z-index: 99;
  209. /* #endif */
  210. }
  211. .uni-popup__mask {
  212. position: absolute;
  213. top: 0;
  214. bottom: 0;
  215. left: 0;
  216. right: 0;
  217. background-color: rgba(0, 0, 0, 0.4);
  218. opacity: 0;
  219. }
  220. .mask-ani {
  221. transition-property: opacity;
  222. transition-duration: 0.2s;
  223. }
  224. .uni-top-mask {
  225. opacity: 1;
  226. }
  227. .uni-bottom-mask {
  228. opacity: 1;
  229. }
  230. .uni-center-mask {
  231. opacity: 1;
  232. }
  233. .uni-popup__wrapper {
  234. /* #ifndef APP-NVUE */
  235. display: block;
  236. /* #endif */
  237. position: absolute;
  238. }
  239. .top {
  240. /* #ifdef H5 */
  241. top: var(--window-top);
  242. /* #endif */
  243. /* #ifndef H5 */
  244. top: 0;
  245. /* #endif */
  246. }
  247. .bottom {
  248. bottom: 0;
  249. }
  250. .uni-popup__wrapper-box {
  251. /* #ifndef APP-NVUE */
  252. display: block;
  253. /* #endif */
  254. position: relative;
  255. /* iphonex 等安全区设置,底部安全区适配 */
  256. /* #ifndef APP-NVUE */
  257. padding-bottom: constant(safe-area-inset-bottom);
  258. padding-bottom: env(safe-area-inset-bottom);
  259. /* #endif */
  260. }
  261. .content-ani {
  262. /* transition: transform 0.3s;
  263. */
  264. transition-property: transform, opacity;
  265. transition-duration: 0.2s;
  266. }
  267. .uni-top-content {
  268. transform: translateY(0);
  269. }
  270. .uni-bottom-content {
  271. transform: translateY(0);
  272. }
  273. .uni-center-content {
  274. transform: scale(1);
  275. opacity: 1;
  276. }
  277. </style>