-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: header, footer, list-header, list-footer slots (#1085)
- Loading branch information
Showing
6 changed files
with
193 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
<template> | ||
<v-select :options="paginated" @search="query => search = query" filterable="false"> | ||
<li slot="list-footer" class="pagination"> | ||
<button @click="offset -= 10" :disabled="!hasPrevPage">Prev</button> | ||
<button @click="offset += 10" :disabled="!hasNextPage">Next</button> | ||
</li> | ||
</v-select> | ||
</template> | ||
|
||
<script> | ||
import countries from '../data/countries'; | ||
export default { | ||
data: () => ({ | ||
countries, | ||
search: '', | ||
offset: 0, | ||
limit: 10, | ||
}), | ||
computed: { | ||
filtered () { | ||
return this.countries.filter(country => country.includes(this.search)); | ||
}, | ||
paginated () { | ||
return this.filtered.slice(this.offset, this.limit + this.offset); | ||
}, | ||
hasNextPage () { | ||
const nextOffset = this.offset + 10; | ||
return Boolean(this.filtered.slice(nextOffset, this.limit + nextOffset).length); | ||
}, | ||
hasPrevPage () { | ||
const prevOffset = this.offset - 10; | ||
return Boolean(this.filtered.slice(prevOffset, this.limit + prevOffset).length); | ||
} | ||
}, | ||
}; | ||
</script> | ||
|
||
<style scoped> | ||
.pagination { | ||
display: flex; | ||
margin: .25rem .25rem 0; | ||
} | ||
.pagination button { | ||
flex-grow: 1; | ||
} | ||
.pagination button:hover { | ||
cursor: pointer; | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
::: tip <Badge text="3.8.0+" /> | ||
Pagination is supported using slots available with Vue Select 3.8 and above. | ||
::: | ||
|
||
Pagination can be a super helpful tool when working with large sets of data. If you have 1,000 | ||
options, the component is going to render 1,000 DOM nodes. That's a lot of nodes to insert/remove, | ||
and chances are your user is only interested in a few of them anyways. | ||
|
||
To implement pagination with Vue Select, you can take advantage of the `list-footer` slot. It | ||
appears below all other options in the drop down list. | ||
|
||
To make pagination work properly with filtering, you'll have to handle it yourself in the parent. | ||
You can use the `filterable` boolean to turn off Vue Select's filtering, and then hook into the | ||
`search` event to use the current search query in the parent component. | ||
|
||
<Paginated /> | ||
|
||
<<< @/.vuepress/components/Paginated.vue |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters