EventLocationWidget
Interfaces
EventLocationWidgetProps
Extends
VirtualScrollerItemProps
Indexable
[p
: string
]: any
Properties
Property | Type | Description | Inherited from |
---|---|---|---|
className? | string | Overrides or extends the styles applied to the component. Default null | - |
event? | SCEventType | Event Object Default null | - |
eventId? | string | number | Id of the event Default null | - |
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
EventLocationWidget()
EventLocationWidget(
inProps
):JSX.Element
API documentation for the Community-JS Group Info Widget component. Learn about the available props and the CSS API.
This component renders a widget containing the event info. Take a look at our demo component here
Import
import {EventLocationWidget} from '@selfcommunity/react-ui';
Component Name
The name SCEventLocationWidget
can be used when providing style overrides in the theme.
CSS
Rule Name | Global class | Description |
---|---|---|
root | .SCEventLocationWidget-root | Styles applied to the root element. |
title | .SCEventLocationWidget-title | Styles applied to the title element. |
map | .SCEventLocationWidget-map | Styles applied to the map element. |
locationTitle | .SCEventLocationWidget-location-title | Styles applied to the location title element. |
address | .SCEventLocationWidget-address | Styles applied to the address element. |
Parameters
Parameter | Type | Description |
---|---|---|
inProps | EventLocationWidgetProps |
Returns
JSX.Element
Source
packages/react-ui/src/components/EventLocationWidget/EventLocationWidget.tsx:82
EventLocationWidgetSkeleton()
EventLocationWidgetSkeleton():
JSX.Element
API documentation for the Community-JS Group Info Widget Skeleton component. Learn about the available props and the CSS API.
Import
import {EventLocationWidgetSkeleton} from '@selfcommunity/react-ui';
Component Name
The name SCEventLocationWidgetSkeleton-skeleton-root
can be used when providing style overrides in the theme.
CSS
Rule Name | Global class | Description |
---|---|---|
root | .SCEventLocationWidgetSkeleton-skeleton-root | Styles applied to the root element. |
root | .SCEventLocationWidgetSkeleton-skeleton-map | Styles applied to the map element. |
Returns
JSX.Element
Source
packages/react-ui/src/components/EventLocationWidget/Skeleton.tsx:38