Skip to main content

IncubatorSuggestionWidget

Interfaces

IncubatorSuggestionWidgetProps

Extends

  • VirtualScrollerItemProps

Indexable

[p: string]: any

Properties

PropertyTypeDescriptionInherited from
DialogProps?BaseDialogPropsProps to spread to users suggestion dialog

Default
{}
-
IncubatorProps?IncubatorPropsProps to spread to single incubator object

Default
{}
-
autoHide?booleanHides this component

Default
false
-
cacheStrategy?CacheStrategiesCaching strategies

Default
CacheStrategies.CACHE_FIRST
-
className?stringOverrides or extends the styles applied to the component.

Default
null
-
limit?numberLimit the number of incubators to show

Default
false
-
onHeightChange?() => voidMust 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) => voidSave 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

IncubatorSuggestionSkeleton()

IncubatorSuggestionSkeleton(props): JSX.Element

API documentation for the Community-JS Incubator Suggestion Widget Skeleton component. Learn about the available props and the CSS API.

Import

import {IncubatorSuggestionWidgetSkeleton} from '@selfcommunity/react-ui';

Component Name

The name SCIncubatorSuggestionWidget-skeleton-root can be used when providing style overrides in the theme.

CSS

Rule NameGlobal classDescription
root.SCIncubatorSuggestionWidget-skeleton-root-rootStyles applied to the root element.
list.SCIncubatorSuggestionWidget-listStyles applied to the list element.

Parameters

ParameterType
propsany

Returns

JSX.Element

Source

packages/react-ui/src/components/IncubatorSuggestionWidget/Skeleton.tsx:40


IncubatorSuggestionWidget()

IncubatorSuggestionWidget(inProps): JSX.Element

API documentation for the Community-JS Incubator Suggestion component. Learn about the available props and the CSS API.

This component renders a list of suggested incubators. Take a look at our demo component here

Import

import {IncubatorSuggestionWidget} from '@selfcommunity/react-ui';

Component Name

The name SCIncubatorSuggestionWidget can be used when providing style overrides in the theme.

CSS

Rule NameGlobal classDescription
root.SCIncubatorSuggestionWidget-rootStyles applied to the root element.
title.SCIncubatorSuggestionWidget-titleStyles applied to the title element.
noResults.SCIncubatorSuggestionWidget-no-resultsStyles applied to the no results section.
showMore.SCIncubatorSuggestionWidget-show-moreStyles applied to the show more button element.
dialogRoot.SCIncubatorSuggestionWidget-dialog-rootStyles applied to the root dialog element.
endMessage.SCIncubatorSuggestionWidget-end-messageStyles applied to the end message element.

Parameters

ParameterTypeDescription
inPropsIncubatorSuggestionWidgetProps

Returns

JSX.Element

Source

packages/react-ui/src/components/IncubatorSuggestionWidget/IncubatorSuggestionWidget.tsx:107