Element Plus實現Affix 固釘

一、組件介紹

Affix組件用於將頁面元素固定在特定可視區域。

1.1 屬性

  • position:指定固釘的位置,可設置為top或bottom,默認為top
  • offset: 設置偏移距離,默認為0
  • target:指定容器(CSS 選擇器),讓固釘始終保持在容器內,超過范圍則隱藏,默認的容器是document.documentElement。
  • z-index: 固釘的層級,默認100

1.2 事件

  • scroll: 容器滾動時觸發事件,參數是:固釘的scrollTop值和狀態(是否fixed)
  • change: 固釘狀態改變時觸發,參數是固釘當前是否處於fixed狀態

二、源碼分析

2.1 template

<template>
  <div ref="root" class="el-affix" :style="rootStyle">
    <div :class="{'el-affix--fixed': state.fixed}" :style="affixStyle">
      <slot></slot>
    </div>
  </div>
</template>

template部分很簡單,通過slot接收內容

2.2 script

// 部分核心代碼,代碼順序有所調整
setup(props, { emit }) {
    // target容器 ref
    const target = ref(null) 
    // 固釘ref,與template中的ref屬性配合,得到HTML元素
    const root = ref(null)
    // 滾動容器ref
    const scrollContainer = ref(null)
    
    // 固釘狀態
    const state = reactive({
      fixed: false,
      height: 0, // height of root
      width: 0, // width of root
      scrollTop: 0, // scrollTop of documentElement
      clientHeight: 0, // clientHeight of documentElement
      transform: 0,
    })
    
    onMounted(() => {
      // 根據傳入的target確定 target容器
      if (props.target) {
        target.value = document.querySelector(props.target)
        if (!target.value) {
          throw new Error(`target is not existed: ${props.target}`)
        }
      } else {
        target.value = document.documentElement
      }
      
      // 根據固釘元素,向上尋找滾動容器
      scrollContainer.value = getScrollContainer(root.value)
      // 監聽滾動容器的scroll事件
      on(scrollContainer.value, 'scroll', onScroll)
      // 監聽固釘元素的resize事件
      addResizeListener(root.value, updateState)
    })
    
    // 滾動容器的scroll事件的響應函數
    const onScroll = () => {
      // 更新固釘狀態
      updateState()
      
      emit('scroll', {
        scrollTop: state.scrollTop,
        fixed: state.fixed,
      })
    }
    
    // 更新固釘狀態函數
    const updateState = () => {
      const rootRect = root.value.getBoundingClientRect()
      const targetRect = target.value.getBoundingClientRect()
      state.height = rootRect.height
      state.width = rootRect.width
      state.scrollTop = scrollContainer.value === window ? document.documentElement.scrollTop : scrollContainer.value.scrollTop
      state.clientHeight = document.documentElement.clientHeight

      if (props.position === 'top') {
        if (props.target) {
          const difference = targetRect.bottom - props.offset - state.height
          // targetRect.bottom > 0 對應的是讓固釘始終保持在容器內,超過范圍則隱藏
          state.fixed = props.offset > rootRect.top && targetRect.bottom > 0
          // 用於處理場景:滾動過程中,target容器可視區域不足以顯示整個固釘,則固釘應相應偏移,隻展示部分
          state.transform = difference < 0 ? difference : 0
        } else {
          state.fixed = props.offset > rootRect.top
        }
      } else {
        if (props.target) {
          const difference = state.clientHeight - targetRect.top - props.offset - state.height
          state.fixed = state.clientHeight - props.offset < rootRect.bottom && state.clientHeight > targetRect.top
          state.transform = difference < 0 ? -difference : 0
        } else {
          state.fixed = state.clientHeight - props.offset < rootRect.bottom
        }
      }
    }
    // 監測固釘fixed狀態變化,並對外emit change事件
    watch(() => state.fixed, () => {
      emit('change', state.fixed)
    })
    
    // 計算屬性,通過固釘的狀態自動更新固釘的樣式
    const affixStyle = computed(() => {
      if (!state.fixed) {
        return
      }
      const offset = props.offset ? `${props.offset}px` : 0
      const transform = state.transform ? `translateY(${state.transform}px)` : ''

      return {
        height: `${state.height}px`,
        width: `${state.width}px`,
        top: props.position === 'top' ? offset : '',
        bottom: props.position === 'bottom' ? offset : '',
        transform: transform,
        zIndex: props.zIndex,
      }
    })
}

2.3 實現總結:

  • 通過監聽滾動容器的scroll事件(及固釘自身的resize事件);
  • 事件響應函數中動態獲取固釘及target容器的DOM屬性並以此計算固釘的狀態;
  • 利用計算屬性自動更新固釘的樣式;

到此這篇關於Element Plus實現Affix 固釘的文章就介紹到這瞭,更多相關Element Affix 固釘內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: