IncubatorListWidget
Interfaces
IncubatorListWidgetProps
Extends
VirtualScrollerItemProps
Indexable
[p
: string
]: any
Properties
Property | Type | Description | Inherited from |
---|---|---|---|
DialogProps? | BaseDialogProps | Props to spread to users suggestion dialog Default {} | - |
IncubatorProps? | IncubatorProps | Props to spread to single incubator object Default {} | - |
autoHide? | boolean | Hides this component Default false | - |
cacheStrategy? | CacheStrategies | Caching strategies Default CacheStrategies.CACHE_FIRST | - |
className? | string | Overrides or extends the styles applied to the component. Default null | - |
limit? | number | Limit the number of incubators to show Default false | - |
onHeightChange? | () => void | Must be called whenever a list item's height changes (for example, when a user clicks an "Expand"/"Collapse" button of a list item): it re-measures the item's height and updates VirtualScroller layout. Every change in an item's height must come as a result of changing some kind of a state, be it the item's state in VirtualScroller via .onItemStateChange(), or some other state managed by the application. Call this method to re-measure the current element. | VirtualScrollerItemProps.onHeightChange |
onStateChange? | (state : any ) => void | Save current state and when the component re-mount restore previous state using props. It is used to keep a copy of VirtualScroller state so that it could be quickly restored in case the VirtualScroller component gets unmounted and then re-mounted back again — for example, when the user navigates away by clicking on a list item and then navigates "Back" to the list. | VirtualScrollerItemProps.onStateChange |
Functions
IncubatorListWidget()
IncubatorListWidget(
inProps
):JSX.Element
API documentation for the Community-JS Incubator List Widget component. Learn about the available props and the CSS API.
This component renders a list of incubators. Take a look at our demo component here
Import
import {IncubatorListWidget} from '@selfcommunity/react-ui';
Component Name
The name IncubatorListWidget
can be used when providing style overrides in the theme.
CSS
Rule Name | Global class | Description |
---|---|---|
root | .SCIncubatorListWidget-root | Styles applied to the root element. |
header | .SCIncubatorListWidget-header | Styles applied to the header element. |
title | .SCIncubatorListWidget-title | Styles applied to the title element. |
noResults | .SCIncubatorListWidget-no-results | Styles applied to the no results section. |
showMore | .SCIncubatorListWidget-show-more | Styles applied to the show more button element. |
actions | .SCIncubatorListWidget-actions | Styles applied to the actions section. |
helpPopover | .SCIncubatorListWidget-help-popover | Styles applied to the help popover element. |
dialogRoot | .SCIncubatorListWidget-dialog-root | Styles applied to the root dialog element. |
endMessage | .SCIncubatorListWidget-end-message | Styles applied to the end message element. |
createDialog | .SCIncubatorListWidget-create-dialog | Styles applied to the create dialog element. |
Parameters
Parameter | Type | Description |
---|---|---|
inProps | IncubatorListWidgetProps |
Returns
JSX.Element
Source
packages/react-ui/src/components/IncubatorListWidget/IncubatorListWidget.tsx:127
IncubatorListWidgetSkeleton()
IncubatorListWidgetSkeleton(
props
):JSX.Element
API documentation for the Community-JS Incubator List Skeleton component. Learn about the available props and the CSS API.
Import
import {IncubatorListWidgetSkeleton} from '@selfcommunity/react-ui';
Component Name
The name SCIncubatorListWidget-skeleton-root
can be used when providing style overrides in the theme.
CSS
Rule Name | Global class | Description |
---|---|---|
root | .SCIncubatorListWidget-skeleton-root-root | Styles applied to the root element. |
list | .SCIncubatorListWidget-list | Styles applied to the list element. |
Parameters
Parameter | Type |
---|---|
props | any |
Returns
JSX.Element
Source
packages/react-ui/src/components/IncubatorListWidget/Skeleton.tsx:40