首頁 > web前端 > Vue.js > 主體

Vue組件實戰:分頁組件開發

王林
發布: 2023-11-24 08:56:05
原創
1398 人瀏覽過

Vue組件實戰:分頁組件開發

Vue元件實戰:分頁元件開發

介紹

在網路應用程式中,分頁功能是不可或缺的一個元件。一個好的分頁元件應該展示簡潔明了,功能豐富,而且易於整合和使用。

在本文中,我們將介紹如何使用Vue.js框架來開發一個高度可自訂化的分頁元件。我們將透過程式碼範例來詳細說明如何使用Vue元件開發。

技術堆疊

  • Vue.js 2.x
  • JavaScript (ES6)
  • HTML5與CSS3

#開發環境

  • Node.js v8.9.3
  • npm v5.5.1
  • Vue.js v2.5.2

#分頁元件需求

  • 透過props接收總頁面數(total)和目前頁數(current)屬性
  • 可以設定顯示的最大頁碼數(maxShown)
  • 可以配置按鈕顯示的文字(prevText和nextText) 和按鈕樣式
  • 點擊頁碼可以切換到對應的頁面
  • 目前頁碼高亮顯示
  • 目前頁面沒有前一頁時,忽略上一頁按鈕的點擊事件
  • 當前頁面沒有後一頁時,忽略下一頁按鈕的點擊事件

設計思路和程式碼實作

根據需求,我們將分頁元件拆分為多個小元件來實現。我們需要建立以下3個小元件:

  1. Pagination.vue

#主頁元件,負責分頁資料和邏輯的處理。向子元件傳遞分頁訊息和回應子元件的事件。

  1. Button.vue

此元件為按鈕元件,用於建立分頁按鈕。

  1. Page.vue

此元件用於建立單一頁面區塊,包含頁標號和狀態。頁面區塊可以是目前頁面或非目前頁面。

接下來,讓我們使用程式碼來實作以上3個元件。

  1. Pagination.vue
<template>
  <div class="pagination-container">
    <button-prev :current="current" @onPrev="prev"></button-prev>
    <page v-for="page in pages"
      :key="page"
      :page="page"
      :is-selected="page === current"
      @on-page-selected="selectPage"></page>
    <button-next :current="current" :total="total" @onNext="next"></button-next>
  </div>
</template>
<script>
import ButtonPrev from './ButtonPrev.vue';
import ButtonNext from './ButtonNext.vue';
import Page from './Page.vue';

export default {
  components: { ButtonPrev, ButtonNext, Page },
  props: {
    total: {
      type: Number,
      default: 10
    },
    current: {
      type: Number,
      default: 1
    },
    maxShown: {
      type: Number,
      default: 5
    },
    prevText: {
      type: String,
      default: '上一页'
    },
    nextText: {
      type: String,
      default: '下一页'
    }
  },
  computed: {
    pages () {
      const start = Math.max(1, this.current - Math.floor(this.maxShown / 2));
      const end = Math.min(this.total, start + this.maxShown - 1);
      return Array.from({ length: end - start + 1 }, (v, k) => start + k);
    }
  },
  methods: {
    selectPage (page) {
      if (this.current === page) return;
      this.current = page;
      this.$emit('onPageChanged', page);
    },
    prev () {
      if (this.current > 1) {
        this.selectPage(this.current - 1);
      }
    },
    next () {
      if (this.current < this.total) {
        this.selectPage(this.current + 1);
      }
    }
  }
}
</script>
登入後複製

在上面的程式碼中,我們首先import了ButtonPrev、ButtonNext和Page元件。接著,用props方式取得了total, current, maxShown, prevText和nextText屬性,並定義了計算屬性pages,根據當前頁碼(current)和最大頁碼數(maxShown)得到一個包含頁碼數的數組,以在組件中呈現。

我們也定義了selectPage方法,在該方法中,如果頁碼(page)與目前頁碼(current)相同,則傳回或不做任何事情。否則,將新頁碼發出給父元件。

prev()和next()方法用於處理上一頁和下一頁事件,並防止event被回應。

  1. ButtonPrev.vue
<template>
    <button
      class="btn-previous"
      :disabled="current === 1"
      @click="onPrev()">
      {{ prevText }}
    </button>
