u-popup.vue 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347
  1. <template>
  2. <view v-if="visibleSync" :style="[customStyle]" :class="{ 'u-drawer-visible': showDrawer }" class="u-drawer">
  3. <u-mask :maskClickAble="maskCloseAble" :show="showDrawer && mask" @click="maskClick"></u-mask>
  4. <view class="u-drawer-content" @tap="modeCenterClose(mode)" :class="[
  5. safeAreaInsetBottom ? 'safe-area-inset-bottom' : '',
  6. 'u-drawer-' + mode,
  7. showDrawer ? 'u-drawer-content-visible' : '',
  8. zoom && mode == 'center' ? 'u-animation-zoom' : ''
  9. ]"
  10. @touchmove.stop.prevent @tap.stop.prevent :style="[style]">
  11. <view class="u-mode-center-box" @tap.stop.prevent @touchmove.stop.prevent v-if="mode == 'center'" :style="[centerStyle]">
  12. <slot />
  13. </view>
  14. <block v-else>
  15. <slot />
  16. </block>
  17. </view>
  18. </view>
  19. </template>
  20. <script>
  21. /**
  22. * popup 弹窗
  23. * @description 弹出层容器,用于展示弹窗、信息提示等内容,支持上、下、左、右和中部弹出。组件只提供容器,内部内容由用户自定义
  24. * @tutorial https://www.uviewui.com/components/popup.html
  25. * @property {String} mode 弹出方向(默认left)
  26. * @property {Boolean} mask 是否显示遮罩(默认true)
  27. * @property {String Number} length mode=left | 见官网说明(默认auto)
  28. * @property {Boolean} zoom 是否开启缩放动画,只在mode为center时有效(默认true)
  29. * @property {Boolean} safe-area-inset-bottom 是否开启底部安全区适配(默认false)
  30. * @property {Boolean} mask-close-able 点击遮罩是否可以关闭弹出层(默认true)
  31. * @property {Object} custom-style 用户自定义样式
  32. * @property {Number String} border-radius 弹窗圆角值(默认0)
  33. * @property {Number String} z-index 弹出内容的z-index值(默认1075)
  34. * @event {Function} open 弹出层打开
  35. * @event {Function} close 弹出层收起
  36. * @example <u-popup v-model="show"><view>出淤泥而不染,濯清涟而不妖</view></u-popup>
  37. */
  38. import uMask from './u-mask'
  39. export default {
  40. name: 'u-popup',
  41. props: {
  42. /**
  43. * 显示状态
  44. */
  45. show: {
  46. type: Boolean,
  47. default: false
  48. },
  49. /**
  50. * 弹出方向,left|right|top|bottom|center
  51. */
  52. mode: {
  53. type: String,
  54. default: 'left'
  55. },
  56. /**
  57. * 是否显示遮罩
  58. */
  59. mask: {
  60. type: Boolean,
  61. default: true
  62. },
  63. // 抽屉的宽度(mode=left|right),或者高度(mode=top|bottom),单位rpx,或者"auto"
  64. // 或者百分比"50%",表示由内容撑开高度或者宽度
  65. length: {
  66. type: [Number, String],
  67. default: 'auto'
  68. },
  69. // 是否开启缩放动画,只在mode=center时有效
  70. zoom: {
  71. type: Boolean,
  72. default: true
  73. },
  74. // 是否开启底部安全区适配,开启的话,会在iPhoneX机型底部添加一定的内边距
  75. safeAreaInsetBottom: {
  76. type: Boolean,
  77. default: false
  78. },
  79. // 是否可以通过点击遮罩进行关闭
  80. maskCloseAble: {
  81. type: Boolean,
  82. default: true
  83. },
  84. // 用户自定义样式
  85. customStyle: {
  86. type: Object,
  87. default () {
  88. return {};
  89. }
  90. },
  91. value: {
  92. type: Boolean,
  93. default: false
  94. },
  95. // 此为内部参数,不在文档对外使用,为了解决Picker和keyboard等融合了弹窗的组件
  96. // 对v-model双向绑定多层调用造成报错不能修改props值的问题
  97. popup: {
  98. type: Boolean,
  99. default: true
  100. },
  101. // 显示显示弹窗的圆角,单位rpx
  102. borderRadius: {
  103. type: [Number, String],
  104. default: 0
  105. },
  106. zIndex: {
  107. type: [Number, String],
  108. default: '100'
  109. }
  110. },
  111. data() {
  112. return {
  113. visibleSync: false,
  114. showDrawer: false,
  115. timer: null,
  116. style1: {}
  117. };
  118. },
  119. computed: {
  120. // 根据mode的位置,设定其弹窗的宽度(mode = left|right),或者高度(mode = top|bottom)
  121. style() {
  122. let style = {};
  123. let translate = '100%';
  124. // 判断是否是否百分比或者auto值,是的话,直接使用该值,否则默认为rpx单位的数值
  125. let length = (/%$/.test(this.length) || this.length == 'auto') ? this.length : uni.upx2px(this.length) + 'px';
  126. // 如果是左边或者上边弹出时,需要给translate设置为负值,用于隐藏
  127. if (this.mode == 'left' || this.mode == 'top') translate = length == 'auto' ? '-100%' : '-' + length;
  128. if (this.mode == 'left' || this.mode == 'right') {
  129. style = {
  130. width: length,
  131. height: '100%',
  132. transform: `translate3D(${translate},0px,0px)`
  133. };
  134. } else if (this.mode == 'top' || this.mode == 'bottom') {
  135. style = {
  136. width: '100%',
  137. height: length,
  138. transform: `translate3D(0px,${translate},0px)`
  139. };
  140. }
  141. style.zIndex = this.zIndex ? this.zIndex : this.$u.zIndex.popup;
  142. // 如果用户设置了borderRadius值,添加弹窗的圆角
  143. if (this.borderRadius) {
  144. switch (this.mode) {
  145. case 'left':
  146. style.borderRadius = `0 ${this.borderRadius}rpx ${this.borderRadius}rpx 0`;
  147. break;
  148. case 'top':
  149. style.borderRadius = `0 0 ${this.borderRadius}rpx ${this.borderRadius}rpx`;
  150. break;
  151. case 'right':
  152. style.borderRadius = `${this.borderRadius}rpx 0 0 ${this.borderRadius}rpx`;
  153. break;
  154. case 'bottom':
  155. style.borderRadius = `${this.borderRadius}rpx ${this.borderRadius}rpx 0 0`;
  156. break;
  157. default:
  158. ;
  159. }
  160. // 不加可能圆角无效
  161. style.overflow = 'hidden';
  162. }
  163. return style;
  164. },
  165. // 中部弹窗的特有样式
  166. centerStyle() {
  167. let style = {};
  168. let length = (/%$/.test(this.length) || this.length == 'auto') ? this.length : uni.upx2px(this.length) + 'px';
  169. style.width = length;
  170. style.zIndex = this.zIndex ? this.zIndex : this.$u.zIndex.popup;
  171. if (this.borderRadius) {
  172. style.borderRadius = `${this.borderRadius}rpx`;
  173. // 不加可能圆角无效
  174. style.overflow = 'hidden';
  175. }
  176. return style;
  177. }
  178. },
  179. watch: {
  180. value(val) {
  181. if (val) {
  182. this.open();
  183. } else {
  184. this.close();
  185. }
  186. }
  187. },
  188. created() {
  189. // 先让弹窗组件渲染,再改变遮罩和抽屉元素的样式,让其动画其起作用(必须要有延时,才会有效果)
  190. this.visibleSync = this.value;
  191. setTimeout(() => {
  192. this.showDrawer = this.value;
  193. }, 30);
  194. },
  195. methods: {
  196. // 遮罩被点击
  197. maskClick() {
  198. this.close();
  199. },
  200. close() {
  201. this.change('showDrawer', 'visibleSync', false);
  202. },
  203. // 中部弹出时,需要.u-drawer-content将居中内容,此元素会铺满屏幕,点击需要关闭弹窗
  204. // 让其只在mode=center时起作用
  205. modeCenterClose(mode) {
  206. if (mode != 'center' || !this.maskCloseAble) return;
  207. this.close();
  208. },
  209. open() {
  210. this.change('visibleSync', 'showDrawer', true);
  211. },
  212. // 此处的原理是,关闭时先通过动画隐藏弹窗和遮罩,再移除整个组件
  213. // 打开时,先渲染组件,延时一定时间再让遮罩和弹窗的动画起作用
  214. change(param1, param2, status) {
  215. // 如果this.popup为false,以为着为picker,actionsheet等组件调用了popup组件
  216. if (this.popup == true) this.$emit('input', status);
  217. this[param1] = status;
  218. if (this.timer) {
  219. clearTimeout(this.timer);
  220. }
  221. this.timer = setTimeout(
  222. () => {
  223. this[param2] = status;
  224. this.$emit(status ? 'open' : 'close');
  225. },
  226. status ? 30 : 300
  227. );
  228. }
  229. },
  230. components:{
  231. uMask
  232. }
  233. };
  234. </script>
  235. <style scoped lang="scss">
  236. .u-drawer {
  237. /* #ifndef APP-NVUE */
  238. display: block;
  239. /* #endif */
  240. position: fixed;
  241. top: 0;
  242. left: 0;
  243. right: 0;
  244. bottom: 0;
  245. overflow: hidden;
  246. z-index: 999;
  247. background-color: rgba(0, 0, 0, 0.4);
  248. }
  249. .u-drawer-content {
  250. /* #ifndef APP-NVUE */
  251. display: block;
  252. /* #endif */
  253. position: absolute;
  254. z-index: 1003;
  255. transition: all 0.25s linear;
  256. }
  257. .u-drawer-left {
  258. top: 0;
  259. bottom: 0;
  260. left: 0;
  261. background-color: #ffffff;
  262. }
  263. .u-drawer-right {
  264. right: 0;
  265. top: 0;
  266. bottom: 0;
  267. background-color: #ffffff;
  268. }
  269. .u-drawer-top {
  270. top: 0;
  271. left: 0;
  272. right: 0;
  273. background-color: #ffffff;
  274. }
  275. .u-drawer-bottom {
  276. bottom: 0;
  277. left: 0;
  278. right: 0;
  279. background-color: #ffffff;
  280. }
  281. .u-drawer-center {
  282. /* #ifndef APP-NVUE */
  283. display: flex;
  284. flex-direction: column;
  285. /* #endif */
  286. bottom: 0;
  287. left: 0;
  288. right: 0;
  289. top: 0;
  290. justify-content: center;
  291. align-items: center;
  292. opacity: 0;
  293. z-index: 99999;
  294. }
  295. .u-mode-center-box {
  296. min-width: 100rpx;
  297. min-height: 100rpx;
  298. /* #ifndef APP-NVUE */
  299. display: block;
  300. /* #endif */
  301. position: relative;
  302. background-color: #ffffff;
  303. }
  304. .u-drawer-content-visible.u-drawer-center {
  305. transform: scale(1);
  306. opacity: 1;
  307. }
  308. .u-animation-zoom {
  309. transform: scale(1.15);
  310. }
  311. .u-drawer-content-visible {
  312. transform: translate3D(0px, 0px, 0px) !important;
  313. }
  314. .u-drawer-mask {
  315. /* #ifndef APP-NVUE */
  316. display: block;
  317. /* #endif */
  318. opacity: 0;
  319. position: absolute;
  320. top: 0;
  321. left: 0;
  322. bottom: 0;
  323. right: 0;
  324. background-color: rgba(0, 0, 0, 0.4);
  325. transition: opacity 0.25s;
  326. }
  327. .u-drawer-mask-visible {
  328. /* #ifndef APP-NVUE */
  329. display: block;
  330. /* #endif */
  331. opacity: 1;
  332. }
  333. </style>