Skip to main content

CategoryTrendingUsersWidget

Interfaces

CategoryTrendingUsersWidgetProps

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 NameGlobal classDescription
root.SCWidget-rootStyles applied to the root element.

Extends

Indexable

[p: string]: any

Properties

PropertyTypeDescriptionInherited from
DialogProps?BaseDialogPropsProps to spread to followers users dialog

Default
{}
-
UserProps?UserPropsProps to spread to single user object

Default
empty object
-
autoHide?booleanHides this component

Default
false
-
cacheStrategy?CacheStrategiesCaching strategies

Default
CacheStrategies.CACHE_FIRST
-
categoryId?numberCategory id

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

Default
null
WidgetProps.className
limit?numberLimit the number of categories 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

CategoryTrendingPeopleWidgetSkeleton()

CategoryTrendingPeopleWidgetSkeleton(props): JSX.Element

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

Import

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

Component Name

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

CSS

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

Parameters

ParameterType
propsWidgetProps

Returns

JSX.Element

Source

packages/react-ui/src/components/CategoryTrendingUsersWidget/Skeleton.tsx:39


CategoryTrendingUsersWidget()

CategoryTrendingUsersWidget(inProps): JSX.Element

API documentation for the Community-JS Trending Users Widget component. Learn about the available props and the CSS API.

This component renders a specific category's trending people list. Take a look at our demo component here

Import

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

Component Name

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

CSS

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

Parameters

ParameterTypeDescription
inPropsCategoryTrendingUsersWidgetProps

Returns

JSX.Element

Source

packages/react-ui/src/components/CategoryTrendingUsersWidget/CategoryTrendingUsersWidget.tsx:124