# Dataset
The dataset
component acts as the provider component of all the data and methods vue-dataset
needs to function.
It does so by using the provide/inject mechanism of Vue so that data is also accessible in nested levels down the component tree.
Dataset takes the original data object as a prop and also some useful props as options that dictate how the data will be filtered, searched and sorted.
# Example
<dataset
v-slot="{ ds }"
:ds-data="users"
:ds-filter-fields="{ firstName: 'John', lastName: startsWithD }"
:ds-sortby="['lastName']"
:ds-search-in="['firstName', 'lastName']"
:ds-search-as="{ birthDate: searchAsEuroDate }"
:ds-sort-as="{ birthDate: sortAsDate }"
>
...
</dataset>
# Props
# ds-data
Type: Array of Objects
Default: Empty Array
This is the data object that vue-dataset
will operate on.
It must be an Array of Objects.
[
{
firstName: 'John',
lastName: 'Doe',
birthDate: '2004-02-11'
},
{
firstName: 'George',
lastName: 'Adams',
birthDate: '2003-07-28'
},
...
]
# ds-filter-fields
Type: Object
Default: Empty Object
It defines how certain properties of the data object will be filtered.
The object key denotes the data object property and the object value is a value
or a function
that will be used to filter
that data property.
For example this will filter the data by firstName "John" and all lastNames that start with the letter "D"
{
firstName: 'John',
lastName: startsWithD
}
startsWithD
can be a predicate function defined in your instance methods.
The function takes two arguments, the value of the data object property and the current row data.
startsWithD (value, row) {
return value.toLowerCase().startsWith('d')
}
#### ds-sortby
Type: `Array`
Default: <em>Empty Array</em>
It defines the data object properties by which the dataset object will be sorted.
If a property is prefixed by `-` it will be sorted with descending order.
For example this will sort the data by lastName
```html
['lastName']
# ds-search-in
Type: Array
Default: Empty Array
It restricts the search to certain data object properties.
If the ds-search-in
array is empty (default), then all object properties will be searched.
For example this will tell Dataset
to perform search only in the firstName
and lastName
data object properties.
['firstName', 'lastName']
# ds-search-as
Type: Object
Default: Empty Object
It defines how certain properties of the data object will be searched.
The object key denotes the data object property and the object value is a predicate Function
that will be used to search
that data property. The predicate function has access to the column value, the search string and the current row data.
This is useful in situations when you are displaying a formatted value and you want the user to be able to search it inside the data object with the same format as it appears on-screen.
For example this will set the birthDate attribute searchable by searchAsEuroDate
method
and will allow birthdate dates defined as YYYY-MM-DD format to be searched as DD.MM.YYYY format.
{
birthDate: searchAsEuroDate
}
Inside your instance methods
searchAsEuroDate: function (value, searchString, rowData) {
const parts = searchString.split('.')
const isoDate = `${parts[2]}-${parts[1]}-${parts[0]}`
return isoDate === value
}
# ds-sort-as
Type: Object
Default: Empty Object
It defines how certain properties of the data object will be sorted.
The object key denotes the data object property and the object value is a Function
that will be used to convert
that data property so that it can be sorted correctly. This is useful in situations when you have values that can't be sorted natively
such as currency or dates.
For example this will apply the sortAsDate
method to the birthDate attribute so that dates defined as YYYY-MM-DD format can be sorted
correctly.
{
birthDate: sortAsDate
}
Inside your instance methods
sortAsDate: function (isoDate) {
return new Date(isoDate)
}
# Provides
Dataset provides
functions that return computed data, data and methods to the child components.
You can leverage these using inject
to create your own custom child components.
# Functions that return computed data
Property | Type | Description |
---|---|---|
rdsData | Array of Objects | The data object that contains all the data. |
rdsIndexes | Array | The indexes of all the filtered data rows, regardless of paging |
rdsRows | Array | The indexes of the data rows currently displaying |
rdsPages | Array | The array used to create pagination links |
rdsResultsNumber | Number | The number of rows currently displaying |
rdsPagecount | Number | The number of pagination pages |
rdsFrom | Number | The item "from" of paginated items currently displaying |
rdsTo | Number | The item "to" of paginated items currently displaying |
rdsPage | Number | The number of the current page in pagination |
In order to use the functions that provide computed data you'll need to setup a computed property as the example below.
Example:
...
inject: ['rdsPage'],
computed: {
dsPage () {
return this.rdsPage()
}
}
...
# Data
Property | Type | Description |
---|---|---|
datasetI18n | Object | An object containing translation strings |
# Methods
Name | Params | Input value/Description |
---|---|---|
search | String | The value to search |
showEntries | Number | The number of items to show on each page |
setActive | Number | The number of the page to set as active |
# Events
Name | Emits | Description |
---|---|---|
update:dsData | Array of Objects | Emits the filtered dsData items, every time the internal computed results is changed. |
# Scoped slot
Dataset also provides several data via a ds
object exposed from a a scoped slot.
# The scoped slot ds object
Property | Type | Description |
---|---|---|
dsData | Array of Objects | The data object that contains all the data. |
dsIndexes | Array | The indexes of all the filtered data rows, regardless of paging |
dsRows | Array | The indexes of the data rows currently displaying |
dsResultsNumber | Number | The number of rows currently displaying |
dsFrom | Number | The item "from" of paginated items currently displaying |
dsTo | Number | The item "to" of paginated items currently displaying |
dsPages | Array | The array used to create pagination links |
dsPagecount | Number | The number of pagination pages |
dsPage | Number | The number of the current page in pagination |
dsShowEntries | Number | The number of items to show in pagination |
# DatasetItem
The dataset-item
component is responsible for displaying the item rows of the dataset.
Since it's a dynamic component it can take the form of any tag like div
, li
, tr
etc.
DatasetItem must be nested inside the Dataset component in order to work. It exposes one scoped slot with the the row's data and index and also one slot for the customization of the "no data found" message.
# Example
<dataset-item>
<template v-slot="{ row, rowIndex }">
<div>
{{ rowIndex }} - {{ row.firstName }}
</div>
</template>
<template v-slot:noDataFound>
<p>No results found</p>
</template>
</dataset-item>
# Props
# tag
Type: String
Default: div
The HTML tag to render.
# Scoped slot
DatasetItem also provides the row's data via a row
object exposed from a a scoped slot.
It also provides the row's original index, useful e.g if you want to delete an item.
# The scoped slot object
Property | Type | Description |
---|---|---|
row | Object | The dataset row data |
rowIndex | Number | The original index of the data row |
index | Number | The iteration index |
# Named slot noDataFound
DatasetItem provides a named slot to customize the "no data found" message.
There's no default content for the slot.
# DatasetInfo
The dataset-info
component displays information about the range of items being displayed
and the total number of items in the dataset.
# Example
<dataset-info class="my-custom-class" />
# DatasetPager
The dataset-pager
component displays the pagination controls.
# Example
<dataset-pager />
# DatasetShow
The dataset-show
component displays a select that is used to control how many items are visible simultaneously.
Props can be used to customize the default number of visible items as well as the list for the select control.
# Example
<dataset-show />
# Props
# ds-show-entries
Type: Number
Default: 10
The selected number of items to show.
# ds-show-entries-lovs
Type: Array of Objects
Default: [{ value: 5, text: 5 }, { value: 10, text: 10 }, { value: 25, text: 25 }, { value: 50, text: 50 }, { value: 100, text: 100 }]
The list of options for the select element.
# DatasetSearch
The dataset-search
component displays an input search form control used to search inside the dataset data.
Props can be used to customize the placeholder text as well as the debounce wait time.
# Example
<dataset-search ds-search-placeholder="Search..." />
# Props
# ds-search-placeholder
Type: String
Default: Empty String
The placeholder text of the input control.
# wait
Type: Number
Default: 0
The amount of time the debounce function waits after the last received input action before executing the search.
← Installation Cards →