UNPKG

@selfcommunity/react-ui

Version:

React UI Components to integrate a Community created with SelfCommunity Platform.

81 lines (72 loc) 3.25 kB
import { __rest } from "tslib"; import { jsx as _jsx } from "react/jsx-runtime"; import { LoadingButton } from '@mui/lab'; import { styled } from '@mui/material/styles'; import { useThemeProps } from '@mui/system'; import { EventService } from '@selfcommunity/api-services'; import { useSCFetchEvent, useSCFetchUser } from '@selfcommunity/react-core'; import { Logger } from '@selfcommunity/utils'; import classNames from 'classnames'; import { useCallback, useState } from 'react'; import { FormattedMessage } from 'react-intl'; import { SCOPE_SC_UI } from '../../constants/Errors'; const PREFIX = 'SCInviteUserEventButton'; const classes = { root: `${PREFIX}-root` }; const InviteButton = styled(LoadingButton, { name: PREFIX, slot: 'Root', overridesResolver: (_props, styles) => styles.root })(() => ({})); /** * > API documentation for the Community-JS Invite Event Button component. Learn about the available props and the CSS API. #### Import ```jsx import {InviteUserEventButton} from '@selfcommunity/react-ui'; ``` #### Component Name The name `SCInviteUserEventButton` can be used when providing style overrides in the theme. #### CSS |Rule Name|Global class|Description| |---|---|---| |root|.SCInviteUserEventButton-root|Styles applied to the root element.| * @param inProps */ export default function InviteUserEventButton(inProps) { // PROPS const props = useThemeProps({ props: inProps, name: PREFIX }); const { className, eventId, event, userId, user, handleInvitations } = props, rest = __rest(props, ["className", "eventId", "event", "userId", "user", "handleInvitations"]); // STATE const [invited, setInvited] = useState(true); //HOOKS const { scEvent } = useSCFetchEvent({ id: eventId, event }); const { scUser } = useSCFetchUser({ id: userId, user }); const handleInviteAction = useCallback(() => { setInvited(null); if (invited) { EventService.removeInviteEvent(scEvent.id, { users: [scUser.id] }) .then(() => { setInvited(false); handleInvitations === null || handleInvitations === void 0 ? void 0 : handleInvitations(true); }) .catch((_error) => { Logger.error(SCOPE_SC_UI, _error); }); } else { EventService.inviteOrAcceptEventRequest(scEvent.id, { users: [scUser.id] }) .then(() => { setInvited(true); handleInvitations === null || handleInvitations === void 0 ? void 0 : handleInvitations(false); }) .catch((_error) => { Logger.error(SCOPE_SC_UI, _error); }); } }, [scEvent, scUser, invited]); return (_jsx(InviteButton, Object.assign({ size: "small", variant: "outlined", onClick: handleInviteAction, loading: invited === null, className: classNames(classes.root, className) }, rest, { children: invited ? (_jsx(FormattedMessage, { defaultMessage: "ui.inviteUserEventButton.remove", id: "ui.inviteUserEventButton.remove" })) : (_jsx(FormattedMessage, { defaultMessage: "ui.inviteUserEventButton.invite", id: "ui.inviteUserEventButton.invite" })) }))); }