欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

Vue?Hook?封裝通用型表格的詳細過程

 更新時間:2024年08月02日 08:59:47   作者:最小生成樹  
這篇文章主要介紹了Vue?Hook?封裝通用型表格,設(shè)計通用型表格組件首先,需要設(shè)計一個基礎(chǔ)的表格組件,它接受列配置、數(shù)據(jù)和分頁信息等參數(shù),本文給大家介紹的非常詳細,需要的朋友可以參考下

一、創(chuàng)建通用型表格的需求

實現(xiàn)一個通用型表格組件,具備以下功能:

  • 動態(tài)列配置。
  • 分頁功能。
  • 排序功能。
  • 可擴展的行操作功能。

二、設(shè)計通用型表格組件

首先,需要設(shè)計一個基礎(chǔ)的表格組件,它接受列配置、數(shù)據(jù)和分頁信息等參數(shù)。

1. 創(chuàng)建 useTable Hook

在 src/hooks 目錄下創(chuàng)建 useTable.js 文件:

import { ref, reactive, onMounted, toRefs } from 'vue';
export function useTable(fetchData) {
  const state = reactive({
    loading: false,
    data: [],
    pagination: {
      currentPage: 1,
      pageSize: 10,
      total: 0,
    },
    sort: {
      field: '',
      order: '',
    },
  });
  const loadData = async () => {
    state.loading = true;
    const { currentPage, pageSize } = state.pagination;
    const { field, order } = state.sort;
    const result = await fetchData(currentPage, pageSize, field, order);
    state.data = result.data;
    state.pagination.total = result.total;
    state.loading = false;
  };
  const changePage = (page) => {
    state.pagination.currentPage = page;
    loadData();
  };
  const changePageSize = (size) => {
    state.pagination.pageSize = size;
    loadData();
  };
  const changeSort = (field, order) => {
    state.sort.field = field;
    state.sort.order = order;
    loadData();
  };
  onMounted(() => {
    loadData();
  });
  return {
    ...toRefs(state),
    loadData,
    changePage,
    changePageSize,
    changeSort,
  };
}

2. 創(chuàng)建 TableComponent.vue

在 src/components 目錄下創(chuàng)建 TableComponent.vue 文件:

<template>
  <div>
    <table>
      <thead>
        <tr>
          <th v-for="col in columns" :key="col.key" @click="changeSort(col.key)">
            {{ col.title }}
            <span v-if="sort.field === col.key">{{ sort.order === 'asc' ? '↑' : '↓' }}</span>
          </th>
        </tr>
      </thead>
      <tbody>
        <tr v-for="row in data" :key="row.id">
          <td v-for="col in columns" :key="col.key">{{ row[col.key] }}</td>
        </tr>
      </tbody>
    </table>
    <div class="pagination">
      <button @click="changePage(pagination.currentPage - 1)" :disabled="pagination.currentPage === 1">Previous</button>
      <span>{{ pagination.currentPage }} / {{ Math.ceil(pagination.total / pagination.pageSize) }}</span>
      <button @click="changePage(pagination.currentPage + 1)" :disabled="pagination.currentPage === Math.ceil(pagination.total / pagination.pageSize)">Next</button>
    </div>
  </div>
</template>
<script>
import { ref, onMounted } from 'vue';
import { useTable } from '@/hooks/useTable';
export default {
  props: {
    fetchData: {
      type: Function,
      required: true,
    },
    columns: {
      type: Array,
      required: true,
    },
  },
  setup(props) {
    const { data, loading, pagination, sort, loadData, changePage, changePageSize, changeSort } = useTable(props.fetchData);
    return {
      data,
      loading,
      pagination,
      sort,
      loadData,
      changePage,
      changePageSize,
      changeSort,
    };
  },
};
</script>
<style scoped>
.pagination {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
</style>

三、使用通用型表格組件

在實際項目中,可以這樣使用這個通用型表格組件:

1. 創(chuàng)建 ExampleTable.vue 組件

在 src/views 目錄下創(chuàng)建 ExampleTable.vue 文件:

<template>
  <div>
    <TableComponent :fetchData="fetchData" :columns="columns" />
  </div>
</template>
<script>
import TableComponent from '@/components/TableComponent.vue';
export default {
  components: {
    TableComponent,
  },
  setup() {
    const columns = [
      { key: 'name', title: 'Name' },
      { key: 'age', title: 'Age' },
      { key: 'email', title: 'Email' },
    ];
    const fetchData = async (page, pageSize, sortField, sortOrder) => {
      // 模擬數(shù)據(jù)獲取
      const total = 100;
      const data = Array.from({ length: pageSize }, (v, i) => ({
        id: (page - 1) * pageSize + i + 1,
        name: `Name ${(page - 1) * pageSize + i + 1}`,
        age: 20 + ((page - 1) * pageSize + i + 1) % 30,
        email: `user${(page - 1) * pageSize + i + 1}@example.com`,
      }));
      return { data, total };
    };
    return {
      columns,
      fetchData,
    };
  },
};
</script>

四、解釋代碼

  • 定義 useTable Hook:

    • 使用 Vue 的 ref 和 reactive 定義表格狀態(tài)。
    • 定義 loadData、changePage、changePageSize 和 changeSort 函數(shù)來處理數(shù)據(jù)加載和分頁、排序變化。
    • 使用 onMounted 生命周期鉤子在組件掛載時加載數(shù)據(jù)。
  • 定義 TableComponent 組件

    • 接受 fetchData 和 columns 作為組件屬性。
    • 使用 useTable Hook 獲取表格數(shù)據(jù)和操作函數(shù)。
    • 渲染表格頭部、主體和分頁組件,并綁定相關(guān)事件。
  • 使用通用型表格組件

    • 在 ExampleTable.vue 中定義列配置和數(shù)據(jù)獲取函數(shù)。
    • 使用 TableComponent 并傳遞 fetchData 和 columns 屬性。

到此這篇關(guān)于Vue Hook 封裝通用型表格的文章就介紹到這了,更多相關(guān)Vue Hook 封裝通用型表格內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!

相關(guān)文章

最新評論