List
Last updated
Last updated
Lists are a great way to visualise a lot of content in an organised format. With Gravity Native, you can render static and interactive lists with swipe actions. You can also search, sort and filter.
You can find a full working example of a list inside the /views/account/users
If you pass an edit
or delete
prop, the list will have swipe actions.
The data prop accepts an array of objects. These can be in any format, provided there is an ID key with a unique value. Use the showItems
prop to filter the object and determine which items you want to show in the UI.
If you provide an edit or delete prop, the user can swipe the list item and tap one of the swipe actions. This will execute a callback function to manage editing or deleting the data in the parent component. You can find a working example in /views/accounts/users
.
In addition to global edit
and delete
actions, you can pass a bespoke action to each list item using the following format. You can also over-ride the edit and delete actions at the item level.
Prop | Description | Required | Value |
---|---|---|---|
data
object containing data to render
required
object array (see below)
delete
callback function to delete the item
optional
function
edit
callback function to edit the item data
optional
function
loading
toggle the loading spinner
optional
boolean
onRefresh
callback function to fetch the data when the user pulls to refresh
required
function
searchable
show a search box
optional
boolean
showActions
force render actions when using a mix of global and item-level actions
optional
boolean
showItems
array of object keys to filter which data to show from the data object
optional
string array
sort
key to sort the data object
optional
string
titleKey
object key to use as list item title
required
string