UserConnectionsWidget
Interfaces
UserConnectionsWidgetProps
API documentation for the Community-JS Widget component. Learn about the available props and the CSS API.
Import
import {Widget} from '@selfcommunity/react-ui';
Component Name
The name SCWidget
can be used when providing style overrides in the theme.
CSS
Rule Name | Global class | Description |
---|---|---|
root | .SCWidget-root | Styles applied to the root element. |
Extends
VirtualScrollerItemProps
.WidgetProps
Indexable
[p
: string
]: any
Properties
Property | Type | Description | Inherited from |
---|---|---|---|
DialogProps? | BaseDialogProps | Props to spread to followers users dialog Default {} | - |
UserProps? | UserProps | Props to spread to single user object Default empty object | - |
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 | WidgetProps .className |
limit? | number | Limit the number of categories 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 |
user? | SCUserType | User Object Default null | - |
userId | number | The user id Default null | - |
Functions
UserConnectionsWidget()
UserConnectionsWidget(
inProps
):JSX.Element
API documentation for the Community-JS User Connections Widget component. Learn about the available props and the CSS API.
This component renders the list of connections of the given user.
Import
import {UserConnectionsWidget} from '@selfcommunity/react-ui';
Component Name
The name SCUserConnectionsWidget
can be used when providing style overrides in the theme.
CSS
Rule Name | Global class | Description |
---|---|---|
root | .SCUserConnectionsWidget-root | Styles applied to the root element. |
title | .SCUserConnectionsWidget-title | Styles applied to the title element. |
noResults | .SCUserConnectionsWidget-no-results | Styles applied to no results section. |
connectionsItem | .SCUserConnectionsWidget-connections-item | Styles applied to connection item element. |
showMore | .SCUserConnectionsWidget-show-more | Styles applied to show more button element. |
Parameters
Parameter | Type | Description |
---|---|---|
inProps | UserConnectionsWidgetProps |
Returns
JSX.Element
Source
packages/react-ui/src/components/UserConnectionsWidget/UserConnectionsWidget.tsx:125
UserConnectionsWidgetSkeleton()
UserConnectionsWidgetSkeleton(
props
):JSX.Element
API documentation for the Community-JS User Connections Widget Skeleton component. Learn about the available props and the CSS API.
Import
import {UserConnectionsSkeleton} from '@selfcommunity/react-ui';
Component Name
The name SCUserConnectionsWidget-skeleton-root
can be used when providing style overrides in the theme.
CSS
Rule Name | Global class | Description |
---|---|---|
root | .SCUserConnectionsWidget-skeleton-root | Styles applied to the root element. |
Parameters
Parameter | Type |
---|---|
props | WidgetProps |
Returns
JSX.Element
Source
packages/react-ui/src/components/UserConnectionsWidget/Skeleton.tsx:37