index.vue 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. <template>
  2. <view class="custom-class van-sticky" :style="computed.containerStyle({ fixed, height, zIndex })">
  3. <view :class="utils.bem('sticky-wrap', { fixed })" :style="computed.wrapStyle({ fixed, offsetTop, transform, zIndex })">
  4. <slot />
  5. </view>
  6. </view>
  7. </template>
  8. <script module="utils" lang="wxs" src="@/node_modules/@vant/weapp/lib/wxs/utils.wxs"></script>
  9. <script module="computed" lang="wxs" src="@/node_modules/@vant/weapp/lib/sticky/index.wxs"></script>
  10. <script>
  11. 'use strict';
  12. Object.defineProperty(exports, '__esModule', {
  13. value: true
  14. });
  15. var component_1 = require('../common/component');
  16. var page_scroll_1 = require('../mixins/page-scroll');
  17. var ROOT_ELEMENT = '.van-sticky';
  18. component_1.VantComponent({
  19. props: {
  20. zIndex: {
  21. type: Number,
  22. value: 99
  23. },
  24. offsetTop: {
  25. type: Number,
  26. value: 0,
  27. observer: 'onScroll'
  28. },
  29. disabled: {
  30. type: Boolean,
  31. observer: 'onScroll'
  32. },
  33. container: {
  34. type: null,
  35. observer: 'onScroll'
  36. },
  37. scrollTop: {
  38. type: null,
  39. observer: function (val) {
  40. this.onScroll({
  41. scrollTop: val
  42. });
  43. }
  44. }
  45. },
  46. mixins: [
  47. page_scroll_1.pageScrollMixin(function (event) {
  48. if (this.scrollTop != null) {
  49. return;
  50. }
  51. this.onScroll(event);
  52. })
  53. ],
  54. data: {
  55. height: 0,
  56. fixed: false,
  57. transform: 0
  58. },
  59. mounted: function () {
  60. this.onScroll();
  61. },
  62. methods: {
  63. onScroll: function (_a) {
  64. var that = this;
  65. var scrollTop = (_a === void 0 ? {} : _a).scrollTop;
  66. var _b = this;
  67. var container = _b.container;
  68. var offsetTop = _b.offsetTop;
  69. var disabled = _b.disabled;
  70. if (disabled) {
  71. this.setDataAfterDiff({
  72. fixed: false,
  73. transform: 0
  74. });
  75. return;
  76. }
  77. this.scrollTop = scrollTop || this.scrollTop;
  78. if (typeof container === 'function') {
  79. Promise.all([this.getRect(ROOT_ELEMENT), this.getContainerRect()]).then(function (_a) {
  80. var root = _a[0];
  81. var container = _a[1];
  82. if (offsetTop + root.height > container.height + container.top) {
  83. that.setDataAfterDiff({
  84. fixed: false,
  85. transform: container.height - root.height
  86. });
  87. } else if (offsetTop >= root.top) {
  88. that.setDataAfterDiff({
  89. fixed: true,
  90. height: root.height,
  91. transform: 0
  92. });
  93. } else {
  94. that.setDataAfterDiff({
  95. fixed: false,
  96. transform: 0
  97. });
  98. }
  99. });
  100. return;
  101. }
  102. this.getRect(ROOT_ELEMENT).then(function (root) {
  103. if (offsetTop >= root.top) {
  104. that.setDataAfterDiff({
  105. fixed: true,
  106. height: root.height
  107. });
  108. that.transform = 0;
  109. } else {
  110. that.setDataAfterDiff({
  111. fixed: false
  112. });
  113. }
  114. });
  115. },
  116. setDataAfterDiff: function (data) {
  117. var that = this;
  118. this.$nextTick(function () {
  119. var diff = Object.keys(data).reduce(function (prev, key) {
  120. if (data[key] !== that[key]) {
  121. prev[key] = data[key];
  122. }
  123. return prev;
  124. }, {});
  125. that.setData(diff);
  126. that.$emit('scroll', {
  127. scrollTop: that.scrollTop,
  128. isFixed: data.fixed || that.fixed
  129. });
  130. });
  131. },
  132. getContainerRect: function () {
  133. var nodesRef = this.container();
  134. return new Promise(function (resolve) {
  135. return nodesRef.boundingClientRect(resolve).exec();
  136. });
  137. }
  138. }
  139. });
  140. </script>
  141. <style>
  142. @import './index.css';
  143. </style>