su-tabbar.vue 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  1. <!-- 底部导航栏 -->
  2. <template>
  3. <view class="u-tabbar">
  4. <view
  5. class="u-tabbar__content"
  6. ref="u-tabbar__content"
  7. @touchmove.stop.prevent=""
  8. :class="[border && 'u-border-top', fixed && 'u-tabbar--fixed', { 'mid-tabbar': midTabBar }]"
  9. :style="[tabbarStyle]"
  10. >
  11. <view class="u-tabbar__content__item-wrapper">
  12. <slot></slot>
  13. </view>
  14. <view v-if="safeAreaInsetBottom" :style="[{ height: safeBottomHeight + 'px' }]"></view>
  15. </view>
  16. <view
  17. class="u-tabbar__placeholder"
  18. v-if="placeholder"
  19. :style="{
  20. height: placeholderHeight + 'px',
  21. }"
  22. ></view>
  23. </view>
  24. </template>
  25. <script>
  26. // #ifdef APP-NVUE
  27. const dom = uni.requireNativePlugin('dom');
  28. // #endif
  29. /**
  30. * Tabbar 底部导航栏
  31. * @description 此组件提供了自定义tabbar的能力。
  32. * @property {String | Number} value 当前匹配项的name
  33. * @property {Boolean} safeAreaInsetBottom 是否为iPhoneX留出底部安全距离(默认 true )
  34. * @property {Boolean} border 是否显示上方边框(默认 true )
  35. * @property {String | Number} zIndex 元素层级z-index(默认 1 )
  36. * @property {String} activeColor 选中标签的颜色(默认 '#1989fa' )
  37. * @property {String} inactiveColor 未选中标签的颜色(默认 '#7d7e80' )
  38. * @property {Boolean} fixed 是否固定在底部(默认 true )
  39. * @property {Boolean} placeholder fixed定位固定在底部时,是否生成一个等高元素防止塌陷(默认 true )
  40. * @property {Object} customStyle 定义需要用到的外部样式
  41. *
  42. */
  43. import { deepMerge, addStyle, sleep } from '@/sheep/helper';
  44. import sheep from '@/sheep';
  45. export default {
  46. name: 'su-tabbar',
  47. props: {
  48. customStyle: {
  49. type: [Object, String],
  50. default: () => ({}),
  51. },
  52. customClass: {
  53. type: String,
  54. default: '',
  55. },
  56. // 跳转的页面路径
  57. url: {
  58. type: String,
  59. default: '',
  60. },
  61. // 页面跳转的类型
  62. linkType: {
  63. type: String,
  64. default: 'navigateTo',
  65. },
  66. // 当前匹配项的name
  67. value: {
  68. type: [String, Number, null],
  69. default: '',
  70. },
  71. // 是否为iPhoneX留出底部安全距离
  72. safeAreaInsetBottom: {
  73. type: Boolean,
  74. default: true,
  75. },
  76. // 是否显示上方边框
  77. border: {
  78. type: Boolean,
  79. default: true,
  80. },
  81. // 元素层级z-index
  82. zIndex: {
  83. type: [String, Number],
  84. default: 10,
  85. },
  86. // 选中标签的颜色
  87. activeColor: {
  88. type: String,
  89. default: '#1989fa',
  90. },
  91. // 未选中标签的颜色
  92. inactiveColor: {
  93. type: String,
  94. default: '#7d7e80',
  95. },
  96. // 是否固定在底部
  97. fixed: {
  98. type: Boolean,
  99. default: true,
  100. },
  101. // fixed定位固定在底部时,是否生成一个等高元素防止塌陷
  102. placeholder: {
  103. type: Boolean,
  104. default: true,
  105. },
  106. midTabBar: {
  107. type: Boolean,
  108. default: false,
  109. },
  110. },
  111. data() {
  112. return {
  113. placeholderHeight: 0,
  114. safeBottomHeight: sheep.$platform.device.safeAreaInsets.bottom,
  115. };
  116. },
  117. computed: {
  118. tabbarStyle() {
  119. const style = {
  120. zIndex: this.zIndex,
  121. };
  122. // 合并来自父组件的customStyle样式
  123. return deepMerge(style, addStyle(this.customStyle));
  124. },
  125. // 监听多个参数的变化,通过在computed执行对应的操作
  126. updateChild() {
  127. return [this.value, this.activeColor, this.inactiveColor];
  128. },
  129. updatePlaceholder() {
  130. return [this.fixed, this.placeholder];
  131. },
  132. },
  133. watch: {
  134. updateChild() {
  135. // 如果updateChildren中的元素发生了变化,则执行子元素初始化操作
  136. this.updateChildren();
  137. },
  138. updatePlaceholder() {
  139. // 如果fixed,placeholder等参数发生变化,重新计算占位元素的高度
  140. this.setPlaceholderHeight();
  141. },
  142. },
  143. created() {
  144. this.children = [];
  145. },
  146. mounted() {
  147. this.setPlaceholderHeight();
  148. },
  149. methods: {
  150. updateChildren() {
  151. // 如果存在子元素,则执行子元素的updateFromParent进行更新数据
  152. this.children.length && this.children.map((child) => child.updateFromParent());
  153. },
  154. getRect(selector, all) {
  155. return new Promise((resolve) => {
  156. uni.createSelectorQuery()
  157. .in(this)
  158. [all ? 'selectAll' : 'select'](selector)
  159. .boundingClientRect((rect) => {
  160. if (all && Array.isArray(rect) && rect.length) {
  161. resolve(rect);
  162. }
  163. if (!all && rect) {
  164. resolve(rect);
  165. }
  166. })
  167. .exec();
  168. });
  169. },
  170. // 设置用于防止塌陷元素的高度
  171. async setPlaceholderHeight() {
  172. if (!this.fixed || !this.placeholder) return;
  173. // 延时一定时间
  174. await sleep(20);
  175. // #ifndef APP-NVUE
  176. this.getRect('.u-tabbar__content').then(({ height = 50 }) => {
  177. // 修复IOS safearea bottom 未填充高度
  178. this.placeholderHeight = height;
  179. });
  180. // #endif
  181. // #ifdef APP-NVUE
  182. dom.getComponentRect(this.$refs['u-tabbar__content'], (res) => {
  183. const { size } = res;
  184. this.placeholderHeight = size.height;
  185. });
  186. // #endif
  187. },
  188. },
  189. };
  190. </script>
  191. <style lang="scss" scoped>
  192. .u-tabbar {
  193. display: flex;
  194. flex: 1;
  195. justify-content: center;
  196. &__content {
  197. display: flex;
  198. flex-direction: column;
  199. background-color: #fff;
  200. box-shadow: 0px -2px 4px 0px rgba(51, 51, 51, 0.06);
  201. &__item-wrapper {
  202. height: 50px;
  203. display: flex;
  204. justify-content: space-around;
  205. align-items: center;
  206. }
  207. }
  208. .mid-tabbar {
  209. border-radius: 30rpx 30rpx 0 0;
  210. }
  211. &--fixed {
  212. position: fixed;
  213. bottom: -1px;
  214. left: 0;
  215. right: 0;
  216. }
  217. }
  218. </style>