You've already forked Epicnabbo-Catalogus-Updated-Daily
95 lines
4.1 KiB
TypeScript
95 lines
4.1 KiB
TypeScript
import { CreateLinkEvent, HabboClubLevelEnum } from '@nitrots/nitro-renderer';
|
|
import { FC, useMemo } from 'react';
|
|
import { FriendlyTime, GetConfigurationValue, LocalizeText } from '../../api';
|
|
import { Column, Flex, Grid, LayoutCurrencyIcon, Text } from '../../common';
|
|
import { usePurse } from '../../hooks';
|
|
import { CurrencyView } from './views/CurrencyView';
|
|
import { SeasonalView } from './views/SeasonalView';
|
|
|
|
export const PurseView: FC<{}> = props => {
|
|
const { purse = null, hcDisabled = false } = usePurse();
|
|
|
|
const displayedCurrencies = useMemo(() => GetConfigurationValue<number[]>('system.currency.types', []), []);
|
|
const currencyDisplayNumberShort = useMemo(() => GetConfigurationValue<boolean>('currency.display.number.short', false), []);
|
|
|
|
const getClubText = (() => {
|
|
if (!purse) return null;
|
|
|
|
const totalDays = ((purse.clubPeriods * 31) + purse.clubDays);
|
|
const minutesUntilExpiration = purse.minutesUntilExpiration;
|
|
|
|
if (purse.clubLevel === HabboClubLevelEnum.NO_CLUB) return LocalizeText('purse.clubdays.zero.amount.text');
|
|
else if ((minutesUntilExpiration > -1) && (minutesUntilExpiration < (60 * 24))) return FriendlyTime.shortFormat(minutesUntilExpiration * 60);
|
|
else return FriendlyTime.shortFormat(totalDays * 86400);
|
|
})();
|
|
|
|
const getCurrencyElements = (offset: number, limit: number = -1, seasonal: boolean = false) => {
|
|
if (!purse || !purse.activityPoints || !purse.activityPoints.size) return null;
|
|
|
|
const types = Array.from(purse.activityPoints.keys()).filter(type => (displayedCurrencies.indexOf(type) >= 0));
|
|
|
|
types.sort((a, b) => {
|
|
if (a === 0) return -1;
|
|
if (b === 0) return 1;
|
|
if (a === 5) return -1;
|
|
if (b === 5) return 1;
|
|
return a - b;
|
|
});
|
|
|
|
let count = 0;
|
|
|
|
while (count < offset) {
|
|
types.shift();
|
|
count++;
|
|
}
|
|
|
|
count = 0;
|
|
const elements: JSX.Element[] = [];
|
|
|
|
for (const type of types) {
|
|
if ((limit > -1) && (count === limit)) break;
|
|
|
|
if (seasonal) {
|
|
elements.push(<SeasonalView key={type} type={type} amount={purse.activityPoints.get(type)} />);
|
|
} else {
|
|
elements.push(<CurrencyView key={type} type={type} amount={purse.activityPoints.get(type)} short={currencyDisplayNumberShort} />);
|
|
}
|
|
|
|
count++;
|
|
}
|
|
|
|
return elements;
|
|
}
|
|
|
|
if (!purse) return null;
|
|
|
|
return (
|
|
<Column alignItems="end" className="nitro-purse-container" gap={0}>
|
|
<Flex className="nitro-purse rounded-bottom p-1">
|
|
<Grid fullWidth gap={1}>
|
|
<Column justifyContent="center" size={hcDisabled ? 10 : 6} gap={0}>
|
|
<CurrencyView type={-1} amount={purse.credits} short={currencyDisplayNumberShort} />
|
|
{getCurrencyElements(0, 2)}
|
|
</Column>
|
|
{!hcDisabled &&
|
|
<Column center pointer size={4} gap={1} className="nitro-purse-subscription rounded borderhccontent" onClick={event => CreateLinkEvent('habboUI/open/hccenter')}>
|
|
<LayoutCurrencyIcon type="hc" />
|
|
<Text variant="white">{getClubText}</Text>
|
|
</Column>}
|
|
<Column justifyContent="center" size={1} gap={0}>
|
|
<Flex center pointer fullHeight className="nitro-purse-button p-1 rounded coffecurrencybutton" onClick={event => CreateLinkEvent('help/show')}>
|
|
<i className="nitro-icon icon-help"/>
|
|
</Flex>
|
|
<Flex center pointer fullHeight className="nitro-purse-button p-1 rounded coffecurrencybutton" onClick={event => CreateLinkEvent('user-settings/toggle')}>
|
|
<i className="nitro-icon icon-cog"/>
|
|
</Flex>
|
|
</Column>
|
|
<Column justifyContent="center" size={11} gap={0}>
|
|
{getCurrencyElements(2, -1, true)}
|
|
</Column>
|
|
</Grid>
|
|
</Flex>
|
|
|
|
</Column>
|
|
);
|
|
} |