su-tabbar-item.vue 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234
  1. <!-- 自定义底部导航项 -->
  2. <template>
  3. <view class="u-tabbar-item" :style="[addStyle(customStyle)]">
  4. <view v-if="isCenter" class="tabbar-center-item">
  5. <image class="center-image" :src="centerImage" mode="aspectFill"></image>
  6. </view>
  7. <template v-else>
  8. <view class="u-tabbar-item__icon">
  9. <image
  10. v-if="icon"
  11. :name="icon"
  12. :color="isActive ? parentData.activeColor : parentData.color"
  13. :size="20"
  14. ></image>
  15. <block v-else>
  16. <slot v-if="isActive" name="active-icon" />
  17. <slot v-else name="inactive-icon" />
  18. </block>
  19. <!-- <u-badge
  20. absolute
  21. :offset="[0, dot ? '34rpx' : badge > 9 ? '14rpx' : '20rpx']"
  22. :customStyle="badgeStyle"
  23. :isDot="dot"
  24. :value="badge || (dot ? 1 : null)"
  25. :show="dot || badge > 0"
  26. ></u-badge> -->
  27. </view>
  28. <slot name="text">
  29. <text
  30. class="u-tabbar-item__text"
  31. :style="{
  32. color: isActive ? parentData.activeColor : parentData.color,
  33. }"
  34. >
  35. {{ text }}
  36. </text>
  37. </slot>
  38. </template>
  39. </view>
  40. </template>
  41. <script>
  42. /**
  43. * TabbarItem 底部导航栏子组件
  44. * @description 此组件提供了自定义tabbar的能力。
  45. * @property {String | Number} name item标签的名称,作为与u-tabbar的value参数匹配的标识符
  46. * @property {String} icon uView内置图标或者绝对路径的图片
  47. * @property {String | Number} badge 右上角的角标提示信息
  48. * @property {Boolean} dot 是否显示圆点,将会覆盖badge参数(默认 false )
  49. * @property {String} text 描述文本
  50. * @property {Object | String} badgeStyle 控制徽标的位置,对象或者字符串形式,可以设置top和right属性(默认 'top: 6px;right:2px;' )
  51. * @property {Object} customStyle 定义需要用到的外部样式
  52. *
  53. */
  54. import { deepMerge, addStyle, sleep, $parent } from '@/sheep/helper';
  55. export default {
  56. name: 'su-tabbar-item',
  57. props: {
  58. customStyle: {
  59. type: [Object, String],
  60. default: () => ({}),
  61. },
  62. customClass: {
  63. type: String,
  64. default: '',
  65. },
  66. // 跳转的页面路径
  67. url: {
  68. type: String,
  69. default: '',
  70. },
  71. // 页面跳转的类型
  72. linkType: {
  73. type: String,
  74. default: 'navigateTo',
  75. },
  76. // item标签的名称,作为与u-tabbar的value参数匹配的标识符
  77. name: {
  78. type: [String, Number, null],
  79. default: '',
  80. },
  81. // uView内置图标或者绝对路径的图片
  82. icon: {
  83. icon: String,
  84. default: '',
  85. },
  86. // 右上角的角标提示信息
  87. badge: {
  88. type: [String, Number, null],
  89. default: '',
  90. },
  91. // 是否显示圆点,将会覆盖badge参数
  92. dot: {
  93. type: Boolean,
  94. default: false,
  95. },
  96. // 描述文本
  97. text: {
  98. type: String,
  99. default: '',
  100. },
  101. // 控制徽标的位置,对象或者字符串形式,可以设置top和right属性
  102. badgeStyle: {
  103. type: [Object, String],
  104. default: '',
  105. },
  106. isCenter: {
  107. type: Boolean,
  108. default: false,
  109. },
  110. centerImage: {
  111. type: String,
  112. default: '',
  113. },
  114. },
  115. data() {
  116. return {
  117. isActive: false, // 是否处于激活状态
  118. addStyle,
  119. parentData: {
  120. value: null,
  121. activeColor: '',
  122. color: '',
  123. },
  124. parent: {},
  125. };
  126. },
  127. created() {
  128. this.init();
  129. },
  130. methods: {
  131. getParentData(parentName = '') {
  132. // 避免在created中去定义parent变量
  133. if (!this.parent) this.parent = {};
  134. // 这里的本质原理是,通过获取父组件实例(也即类似u-radio的父组件u-radio-group的this)
  135. // 将父组件this中对应的参数,赋值给本组件(u-radio的this)的parentData对象中对应的属性
  136. // 之所以需要这么做,是因为所有端中,头条小程序不支持通过this.parent.xxx去监听父组件参数的变化
  137. // 此处并不会自动更新子组件的数据,而是依赖父组件u-radio-group去监听data的变化,手动调用更新子组件的方法去重新获取
  138. this.parent = $parent.call(this, parentName);
  139. if (this.parent.children) {
  140. // 如果父组件的children不存在本组件的实例,才将本实例添加到父组件的children中
  141. this.parent.children.indexOf(this) === -1 && this.parent.children.push(this);
  142. }
  143. if (this.parent && this.parentData) {
  144. // 历遍parentData中的属性,将parent中的同名属性赋值给parentData
  145. Object.keys(this.parentData).map((key) => {
  146. this.parentData[key] = this.parent[key];
  147. });
  148. }
  149. },
  150. init() {
  151. // 支付宝小程序不支持provide/inject,所以使用这个方法获取整个父组件,在created定义,避免循环引用
  152. this.updateParentData();
  153. if (!this.parent) {
  154. console.log('u-tabbar-item必须搭配u-tabbar组件使用');
  155. }
  156. // 本子组件在u-tabbar的children数组中的索引
  157. const index = this.parent.children.indexOf(this);
  158. // 判断本组件的name(如果没有定义name,就用index索引)是否等于父组件的value参数
  159. this.isActive = (this.name.split('?')[0] || index) === this.parentData.value;
  160. },
  161. updateParentData() {
  162. // 此方法在mixin中
  163. this.getParentData('su-tabbar');
  164. },
  165. // 此方法将会被父组件u-tabbar调用
  166. updateFromParent() {
  167. // 重新初始化
  168. this.init();
  169. },
  170. clickHandler() {
  171. this.$nextTick(() => {
  172. const index = this.parent.children.indexOf(this);
  173. const name = this.name || index;
  174. // 点击的item为非激活的item才发出change事件
  175. if (name !== this.parent.value) {
  176. this.parent.$emit('change', name);
  177. }
  178. this.$emit('click', name);
  179. });
  180. },
  181. },
  182. };
  183. </script>
  184. <style lang="scss" scoped>
  185. .tabbar-center-item {
  186. height: 40px;
  187. width: 40px;
  188. display: flex;
  189. align-items: center;
  190. justify-content: center;
  191. border-radius: 50%;
  192. background-color: rebeccapurple;
  193. transform: scale(1.3) translateY(-6px);
  194. position: absolute;
  195. z-index: 2;
  196. .center-image {
  197. width: 25px;
  198. height: 25px;
  199. }
  200. }
  201. .u-tabbar-item {
  202. display: flex;
  203. flex-direction: column;
  204. align-items: center;
  205. justify-content: center;
  206. flex: 1;
  207. position: relative;
  208. z-index: 1;
  209. &__icon {
  210. display: flex;
  211. position: relative;
  212. width: 150rpx;
  213. justify-content: center;
  214. }
  215. &__text {
  216. margin-top: 2px;
  217. font-size: 12px;
  218. color: var(--textSize);
  219. }
  220. }
  221. /* #ifdef MP */
  222. // 由于小程序都使用shadow DOM形式实现,需要给影子宿主设置flex: 1才能让其撑开
  223. :host {
  224. flex: 1;
  225. }
  226. /* #endif */
  227. </style>