</template>

<script>
export default {
  props: {
    prevText: {
      type: String,
      default: '上一页'
    },
    current: {
      type: Number,
      default: 1
    }
  },
  methods: {
    onPrev () {
      this.$emit('onPrev');
    }
  }
}
</script>

<style scoped>
.btn-previous {
  border: none;
  color: #333;
  display: inline-block;
  font-size: 16px;
  padding: 6px 12px;
  margin-right: 5px;
  background-color:#fff;
  cursor: pointer;
  border-radius: 2px;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
}
.btn-previous:disabled {
  color: #ccc;
  cursor: default;
}
</style>
登入後複製

在上述程式碼中,我們首先透過props取得了目前頁碼(current)和上一頁按鈕的文字(prevText)屬性。在模版中,使用類別綁定(disabled)控制按鈕使用狀態。定義了一個onPrev方法,該方法觸發父組件的onPrev事件。

  1. ButtonNext.vue
<template>
    <button
      class="btn-next"
      :disabled="current === total"
      @click="onNext()">
      {{ nextText }}
    </button>
</template>

<script>
export default {
  props: {
    total: {
      type: Number,
      default: 10
    },
    nextText: {
      type: String,
      default: '下一页'
    },
    current: {
      type: Number,
      default: 1
    }
  },
  methods: {
    onNext () {
      this.$emit('onNext');
    }
  }
}
</script>

<style scoped>
.btn-next {
  border: none;
  color: #333;
  display: inline-block;
  font-size: 16px;
  padding: 6px 12px;
  margin-left: 5px;
  background-color: #fff;
  cursor: pointer;
  border-radius: 2px;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
}
.btn-next:disabled {
  color: #ccc;
  cursor: default;
}
</style>
登入後複製

在上述程式碼中,我們將ButtonPrev.vue的程式碼複製了一份,稍微改了一下文字和判斷條件。

  1. Page.vue
<template>
  <button :class="{ current: isSelected }" class="btn-page" @click="onPageSelected(page)">
    {{ page }}
  </button>
</template>

<script>
export default {
  props: {
    page: {
      type: Number,
      required: true
    },
    isSelected: {
      type: Boolean,
      default: false
    }
  },
  methods: {
    onPageSelected () {
      this.$emit('onPageSelected', this.page);
    }
  }
}
</script>

<style scoped>
.btn-page {
  border: none;
  color: #333;
  display: inline-block;
  font-size: 16px;
  padding: 6px 12px;
  margin-left: 5px;
  background-color: #fff;
  cursor: pointer;
  border-radius: 2px;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
}
.btn-page.current {
  background-color: #0078d7;
  color: #fff;
}
</style>
登入後複製

在上述程式碼中,我們透過props取得了該頁碼的值(page)和按鈕的isSelected屬性。在模板中,使用類別綁定("current")高亮顯示選取的頁面。

我們也定義了一個onPageSelected方法,該方法會觸發父元件的onPageSelected事件。

最後,這些元件可以在任何Vue.js應用程式中的template中使用,如下所示:

<template>
  <div>
    <pagination
      :total="total"
      :current="current"
      :maxShown="maxShown"
      :prevText="prevText"
      :nextText="nextText"
      @onPageChanged="onPageChanged"></pagination>
    <ul>
      <li v-for="(item, index) in items" :key="index">{{ item.name }}</li>
    </ul>
  </div>
</template>

<script>
import Pagination from './Pagination.vue';

export default {
  components: {
    Pagination
  },
  data () {
    return {
      current: 1,
      maxShown: 10,
      prevText: '上一页',
      nextText: '下一页',
      total: 10,
      pageSize: 10,
      items: [{ name: 'Item 1' }, { name: 'Item 2' }, { name: 'Item 3' }]
    }
  },
  methods: {
    onPageChanged (page) {
      console.log('Page changed to: ', page);
      // 当前页面数据请求
    }
  }
}
</script>
登入後複製

上述程式碼中,我們引入了Pagination元件,並將其作為template中的父組件。我們也將total, current和maxShown綁定到元件,以便取得到它們的值。在onPageChanged方法中,我們可以處理頁面變更事件,並根據目前頁碼請求對應的資料。

以上是Vue組件實戰:分頁組件開發的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板