123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287 |
- <template>
- <view class="custom-class van-sticky" :style="computed.containerStyle({ fixed, height, zIndex })">
- <view :class="utils.bem('sticky-wrap', { fixed })" :style="computed.wrapStyle({ fixed, offsetTop, transform, zIndex })">
- <slot />
- </view>
- </view>
- </template>
- <script module="utils" lang="wxs" src="@/node_modules/@vant/weapp/dist/wxs/utils.wxs"></script>
- <script module="computed" lang="wxs" src="@/node_modules/@vant/weapp/dist/sticky/index.wxs"></script>
- <script>
- import { VantComponent } from '../common/component';
- import { pageScrollMixin } from '../mixins/page-scroll';
- const ROOT_ELEMENT = '.van-sticky';
- export default {
- data() {
- return {
- height: 0,
- fixed: false,
- transform: 0
- };
- },
- props: {
- zIndex: {
- type: Number,
- default: 99
- },
- offsetTop: {
- type: Number,
- default: 0
- },
- disabled: {
- type: Boolean
- },
- container: {
- type: null
- },
- scrollTop: {
- type: null
- }
- },
- mixins: [
- pageScrollMixin(function (event) {
- if (this.scrollTop != null) {
- return;
- }
- this.onScroll(event);
- })
- ],
- mounted() {
- this.onScroll();
- },
- methods: {
- onScroll({ scrollTop } = {}) {
- const { container, offsetTop, disabled } = this;
- if (disabled) {
- this.setDataAfterDiff({
- fixed: false,
- transform: 0
- });
- return;
- }
- this.scrollTop = scrollTop || this.scrollTop;
- if (typeof container === 'function') {
- Promise.all([this.getRect(ROOT_ELEMENT), this.getContainerRect()]).then(([root, container]) => {
- if (offsetTop + root.height > container.height + container.top) {
- this.setDataAfterDiff({
- fixed: false,
- transform: container.height - root.height
- });
- } else if (offsetTop >= root.top) {
- this.setDataAfterDiff({
- fixed: true,
- height: root.height,
- transform: 0
- });
- } else {
- this.setDataAfterDiff({
- fixed: false,
- transform: 0
- });
- }
- });
- return;
- }
- this.getRect(ROOT_ELEMENT).then((root) => {
- if (offsetTop >= root.top) {
- this.setDataAfterDiff({
- fixed: true,
- height: root.height
- });
- this.transform = 0;
- } else {
- this.setDataAfterDiff({
- fixed: false
- });
- }
- });
- },
- setDataAfterDiff(data) {
- this.$nextTick(() => {
- const diff = Object.keys(data).reduce((prev, key) => {
- if (data[key] !== this[key]) {
- prev[key] = data[key];
- }
- return prev;
- }, {});
- this.setData(diff);
- this.$emit('scroll', {
- scrollTop: this.scrollTop,
- isFixed: data.fixed || this.fixed
- });
- });
- },
- getContainerRect() {
- const nodesRef = this.container();
- return new Promise((resolve) => nodesRef.boundingClientRect(resolve).exec());
- }
- },
- watch: {
- offsetTop: {
- handler: function ({ scrollTop } = {}) {
- const { container, offsetTop, disabled } = this;
- if (disabled) {
- this.setDataAfterDiff({
- fixed: false,
- transform: 0
- });
- return;
- }
- this.scrollTop = scrollTop || this.scrollTop;
- if (typeof container === 'function') {
- Promise.all([this.getRect(ROOT_ELEMENT), this.getContainerRect()]).then(([root, container]) => {
- if (offsetTop + root.height > container.height + container.top) {
- this.setDataAfterDiff({
- fixed: false,
- transform: container.height - root.height
- });
- } else if (offsetTop >= root.top) {
- this.setDataAfterDiff({
- fixed: true,
- height: root.height,
- transform: 0
- });
- } else {
- this.setDataAfterDiff({
- fixed: false,
- transform: 0
- });
- }
- });
- return;
- }
- this.getRect(ROOT_ELEMENT).then((root) => {
- if (offsetTop >= root.top) {
- this.setDataAfterDiff({
- fixed: true,
- height: root.height
- });
- this.transform = 0;
- } else {
- this.setDataAfterDiff({
- fixed: false
- });
- }
- });
- },
- immediate: true
- },
- disabled: {
- handler: function ({ scrollTop } = {}) {
- const { container, offsetTop, disabled } = this;
- if (disabled) {
- this.setDataAfterDiff({
- fixed: false,
- transform: 0
- });
- return;
- }
- this.scrollTop = scrollTop || this.scrollTop;
- if (typeof container === 'function') {
- Promise.all([this.getRect(ROOT_ELEMENT), this.getContainerRect()]).then(([root, container]) => {
- if (offsetTop + root.height > container.height + container.top) {
- this.setDataAfterDiff({
- fixed: false,
- transform: container.height - root.height
- });
- } else if (offsetTop >= root.top) {
- this.setDataAfterDiff({
- fixed: true,
- height: root.height,
- transform: 0
- });
- } else {
- this.setDataAfterDiff({
- fixed: false,
- transform: 0
- });
- }
- });
- return;
- }
- this.getRect(ROOT_ELEMENT).then((root) => {
- if (offsetTop >= root.top) {
- this.setDataAfterDiff({
- fixed: true,
- height: root.height
- });
- this.transform = 0;
- } else {
- this.setDataAfterDiff({
- fixed: false
- });
- }
- });
- },
- immediate: true
- },
- container: {
- handler: function ({ scrollTop } = {}) {
- const { container, offsetTop, disabled } = this;
- if (disabled) {
- this.setDataAfterDiff({
- fixed: false,
- transform: 0
- });
- return;
- }
- this.scrollTop = scrollTop || this.scrollTop;
- if (typeof container === 'function') {
- Promise.all([this.getRect(ROOT_ELEMENT), this.getContainerRect()]).then(([root, container]) => {
- if (offsetTop + root.height > container.height + container.top) {
- this.setDataAfterDiff({
- fixed: false,
- transform: container.height - root.height
- });
- } else if (offsetTop >= root.top) {
- this.setDataAfterDiff({
- fixed: true,
- height: root.height,
- transform: 0
- });
- } else {
- this.setDataAfterDiff({
- fixed: false,
- transform: 0
- });
- }
- });
- return;
- }
- this.getRect(ROOT_ELEMENT).then((root) => {
- if (offsetTop >= root.top) {
- this.setDataAfterDiff({
- fixed: true,
- height: root.height
- });
- this.transform = 0;
- } else {
- this.setDataAfterDiff({
- fixed: false
- });
- }
- });
- },
- immediate: true
- },
- scrollTop: {
- handler: function (val) {
- this.onScroll({
- scrollTop: val
- });
- },
- immediate: true
- }
- }
- };
- </script>
- <style>
- @import './index.css';
- </style>
|