import { UserCurrencyComposer } from 'nitro-renderer'; import { FC, useCallback, useEffect, useMemo, useReducer } from 'react'; import { NotificationCenterEvent } from '../../events'; import { dispatchUiEvent } from '../../hooks/events'; import { SendMessageHook } from '../../hooks/messages/message-event'; import { GetConfiguration } from '../../utils/GetConfiguration'; import { PurseContextProvider } from './context/PurseContext'; import { CurrencyView } from './currency/CurrencyView'; import { PurseMessageHandler } from './PurseMessageHandler'; import { PurseViewProps } from './PurseView.types'; import { initialPurse, PurseReducer } from './reducers/PurseReducer'; import { SetLastCurrencies } from './utils/CurrencyHelper'; export const PurseView: FC = props => { const [ purseState, dispatchPurseState ] = useReducer(PurseReducer, initialPurse); const { currencies = [] } = purseState; const displayedCurrencies = useMemo(() => { return GetConfiguration('system.currency.types', []); }, []); useEffect(() => { SendMessageHook(new UserCurrencyComposer()); }, []); SetLastCurrencies(currencies); const toggleNotificationCenter = useCallback(() => { dispatchUiEvent(new NotificationCenterEvent(NotificationCenterEvent.TOGGLE_NOTIFICATION_CENTER)); }, []); return (
{ currencies && currencies.map((currency, index) => { if(displayedCurrencies.indexOf(currency.type) === -1) return null; return ; }) }
); }