The Grid component provides a Collection Wrapper to display items (which should be Lightning components) in either rows or columns. It also handles the navigation of arrow keys for you.
If you want to use the Grid component, import it from Lightning UI.
import { Grid } from '@lightningjs/ui'To use the Grid component you create an instance with the type Grid:
class MyApp extends Lightning.Application {
static _template() {
return {
MyGrid: {type: Grid}
}
}
}The most basic example is to setup a Grid that is showing it's items in rows or columns.
{
MyGrid: {
type: Grid,
rows: 3 // OR, do NOT use both 'rows' and 'columns'
columns: 3
}
}* Note that either rows or columns should be declared, declaring both properties can yield unexpected results
You can add items to the Grid on the fly by using the add method:
this.tag('MyGrid').add(items)The parameter items can either be an array, object, string, or number.
You can add items to the Grid at a starting from a specific index using the addAt method:
this.tag('MyGrid').addAt(items, index)The parameter items can either be an array, object, string, or number. The parameter index should be a number starting from 0.
You can remove item at a specific index by using the removeAt method:
this.tag('MyGrid').removeAt(index)The parameter index should be a number starting from 0.
You can let the Grid remove a specific item by using the remove method:
this.tag('MyGrid').remove(item)The parameter item should be a component that exists in the dataset of the Grid.
You can clear al existing items in the Grid by using the clear method:
this.tag('MyGrid').clear()You can force the Grid to signal the configured onRequestItems function by using the requestItems method:
this.tag('MyGrid').requestItems(reload, indexData)The parameter reload determines if the Grid should call the clear method. Expected input is a boolean. This property is optional. Default value is false.
The parameter indexData is an object with index data. Expected input is an object. This property is optional. Default value is:
{
previous: 0,
index: 0,
max: 0
}You can reposition the itemWrappers when the items have been resized.
//In the component where your Grid is initialized.
this.tag('MyGrid').reposition()
//In a item component
this.collectionWrapper.reposition()You can set the index of the Grid by using the setIndex method:
this.tag('MyGrid').setIndex(index)The parameter index should be a number starting from 0.
You can set the index to the first item in the Grid by using the first method:
this.tag('MyGrid').first()You can set the index to the last item in the Grid by using the last method:
this.tag('MyGrid').last()You can set the index to the next item in the Grid by using the next method:
this.tag('MyGrid').next()You can set the index to the previous item in the Grid by using the previous method:
this.tag('MyGrid').previous()You can attempt to navigate upwards by using the up method:
this.tag('MyGrid').up()This method returns true if the navigation was successful, or false if it was not successful.
You can attempt to navigate upwards by using the down method:
this.tag('MyGrid').down()This method returns true if the navigation was successful, or false if it was not successful.
You can attempt to navigate upwards by using the left method:
this.tag('MyGrid').left()This method returns true if the navigation was successful, or false if it was not successful.
You can attempt to navigate upwards by using the right method:
this.tag('MyGrid').right()This method returns true if the navigation was successful, or false if it was not successful.
This signal is fired when the index has changed. This signal generally comes with the following object:
{
index,
previousIndex,
dataLength
}This signal is fired when the Grid is requesting for more data. This signal generally comes with the following object:
{
index,
previousIndex,
dataLength
}This signal requires you to return a promise that returns either Item, or if there are no Item you should return false. If you return false the enableRequest will be automatically changed to false aswell.
This signal is fired when the Items have been repositioned by the Collection Wrapper.
Sets the direction the Grid starts building towards, this value should be row of column. Default and fallback value is row.
Sets if the components that are added are force loaded, meaning they always exist as components and therefore might take up more memory than you would like. This value should be a boolean.
Sets the fallback spacing between the items. Default value is 0(zero) pixels.
Sets the default itemType the Grid should use for the items. Expected input is a Lightning.Component.
Sets the index of the Grid. Expected input is a number.
This setter clears the Grid and adds the new Items to the Grid. Expected input is an array, object, number, or string.
Sets the scroll options for the Grid. Expected input is a float starting from 0.0 until 1.0, a number representing pixels, an object, or a function.
this.tag('MyGrid').scroll = 0.5 //anchor the scroll to center (0.5 === 50%)
this.tag('MyGrid').scroll = 200 //anchor the scroll to 200 pixels
this.tag('MyGrid').scroll = {
after: 3, //start scrolling after 3 items
jump: 3, //after three items jump three Items
forward: 0.9, //unless last item: scroll forward if item bounds are after 90% of the List, or if value is above 1; scroll after f.e. 900 pixels
backward: 0.1, //unless first item: scroll backward if item bounds are before 10% of the List, or if value is above 1; scroll before f.e. 50 pixels
}
this.tag('MyGrid').scroll = (itemWrapper, indexData) => {
//calculation
return myCalculateValue
}Sets the scrollTransition. A transtion object generally used in Lightning is expected here.
Sets whether the bounds of the Grid should resize to the size of the wrapper. Expected input is a boolean. Default value is false.
Sets whether the Grid should request for more data. Expected input is a boolean.
Sets how many items before the end of the Grid, the Grid should start signaling for more data. Expected input is a number.
Sets how many items should become inactive before the garbage collections is called. Expected input is a number.
Returns the current direction in which the Grid is being built.
Returns the current forceLoad configuration the Grid is using.
Returns the current fallback spacing the Grid is using.
Returns the current index of the Grid.
Returns the wrapper in which the ItemWrappers are placed.
Returns the itemWrappers in which the items are placed.
Returns the current item set. If an item is active as a component the component is returned.
Returns whether there are items in the wrapper.
Return the length of the items dataset.
Returns the current item that is located at the current index.
Returns the current item wrapper corresponding with currentItem.
Returns the current scrollTransition of the Grid.
Returns the current autoResize value.
Returns the current enableRequests value.
Returns the current requestThreshold value.
Returns the current gcThreshold value.