Merge branch 'duckietm:main' into feat/navigator-p4-visual-wave1

This commit is contained in:
Life
2026-05-30 09:38:44 +02:00
committed by GitHub
45 changed files with 1400 additions and 754 deletions
+1 -1
View File
@@ -27,7 +27,7 @@
"avatar.asset.effect.url": "${asset.url}/effect/%libname%.nitro", "avatar.asset.effect.url": "${asset.url}/effect/%libname%.nitro",
"furni.asset.url": "${asset.url}/furniture/%libname%.nitro", "furni.asset.url": "${asset.url}/furniture/%libname%.nitro",
"furni.asset.icon.url": "${hof.furni.url}/icons/%libname%%param%_icon.png", "furni.asset.icon.url": "${hof.furni.url}/icons/%libname%%param%_icon.png",
"pet.asset.url": "${asset.url}/pets/%libname%.nitro", "pet.asset.url": "${asset.url}/pet/%libname%.nitro",
"generic.asset.url": "${asset.url}/generic/%libname%.nitro", "generic.asset.url": "${asset.url}/generic/%libname%.nitro",
"badge.asset.url": "${image.library.url}album1584/%badgename%.gif", "badge.asset.url": "${image.library.url}album1584/%badgename%.gif",
"radio.url": "${gamedata.url}/radio-stations.json5?t=%timestamp%", "radio.url": "${gamedata.url}/radio-stations.json5?t=%timestamp%",
+1 -23
View File
@@ -27,8 +27,8 @@
"guides.enabled": true, "guides.enabled": true,
"housekeeping.enabled": true, "housekeeping.enabled": true,
"toolbar.hide.quests": true, "toolbar.hide.quests": true,
"catalog.style.new": true,
"show.google.ads": false, "show.google.ads": false,
"catalog.classic.style": false,
"loginview": { "loginview": {
"images": { "images": {
"background": "${asset.url}/c_images/reception/stretch_blue.png", "background": "${asset.url}/c_images/reception/stretch_blue.png",
@@ -39,28 +39,6 @@
"right": "${asset.url}/c_images/reception/US_right.png", "right": "${asset.url}/c_images/reception/US_right.png",
"right.repeat": "${asset.url}/c_images/reception/US_top_right.png" "right.repeat": "${asset.url}/c_images/reception/US_top_right.png"
}, },
"widgets": {
"slot.1.widget": "promoarticle",
"slot.1.conf": {},
"slot.2.widget": "widgetcontainer",
"slot.2.conf": {
"image": "${image.library.url}web_promo_small/spromo_Canal_Bundle.png",
"texts": "2021NitroPromo",
"btnLink": ""
},
"slot.3.widget": "",
"slot.3.conf": {},
"slot.4.widget": "",
"slot.4.conf": {},
"slot.5.widget": "",
"slot.5.conf": {},
"slot.6.widget": "",
"slot.6.conf": {
"campaign": ""
},
"slot.7.widget": "",
"slot.7.conf": {}
}
}, },
"navigator.room.models": [ "navigator.room.models": [
{ {
+5
View File
@@ -31,6 +31,11 @@ const preloadUrl = async (url: string): Promise<void> =>
{ {
if(!url) return; if(!url) return;
// Split gamedata URLs are directories (end with '/'); fetching them as a
// file just 404s and wastes a connection at startup. The real split loader
// handles those — only warm up actual file URLs here.
if(url.split('?')[0].split('#')[0].endsWith('/')) return;
try try
{ {
const response = await fetch(url, { cache: 'force-cache' }); const response = await fetch(url, { cache: 'force-cache' });
+8
View File
@@ -27,8 +27,16 @@ export class PageLocalization implements IPageLocalization
if(!imageName || !imageName.length) return null; if(!imageName || !imageName.length) return null;
// Already a full URL (any extension) -> use it directly.
if(/^https?:\/\//i.test(imageName)) return imageName;
let assetUrl = GetConfigurationValue<string>('catalog.asset.image.url'); let assetUrl = GetConfigurationValue<string>('catalog.asset.image.url');
// The template forces ".gif" (.../%name%.gif). If the image name
// already carries its own extension (png/jpg/webp/gif), don't append
// the forced .gif so non-gif catalog images work too.
if(/\.[a-z0-9]+$/i.test(imageName)) assetUrl = assetUrl.replace(/\.gif(?=$|\?)/i, '');
assetUrl = assetUrl.replace('%name%', imageName); assetUrl = assetUrl.replace('%name%', imageName);
return assetUrl; return assetUrl;
+1
View File
@@ -4,4 +4,5 @@ export class LocalStorageKeys
public static CATALOG_SKIP_PURCHASE_CONFIRMATION: string = 'catalogSkipPurchaseConfirmation'; public static CATALOG_SKIP_PURCHASE_CONFIRMATION: string = 'catalogSkipPurchaseConfirmation';
public static CHAT_WINDOW_ENABLED: string = 'chatWindowEnabled'; public static CHAT_WINDOW_ENABLED: string = 'chatWindowEnabled';
public static CHAT_TRANSLATION_SETTINGS: string = 'chatTranslationSettings'; public static CHAT_TRANSLATION_SETTINGS: string = 'chatTranslationSettings';
public static CATALOG_CLASSIC_STYLE: string = 'catalogClassicStyle';
} }
+48 -8
View File
@@ -1,9 +1,9 @@
import { AddLinkEventTracker, ILinkEventTracker, RemoveLinkEventTracker } from '@nitrots/nitro-renderer'; import { AddLinkEventTracker, ILinkEventTracker, RemoveLinkEventTracker } from '@nitrots/nitro-renderer';
import { FC, useEffect } from 'react'; import { FC, useEffect, useState } from 'react';
import { FaCog, FaEdit, FaEye, FaEyeSlash, FaPlus, FaTrash } from 'react-icons/fa'; import { FaBars, FaCog, FaEdit, FaEye, FaEyeSlash, FaPlus, FaTrash } from 'react-icons/fa';
import { CatalogType, GetConfigurationValue, LocalizeText } from '../../api'; import { CatalogType, GetConfigurationValue, LocalizeShortNumber, LocalizeText } from '../../api';
import { Column, Grid, NitroCardContentView, NitroCardHeaderView, NitroCardTabsItemView, NitroCardTabsView, NitroCardView } from '../../common'; import { Column, Grid, LayoutCurrencyIcon, NitroCardContentView, NitroCardHeaderView, NitroCardTabsItemView, NitroCardTabsView, NitroCardView } from '../../common';
import { useCatalogActions, useCatalogData, useCatalogUiState, useHasPermission } from '../../hooks'; import { useCatalogActions, useCatalogData, useCatalogUiState, useHasPermission, usePurse } from '../../hooks';
import { CatalogAdminProvider, useCatalogAdmin } from './CatalogAdminContext'; import { CatalogAdminProvider, useCatalogAdmin } from './CatalogAdminContext';
import { CatalogAdminOfferEditView } from './views/admin/CatalogAdminOfferEditView'; import { CatalogAdminOfferEditView } from './views/admin/CatalogAdminOfferEditView';
import { CatalogAdminPageEditView } from './views/admin/CatalogAdminPageEditView'; import { CatalogAdminPageEditView } from './views/admin/CatalogAdminPageEditView';
@@ -31,6 +31,9 @@ const CatalogClassicViewInner: FC<{}> = () =>
const loading = catalogAdmin?.loading ?? false; const loading = catalogAdmin?.loading ?? false;
const isMod = useHasPermission('acc_catalogfurni'); const isMod = useHasPermission('acc_catalogfurni');
const [ mobileMenuOpen, setMobileMenuOpen ] = useState(false);
const { purse = null } = usePurse();
const displayedCurrencies = GetConfigurationValue<number[]>('system.currency.types', []);
const buildersClubHeaderStyle = (currentType === CatalogType.BUILDER) const buildersClubHeaderStyle = (currentType === CatalogType.BUILDER)
? { borderColor: '#d79d2e', borderBottomColor: '#000', background: 'linear-gradient(180deg, #d89f2d 0%, #c68515 100%)' } ? { borderColor: '#d79d2e', borderBottomColor: '#000', background: 'linear-gradient(180deg, #d89f2d 0%, #c68515 100%)' }
: undefined; : undefined;
@@ -121,6 +124,42 @@ const CatalogClassicViewInner: FC<{}> = () =>
{ isVisible && { isVisible &&
<NitroCardView classNames={ [ 'nitro-catalog-classic-window' ] } isResizable={ false } uniqueKey="catalog"> <NitroCardView classNames={ [ 'nitro-catalog-classic-window' ] } isResizable={ false } uniqueKey="catalog">
<NitroCardHeaderView className={ currentType === CatalogType.BUILDER ? 'builders-club-card-header' : '' } headerText={ LocalizeText('catalog.title') } onCloseClick={ () => setIsVisible(false) } style={ buildersClubHeaderStyle } /> <NitroCardHeaderView className={ currentType === CatalogType.BUILDER ? 'builders-club-card-header' : '' } headerText={ LocalizeText('catalog.title') } onCloseClick={ () => setIsVisible(false) } style={ buildersClubHeaderStyle } />
<div className="nitro-catalog-classic-mobile-header">
{ isMod &&
<div className="nitro-catalog-classic-mobile-burger">
<button className="nitro-catalog-classic-burger-btn" onClick={ () => setMobileMenuOpen(value => !value) }>
<FaBars />
</button>
{ mobileMenuOpen &&
<div className="nitro-catalog-classic-burger-menu">
<button onClick={ () =>
{
setAdminMode(!adminMode); setMobileMenuOpen(false);
} }>
{ adminMode ? 'Exit Admin' : 'Admin' }
</button>
{ adminMode &&
<button disabled={ loading } onClick={ () =>
{
publishCatalog(); setMobileMenuOpen(false);
} }>
{ loading ? '...' : 'Publish' }
</button> }
</div> }
</div> }
<div className="nitro-catalog-classic-mobile-currency">
<div className="nitro-catalog-classic-coin">
<span>{ LocalizeShortNumber(purse?.credits ?? 0) }</span>
<LayoutCurrencyIcon type={ -1 } />
</div>
{ displayedCurrencies.map(type => (
<div key={ type } className="nitro-catalog-classic-coin">
<span>{ LocalizeShortNumber(purse?.activityPoints?.get(type) ?? 0) }</span>
<LayoutCurrencyIcon type={ type } />
</div>
)) }
</div>
</div>
{ adminMode && { adminMode &&
<div className="nitro-catalog-classic-admin-banner flex items-center justify-between text-[10px] font-bold px-3 py-0.5 uppercase tracking-wider"> <div className="nitro-catalog-classic-admin-banner flex items-center justify-between text-[10px] font-bold px-3 py-0.5 uppercase tracking-wider">
<span>Admin Mode</span> <span>Admin Mode</span>
@@ -148,7 +187,7 @@ const CatalogClassicViewInner: FC<{}> = () =>
} }> } }>
<div className={ `flex items-center gap-1 ${ isHidden ? 'opacity-40' : '' }` }> <div className={ `flex items-center gap-1 ${ isHidden ? 'opacity-40' : '' }` }>
<CatalogIconView icon={ child.iconId } /> <CatalogIconView icon={ child.iconId } />
<span className="truncate">{ child.localization }</span> <span className="nitro-catalog-classic-tab-label truncate">{ child.localization }</span>
{ adminMode && isHidden && <FaEyeSlash className="text-[8px] text-danger ml-1" /> } { adminMode && isHidden && <FaEyeSlash className="text-[8px] text-danger ml-1" /> }
{ adminMode && { adminMode &&
<div className="flex items-center gap-0.5 ml-1" onClick={ e => e.stopPropagation() }> <div className="flex items-center gap-0.5 ml-1" onClick={ e => e.stopPropagation() }>
@@ -172,7 +211,7 @@ const CatalogClassicViewInner: FC<{}> = () =>
); );
}) } }) }
{ isMod && { isMod &&
<NitroCardTabsItemView isActive={ adminMode } onClick={ () => setAdminMode(!adminMode) }> <NitroCardTabsItemView classNames={ [ 'nitro-catalog-classic-admin-tab' ] } isActive={ adminMode } onClick={ () => setAdminMode(!adminMode) }>
<FaCog className={ `text-[10px] ${ adminMode ? 'animate-spin' : '' }` } style={ adminMode ? { animationDuration: '3s' } : {} } /> <FaCog className={ `text-[10px] ${ adminMode ? 'animate-spin' : '' }` } style={ adminMode ? { animationDuration: '3s' } : {} } />
</NitroCardTabsItemView> } </NitroCardTabsItemView> }
</NitroCardTabsView> </NitroCardTabsView>
@@ -213,7 +252,8 @@ const CatalogClassicViewInner: FC<{}> = () =>
<div className="nitro-catalog-classic-layout-header-shell"> <div className="nitro-catalog-classic-layout-header-shell">
<CatalogBreadcrumbView /> <CatalogBreadcrumbView />
<div className="nitro-catalog-classic-layout-hero"> <div className="nitro-catalog-classic-layout-hero">
{ !!currentPage?.localization?.getImage(0) && <img src={ currentPage.localization.getImage(0) } /> } { /* info_duckets renders its own logo in the body (BcInfoView) — don't duplicate it in the hero */ }
{ (currentPage?.layoutCode !== 'info_duckets') && !!currentPage?.localization?.getImage(0) && <img src={ currentPage.localization.getImage(0) } /> }
</div> </div>
</div> </div>
<div className="nitro-catalog-classic-layout-container"> <div className="nitro-catalog-classic-layout-container">
+8 -4
View File
@@ -37,6 +37,10 @@ const CatalogModernViewInner: FC<{}> = () =>
const buildersClubHeaderStyle = (currentType === CatalogType.BUILDER) const buildersClubHeaderStyle = (currentType === CatalogType.BUILDER)
? { borderColor: '#d79d2e', borderBottomColor: '#000', background: 'linear-gradient(180deg, #d89f2d 0%, #c68515 100%)' } ? { borderColor: '#d79d2e', borderBottomColor: '#000', background: 'linear-gradient(180deg, #d89f2d 0%, #c68515 100%)' }
: undefined; : undefined;
// Desktop = fixed 780x520. On mobile the window clamps below the viewport so
// it reads as a dialog (with margins) instead of filling the whole phone
// screen — applies to both the normal catalog and the Builders Club.
const catalogCardSize = 'w-[780px] h-[520px] max-w-[96vw] max-h-[72vh] sm:max-w-[100vw] sm:max-h-[92vh]';
useEffect(() => useEffect(() =>
{ {
@@ -122,7 +126,7 @@ const CatalogModernViewInner: FC<{}> = () =>
return ( return (
<> <>
{ isVisible && { isVisible &&
<NitroCardView className="nitro-catalog w-[780px] h-[520px]" uniqueKey="catalog"> <NitroCardView className={ `nitro-catalog ${ catalogCardSize }` } uniqueKey="catalog">
<NitroCardHeaderView className={ currentType === CatalogType.BUILDER ? 'builders-club-card-header' : '' } headerText={ LocalizeText('catalog.title') } onCloseClick={ () => setIsVisible(false) } style={ buildersClubHeaderStyle } /> <NitroCardHeaderView className={ currentType === CatalogType.BUILDER ? 'builders-club-card-header' : '' } headerText={ LocalizeText('catalog.title') } onCloseClick={ () => setIsVisible(false) } style={ buildersClubHeaderStyle } />
<NitroCardContentView classNames={ [ 'p-0!', 'overflow-hidden!' ] }> <NitroCardContentView classNames={ [ 'p-0!', 'overflow-hidden!' ] }>
{ /* Admin banner */ } { /* Admin banner */ }
@@ -141,7 +145,7 @@ const CatalogModernViewInner: FC<{}> = () =>
<CatalogBuildersClubStatusView /> <CatalogBuildersClubStatusView />
<div className="flex min-h-0 flex-1"> <div className="flex min-h-0 flex-1">
{ /* === LEFT SIDEBAR === */ } { /* === LEFT SIDEBAR === */ }
<div className="group/rail flex flex-col w-[52px] hover:w-[175px] min-w-[52px] bg-card-grid-item border-r-2 border-card-grid-item-border py-1.5 gap-px overflow-y-auto overflow-x-hidden transition-[width] duration-200 ease-in-out"> <div className="group/rail flex flex-col w-[52px] sm:hover:w-[175px] min-w-[52px] bg-card-grid-item border-r-2 border-card-grid-item-border py-1.5 gap-px overflow-y-auto overflow-x-hidden transition-[width] duration-200 ease-in-out [scrollbar-width:none] [&::-webkit-scrollbar]:hidden">
{ /* Favorites toggle */ } { /* Favorites toggle */ }
<div <div
@@ -279,7 +283,7 @@ const CatalogModernViewInner: FC<{}> = () =>
: <span className="text-muted">{ LocalizeText('catalog.title') }</span> } : <span className="text-muted">{ LocalizeText('catalog.title') }</span> }
</div> </div>
<div className="w-[180px] shrink-0"> <div className="w-[110px] sm:w-[180px] shrink-0">
<CatalogSearchView /> <CatalogSearchView />
</div> </div>
@@ -301,7 +305,7 @@ const CatalogModernViewInner: FC<{}> = () =>
</div> </div>
: <> : <>
{ !navigationHidden && activeNodes && activeNodes.length > 0 && { !navigationHidden && activeNodes && activeNodes.length > 0 &&
<div className="w-[170px] min-w-[170px] border-r-2 border-card-grid-item-border bg-card-grid-item overflow-y-auto py-1"> <div className="w-[120px] min-w-[120px] sm:w-[170px] sm:min-w-[170px] border-r-2 border-card-grid-item-border bg-card-grid-item overflow-y-auto py-1">
<CatalogNavigationView node={ activeNodes[0] } /> <CatalogNavigationView node={ activeNodes[0] } />
</div> } </div> }
<div className="flex-1 overflow-auto p-2 nitro-card-content-shell"> <div className="flex-1 overflow-auto p-2 nitro-card-content-shell">
+7 -4
View File
@@ -1,15 +1,18 @@
import { FC } from 'react'; import { FC } from 'react';
import { GetConfigurationValue } from '../../api'; import { useCatalogClassicStyle, useCatalogData } from '../../hooks';
import { useCatalogData } from '../../hooks';
import { CatalogClassicView } from './CatalogClassicView'; import { CatalogClassicView } from './CatalogClassicView';
import { CatalogModernView } from './CatalogModernView'; import { CatalogModernView } from './CatalogModernView';
export const CatalogView: FC<{}> = () => export const CatalogView: FC<{}> = () =>
{ {
const { catalogLocalizationVersion = 0 } = useCatalogData(); const { catalogLocalizationVersion = 0 } = useCatalogData();
const useNewStyle = GetConfigurationValue<boolean>('catalog.style.new', false); const [ catalogClassicStyle ] = useCatalogClassicStyle();
if(useNewStyle) return ( // Default = upstream rebuilt catalog (CatalogClassicView, latest release theme).
// The "stile classico" toggle (or global catalog.classic.style flag) switches
// to the Hippiehotel.nl catalog (CatalogModernView, self-contained tailwind).
// Both the normal catalog and the Builders Club follow this toggle.
if(catalogClassicStyle) return (
<> <>
<div className="hidden" data-catalog-localization-version={ catalogLocalizationVersion } /> <div className="hidden" data-catalog-localization-version={ catalogLocalizationVersion } />
<CatalogModernView /> <CatalogModernView />
@@ -67,8 +67,14 @@ export const CatalogAdminPageEditView: FC<{}> = () =>
{ {
if(!editingPageData || !targetNode) return; if(!editingPageData || !targetNode) return;
setCaption(targetNode.localization || ''); // The server appends " (pageId)" to the caption for mods/admins (see
setCaptionSave(targetNode.pageName || targetNode.localization || ''); // CatalogPagesListComposer). Strip that exact suffix before seeding the
// edit field, otherwise saving folds the id back into the stored
// caption and it multiplies on every edit ("Wired (1114) (1114) ...").
const rawCaption = (targetNode.localization || '').replace(new RegExp(`\\s*\\(${ targetNode.pageId }\\)\\s*$`), '');
setCaption(rawCaption);
setCaptionSave(targetNode.pageName || rawCaption);
setCatalogMode(currentType === CatalogType.BUILDER ? 'BUILDER' : 'NORMAL'); setCatalogMode(currentType === CatalogType.BUILDER ? 'BUILDER' : 'NORMAL');
setPageLayout(currentPage?.layoutCode || 'default_3x3'); setPageLayout(currentPage?.layoutCode || 'default_3x3');
setIconImage(targetNode.iconId ?? 0); setIconImage(targetNode.iconId ?? 0);
@@ -0,0 +1,36 @@
import { FC, useEffect } from 'react';
import { SanitizeHtml } from '../../../../../api';
import { CatalogLayoutProps } from './CatalogLayout.types';
// Info/landing layout: a logo box on top (image scaled to fit the available
// space, no crop) and a smaller box below with the page text in black.
// Logo = page headline image (getImage(0)), text = page text 1 (getText(0)),
// set from catalog admin (Gestione -> Modifica pagina). Hides the (empty)
// navigation sidebar so the content uses the full width.
export const CatalogLayoutBcInfoView: FC<CatalogLayoutProps> = props =>
{
const { page = null, hideNavigation = null } = props;
const logo = page?.localization?.getImage(0) || '';
const text = page?.localization?.getText(0) || '';
useEffect(() =>
{
hideNavigation?.();
}, [ page, hideNavigation ]);
return (
<div className="flex flex-col h-full gap-2">
<div className="flex-1 min-h-0 bg-white rounded border border-card-grid-item-border overflow-hidden flex items-center justify-center">
{ logo
? <img alt="" className="max-w-full max-h-full object-contain" src={ logo } />
: <span className="text-muted text-[11px]">Logo imposta l'immagine headline da Gestione</span> }
</div>
<div className="shrink-0 max-h-[32%] bg-white rounded border border-card-grid-item-border p-3 overflow-auto">
<div
className="text-black text-[12px] leading-snug"
dangerouslySetInnerHTML={ { __html: SanitizeHtml(text) } } />
</div>
</div>
);
};
@@ -1,5 +1,5 @@
import { FC } from 'react'; import { FC } from 'react';
import { FaEdit, FaPlus } from 'react-icons/fa'; import { FaEdit, FaPlus, FaPowerOff, FaSyncAlt } from 'react-icons/fa';
import { GetConfigurationValue, LocalizeText, ProductTypeEnum, SanitizeHtml } from '../../../../../api'; import { GetConfigurationValue, LocalizeText, ProductTypeEnum, SanitizeHtml } from '../../../../../api';
import { Text } from '../../../../../common'; import { Text } from '../../../../../common';
import { useCatalogData } from '../../../../../hooks'; import { useCatalogData } from '../../../../../hooks';
@@ -17,13 +17,12 @@ import { CatalogLayoutProps } from './CatalogLayout.types';
export const CatalogLayoutDefaultView: FC<CatalogLayoutProps> = props => export const CatalogLayoutDefaultView: FC<CatalogLayoutProps> = props =>
{ {
const { page = null } = props; const { page = null } = props;
const { currentOffer = null, currentPage = null } = useCatalogData(); const { currentOffer = null, currentPage = null, roomPreviewer = null } = useCatalogData();
const catalogAdmin = useCatalogAdmin(); const catalogAdmin = useCatalogAdmin();
const adminMode = catalogAdmin?.adminMode ?? false; const adminMode = catalogAdmin?.adminMode ?? false;
return ( return (
<div className="nitro-catalog-classic-default-layout flex flex-col h-full gap-2"> <div className="nitro-catalog-classic-default-layout flex flex-col h-full gap-2">
{ /* Admin: quick actions */ }
{ adminMode && !catalogAdmin.editingPageData && { adminMode && !catalogAdmin.editingPageData &&
<div className="flex gap-2 nitro-catalog-classic-default-admin"> <div className="flex gap-2 nitro-catalog-classic-default-admin">
<button <button
@@ -42,23 +41,24 @@ export const CatalogLayoutDefaultView: FC<CatalogLayoutProps> = props =>
<FaPlus className="text-[10px]" /> { LocalizeText('catalog.admin.offer.new') } <FaPlus className="text-[10px]" /> { LocalizeText('catalog.admin.offer.new') }
</button> </button>
</div> } </div> }
{ /* Product detail card */ }
{ currentOffer && { currentOffer &&
<div className="nitro-catalog-classic-offer-panel flex gap-0 overflow-hidden"> <div className="nitro-catalog-classic-offer-panel flex gap-0 shrink-0">
{ /* Preview area */ }
<div className="nitro-catalog-classic-offer-preview relative flex items-center justify-center"> <div className="nitro-catalog-classic-offer-preview relative flex items-center justify-center">
{ (currentOffer.product.productType !== ProductTypeEnum.BADGE) && { (currentOffer.product.productType !== ProductTypeEnum.BADGE) &&
<> <>
<button className="nitro-catalog-classic-preview-btn nitro-catalog-classic-preview-rotate" onClick={ () => roomPreviewer?.changeRoomObjectDirection() }>
<FaSyncAlt /> Rotate
</button>
<button className="nitro-catalog-classic-preview-btn nitro-catalog-classic-preview-state" onClick={ () => roomPreviewer?.changeRoomObjectState() }>
<FaPowerOff /> Toggle State
</button>
<CatalogViewProductWidgetView /> <CatalogViewProductWidgetView />
<CatalogAddOnBadgeWidgetView className="bg-muted rounded bottom-1 right-1 absolute" /> <CatalogAddOnBadgeWidgetView className="bg-muted rounded bottom-1 right-1 absolute" />
</> } </> }
{ (currentOffer.product.productType === ProductTypeEnum.BADGE) && { (currentOffer.product.productType === ProductTypeEnum.BADGE) &&
<CatalogAddOnBadgeWidgetView className="scale-2" /> } <CatalogAddOnBadgeWidgetView className="scale-2" /> }
</div> </div>
{ /* Product info + purchase */ }
<div className="nitro-catalog-classic-offer-info flex flex-col flex-1 min-w-0 gap-2"> <div className="nitro-catalog-classic-offer-info flex flex-col flex-1 min-w-0 gap-2">
{ /* Title row */ }
<div> <div>
<div className="flex items-start justify-between gap-2"> <div className="flex items-start justify-between gap-2">
<Text className="text-[13px]! font-bold text-dark leading-tight">{ currentOffer.localizationName }</Text> <Text className="text-[13px]! font-bold text-dark leading-tight">{ currentOffer.localizationName }</Text>
@@ -77,19 +77,16 @@ export const CatalogLayoutDefaultView: FC<CatalogLayoutProps> = props =>
</div> } </div> }
<CatalogLimitedItemWidgetView /> <CatalogLimitedItemWidgetView />
</div> </div>
{ /* Price */ }
<CatalogTotalPriceWidget /> <CatalogTotalPriceWidget />
{ /* Spinner */ }
<CatalogSpinnerWidgetView /> <CatalogSpinnerWidgetView />
{ /* Actions */ } <div className="nitro-catalog-classic-offer-actions flex gap-1.5">
<div className="flex gap-1.5 mt-auto">
<CatalogPurchaseWidgetView /> <CatalogPurchaseWidgetView />
</div> </div>
</div> </div>
</div> } </div> }
{ !currentOffer && { !currentOffer &&
<div className="nitro-catalog-classic-welcome flex items-center gap-3"> <div className="nitro-catalog-classic-welcome flex items-center gap-3 shrink-0">
{ !!page.localization.getImage(1) && { !!page.localization.getImage(1) &&
<img className="w-[70px] h-[70px] object-contain rounded shrink-0" src={ page.localization.getImage(1) } /> } <img className="w-[70px] h-[70px] object-contain rounded shrink-0" src={ page.localization.getImage(1) } /> }
<Text className="text-[11px]! text-muted" dangerouslySetInnerHTML={ { __html: SanitizeHtml(page.localization.getText(0)) } } /> <Text className="text-[11px]! text-muted" dangerouslySetInnerHTML={ { __html: SanitizeHtml(page.localization.getText(0)) } } />
@@ -58,9 +58,11 @@ export const CatalogLayoutTrophiesView: FC<CatalogLayoutProps> = props =>
</button> </button>
</div> } </div> }
{ /* Selected trophy card */ } { /* Selected trophy card. shrink-0 + no overflow-hidden so the
Buy button stays inside the panel even when the grid below
holds many trophies. */ }
{ currentOffer { currentOffer
? <div className="flex gap-0 bg-white rounded border-2 border-warning/40 overflow-hidden" style={ { boxShadow: '0 0 8px rgba(255,193,7,0.15)' } }> ? <div className="flex gap-0 bg-white rounded border-2 border-warning/40 shrink-0" style={ { boxShadow: '0 0 8px rgba(255,193,7,0.15)' } }>
{ /* Preview */ } { /* Preview */ }
<div className="w-[120px] min-w-[120px] relative flex items-center justify-center border-r-2 border-warning/30" style={ { background: 'linear-gradient(180deg, #fff9e6 0%, #fff3cc 100%)' } }> <div className="w-[120px] min-w-[120px] relative flex items-center justify-center border-r-2 border-warning/30" style={ { background: 'linear-gradient(180deg, #fff9e6 0%, #fff3cc 100%)' } }>
{ (currentOffer.product.productType !== ProductTypeEnum.BADGE) { (currentOffer.product.productType !== ProductTypeEnum.BADGE)
@@ -90,7 +92,7 @@ export const CatalogLayoutTrophiesView: FC<CatalogLayoutProps> = props =>
<CatalogTotalPriceWidget /> <CatalogTotalPriceWidget />
{ !canPurchase && { !canPurchase &&
<span className="text-[9px] text-warning italic">{ LocalizeText('catalog.trophies.write.hint') }</span> } <span className="text-[9px] text-warning italic">{ LocalizeText('catalog.trophies.write.hint') }</span> }
<div className="flex gap-1.5 mt-auto"> <div className="flex gap-1.5">
<CatalogPurchaseWidgetView /> <CatalogPurchaseWidgetView />
</div> </div>
</div> </div>
@@ -1,6 +1,7 @@
import { ICatalogPage } from '../../../../../api'; import { ICatalogPage } from '../../../../../api';
import { CatalogLayoutProps } from './CatalogLayout.types'; import { CatalogLayoutProps } from './CatalogLayout.types';
import { CatalogLayoutBadgeDisplayView } from './CatalogLayoutBadgeDisplayView'; import { CatalogLayoutBadgeDisplayView } from './CatalogLayoutBadgeDisplayView';
import { CatalogLayoutBcInfoView } from './CatalogLayoutBcInfoView';
import { CatalogLayoutBuildersClubBuyView } from './CatalogLayoutBuildersClubBuyView'; import { CatalogLayoutBuildersClubBuyView } from './CatalogLayoutBuildersClubBuyView';
import { CatalogLayoutColorGroupingView } from './CatalogLayoutColorGroupingView'; import { CatalogLayoutColorGroupingView } from './CatalogLayoutColorGroupingView';
import { CatalogLayoutCustomPrefixView } from './CatalogLayoutCustomPrefixView'; import { CatalogLayoutCustomPrefixView } from './CatalogLayoutCustomPrefixView';
@@ -34,6 +35,8 @@ export const GetCatalogLayout = (page: ICatalogPage, hideNavigation: () => void)
{ {
case 'frontpage_featured': case 'frontpage_featured':
return null; return null;
case 'info_duckets':
return <CatalogLayoutBcInfoView { ...layoutProps } />;
case 'frontpage4': case 'frontpage4':
return <CatalogLayoutFrontpage4View { ...layoutProps } />; return <CatalogLayoutFrontpage4View { ...layoutProps } />;
case 'pets': case 'pets':
@@ -240,7 +240,7 @@ export const CatalogPurchaseWidgetView: FC<CatalogPurchaseWidgetViewProps> = pro
return <Button variant="danger">{ LocalizeText('generic.failed') + ' - ' + LocalizeText('catalog.alert.limited_edition_sold_out.title') }</Button>; return <Button variant="danger">{ LocalizeText('generic.failed') + ' - ' + LocalizeText('catalog.alert.limited_edition_sold_out.title') }</Button>;
case CatalogPurchaseState.NONE: case CatalogPurchaseState.NONE:
default: default:
return <Button disabled={ (purchaseOptions.extraParamRequired && (!purchaseOptions.extraData || !purchaseOptions.extraData.length)) } onClick={ event => setPurchaseState(CatalogPurchaseState.CONFIRM) }>{ LocalizeText('catalog.purchase_confirmation.' + (currentOffer.isRentOffer ? 'rent' : 'buy')) }</Button>; return <Button variant="success" disabled={ (purchaseOptions.extraParamRequired && (!purchaseOptions.extraData || !purchaseOptions.extraData.length)) } onClick={ event => setPurchaseState(CatalogPurchaseState.CONFIRM) }>{ LocalizeText('catalog.purchase_confirmation.' + (currentOffer.isRentOffer ? 'rent' : 'buy')) }</Button>;
} }
}; };
@@ -19,6 +19,8 @@ export const CatalogViewProductWidgetView: FC<{}> = props =>
if(!product) return; if(!product) return;
roomPreviewer.reset(false); roomPreviewer.reset(false);
roomPreviewer.updateObjectRoom('default', 'default', 'default');
roomPreviewer.updateRoomWallsAndFloorVisibility(true, true);
switch(product.productType) switch(product.productType)
{ {
@@ -68,6 +70,8 @@ export const CatalogViewProductWidgetView: FC<{}> = props =>
case ProductTypeEnum.WALL: { case ProductTypeEnum.WALL: {
if(!product.furnitureData) return; if(!product.furnitureData) return;
roomPreviewer.updateRoomWallsAndFloorVisibility(true, true);
switch(product.furnitureData.specialType) switch(product.furnitureData.specialType)
{ {
case FurniCategory.FLOOR: case FurniCategory.FLOOR:
+24 -6
View File
@@ -1,5 +1,6 @@
import { AddLinkEventTracker, BadgePointLimitsEvent, GetLocalizationManager, GetRoomEngine, ILinkEventTracker, IRoomSession, RemoveLinkEventTracker, RoomEngineObjectEvent, RoomEngineObjectPlacedEvent, RoomPreviewer, RoomSessionEvent } from '@nitrots/nitro-renderer'; import { AddLinkEventTracker, BadgePointLimitsEvent, GetLocalizationManager, GetRoomEngine, ILinkEventTracker, IRoomSession, RemoveLinkEventTracker, RoomEngineObjectEvent, RoomEngineObjectPlacedEvent, RoomPreviewer, RoomSessionEvent } from '@nitrots/nitro-renderer';
import { FC, useEffect, useState } from 'react'; import { FC, ReactNode, useEffect, useState } from 'react';
import { FaAward, FaCouch, FaPaw, FaRobot, FaTag } from 'react-icons/fa';
import { GroupItem, LocalizeText, UnseenItemCategory, isObjectMoverRequested, setObjectMoverRequested } from '../../api'; import { GroupItem, LocalizeText, UnseenItemCategory, isObjectMoverRequested, setObjectMoverRequested } from '../../api';
import { NitroCardHeaderView, NitroCardTabsItemView, NitroCardTabsView, NitroCardView } from '../../common'; import { NitroCardHeaderView, NitroCardTabsItemView, NitroCardTabsView, NitroCardView } from '../../common';
import { useInventoryBadges, useInventoryFurni, useInventoryPrefixes, useInventoryTrade, useInventoryUnseenTracker, useMessageEvent, useNitroEvent } from '../../hooks'; import { useInventoryBadges, useInventoryFurni, useInventoryPrefixes, useInventoryTrade, useInventoryUnseenTracker, useMessageEvent, useNitroEvent } from '../../hooks';
@@ -18,7 +19,21 @@ const TAB_PETS: string = 'inventory.furni.tab.pets';
const TAB_BADGES: string = 'inventory.badges'; const TAB_BADGES: string = 'inventory.badges';
const TAB_PREFIXES: string = 'inventory.prefixes'; const TAB_PREFIXES: string = 'inventory.prefixes';
const TABS = [ TAB_FURNITURE, TAB_PETS, TAB_BADGES, TAB_PREFIXES, TAB_BOTS ]; const TABS = [ TAB_FURNITURE, TAB_PETS, TAB_BADGES, TAB_PREFIXES, TAB_BOTS ];
// Maps an optional link code (inventory/show/<code>) to a tab so other views
// (e.g. the profile "Change Badges" button) can deep-link to a specific tab.
const TAB_BY_CODE: Record<string, string> = {
furni: TAB_FURNITURE, furniture: TAB_FURNITURE,
pets: TAB_PETS, badges: TAB_BADGES,
prefixes: TAB_PREFIXES, bots: TAB_BOTS
};
const UNSEEN_CATEGORIES = [ UnseenItemCategory.FURNI, UnseenItemCategory.PET, UnseenItemCategory.BADGE, UnseenItemCategory.PREFIX, UnseenItemCategory.BOT ]; const UNSEEN_CATEGORIES = [ UnseenItemCategory.FURNI, UnseenItemCategory.PET, UnseenItemCategory.BADGE, UnseenItemCategory.PREFIX, UnseenItemCategory.BOT ];
const TAB_ICONS: Record<string, ReactNode> = {
[TAB_FURNITURE]: <FaCouch />,
[TAB_PETS]: <FaPaw />,
[TAB_BADGES]: <FaAward />,
[TAB_PREFIXES]: <FaTag />,
[TAB_BOTS]: <FaRobot />
};
export const InventoryView: FC<{}> = props => export const InventoryView: FC<{}> = props =>
{ {
@@ -86,12 +101,14 @@ export const InventoryView: FC<{}> = props =>
{ {
case 'show': case 'show':
setIsVisible(true); setIsVisible(true);
if(parts[2] && TAB_BY_CODE[parts[2]]) setCurrentTab(TAB_BY_CODE[parts[2]]);
return; return;
case 'hide': case 'hide':
setIsVisible(false); setIsVisible(false);
return; return;
case 'toggle': case 'toggle':
setIsVisible(prevValue => !prevValue); setIsVisible(prevValue => !prevValue);
if(parts[2] && TAB_BY_CODE[parts[2]]) setCurrentTab(TAB_BY_CODE[parts[2]]);
return; return;
} }
}, },
@@ -129,13 +146,13 @@ export const InventoryView: FC<{}> = props =>
return ( return (
<> <>
<NitroCardView className="w-[528px] h-[420px] min-w-[528px] min-h-[420px]" uniqueKey="inventory"> <NitroCardView className="nitro-inventory-window w-[528px] h-[420px] min-w-[528px] min-h-[420px]" uniqueKey="inventory">
<NitroCardHeaderView <NitroCardHeaderView
headerText={ LocalizeText('inventory.title') } headerText={ LocalizeText('inventory.title') }
onCloseClick={ onClose } /> onCloseClick={ onClose } />
{ !isTrading && { !isTrading &&
<> <>
<NitroCardTabsView> <NitroCardTabsView classNames={ [ 'nitro-inventory-tabs-shell' ] }>
{ TABS.map((name, index) => { TABS.map((name, index) =>
{ {
return ( return (
@@ -144,12 +161,13 @@ export const InventoryView: FC<{}> = props =>
count={ getCount(UNSEEN_CATEGORIES[index]) } count={ getCount(UNSEEN_CATEGORIES[index]) }
isActive={ (currentTab === name) } isActive={ (currentTab === name) }
onClick={ event => setCurrentTab(name) }> onClick={ event => setCurrentTab(name) }>
{ LocalizeText(name) } <span className="nitro-inventory-tab-icon" title={ LocalizeText(name) }>{ TAB_ICONS[name] }</span>
<span className="nitro-inventory-tab-label">{ LocalizeText(name) }</span>
</NitroCardTabsItemView> </NitroCardTabsItemView>
); );
}) } }) }
</NitroCardTabsView> </NitroCardTabsView>
<div className="flex flex-col overflow-hidden bg-[#DFDFDF] p-2 h-full gap-2"> <div className="nitro-inventory-body flex flex-col overflow-hidden p-2 h-full gap-2">
{ showFilter && { showFilter &&
<InventoryCategoryFilterView <InventoryCategoryFilterView
badgeCodes={ badgeCodes } badgeCodes={ badgeCodes }
@@ -175,7 +193,7 @@ export const InventoryView: FC<{}> = props =>
</div> </div>
</> } </> }
{ isTrading && { isTrading &&
<div className="flex flex-col overflow-hidden bg-[#DFDFDF] p-2 h-full"> <div className="nitro-inventory-body flex flex-col overflow-hidden p-2 h-full">
<InventoryTradeView cancelTrade={ onClose } /> <InventoryTradeView cancelTrade={ onClose } />
</div> } </div> }
</NitroCardView> </NitroCardView>
@@ -87,7 +87,7 @@ export const InventoryCategoryFilterView: FC<InventoryCategoryFilterViewProps> =
return ( return (
<div <div
className="flex gap-1 rounded p-1 bg-[#C9C9C9] shrink-0" className="nitro-inventory-filter-bar flex gap-1 rounded p-1 shrink-0"
style={ { width: currentTab === TAB_BADGES ? '320px' : '100%' } }> style={ { width: currentTab === TAB_BADGES ? '320px' : '100%' } }>
<div className="relative flex flex-1 items-center"> <div className="relative flex flex-1 items-center">
<NitroInput <NitroInput
@@ -69,8 +69,10 @@ export const InventoryBotView: FC<{
<div className="flex flex-col col-span-7 gap-1 overflow-hidden"> <div className="flex flex-col col-span-7 gap-1 overflow-hidden">
<InfiniteGrid<IBotItem> <InfiniteGrid<IBotItem>
columnCount={ 4 } columnCount={ 4 }
estimateSize={ 110 }
itemRender={ item => <InventoryBotItemView botItem={ item } /> } itemRender={ item => <InventoryBotItemView botItem={ item } /> }
items={ botItems } /> items={ botItems }
rowGap={ 4 } />
</div> </div>
<div className="flex flex-col col-span-5"> <div className="flex flex-col col-span-5">
<div className="relative flex flex-col"> <div className="relative flex flex-col">
@@ -80,7 +82,7 @@ export const InventoryBotView: FC<{
<div className="flex flex-col justify-between gap-2 grow"> <div className="flex flex-col justify-between gap-2 grow">
<span className="truncate grow">{ selectedBot.botData.name }</span> <span className="truncate grow">{ selectedBot.botData.name }</span>
{ !!roomSession && { !!roomSession &&
<NitroButton onClick={ event => attemptBotPlacement(selectedBot) }> <NitroButton className="nitro-inventory-btn-place" onClick={ event => attemptBotPlacement(selectedBot) }>
{ LocalizeText('inventory.furni.placetoroom') } { LocalizeText('inventory.furni.placetoroom') }
</NitroButton> } </NitroButton> }
</div> } </div> }
@@ -1,7 +1,7 @@
import { InfiniteGrid } from '@layout/InfiniteGrid'; import { InfiniteGrid } from '@layout/InfiniteGrid';
import { GetRoomEngine, GetSessionDataManager, IRoomSession, RoomObjectVariable, RoomPreviewer, Vector3d } from '@nitrots/nitro-renderer'; import { GetRoomEngine, GetSessionDataManager, IRoomSession, RoomObjectVariable, RoomPreviewer, Vector3d } from '@nitrots/nitro-renderer';
import { FC, useEffect, useState } from 'react'; import { FC, useEffect, useState } from 'react';
import { FaTrashAlt } from 'react-icons/fa'; import { FaPowerOff, FaSyncAlt, FaTrashAlt } from 'react-icons/fa';
import { DispatchUiEvent, FurniCategory, GroupItem, LocalizeText, UnseenItemCategory, attemptItemPlacement } from '../../../../api'; import { DispatchUiEvent, FurniCategory, GroupItem, LocalizeText, UnseenItemCategory, attemptItemPlacement } from '../../../../api';
import { LayoutLimitedEditionCompactPlateView, LayoutRarityLevelView, LayoutRoomPreviewerView } from '../../../../common'; import { LayoutLimitedEditionCompactPlateView, LayoutRarityLevelView, LayoutRoomPreviewerView } from '../../../../common';
import { CatalogPostMarketplaceOfferEvent, DeleteItemConfirmEvent } from '../../../../events'; import { CatalogPostMarketplaceOfferEvent, DeleteItemConfirmEvent } from '../../../../events';
@@ -49,22 +49,24 @@ export const InventoryFurnitureView: FC<{
if(!furnitureItem) return; if(!furnitureItem) return;
const roomEngine = GetRoomEngine();
let wallType = roomEngine.getRoomInstanceVariable<string>(roomEngine.activeRoomId, RoomObjectVariable.ROOM_WALL_TYPE);
let floorType = roomEngine.getRoomInstanceVariable<string>(roomEngine.activeRoomId, RoomObjectVariable.ROOM_FLOOR_TYPE);
let landscapeType = roomEngine.getRoomInstanceVariable<string>(roomEngine.activeRoomId, RoomObjectVariable.ROOM_LANDSCAPE_TYPE);
wallType = (wallType && wallType.length) ? wallType : '101';
floorType = (floorType && floorType.length) ? floorType : '101';
landscapeType = (landscapeType && landscapeType.length) ? landscapeType : '1.1';
roomPreviewer.reset(false); roomPreviewer.reset(false);
roomPreviewer.updateObjectRoom(floorType, wallType, landscapeType);
roomPreviewer.updateRoomWallsAndFloorVisibility(true, true);
if((furnitureItem.category === FurniCategory.WALL_PAPER) || (furnitureItem.category === FurniCategory.FLOOR) || (furnitureItem.category === FurniCategory.LANDSCAPE)) const isRoomDecoration = (furnitureItem.category === FurniCategory.WALL_PAPER) || (furnitureItem.category === FurniCategory.FLOOR) || (furnitureItem.category === FurniCategory.LANDSCAPE);
if(isRoomDecoration)
{ {
const roomEngine = GetRoomEngine();
let wallType = roomEngine.getRoomInstanceVariable<string>(roomEngine.activeRoomId, RoomObjectVariable.ROOM_WALL_TYPE);
let floorType = roomEngine.getRoomInstanceVariable<string>(roomEngine.activeRoomId, RoomObjectVariable.ROOM_FLOOR_TYPE);
let landscapeType = roomEngine.getRoomInstanceVariable<string>(roomEngine.activeRoomId, RoomObjectVariable.ROOM_LANDSCAPE_TYPE);
wallType = (wallType && wallType.length) ? wallType : '101';
floorType = (floorType && floorType.length) ? floorType : '101';
landscapeType = (landscapeType && landscapeType.length) ? landscapeType : '1.1';
roomPreviewer.updateRoomWallsAndFloorVisibility(true, true);
floorType = ((furnitureItem.category === FurniCategory.FLOOR) ? selectedItem.stuffData.getLegacyString() : floorType); floorType = ((furnitureItem.category === FurniCategory.FLOOR) ? selectedItem.stuffData.getLegacyString() : floorType);
wallType = ((furnitureItem.category === FurniCategory.WALL_PAPER) ? selectedItem.stuffData.getLegacyString() : wallType); wallType = ((furnitureItem.category === FurniCategory.WALL_PAPER) ? selectedItem.stuffData.getLegacyString() : wallType);
landscapeType = ((furnitureItem.category === FurniCategory.LANDSCAPE) ? selectedItem.stuffData.getLegacyString() : landscapeType); landscapeType = ((furnitureItem.category === FurniCategory.LANDSCAPE) ? selectedItem.stuffData.getLegacyString() : landscapeType);
@@ -77,17 +79,20 @@ export const InventoryFurnitureView: FC<{
if(data) roomPreviewer.addWallItemIntoRoom(data.id, new Vector3d(90, 0, 0), data.customParams); if(data) roomPreviewer.addWallItemIntoRoom(data.id, new Vector3d(90, 0, 0), data.customParams);
} }
return;
}
roomPreviewer.updateObjectRoom('default', 'default', 'default');
roomPreviewer.updateRoomWallsAndFloorVisibility(true, true);
if(selectedItem.isWallItem)
{
roomPreviewer.addWallItemIntoRoom(selectedItem.type, new Vector3d(90), furnitureItem.stuffData.getLegacyString());
} }
else else
{ {
if(selectedItem.isWallItem) roomPreviewer.addFurnitureIntoRoom(selectedItem.type, new Vector3d(90), selectedItem.stuffData, (furnitureItem.extra.toString()));
{
roomPreviewer.addWallItemIntoRoom(selectedItem.type, new Vector3d(90), furnitureItem.stuffData.getLegacyString());
}
else
{
roomPreviewer.addFurnitureIntoRoom(selectedItem.type, new Vector3d(90), selectedItem.stuffData, (furnitureItem.extra.toString()));
}
} }
}, [ roomPreviewer, selectedItem ]); }, [ roomPreviewer, selectedItem ]);
@@ -129,6 +134,15 @@ export const InventoryFurnitureView: FC<{
<div className="flex flex-col col-span-5"> <div className="flex flex-col col-span-5">
<div className="relative flex flex-col"> <div className="relative flex flex-col">
<LayoutRoomPreviewerView height={ 140 } roomPreviewer={ roomPreviewer } /> <LayoutRoomPreviewerView height={ 140 } roomPreviewer={ roomPreviewer } />
{ selectedItem &&
<>
<button className="nitro-inventory-preview-btn nitro-inventory-preview-rotate" onClick={ () => roomPreviewer?.changeRoomObjectDirection() }>
<FaSyncAlt /> Rotate
</button>
<button className="nitro-inventory-preview-btn nitro-inventory-preview-state" onClick={ () => roomPreviewer?.changeRoomObjectState() }>
<FaPowerOff /> Toggle State
</button>
</> }
{ selectedItem && { selectedItem &&
<NitroButton <NitroButton
className="bg-danger! hover:bg-danger/80! absolute bottom-2 inset-e-2 p-1" className="bg-danger! hover:bg-danger/80! absolute bottom-2 inset-e-2 p-1"
@@ -147,11 +161,11 @@ export const InventoryFurnitureView: FC<{
<span className="text-xs truncate">{ selectedItem.description }</span> } <span className="text-xs truncate">{ selectedItem.description }</span> }
<div className="flex flex-col gap-1"> <div className="flex flex-col gap-1">
{ !!roomSession && { !!roomSession &&
<NitroButton onClick={ event => attemptItemPlacement(selectedItem) }> <NitroButton className="nitro-inventory-btn-place" onClick={ event => attemptItemPlacement(selectedItem) }>
{ LocalizeText('inventory.furni.placetoroom') } { LocalizeText('inventory.furni.placetoroom') }
</NitroButton> } </NitroButton> }
{ selectedItem.isSellable && { selectedItem.isSellable &&
<NitroButton onClick={ event => attemptPlaceMarketplaceOffer(selectedItem) }> <NitroButton className="nitro-inventory-btn-sell" onClick={ event => attemptPlaceMarketplaceOffer(selectedItem) }>
{ LocalizeText('inventory.marketplace.sell') } { LocalizeText('inventory.marketplace.sell') }
</NitroButton> } </NitroButton> }
</div> </div>
@@ -84,6 +84,8 @@ export const InventoryPetView: FC<{
<div className="flex flex-col col-span-7 gap-1 overflow-hidden"> <div className="flex flex-col col-span-7 gap-1 overflow-hidden">
<InfiniteGrid<IPetItem> <InfiniteGrid<IPetItem>
columnCount={ 6 } columnCount={ 6 }
estimateSize={ 46 }
itemMinWidth={ 46 }
itemRender={ item => <InventoryPetItemView petItem={ item } /> } itemRender={ item => <InventoryPetItemView petItem={ item } /> }
items={ petItems } /> items={ petItems } />
</div> </div>
@@ -101,7 +103,7 @@ export const InventoryPetView: FC<{
<div className="flex flex-col justify-between gap-2 grow"> <div className="flex flex-col justify-between gap-2 grow">
<span className="text-sm truncate grow">{ selectedPet.petData.name }</span> <span className="text-sm truncate grow">{ selectedPet.petData.name }</span>
{ !!roomSession && { !!roomSession &&
<NitroButton onClick={ event => attemptPetPlacement(selectedPet) }> <NitroButton className="nitro-inventory-btn-place" onClick={ event => attemptPetPlacement(selectedPet) }>
{ LocalizeText('inventory.furni.placetoroom') } { LocalizeText('inventory.furni.placetoroom') }
</NitroButton> } </NitroButton> }
</div> } </div> }
+2 -2
View File
@@ -24,7 +24,7 @@ export const NavigatorView: FC<{}> = props =>
{ {
const { topLevelContext, topLevelContexts, navigatorData, navigatorSearches } = useNavigatorData(); const { topLevelContext, topLevelContexts, navigatorData, navigatorSearches } = useNavigatorData();
const { searchResult, isFetching } = useNavigatorSearch(); const { searchResult, isFetching } = useNavigatorSearch();
const { isVisible, isCreatorOpen, isRoomInfoOpen, isRoomLinkOpen, isOpenSavesSearches, needsInit } = useNavigatorUiState(); const { isVisible, isCreatorOpen, isRoomInfoOpen, isRoomLinkOpen, isOpenSavesSearches, needsInit, currentTabCode } = useNavigatorUiState();
const elementRef = useRef<HTMLDivElement>(null); const elementRef = useRef<HTMLDivElement>(null);
useNitroEvent<RoomSessionEvent>(RoomSessionEvent.CREATED, event => useNitroEvent<RoomSessionEvent>(RoomSessionEvent.CREATED, event =>
@@ -124,7 +124,7 @@ export const NavigatorView: FC<{}> = props =>
{ topLevelContexts && topLevelContexts.length > 0 && topLevelContexts.map((context, index) => { topLevelContexts && topLevelContexts.length > 0 && topLevelContexts.map((context, index) =>
<NitroCard.TabItem <NitroCard.TabItem
key={ index } key={ index }
isActive={ topLevelContext === context && !isCreatorOpen } isActive={ (currentTabCode ? currentTabCode === context.code : topLevelContext === context) && !isCreatorOpen }
onClick={ () => useNavigatorUiStore.getState().setTab(context.code) }> onClick={ () => useNavigatorUiStore.getState().setTab(context.code) }>
{ LocalizeText('navigator.toplevelview.' + context.code) } { LocalizeText('navigator.toplevelview.' + context.code) }
</NitroCard.TabItem>) } </NitroCard.TabItem>) }
+1 -1
View File
@@ -76,7 +76,7 @@ export const RadioView: FC<{}> = () =>
<div className="mt-0.5 flex items-center gap-1.5"> <div className="mt-0.5 flex items-center gap-1.5">
{ selectedPlaying && { selectedPlaying &&
<span className="flex items-center gap-1 text-[9px] font-bold uppercase tracking-wide text-sky-400"> <span className="flex items-center gap-1 text-[9px] font-bold uppercase tracking-wide text-sky-400">
<span className="h-1.5 w-1.5 rounded-full bg-sky-400" /> Live <span className="h-1.5 w-1.5 rounded-full bg-sky-400" /> { LocalizeText('radio.live') }
</span> } </span> }
{ selected?.genre && { selected?.genre &&
<span className="truncate text-[10px] text-white/45">{ selected.genre }</span> } <span className="truncate text-[10px] text-white/45">{ selected.genre }</span> }
+81 -17
View File
@@ -1,10 +1,12 @@
import { AddLinkEventTracker, GetRoomEngine, GetSessionDataManager, ILinkEventTracker, IRareValue, RemoveLinkEventTracker } from '@nitrots/nitro-renderer'; import { AddLinkEventTracker, GetRoomEngine, GetSessionDataManager, ILinkEventTracker, IRareValue, RemoveLinkEventTracker } from '@nitrots/nitro-renderer';
import { FC, useEffect, useMemo, useState } from 'react'; import { FC, useEffect, useMemo, useRef, useState } from 'react';
import { LocalizeFormattedNumber, LocalizeText } from '../../api'; import { LocalizeFormattedNumber, LocalizeText } from '../../api';
import { Column, Flex, LayoutCurrencyIcon, LayoutImage, Text } from '../../common'; import { Column, Flex, LayoutCurrencyIcon, LayoutImage, Text } from '../../common';
import { useRareValues } from '../../hooks'; import { useRareValues } from '../../hooks';
import { NitroCard, NitroInput } from '../../layout'; import { NitroCard, NitroInput } from '../../layout';
const PAGE_SIZE = 50;
interface RareValueRow interface RareValueRow
{ {
spriteId: number; spriteId: number;
@@ -17,7 +19,10 @@ export const RareValuesView: FC<{}> = () =>
{ {
const [ isVisible, setIsVisible ] = useState(false); const [ isVisible, setIsVisible ] = useState(false);
const [ searchValue, setSearchValue ] = useState(''); const [ searchValue, setSearchValue ] = useState('');
const [ visibleCount, setVisibleCount ] = useState(PAGE_SIZE);
const { values = null, loaded = false } = useRareValues(); const { values = null, loaded = false } = useRareValues();
const scrollRef = useRef<HTMLDivElement>(null);
const sentinelRef = useRef<HTMLDivElement>(null);
useEffect(() => useEffect(() =>
{ {
@@ -79,35 +84,94 @@ export const RareValuesView: FC<{}> = () =>
return rows.filter(row => row.name.toLocaleLowerCase().includes(query)); return rows.filter(row => row.name.toLocaleLowerCase().includes(query));
}, [ rows, searchValue ]); }, [ rows, searchValue ]);
// Reset paging when the underlying list changes (typed in search, data loaded).
useEffect(() =>
{
setVisibleCount(PAGE_SIZE);
if(scrollRef.current) scrollRef.current.scrollTop = 0;
}, [ filtered ]);
// Infinite scroll: grow visibleCount by PAGE_SIZE whenever the sentinel
// enters the viewport. The root is the scroll container so the trigger
// fires reliably inside an in-app modal (no document scroll).
useEffect(() =>
{
if(!isVisible) return;
if(visibleCount >= filtered.length) return;
const sentinel = sentinelRef.current;
const root = scrollRef.current;
if(!sentinel || !root) return;
const observer = new IntersectionObserver(entries =>
{
if(entries.some(entry => entry.isIntersecting))
{
setVisibleCount(prev => Math.min(prev + PAGE_SIZE, filtered.length));
}
}, { root, rootMargin: '120px 0px' });
observer.observe(sentinel);
return () => observer.disconnect();
}, [ isVisible, visibleCount, filtered.length ]);
if(!isVisible) return null; if(!isVisible) return null;
const visibleRows = filtered.slice(0, visibleCount);
const hasMore = visibleCount < filtered.length;
return ( return (
<NitroCard className="w-[420px] h-[480px]" uniqueKey="rare-values"> <NitroCard className="w-[460px] h-[520px]" uniqueKey="rare-values">
<NitroCard.Header <NitroCard.Header
headerText={ LocalizeText('rarevalues.title') } headerText={ LocalizeText('rarevalues.title') }
onCloseClick={ () => setIsVisible(false) } /> onCloseClick={ () => setIsVisible(false) } />
<NitroCard.Content> <NitroCard.Content>
<Column gap={ 2 } className="h-full p-1"> <Column gap={ 2 } className="h-full p-2">
<NitroInput <Flex alignItems="center" gap={ 2 } className="rounded border border-black/10 bg-white px-2 py-1 shadow-inner">
placeholder={ LocalizeText('generic.search') } <span className="text-black/40">🔍</span>
value={ searchValue } <NitroInput
onChange={ event => setSearchValue(event.target.value) } /> placeholder={ LocalizeText('generic.search') }
<Column gap={ 0 } overflow="auto" className="grow"> value={ searchValue }
onChange={ event => setSearchValue(event.target.value) }
className="grow !border-0 !bg-transparent !p-0 !shadow-none focus:!ring-0" />
</Flex>
{ loaded &&
<Flex alignItems="center" justifyContent="between" className="px-1 text-[11px] text-black/55">
<span>{ filtered.length } { LocalizeText('rarevalues.title').toLowerCase() }</span>
{ hasMore && <span>{ visibleRows.length } / { filtered.length }</span> }
</Flex> }
<div
ref={ scrollRef }
className="grow overflow-auto rounded border border-black/10 bg-gradient-to-b from-[#f6f8fb] to-[#eaf1f6] shadow-inner">
{ !loaded && { !loaded &&
<Text center className="mt-2 text-black/60">{ LocalizeText('rarevalues.loading') }</Text> } <div className="p-6 text-center">
<Text className="text-black/55">{ LocalizeText('rarevalues.loading') }</Text>
</div> }
{ (loaded && !filtered.length) && { (loaded && !filtered.length) &&
<Text center className="mt-2 text-black/60">{ LocalizeText('rarevalues.empty') }</Text> } <div className="p-6 text-center">
{ filtered.map(row => ( <Text className="text-black/55">{ LocalizeText('rarevalues.empty') }</Text>
<Flex key={ row.spriteId } alignItems="center" gap={ 2 } className="border-b border-black/10 py-1.5 hover:bg-black/5"> </div> }
<LayoutImage imageUrl={ row.iconUrl } className="h-10 w-10 shrink-0 bg-contain bg-center bg-no-repeat" /> { visibleRows.map((row, index) => (
<Text truncate className="grow text-[#1f2d34]">{ row.name }</Text> <Flex
<Flex alignItems="center" gap={ 1 } className="shrink-0"> key={ row.spriteId }
<Text bold textEnd className="text-[#2f6f95]">{ LocalizeFormattedNumber(row.value.points) }</Text> alignItems="center"
gap={ 2 }
className={ `border-b border-black/[0.06] px-2 py-1.5 transition-colors hover:bg-[#cfe4f1] ${ index % 2 ? 'bg-white/60' : 'bg-[#e9f1f7]' }` }>
<div className="flex h-11 w-11 shrink-0 items-center justify-center rounded border border-black/10 bg-white shadow-sm">
<LayoutImage imageUrl={ row.iconUrl } className="h-9 w-9 bg-contain bg-center bg-no-repeat" />
</div>
<Text truncate className="grow text-[13px] font-medium text-[#1f2d34]">{ row.name }</Text>
<Flex alignItems="center" gap={ 1 } className="shrink-0 rounded-full bg-white/80 px-2 py-0.5 shadow-sm">
<Text bold textEnd className="text-[13px] text-[#2f6f95]">{ LocalizeFormattedNumber(row.value.points) }</Text>
<LayoutCurrencyIcon type={ row.value.pointsType } /> <LayoutCurrencyIcon type={ row.value.pointsType } />
</Flex> </Flex>
</Flex> </Flex>
)) } )) }
</Column> { hasMore &&
<div ref={ sentinelRef } className="flex items-center justify-center py-3">
<Text small className="text-black/45">{ LocalizeText('rarevalues.loading.more') }</Text>
</div> }
</div>
</Column> </Column>
</NitroCard.Content> </NitroCard.Content>
</NitroCard> </NitroCard>
@@ -0,0 +1,147 @@
import { GetRoomEngine, RoomObjectCategory, RoomObjectVariable } from '@nitrots/nitro-renderer';
import { FC, PointerEvent as ReactPointerEvent, useCallback, useEffect, useRef, useState } from 'react';
import { LocalizeText } from '../../../../../api';
import { Button, NitroCardContentView, NitroCardHeaderView, NitroCardView } from '../../../../../common';
const PAD_W = 230;
const PAD_H = 150;
// How many offset units one pixel of drag represents.
const UNITS_PER_PX = 1.5;
interface Props
{
roomId: number;
objectId: number;
isWallItem: boolean;
initialX: number;
initialY: number;
initialZ: number;
initialScale: number;
onClose: () => void;
onSave: (x: number, y: number, z: number, scale: number) => void;
}
export const ImagePositionEditorView: FC<Props> = props =>
{
const { roomId, objectId, isWallItem, initialX, initialY, initialZ, initialScale, onClose, onSave } = props;
const [ x, setX ] = useState(initialX);
const [ y, setY ] = useState(initialY);
const [ z, setZ ] = useState(initialZ);
const [ scale, setScale ] = useState(initialScale || 100);
const padRef = useRef<HTMLDivElement>(null);
const draggingRef = useRef(false);
const category = isWallItem ? RoomObjectCategory.WALL : RoomObjectCategory.FLOOR;
// Local-only live preview: set the branding model values directly. The model
// bumps its update counter so the visualization re-renders next frame.
// Nothing is sent to the server until Save.
const applyLive = useCallback((nx: number, ny: number, nz: number, nScale: number) =>
{
const roomObject = GetRoomEngine().getRoomObject(roomId, objectId, category);
if(!roomObject?.model) return;
roomObject.model.setValue(RoomObjectVariable.FURNITURE_BRANDING_OFFSET_X, nx);
roomObject.model.setValue(RoomObjectVariable.FURNITURE_BRANDING_OFFSET_Y, ny);
roomObject.model.setValue(RoomObjectVariable.FURNITURE_BRANDING_OFFSET_Z, nz);
roomObject.model.setValue(RoomObjectVariable.FURNITURE_BRANDING_SCALE, nScale);
}, [ roomId, objectId, category ]);
useEffect(() => { applyLive(x, y, z, scale); }, [ x, y, z, scale, applyLive ]);
const setFromPointer = useCallback((clientX: number, clientY: number) =>
{
const rect = padRef.current?.getBoundingClientRect();
if(!rect) return;
const cx = rect.left + (rect.width / 2);
const cy = rect.top + (rect.height / 2);
setX(Math.round((clientX - cx) * UNITS_PER_PX));
setY(Math.round((clientY - cy) * UNITS_PER_PX));
}, []);
const onPointerDown = (event: ReactPointerEvent<HTMLDivElement>) =>
{
draggingRef.current = true;
padRef.current?.setPointerCapture(event.pointerId);
setFromPointer(event.clientX, event.clientY);
};
const onPointerMove = (event: ReactPointerEvent<HTMLDivElement>) =>
{
if(draggingRef.current) setFromPointer(event.clientX, event.clientY);
};
const onPointerUp = (event: ReactPointerEvent<HTMLDivElement>) =>
{
draggingRef.current = false;
padRef.current?.releasePointerCapture?.(event.pointerId);
};
const cancel = () =>
{
applyLive(initialX, initialY, initialZ, initialScale || 100);
onClose();
};
const save = () =>
{
onSave(x, y, z, scale);
onClose();
};
const dotLeft = (PAD_W / 2) + (x / UNITS_PER_PX);
const dotTop = (PAD_H / 2) + (y / UNITS_PER_PX);
const clampedLeft = Math.max(0, Math.min(PAD_W, dotLeft));
const clampedTop = Math.max(0, Math.min(PAD_H, dotTop));
return (
<NitroCardView className="no-resize" uniqueKey="image-position-editor" theme="primary-slim">
<NitroCardHeaderView headerText={ LocalizeText('image.position.editor.title') } onCloseClick={ cancel } />
<NitroCardContentView>
<div className="flex flex-col gap-2">
<span className="text-[11px] text-black/60">{ LocalizeText('image.position.editor.hint') }</span>
<div
ref={ padRef }
onPointerDown={ onPointerDown }
onPointerMove={ onPointerMove }
onPointerUp={ onPointerUp }
className="relative cursor-crosshair self-center rounded border border-black/30 bg-[#1b2733]"
style={ { width: PAD_W, height: PAD_H } }>
{ /* center crosshair */ }
<div className="pointer-events-none absolute left-1/2 top-0 h-full w-px -translate-x-1/2 bg-white/10" />
<div className="pointer-events-none absolute left-0 top-1/2 h-px w-full -translate-y-1/2 bg-white/10" />
{ /* draggable dot */ }
<div
className="pointer-events-none absolute h-3 w-3 -translate-x-1/2 -translate-y-1/2 rounded-full bg-sky-400 shadow-[0_0_6px_rgba(56,189,248,0.8)] ring-2 ring-white/70"
style={ { left: clampedLeft, top: clampedTop } } />
</div>
<div className="flex items-center gap-2">
<span className="w-12 text-[11px] text-black/70">{ LocalizeText('image.position.editor.scale') }</span>
<input type="range" min={ 10 } max={ 500 } step={ 1 } value={ scale } onChange={ e => setScale(e.target.valueAsNumber || 100) } className="grow" />
<span className="w-12 text-right text-[11px] tabular-nums text-black/70">{ (scale / 100).toFixed(2) }x</span>
</div>
<div className="grid grid-cols-3 gap-2">
<label className="flex flex-col gap-0.5 text-[11px] text-black/70">{ LocalizeText('image.position.editor.offsetx') }
<input type="number" value={ x } onChange={ e => setX(e.target.valueAsNumber || 0) } className="form-control form-control-sm" />
</label>
<label className="flex flex-col gap-0.5 text-[11px] text-black/70">{ LocalizeText('image.position.editor.offsety') }
<input type="number" value={ y } onChange={ e => setY(e.target.valueAsNumber || 0) } className="form-control form-control-sm" />
</label>
<label className="flex flex-col gap-0.5 text-[11px] text-black/70">{ LocalizeText('image.position.editor.offsetz') }
<input type="number" value={ z } onChange={ e => setZ(e.target.valueAsNumber || 0) } className="form-control form-control-sm" />
</label>
</div>
<div className="flex justify-end gap-2">
<Button variant="secondary" onClick={ cancel }>{ LocalizeText('image.position.editor.cancel') }</Button>
<Button variant="success" onClick={ save }>{ LocalizeText('save') }</Button>
</div>
</div>
</NitroCardContentView>
</NitroCardView>
);
};
@@ -6,6 +6,7 @@ import { AvatarInfoFurni, GetGroupInformation, LocalizeText, SendMessageComposer
import { Button, Column, Flex, LayoutBadgeImageView, LayoutCurrencyIcon, LayoutLimitedEditionCompactPlateView, LayoutRarityLevelView, LayoutRoomObjectImageView, Text, UserProfileIconView } from '../../../../../common'; import { Button, Column, Flex, LayoutBadgeImageView, LayoutCurrencyIcon, LayoutLimitedEditionCompactPlateView, LayoutRarityLevelView, LayoutRoomObjectImageView, Text, UserProfileIconView } from '../../../../../common';
import { useHasPermission, useMessageEvent, useNitroEvent, useRareValues, useRoom, useWiredTools } from '../../../../../hooks'; import { useHasPermission, useMessageEvent, useNitroEvent, useRareValues, useRoom, useWiredTools } from '../../../../../hooks';
import { NitroInput } from '../../../../../layout'; import { NitroInput } from '../../../../../layout';
import { ImagePositionEditorView } from './ImagePositionEditorView';
interface InfoStandWidgetFurniViewProps interface InfoStandWidgetFurniViewProps
{ {
@@ -43,6 +44,7 @@ export const InfoStandWidgetFurniView: FC<InfoStandWidgetFurniViewProps> = props
const [ isJukeBox, setIsJukeBox ] = useState<boolean>(false); const [ isJukeBox, setIsJukeBox ] = useState<boolean>(false);
const [ isSongDisk, setIsSongDisk ] = useState<boolean>(false); const [ isSongDisk, setIsSongDisk ] = useState<boolean>(false);
const [ isBranded, setIsBranded ] = useState<boolean>(false); const [ isBranded, setIsBranded ] = useState<boolean>(false);
const [ showPositionEditor, setShowPositionEditor ] = useState<boolean>(false);
const [ songId, setSongId ] = useState<number>(-1); const [ songId, setSongId ] = useState<number>(-1);
const [ songName, setSongName ] = useState<string>(''); const [ songName, setSongName ] = useState<string>('');
const [ songCreator, setSongCreator ] = useState<string>(''); const [ songCreator, setSongCreator ] = useState<string>('');
@@ -393,6 +395,45 @@ export const InfoStandWidgetFurniView: FC<InfoStandWidgetFurniViewProps> = props
return data; return data;
}, [ furniKeys, furniValues ]); }, [ furniKeys, furniValues ]);
const getBrandingOffset = useCallback((key: string): number =>
{
const index = furniKeys.indexOf(key);
if(index < 0) return 0;
const value = parseInt(furniValues[index]);
return isNaN(value) ? 0 : value;
}, [ furniKeys, furniValues ]);
const hasBrandingOffsets = isBranded && (furniKeys.indexOf('offsetX') >= 0);
// Persist the position from the editor: rebuild the branding map with the
// new offsets and send it (same path as Save), then reflect it in the fields.
const savePositionEditor = useCallback((x: number, y: number, z: number, scale: number) =>
{
const map = new Map<string, string>();
const clone = Array.from(furniValues);
let hasScale = false;
for(let i = 0; i < furniKeys.length; i++)
{
const key = furniKeys[i];
let value = furniValues[i];
if(key === 'offsetX') value = String(x);
else if(key === 'offsetY') value = String(y);
else if(key === 'offsetZ') value = String(z);
else if(key === 'scale') { value = String(scale); hasScale = true; }
clone[i] = value;
map.set(key, value);
}
// older branding furni may not carry a scale key yet — always send it
if(!hasScale) map.set('scale', String(scale));
GetRoomEngine().modifyRoomObjectDataWithMap(avatarInfo.id, avatarInfo.category, RoomObjectOperationType.OBJECT_SAVE_STUFF_DATA, map);
setFurniValues(clone);
}, [ avatarInfo, furniKeys, furniValues ]);
const processButtonAction = useCallback((action: string) => const processButtonAction = useCallback((action: string) =>
{ {
if(!action || (action === '')) return; if(!action || (action === '')) return;
@@ -749,6 +790,10 @@ export const InfoStandWidgetFurniView: FC<InfoStandWidgetFurniViewProps> = props
<Button variant="dark" onClick={ event => processButtonAction('use') }> <Button variant="dark" onClick={ event => processButtonAction('use') }>
{ LocalizeText('infostand.button.use') } { LocalizeText('infostand.button.use') }
</Button> } </Button> }
{ hasBrandingOffsets &&
<Button variant="dark" onClick={ () => setShowPositionEditor(true) }>
{ LocalizeText('image.position.editor.button') }
</Button> }
{ ((furniKeys.length > 0 && furniValues.length > 0) && (furniKeys.length === furniValues.length)) && { ((furniKeys.length > 0 && furniValues.length > 0) && (furniKeys.length === furniValues.length)) &&
<Button variant="dark" onClick={ () => processButtonAction('save_branding_configuration') }> <Button variant="dark" onClick={ () => processButtonAction('save_branding_configuration') }>
{ LocalizeText('save') } { LocalizeText('save') }
@@ -758,6 +803,17 @@ export const InfoStandWidgetFurniView: FC<InfoStandWidgetFurniViewProps> = props
{ LocalizeText('save') } { LocalizeText('save') }
</Button> } </Button> }
</Flex> </Flex>
{ showPositionEditor &&
<ImagePositionEditorView
roomId={ roomSession.roomId }
objectId={ avatarInfo.id }
isWallItem={ avatarInfo.isWallItem }
initialX={ getBrandingOffset('offsetX') }
initialY={ getBrandingOffset('offsetY') }
initialZ={ getBrandingOffset('offsetZ') }
initialScale={ getBrandingOffset('scale') || 100 }
onClose={ () => setShowPositionEditor(false) }
onSave={ savePositionEditor } /> }
</Column> </Column>
); );
}; };
+69 -21
View File
@@ -34,6 +34,7 @@ export const ToolbarView: FC<{ isInRoom: boolean }> = props =>
const [ isMeExpanded, setMeExpanded ] = useState(false); const [ isMeExpanded, setMeExpanded ] = useState(false);
const [ isToolbarOpen, setIsToolbarOpen ] = useState(false); const [ isToolbarOpen, setIsToolbarOpen ] = useState(false);
const [ isTouchLayout, setIsTouchLayout ] = useState(false); const [ isTouchLayout, setIsTouchLayout ] = useState(false);
const [ staffStackBottom, setStaffStackBottom ] = useState<number | null>(null);
const [ useGuideTool, setUseGuideTool ] = useState(false); const [ useGuideTool, setUseGuideTool ] = useState(false);
const [ youtubeEnabled, setYoutubeEnabled ] = useState(false); const [ youtubeEnabled, setYoutubeEnabled ] = useState(false);
const { userFigure = null } = useSessionInfo(); const { userFigure = null } = useSessionInfo();
@@ -115,6 +116,33 @@ export const ToolbarView: FC<{ isInRoom: boolean }> = props =>
return () => query.removeEventListener('change', updateTouchLayout); return () => query.removeEventListener('change', updateTouchLayout);
}, []); }, []);
// Keep the left staff-tools stack pinned 15px above the room tools rail
// (its height is dynamic, so measure it). Falls back to null (CSS
// default) when the room tools aren't present, e.g. outside a room.
useEffect(() =>
{
const measure = () =>
{
const roomTools = document.querySelector('.nitro-room-tools-container') as HTMLElement | null;
const next = roomTools
? Math.max(8, Math.round(window.innerHeight - roomTools.getBoundingClientRect().top + 15))
: null;
setStaffStackBottom(prevValue => (prevValue === next ? prevValue : next));
};
measure();
const interval = window.setInterval(measure, 400);
window.addEventListener('resize', measure);
return () =>
{
window.clearInterval(interval);
window.removeEventListener('resize', measure);
};
}, [ isInRoom ]);
const openYouTubePlayer = () => window.dispatchEvent(new CustomEvent('youtube:toggle')); const openYouTubePlayer = () => window.dispatchEvent(new CustomEvent('youtube:toggle'));
useMessageEvent<PerkAllowancesMessageEvent>(PerkAllowancesMessageEvent, event => useMessageEvent<PerkAllowancesMessageEvent>(PerkAllowancesMessageEvent, event =>
@@ -362,9 +390,6 @@ export const ToolbarView: FC<{ isInRoom: boolean }> = props =>
{ (getTotalUnseen > 0) && { (getTotalUnseen > 0) &&
<LayoutItemCountView count={ getTotalUnseen } className="pointer-events-none absolute -right-1 -top-1 z-10" /> } <LayoutItemCountView count={ getTotalUnseen } className="pointer-events-none absolute -right-1 -top-1 z-10" /> }
</motion.div> </motion.div>
<motion.div variants={ itemVariants }>
<ToolbarItemView icon="buildersclub" onClick={ () => CreateLinkEvent('catalog/toggle/builder') } className="tb-icon" />
</motion.div>
<motion.div variants={ itemVariants } className="relative"> <motion.div variants={ itemVariants } className="relative">
<ToolbarItemView icon="inventory" onClick={ () => CreateLinkEvent('inventory/toggle') } className="tb-icon" /> <ToolbarItemView icon="inventory" onClick={ () => CreateLinkEvent('inventory/toggle') } className="tb-icon" />
{ (getFullCount > 0) && { (getFullCount > 0) &&
@@ -384,10 +409,6 @@ export const ToolbarView: FC<{ isInRoom: boolean }> = props =>
<motion.div variants={ itemVariants }> <motion.div variants={ itemVariants }>
<ToolbarItemView icon="wired-tools" onClick={ openMonitor } className="tb-icon" /> <ToolbarItemView icon="wired-tools" onClick={ openMonitor } className="tb-icon" />
</motion.div> } </motion.div> }
{ isInRoom &&
<motion.div variants={ itemVariants }>
<ToolbarItemView icon="camera" onClick={ () => CreateLinkEvent('camera/toggle') } className="tb-icon" />
</motion.div> }
{ (isInRoom && youtubeEnabled) && { (isInRoom && youtubeEnabled) &&
<motion.div variants={ itemVariants }> <motion.div variants={ itemVariants }>
<ToolbarItemView icon="youtube" onClick={ openYouTubePlayer } className="tb-icon" /> <ToolbarItemView icon="youtube" onClick={ openYouTubePlayer } className="tb-icon" />
@@ -396,20 +417,6 @@ export const ToolbarView: FC<{ isInRoom: boolean }> = props =>
<motion.div variants={ itemVariants }> <motion.div variants={ itemVariants }>
<ToolbarItemView icon="soundboard" onClick={ () => CreateLinkEvent('soundboard/toggle') } className="tb-icon" /> <ToolbarItemView icon="soundboard" onClick={ () => CreateLinkEvent('soundboard/toggle') } className="tb-icon" />
</motion.div> } </motion.div> }
{ isMod &&
<motion.div variants={ itemVariants } className="relative">
<ToolbarItemView icon="modtools" onClick={ () => CreateLinkEvent('mod-tools/toggle') } className="tb-icon" />
{ (openTicketsCount > 0) &&
<LayoutItemCountView count={ openTicketsCount } className="pointer-events-none absolute -right-1 -top-1 z-10" /> }
</motion.div> }
{ (isHk && hkEnabled) &&
<motion.div variants={ itemVariants }>
<ToolbarItemView icon="housekeeping" onClick={ () => CreateLinkEvent('housekeeping/toggle') } className="tb-icon" />
</motion.div> }
{ isMod &&
<motion.div variants={ itemVariants }>
<ToolbarItemView icon="furnieditor" onClick={ () => CreateLinkEvent('furni-editor/toggle') } className="tb-icon" />
</motion.div> }
<motion.div variants={ itemVariants } className="relative"> <motion.div variants={ itemVariants } className="relative">
<ToolbarItemView icon="friendall" onClick={ () => CreateLinkEvent('friends/toggle') } className="tb-icon" /> <ToolbarItemView icon="friendall" onClick={ () => CreateLinkEvent('friends/toggle') } className="tb-icon" />
{ (requests.length > 0) && { (requests.length > 0) &&
@@ -417,6 +424,39 @@ export const ToolbarView: FC<{ isInRoom: boolean }> = props =>
</motion.div> </motion.div>
</motion.div> </motion.div>
</motion.div> </motion.div>
{ /* Mobile side tools — moved out of the bottom bar into a
vertical pill stack on the left edge so the bottom bar has
room. Always present (Builders Club), plus camera in-room
and the staff-only tools when permitted. */ }
<motion.div
initial="hidden"
animate={ visibilityVariant }
variants={ mobileNavVariants }
transition={ NAV_TRANSITION }
style={ staffStackBottom != null ? { top: 'auto', bottom: `${ staffStackBottom }px` } : undefined }
className={ `fixed left-1 z-40 flex flex-col items-center gap-2 rounded-[12px] border border-white/8 bg-[rgba(10,10,12,0.58)] px-[4px] py-[6px] shadow-[0_6px_18px_rgba(0,0,0,0.18)] ${ staffStackBottom == null ? 'top-1/2 -translate-y-1/2' : '' } ${ mobileOnlyClasses }` }>
<motion.div variants={ itemVariants }>
<ToolbarItemView icon="buildersclub" onClick={ () => CreateLinkEvent('catalog/toggle/builder') } className="tb-icon" />
</motion.div>
{ isInRoom &&
<motion.div variants={ itemVariants }>
<ToolbarItemView icon="camera" onClick={ () => CreateLinkEvent('camera/toggle') } className="tb-icon" />
</motion.div> }
{ isMod &&
<motion.div variants={ itemVariants } className="relative">
<ToolbarItemView icon="modtools" onClick={ () => CreateLinkEvent('mod-tools/toggle') } className="tb-icon" />
{ (openTicketsCount > 0) &&
<LayoutItemCountView count={ openTicketsCount } className="pointer-events-none absolute -right-1 -top-1 z-10" /> }
</motion.div> }
{ (isHk && hkEnabled) &&
<motion.div variants={ itemVariants }>
<ToolbarItemView icon="housekeeping" onClick={ () => CreateLinkEvent('housekeeping/toggle') } className="tb-icon" />
</motion.div> }
{ isMod &&
<motion.div variants={ itemVariants }>
<ToolbarItemView icon="furnieditor" onClick={ () => CreateLinkEvent('furni-editor/toggle') } className="tb-icon" />
</motion.div> }
</motion.div>
</> </>
); );
}; };
@@ -494,6 +534,14 @@ const TOOLBAR_STYLES = `
flex-wrap: nowrap; flex-wrap: nowrap;
} }
/* Keep each icon at its natural size so the mobile bar scrolls
horizontally instead of squashing the items into each other.
(Default flex-shrink:1 let the fixed-size icon backgrounds overlap
once enough icons were present to exceed the bar width.) */
.tb-bar-scroll > * {
flex-shrink: 0;
}
.tb-bar-scroll::-webkit-scrollbar { .tb-bar-scroll::-webkit-scrollbar {
display: none; display: none;
} }
@@ -1,6 +1,6 @@
import { RelationshipStatusEnum, RelationshipStatusInfoMessageParser } from '@nitrots/nitro-renderer'; import { RelationshipStatusEnum, RelationshipStatusInfoMessageParser } from '@nitrots/nitro-renderer';
import { FC } from 'react'; import { FC } from 'react';
import { GetUserProfile, LocalizeText } from '../../api'; import { CreateLinkEvent, GetUserProfile, LocalizeText } from '../../api';
import { Flex, LayoutAvatarImageView } from '../../common'; import { Flex, LayoutAvatarImageView } from '../../common';
interface RelationshipsContainerViewProps interface RelationshipsContainerViewProps
@@ -29,7 +29,7 @@ export const RelationshipsContainerView: FC<RelationshipsContainerViewProps> = p
</Flex> </Flex>
<div className="nitro-extended-profile__relationship-copy"> <div className="nitro-extended-profile__relationship-copy">
<div className="nitro-extended-profile__relationship-box"> <div className="nitro-extended-profile__relationship-box">
<p className="nitro-extended-profile__relationship-name" onClick={ event => (relationshipInfo && (relationshipInfo.randomFriendId >= 1) && GetUserProfile(relationshipInfo.randomFriendId)) }> <p className="nitro-extended-profile__relationship-name" onClick={ event => ((relationshipInfo && (relationshipInfo.randomFriendId >= 1)) ? GetUserProfile(relationshipInfo.randomFriendId) : CreateLinkEvent('friends/toggle')) }>
{ (!relationshipInfo || (relationshipInfo.friendCount === 0)) && { (!relationshipInfo || (relationshipInfo.friendCount === 0)) &&
LocalizeText('extendedprofile.add.friends') } LocalizeText('extendedprofile.add.friends') }
{ (relationshipInfo && (relationshipInfo.friendCount >= 1)) && { (relationshipInfo && (relationshipInfo.friendCount >= 1)) &&
@@ -37,7 +37,7 @@ export const RelationshipsContainerView: FC<RelationshipsContainerViewProps> = p
</p> </p>
{ (relationshipInfo && (relationshipInfo.friendCount >= 1)) && { (relationshipInfo && (relationshipInfo.friendCount >= 1)) &&
<div className="nitro-extended-profile__relationship-head"> <div className="nitro-extended-profile__relationship-head">
<LayoutAvatarImageView direction={ 4 } figure={ relationshipInfo.randomFriendFigure } headOnly={ true } classNames={ [ '!w-auto', '!h-auto', '!left-0' ] } /> <LayoutAvatarImageView direction={ 2 } figure={ relationshipInfo.randomFriendFigure } headOnly={ true } />
</div> } </div> }
</div> </div>
<p className="nitro-extended-profile__relationship-subcopy"> <p className="nitro-extended-profile__relationship-subcopy">
@@ -60,18 +60,12 @@ export const UserContainerView: FC<UserContainerViewProps> = props =>
prefixText={ userProfile.prefixText } prefixText={ userProfile.prefixText }
username={ userProfile.username } /> username={ userProfile.username } />
<p className="nitro-extended-profile__motto">{ userProfile.motto || '\u00A0' }</p> <p className="nitro-extended-profile__motto">{ userProfile.motto || '\u00A0' }</p>
<p <p className="nitro-extended-profile__meta">
className="nitro-extended-profile__meta" <b>{ LocalizeText('extendedprofile.created').replace(/%\w+%/g, '').trim() }</b> { userProfile.registration }
dangerouslySetInnerHTML={ { </p>
__html: LocalizeText('extendedprofile.created', [ 'created' ], [ userProfile.registration ]) <p className="nitro-extended-profile__meta">
} } <b>{ LocalizeText('extendedprofile.last.login').replace(/%\w+%/g, '').trim() }</b> { FriendlyTime.format(userProfile.secondsSinceLastVisit, '.ago', 2) }
/> </p>
<p
className="nitro-extended-profile__meta"
dangerouslySetInnerHTML={ {
__html: LocalizeText('extendedprofile.last.login', [ 'lastlogin' ], [ FriendlyTime.format(userProfile.secondsSinceLastVisit, '.ago', 2) ])
} }
/>
<p className="nitro-extended-profile__meta nitro-extended-profile__meta--strong"> <p className="nitro-extended-profile__meta nitro-extended-profile__meta--strong">
<b>{ LocalizeText('extendedprofile.achievementscore') }</b> { userProfile.achievementPoints } <b>{ LocalizeText('extendedprofile.achievementscore') }</b> { userProfile.achievementPoints }
</p> </p>
@@ -100,10 +94,10 @@ export const UserContainerView: FC<UserContainerViewProps> = props =>
{ isOwnProfile && { isOwnProfile &&
<div className="nitro-extended-profile__actions"> <div className="nitro-extended-profile__actions">
<button className="nitro-extended-profile__link" type="button"> <button className="nitro-extended-profile__link" type="button" onClick={ () => CreateLinkEvent('avatar-editor/show') }>
{ LocalizeText('extended.profile.change.looks') } { LocalizeText('extended.profile.change.looks') }
</button> </button>
<button className="nitro-extended-profile__link" type="button" onClick={ () => CreateLinkEvent('inventory/open/badges') }> <button className="nitro-extended-profile__link" type="button" onClick={ () => CreateLinkEvent('inventory/show/badges') }>
{ LocalizeText('extended.profile.change.badges') } { LocalizeText('extended.profile.change.badges') }
</button> </button>
</div> } </div> }
@@ -148,11 +142,11 @@ export const UserContainerView: FC<UserContainerViewProps> = props =>
<span className="nitro-extended-profile__summary-label">{ LocalizeText('inventory.badges') }</span> <span className="nitro-extended-profile__summary-label">{ LocalizeText('inventory.badges') }</span>
<span className="nitro-extended-profile__summary-value">{ totalBadges }</span> <span className="nitro-extended-profile__summary-value">{ totalBadges }</span>
</button> </button>
<div className="nitro-extended-profile__summary-button"> <button className="nitro-extended-profile__summary-button nitro-extended-profile__summary-button--center" type="button" onClick={ () => CreateLinkEvent('achievements/toggle') }>
<img className="nitro-extended-profile__summary-icon" src={ profileLevelIcon } alt="" /> <img className="nitro-extended-profile__summary-icon" src={ profileLevelIcon } alt="" />
<span className="nitro-extended-profile__summary-label">{ LocalizeText('extendedprofile.achievementscore') }</span> <span className="nitro-extended-profile__summary-label">{ LocalizeText('extendedprofile.achievementscore') }</span>
<span className="nitro-extended-profile__summary-value">{ userProfile.achievementPoints }</span> <span className="nitro-extended-profile__summary-value">{ userProfile.achievementPoints }</span>
</div> </button>
</div> </div>
</div> </div>
); );
@@ -1,6 +1,6 @@
import { ExtendedProfileChangedMessageEvent, GetSessionDataManager, NavigatorSearchComposer, RelationshipStatusInfoEvent, RelationshipStatusInfoMessageParser, RoomEngineObjectEvent, RoomObjectCategory, RoomObjectType, UserCurrentBadgesComposer, UserCurrentBadgesEvent, UserProfileEvent, UserProfileParser, UserRelationshipsComposer } from '@nitrots/nitro-renderer'; import { ExtendedProfileChangedMessageEvent, GetSessionDataManager, RelationshipStatusInfoEvent, RelationshipStatusInfoMessageParser, RoomEngineObjectEvent, RoomObjectCategory, RoomObjectType, UserCurrentBadgesComposer, UserCurrentBadgesEvent, UserProfileEvent, UserProfileParser, UserRelationshipsComposer } from '@nitrots/nitro-renderer';
import { FC, useState } from 'react'; import { FC, useState } from 'react';
import { GetRoomSession, GetUserProfile, LocalizeText, SendMessageComposer } from '../../api'; import { CreateLinkEvent, GetRoomSession, GetUserProfile, LocalizeText, SendMessageComposer } from '../../api';
import { useMessageEvent, useNitroEvent } from '../../hooks'; import { useMessageEvent, useNitroEvent } from '../../hooks';
import { NitroCard } from '../../layout'; import { NitroCard } from '../../layout';
import { GroupsContainerView } from './GroupsContainerView'; import { GroupsContainerView } from './GroupsContainerView';
@@ -28,10 +28,11 @@ export const UserProfileView: FC<{}> = () =>
const onOpenRooms = () => const onOpenRooms = () =>
{ {
if(userProfile) if(!userProfile) return;
{
SendMessageComposer(new NavigatorSearchComposer('hotel_view', `owner:${ userProfile.username }`)); // Open the navigator AND run the owner search (the composer alone never
} // showed the navigator window, so the button looked dead).
CreateLinkEvent(`navigator/search/hotel_view/owner:${ userProfile.username }`);
}; };
useMessageEvent<UserCurrentBadgesEvent>(UserCurrentBadgesEvent, event => useMessageEvent<UserCurrentBadgesEvent>(UserCurrentBadgesEvent, event =>
@@ -100,7 +101,7 @@ export const UserProfileView: FC<{}> = () =>
if(!userProfile) return null; if(!userProfile) return null;
return ( return (
<NitroCard className="nitro-extended-profile-window w-[521px] h-[537px]" uniqueKey="nitro-user-profile"> <NitroCard className="nitro-extended-profile-window w-[600px] h-[600px] max-w-[96vw] max-h-[92vh]" uniqueKey="nitro-user-profile">
<NitroCard.Header <NitroCard.Header
headerText={ LocalizeText('extendedprofile.caption') } headerText={ LocalizeText('extendedprofile.caption') }
onCloseClick={ onClose } /> onCloseClick={ onClose } />
@@ -3,7 +3,7 @@ import { FC, useEffect, useState } from 'react';
import { FaUserCog, FaVolumeDown, FaVolumeMute, FaVolumeUp } from 'react-icons/fa'; import { FaUserCog, FaVolumeDown, FaVolumeMute, FaVolumeUp } from 'react-icons/fa';
import { DispatchMainEvent, DispatchUiEvent, LocalizeText, SendMessageComposer } from '../../api'; import { DispatchMainEvent, DispatchUiEvent, LocalizeText, SendMessageComposer } from '../../api';
import { NitroCardContentView, NitroCardHeaderView, NitroCardView, Text } from '../../common'; import { NitroCardContentView, NitroCardHeaderView, NitroCardView, Text } from '../../common';
import { useCatalogPlaceMultipleItems, useCatalogSkipPurchaseConfirmation, useChatWindow, useMessageEvent } from '../../hooks'; import { useCatalogClassicStyle, useCatalogPlaceMultipleItems, useCatalogSkipPurchaseConfirmation, useChatWindow, useMessageEvent } from '../../hooks';
import { classNames } from '../../layout'; import { classNames } from '../../layout';
export const UserSettingsView: FC<{}> = props => export const UserSettingsView: FC<{}> = props =>
@@ -13,6 +13,7 @@ export const UserSettingsView: FC<{}> = props =>
const [ catalogPlaceMultipleObjects, setCatalogPlaceMultipleObjects ] = useCatalogPlaceMultipleItems(); const [ catalogPlaceMultipleObjects, setCatalogPlaceMultipleObjects ] = useCatalogPlaceMultipleItems();
const [ catalogSkipPurchaseConfirmation, setCatalogSkipPurchaseConfirmation ] = useCatalogSkipPurchaseConfirmation(); const [ catalogSkipPurchaseConfirmation, setCatalogSkipPurchaseConfirmation ] = useCatalogSkipPurchaseConfirmation();
const [ chatWindowEnabled, setChatWindowEnabled ] = useChatWindow(); const [ chatWindowEnabled, setChatWindowEnabled ] = useChatWindow();
const [ catalogClassicStyle, setCatalogClassicStyle ] = useCatalogClassicStyle();
const processAction = (type: string, value?: boolean | number | string) => const processAction = (type: string, value?: boolean | number | string) =>
{ {
@@ -156,6 +157,10 @@ export const UserSettingsView: FC<{}> = props =>
<input checked={ chatWindowEnabled } className="form-check-input" type="checkbox" onChange={ event => setChatWindowEnabled(event.target.checked) } /> <input checked={ chatWindowEnabled } className="form-check-input" type="checkbox" onChange={ event => setChatWindowEnabled(event.target.checked) } />
<Text>Enable chat window</Text> <Text>Enable chat window</Text>
</div> </div>
<div className="flex items-center gap-1">
<input checked={ catalogClassicStyle } className="form-check-input" type="checkbox" onChange={ event => setCatalogClassicStyle(event.target.checked) } />
<Text>Catalogo: stile classico</Text>
</div>
</div> </div>
<div className="flex flex-col"> <div className="flex flex-col">
<Text bold>{ LocalizeText('widget.memenu.settings.volume') }</Text> <Text bold>{ LocalizeText('widget.memenu.settings.volume') }</Text>
@@ -1,147 +0,0 @@
import { IWheelAdminPrize, IWheelAdminPrizeEdit } from '@nitrots/nitro-renderer';
import { FC, useEffect, useState } from 'react';
import { LocalizeText } from '../../api';
import { Column, Flex, Text } from '../../common';
import { useFortuneWheel } from '../../hooks';
import { NitroCard } from '../../layout';
interface EditRow
{
id: number;
category: string;
num: number;
weight: number;
label: string;
}
interface CategoryDef
{
key: string;
labelKey: string;
}
const CATEGORIES: CategoryDef[] = [
{ key: 'item', labelKey: 'rarevalues.editor.cat.item' },
{ key: 'diamanti', labelKey: 'achievements.activitypoint.5' },
{ key: 'duckets', labelKey: 'achievements.activitypoint.0' },
{ key: 'crediti', labelKey: 'credits' },
{ key: 'giri', labelKey: 'rarevalues.editor.cat.spin' },
{ key: 'nulla', labelKey: 'rarevalues.editor.cat.nothing' }
];
const prizeToCategory = (prize: IWheelAdminPrize): string =>
{
switch(prize.type)
{
case 'item': return 'item';
case 'points': return (prize.pointsType === 5) ? 'diamanti' : 'duckets';
case 'credits': return 'crediti';
case 'spin': return 'giri';
default: return 'nulla';
}
};
const prizeToNum = (prize: IWheelAdminPrize): number =>
(prize.type === 'item') ? (parseInt(prize.value) || 0) : prize.amount;
const rowToEdit = (row: EditRow): IWheelAdminPrizeEdit =>
{
const base = { id: row.id, weight: row.weight, label: row.label };
switch(row.category)
{
case 'item': return { ...base, type: 'item', value: String(row.num), amount: 1, pointsType: 0 };
case 'diamanti': return { ...base, type: 'points', value: '', amount: row.num, pointsType: 5 };
case 'duckets': return { ...base, type: 'points', value: '', amount: row.num, pointsType: 0 };
case 'crediti': return { ...base, type: 'credits', value: '', amount: row.num, pointsType: 0 };
case 'giri': return { ...base, type: 'spin', value: '', amount: row.num, pointsType: 0 };
default: return { ...base, type: 'nothing', value: '', amount: 0, pointsType: 0 };
}
};
interface FortuneWheelSettingsViewProps
{
onClose: () => void;
}
export const FortuneWheelSettingsView: FC<FortuneWheelSettingsViewProps> = ({ onClose }) =>
{
const { adminPrizes = [], loadAdminPrizes = null, saveAdminPrizes = null } = useFortuneWheel();
const [ editRows, setEditRows ] = useState<EditRow[]>([]);
useEffect(() =>
{
if(loadAdminPrizes) loadAdminPrizes();
}, [ loadAdminPrizes ]);
useEffect(() =>
{
setEditRows(adminPrizes.map(prize => ({
id: prize.id,
category: prizeToCategory(prize),
num: prizeToNum(prize),
weight: prize.weight,
label: prize.label
})));
}, [ adminPrizes ]);
const updateRow = (id: number, patch: Partial<EditRow>) =>
setEditRows(prev => prev.map(row => (row.id === id) ? { ...row, ...patch } : row));
return (
<NitroCard className="w-[480px] h-[520px]" uniqueKey="fortune-wheel-settings">
<NitroCard.Header
headerText={ LocalizeText('wheel.settings.title') }
onCloseClick={ onClose } />
<NitroCard.Content>
<Column gap={ 1 } className="h-full p-1">
<Flex gap={ 1 } className="px-1 text-[11px] font-bold text-black/60">
<span className="w-28">{ LocalizeText('rarevalues.editor.type') }</span>
<span className="w-16">{ LocalizeText('rarevalues.editor.value') }</span>
<span className="w-12">{ LocalizeText('rarevalues.editor.weight') }</span>
<span className="grow">{ LocalizeText('rarevalues.editor.label') }</span>
</Flex>
<Column gap={ 1 } overflow="auto" className="grow">
{ editRows.map(row => (
<Flex key={ row.id } alignItems="center" gap={ 1 } className="border-b border-black/10 pb-1">
<select
value={ row.category }
onChange={ event => updateRow(row.id, { category: event.target.value }) }
className="w-28 rounded border border-black/20 bg-white px-1 py-0.5 text-sm text-[#1f2d34]">
{ CATEGORIES.map(cat => (
<option key={ cat.key } value={ cat.key }>{ LocalizeText(cat.labelKey) }</option>
)) }
</select>
<input
type="number"
value={ row.num }
disabled={ row.category === 'nulla' }
onChange={ event => updateRow(row.id, { num: parseInt(event.target.value) || 0 }) }
className="w-16 rounded border border-black/20 bg-white px-1 py-0.5 text-sm text-[#1f2d34] disabled:opacity-40" />
<input
type="number"
value={ row.weight }
onChange={ event => updateRow(row.id, { weight: parseInt(event.target.value) || 0 }) }
className="w-12 rounded border border-black/20 bg-white px-1 py-0.5 text-sm text-[#1f2d34]" />
<input
type="text"
value={ row.label }
onChange={ event => updateRow(row.id, { label: event.target.value }) }
className="min-w-0 grow rounded border border-black/20 bg-white px-1 py-0.5 text-sm text-[#1f2d34]" />
</Flex>
)) }
{ !editRows.length &&
<Text small className="text-black/50">{ LocalizeText('wheel.settings.empty') }</Text> }
</Column>
<button
type="button"
disabled={ !editRows.length }
onClick={ () => saveAdminPrizes?.(editRows.map(rowToEdit)) }
className="cursor-pointer rounded bg-[#3a7bb5] px-4 py-2 font-bold text-white hover:bg-[#336ea3] disabled:cursor-default disabled:opacity-40">
{ LocalizeText('rarevalues.editor.save') }
</button>
</Column>
</NitroCard.Content>
</NitroCard>
);
};
@@ -1,202 +0,0 @@
import { AddLinkEventTracker, GetRoomEngine, ILinkEventTracker, IWheelPrize, RemoveLinkEventTracker } from '@nitrots/nitro-renderer';
import { FC, useEffect, useMemo, useRef, useState } from 'react';
import { LocalizeText } from '../../api';
import { Column, Flex, LayoutAvatarImageView, LayoutBadgeImageView, LayoutCurrencyIcon, LayoutImage, Text } from '../../common';
import { useFortuneWheel, useHasPermission } from '../../hooks';
import { NitroCard } from '../../layout';
import { FortuneWheelSettingsView } from './FortuneWheelSettingsView';
// Stock UI palette (white / light-blue / grey / black).
const SLICE_COLORS = [ '#eef2f5', '#c3dcec' ];
const RIM = '#4c606c';
const WHEEL_SIZE = 420;
const ICON_RADIUS = 150;
const FULL_TURNS = 5;
const renderPrizeIcon = (prize: IWheelPrize) =>
{
switch(prize.type)
{
case 'item':
return <LayoutImage imageUrl={ GetRoomEngine().getFurnitureFloorIconUrl(prize.spriteId) } className="h-9 w-9 bg-contain bg-center bg-no-repeat" />;
case 'badge':
return <LayoutBadgeImageView badgeCode={ prize.badgeCode } />;
case 'credits':
return (
<Column alignItems="center" gap={ 0 }>
<LayoutCurrencyIcon type={ -1 } />
<span className="text-[10px] font-bold text-[#2a3a42]">{ prize.amount }</span>
</Column>);
case 'points':
return (
<Column alignItems="center" gap={ 0 }>
<LayoutCurrencyIcon type={ prize.pointsType } />
<span className="text-[10px] font-bold text-[#2a3a42]">{ prize.amount }</span>
</Column>);
case 'spin':
return <span className="text-xs font-bold text-[#2a3a42]">+{ prize.amount }</span>;
default:
return <span className="text-xs font-bold text-[#2a3a42]/60"></span>;
}
};
export const FortuneWheelView: FC<{}> = () =>
{
const [ isVisible, setIsVisible ] = useState(false);
const [ isSettingsOpen, setIsSettingsOpen ] = useState(false);
const { freeSpins, extraSpins, spinCost, spinCostType, prizes, recentWins, pendingPrizeId, isSpinning, open, spin, buySpin, finishSpin } = useFortuneWheel();
const canManage = useHasPermission('acc_wheeladmin');
const [ rotation, setRotation ] = useState(0);
const rotationRef = useRef(0);
const prizesRef = useRef<IWheelPrize[]>([]);
prizesRef.current = prizes;
useEffect(() =>
{
const linkTracker: ILinkEventTracker = {
linkReceived: (url: string) =>
{
const parts = url.split('/');
if(parts.length < 2) return;
switch(parts[1])
{
case 'show': setIsVisible(true); return;
case 'hide': setIsVisible(false); return;
case 'toggle': setIsVisible(prev => !prev); return;
}
},
eventUrlPrefix: 'fortune-wheel/',
};
AddLinkEventTracker(linkTracker);
return () => RemoveLinkEventTracker(linkTracker);
}, []);
useEffect(() =>
{
if(isVisible) open();
}, [ isVisible, open ]);
// Drive the spin animation when the server reports the winning slice.
useEffect(() =>
{
if(pendingPrizeId < 0) return;
const list = prizesRef.current;
const idx = list.findIndex(prize => prize.id === pendingPrizeId);
if(!list.length || (idx < 0))
{
finishSpin();
return;
}
const sliceAngle = 360 / list.length;
const centerAngle = ((idx + 0.5) * sliceAngle);
const current = rotationRef.current;
const target = (current - (current % 360)) + (FULL_TURNS * 360) + (360 - centerAngle);
rotationRef.current = target;
setRotation(target);
}, [ pendingPrizeId, finishSpin ]);
const sliceAngle = prizes.length ? (360 / prizes.length) : 0;
const background = useMemo(() =>
{
if(!prizes.length) return SLICE_COLORS[0];
const stops = prizes.map((_, i) => `${ SLICE_COLORS[i % 2] } ${ i * sliceAngle }deg ${ (i + 1) * sliceAngle }deg`).join(', ');
return `conic-gradient(${ stops })`;
}, [ prizes, sliceAngle ]);
if(!isVisible) return null;
const canSpin = ((freeSpins + extraSpins) > 0) && !isSpinning && (prizes.length > 0);
return (
<NitroCard className="w-[800px] max-w-[96vw]" uniqueKey="fortune-wheel">
<NitroCard.Header headerText={ LocalizeText('wheel.title') } onCloseClick={ () => setIsVisible(false) } />
<NitroCard.Content>
<Flex gap={ 3 }>
<Column alignItems="center" gap={ 2 } className="shrink-0">
<div className="relative" style={ { width: WHEEL_SIZE, height: WHEEL_SIZE } }>
<div
className="absolute left-1/2 -top-2 z-20 -translate-x-1/2 drop-shadow-[0_2px_2px_rgba(0,0,0,0.25)]"
style={ { width: 0, height: 0, borderLeft: '14px solid transparent', borderRight: '14px solid transparent', borderTop: `28px solid ${ RIM }` } } />
<div
className="absolute inset-0 rounded-full shadow-[0_0_0_4px_rgba(0,0,0,0.12),inset_0_0_18px_rgba(0,0,0,0.1)]"
style={ { background, border: `8px solid ${ RIM }`, transform: `rotate(${ rotation }deg)`, transition: isSpinning ? 'transform 4.5s cubic-bezier(0.15,0.85,0.25,1)' : 'none' } }
onTransitionEnd={ () => { if(isSpinning) finishSpin(); } }>
{ prizes.map((_, i) => (
<div
key={ `divider-${ i }` }
className="absolute bottom-1/2 left-1/2 origin-bottom"
style={ { width: '2px', height: `${ WHEEL_SIZE / 2 }px`, transform: `translateX(-1px) rotate(${ i * sliceAngle }deg)`, background: 'rgba(76,96,108,0.3)' } } />
)) }
{ prizes.map((prize, i) =>
{
const centerAngle = ((i + 0.5) * sliceAngle);
return (
<div
key={ prize.id }
className="absolute left-1/2 top-1/2"
style={ { transform: `rotate(${ centerAngle }deg) translateY(-${ ICON_RADIUS }px) rotate(-${ centerAngle }deg)` } }>
<div className="-translate-x-1/2 -translate-y-1/2">
{ renderPrizeIcon(prize) }
</div>
</div>);
}) }
</div>
<div className="absolute left-1/2 top-1/2 z-10 h-14 w-14 -translate-x-1/2 -translate-y-1/2 rounded-full bg-[#eef2f5] shadow-[0_0_8px_rgba(0,0,0,0.25)]" style={ { border: `4px solid ${ RIM }` } } />
</div>
<Text bold className="text-[#2f6f95]">{ LocalizeText('wheel.free.today', [ 'count' ], [ freeSpins.toString() ]) }</Text>
<Text small className="text-[#33424c]">{ LocalizeText('wheel.extra', [ 'count' ], [ extraSpins.toString() ]) }</Text>
<Flex gap={ 2 } alignItems="center">
<button
disabled={ !canSpin }
onClick={ () => spin() }
className="cursor-pointer rounded bg-[#3a7bb5] px-4 py-2 font-bold text-white hover:bg-[#336ea3] disabled:cursor-default disabled:opacity-40">
{ LocalizeText('wheel.spin') }
</button>
<button
onClick={ () => buySpin() }
className="flex cursor-pointer items-center gap-1 rounded bg-[#6b7884] px-3 py-2 text-white hover:bg-[#5e6a75]">
{ LocalizeText('wheel.buy') } { spinCost }
<LayoutCurrencyIcon type={ spinCostType } />
</button>
{ canManage &&
<button
onClick={ () => setIsSettingsOpen(true) }
className="cursor-pointer rounded bg-[#8a6b3a] px-3 py-2 font-bold text-white hover:bg-[#735730]">
{ LocalizeText('wheel.settings') }
</button> }
</Flex>
</Column>
<Column gap={ 2 } className="min-w-[300px] grow rounded-lg border border-black/10 bg-black/5 p-3">
<Text bold className="text-base text-[#33424c]">{ LocalizeText('wheel.winners') }</Text>
<Column gap={ 1 } overflow="auto" className="h-[440px]">
{ recentWins.map((win, i) => (
<Flex key={ i } alignItems="center" gap={ 2 } className="rounded border-b border-black/10 py-1.5 hover:bg-black/5">
<div className="relative h-11 w-11 shrink-0 overflow-hidden rounded bg-black/5">
<LayoutAvatarImageView figure={ win.look } headOnly direction={ 2 } style={ { backgroundSize: 'auto', backgroundPosition: '-22px -32px' } } />
</div>
<Column gap={ 0 } className="min-w-0">
<Text bold truncate className="text-[#1f2d34]">{ win.username }</Text>
<Text small truncate className="text-[#2f6f95]">{ win.prizeLabel }</Text>
</Column>
</Flex>
)) }
{ !recentWins.length &&
<Text small className="text-black/50">{ LocalizeText('wheel.winners.empty') }</Text> }
</Column>
</Column>
</Flex>
</NitroCard.Content>
{ canManage && isSettingsOpen &&
<FortuneWheelSettingsView onClose={ () => setIsSettingsOpen(false) } /> }
</NitroCard>
);
};
@@ -1,115 +0,0 @@
import { AddLinkEventTracker, GetRoomEngine, GetSessionDataManager, ILinkEventTracker, IRareValue, RemoveLinkEventTracker } from '@nitrots/nitro-renderer';
import { FC, useEffect, useMemo, useState } from 'react';
import { LocalizeFormattedNumber, LocalizeText } from '../../api';
import { Column, Flex, LayoutCurrencyIcon, LayoutImage, Text } from '../../common';
import { useRareValues } from '../../hooks';
import { NitroCard, NitroInput } from '../../layout';
interface RareValueRow
{
spriteId: number;
name: string;
iconUrl: string;
value: IRareValue;
}
export const RareValuesView: FC<{}> = () =>
{
const [ isVisible, setIsVisible ] = useState(false);
const [ searchValue, setSearchValue ] = useState('');
const { values = null, loaded = false } = useRareValues();
useEffect(() =>
{
const linkTracker: ILinkEventTracker = {
linkReceived: (url: string) =>
{
const parts = url.split('/');
if(parts.length < 2) return;
switch(parts[1])
{
case 'show': setIsVisible(true); return;
case 'hide': setIsVisible(false); return;
case 'toggle': setIsVisible(prev => !prev); return;
}
},
eventUrlPrefix: 'rare-values/',
};
AddLinkEventTracker(linkTracker);
return () => RemoveLinkEventTracker(linkTracker);
}, []);
const rows = useMemo<RareValueRow[]>(() =>
{
if(!values) return [];
const list: RareValueRow[] = [];
values.forEach((value, spriteId) =>
{
if(value.points <= 0) return;
const floorData = GetSessionDataManager().getFloorItemData(spriteId);
const wallData = floorData ? null : GetSessionDataManager().getWallItemData(spriteId);
const data = (floorData ?? wallData);
if(!data) return;
const iconUrl = (floorData
? GetRoomEngine().getFurnitureFloorIconUrl(spriteId)
: GetRoomEngine().getFurnitureWallIconUrl(spriteId));
list.push({ spriteId, name: (data.name || data.className || `#${ spriteId }`), iconUrl, value });
});
list.sort((a, b) => (b.value.points - a.value.points));
return list;
}, [ values ]);
const filtered = useMemo<RareValueRow[]>(() =>
{
const query = searchValue.trim().toLocaleLowerCase();
if(!query) return rows;
return rows.filter(row => row.name.toLocaleLowerCase().includes(query));
}, [ rows, searchValue ]);
if(!isVisible) return null;
return (
<NitroCard className="w-[420px] h-[480px]" uniqueKey="rare-values">
<NitroCard.Header
headerText={ LocalizeText('rarevalues.title') }
onCloseClick={ () => setIsVisible(false) } />
<NitroCard.Content>
<Column gap={ 2 } className="h-full p-1">
<NitroInput
placeholder={ LocalizeText('generic.search') }
value={ searchValue }
onChange={ event => setSearchValue(event.target.value) } />
<Column gap={ 0 } overflow="auto" className="grow">
{ !loaded &&
<Text center className="mt-2 text-black/60">{ LocalizeText('rarevalues.loading') }</Text> }
{ (loaded && !filtered.length) &&
<Text center className="mt-2 text-black/60">{ LocalizeText('rarevalues.empty') }</Text> }
{ filtered.map(row => (
<Flex key={ row.spriteId } alignItems="center" gap={ 2 } className="border-b border-black/10 py-1.5 hover:bg-black/5">
<LayoutImage imageUrl={ row.iconUrl } className="h-10 w-10 shrink-0 bg-contain bg-center bg-no-repeat" />
<Text truncate className="grow text-[#1f2d34]">{ row.name }</Text>
<Flex alignItems="center" gap={ 1 } className="shrink-0">
<Text bold textEnd className="text-[#2f6f95]">{ LocalizeFormattedNumber(row.value.points) }</Text>
<LayoutCurrencyIcon type={ row.value.pointsType } />
</Flex>
</Flex>
)) }
</Column>
</Column>
</NitroCard.Content>
</NitroCard>
);
};
+415 -95
View File
@@ -1,10 +1,29 @@
.nitro-catalog-classic-window { .nitro-catalog-classic-window {
--cat-blue: #4b7a94;
--cat-blue-dark: #385d73;
--cat-ink: #233a47;
--cat-strip: #d9e2e8;
--cat-tab: #b7c7d1;
--cat-tab-border: #7a9cb0;
--cat-panel: #eef2f5;
--cat-sub: #e1e7ec;
--cat-line: #b7c7d1;
--cat-canvas: #d4dadf;
--cat-canvas-2: #c9cfd4;
--cat-select: #3a82a7;
--cat-select-bg: #f0f5f8;
--cat-gold: #f7d673;
--cat-gold-border: #d4af37;
--cat-gold-ink: #4a3300;
--cat-buy: #009900;
width: 640px !important; width: 640px !important;
height: 600px !important; height: 600px !important;
max-width: 640px !important; max-width: 640px !important;
min-width: 640px !important; min-width: 640px !important;
min-height: 600px !important; min-height: 600px !important;
max-height: 600px !important; max-height: 600px !important;
background: #ffffff !important;
} }
.nitro-catalog-classic-window .nitro-card-title { .nitro-catalog-classic-window .nitro-card-title {
@@ -17,6 +36,12 @@
max-height: 38px; max-height: 38px;
} }
.nitro-catalog-classic-window .nitro-card-header {
background: var(--cat-blue);
border-color: var(--cat-blue);
border-bottom-color: var(--cat-ink);
}
.nitro-catalog-classic-admin-banner { .nitro-catalog-classic-admin-banner {
border-bottom: 1px solid rgba(0, 0, 0, 0.18); border-bottom: 1px solid rgba(0, 0, 0, 0.18);
background: linear-gradient(180deg, #f4d45d 0%, #d8b43e 100%); background: linear-gradient(180deg, #f4d45d 0%, #d8b43e 100%);
@@ -24,41 +49,47 @@
.nitro-catalog-classic-tabs-shell { .nitro-catalog-classic-tabs-shell {
flex-wrap: nowrap; flex-wrap: nowrap;
gap: 1px; gap: 2px;
min-height: 30px; min-height: 32px;
max-height: 30px; max-height: 32px;
padding: 0 6px; padding: 4px 6px 0;
overflow-x: auto; overflow-x: auto;
overflow-y: hidden; overflow-y: hidden;
align-items: end; align-items: end;
background: #e7e8df; background: var(--cat-strip);
border-bottom: 1px solid #b8beb4; border-bottom: 2px solid var(--cat-ink);
} }
.nitro-catalog-classic-tabs-shell .nitro-card-tab-item { .nitro-catalog-classic-tabs-shell .nitro-card-tab-item {
min-height: 28px; min-height: 28px;
padding: 5px 10px 4px; padding: 5px 12px 4px;
border: 1px solid #8f8f8b; border: 1px solid var(--cat-tab-border);
border-bottom: 0; border-bottom: 0;
border-radius: 5px 5px 0 0; border-radius: 5px 5px 0 0;
background: linear-gradient(180deg, #fafaf7 0%, #dde2d9 100%); background: var(--cat-tab);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9); color: var(--cat-ink);
box-shadow: none;
white-space: nowrap; white-space: nowrap;
font-weight: 700;
} }
.nitro-catalog-classic-tabs-shell .nitro-card-tab-item:hover { .nitro-catalog-classic-tabs-shell .nitro-card-tab-item:hover {
background: linear-gradient(180deg, #ffffff 0%, #e7ece4 100%); background: #c7d4dd;
} }
.nitro-catalog-classic-tabs-shell .nitro-card-tab-item-active { .nitro-catalog-classic-tabs-shell .nitro-card-tab-item-active {
background: #f2f2eb; background: #ffffff;
transform: translateY(0); color: #000000;
position: relative; position: relative;
top: 1px; top: 1px;
border-color: var(--cat-ink);
box-shadow: inset 0 -1px 0 #ffffff;
font-weight: 700;
} }
.nitro-catalog-classic-content-shell { .nitro-catalog-classic-content-shell {
padding: 6px 8px 8px !important; padding: 6px 8px 8px !important;
background: #ffffff !important;
} }
.nitro-catalog-classic-stage { .nitro-catalog-classic-stage {
@@ -82,75 +113,82 @@
} }
.nitro-catalog-classic-search-shell { .nitro-catalog-classic-search-shell {
padding: 3px; padding: 4px;
border: 1px solid #a7aba1; border: 1px solid var(--cat-line);
border-radius: 4px; border-radius: 4px;
background: linear-gradient(180deg, #f9f8f2 0%, #eaede5 100%); background: var(--cat-panel);
} }
.nitro-catalog-classic-search-shell input { .nitro-catalog-classic-search-shell input {
height: 18px; height: 20px;
padding-top: 0 !important; padding-top: 0 !important;
padding-bottom: 0 !important; padding-bottom: 0 !important;
border-width: 1px !important; border-width: 1px !important;
border-color: #8f9588 !important; border-color: var(--cat-tab-border) !important;
border-radius: 3px !important; border-radius: 3px !important;
background: #fff !important; background: #fff !important;
box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.08); box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.06);
} }
.nitro-catalog-classic-search-shell svg { .nitro-catalog-classic-search-shell svg {
color: #61645b !important; color: #5b7080 !important;
} }
.nitro-catalog-classic-navigation-shell { .nitro-catalog-classic-navigation-shell {
flex: 1 1 auto; flex: 1 1 auto;
min-height: 0; min-height: 0;
padding: 3px 2px 3px 3px; padding: 4px 0;
border: 1px solid #a7aba1; border: 1px solid var(--cat-line);
border-radius: 4px; border-radius: 4px;
background: linear-gradient(180deg, #f1f2ec 0%, #d8ddd3 100%); background: var(--cat-panel);
overflow: auto; overflow: auto;
} }
.nitro-catalog-classic-navigation-list { .nitro-catalog-classic-navigation-list {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
gap: 2px; gap: 0;
} }
.nitro-catalog-classic-navigation-node.is-child { .nitro-catalog-classic-navigation-node.is-child .nitro-catalog-classic-navigation-item {
margin-left: 10px; padding-left: 22px;
background: var(--cat-sub);
} }
.nitro-catalog-classic-navigation-item { .nitro-catalog-classic-navigation-item {
display: flex; display: flex;
align-items: center; align-items: center;
gap: 4px; gap: 6px;
min-height: 21px; min-height: 28px;
padding: 1px 6px 1px 5px; padding: 4px 10px;
border: 1px solid #bdc2ba; border: 0;
border-radius: 4px; border-left: 4px solid transparent;
background: linear-gradient(180deg, #f6f7f2 0%, #e6e9e1 100%); border-radius: 0;
color: #2e2e2e; background: transparent;
color: var(--cat-ink);
font-weight: 700;
cursor: pointer; cursor: pointer;
transition: background-color 0.12s ease, border-color 0.12s ease; transition: background-color 0.12s ease;
}
.nitro-catalog-classic-navigation-node.is-child .nitro-catalog-classic-navigation-item {
font-weight: 400;
} }
.nitro-catalog-classic-navigation-item:hover { .nitro-catalog-classic-navigation-item:hover {
background: linear-gradient(180deg, #ffffff 0%, #ebeee6 100%); background: #dde6ec;
border-color: #9ea79b;
} }
.nitro-catalog-classic-navigation-item.is-active { .nitro-catalog-classic-navigation-item.is-active {
background: linear-gradient(180deg, #dae7f0 0%, #c4d2de 100%); background: #ffffff;
border-color: #8e9ba5; border-left-color: var(--cat-blue);
color: #000000;
font-weight: 700; font-weight: 700;
} }
.nitro-catalog-classic-navigation-item.is-drag-over { .nitro-catalog-classic-navigation-item.is-drag-over {
outline: 2px solid rgba(48, 114, 140, 0.35); outline: 2px solid rgba(58, 130, 167, 0.4);
outline-offset: 1px; outline-offset: -2px;
} }
.nitro-catalog-classic-navigation-icon { .nitro-catalog-classic-navigation-icon {
@@ -188,7 +226,7 @@
} }
.nitro-catalog-classic-navigation-caret { .nitro-catalog-classic-navigation-caret {
color: #676d66 !important; color: #5b7080 !important;
} }
.nitro-catalog-classic-layout-shell { .nitro-catalog-classic-layout-shell {
@@ -197,9 +235,9 @@
min-width: 0; min-width: 0;
min-height: 0; min-height: 0;
height: 100%; height: 100%;
border: 1px solid #a7aba1; border: 1px solid var(--cat-line);
border-radius: 4px; border-radius: 4px;
background: linear-gradient(180deg, #eceee7 0%, #dfe4da 100%); background: #ffffff;
overflow: hidden; overflow: hidden;
} }
@@ -207,26 +245,28 @@
display: flex; display: flex;
flex-direction: column; flex-direction: column;
gap: 3px; gap: 3px;
min-height: 66px; flex-shrink: 0;
padding: 5px 7px; min-height: 0;
border-bottom: 1px solid #c8cdc3; padding: 6px 8px;
background: linear-gradient(180deg, #f6f6f2 0%, #e9ece4 100%); border-bottom: 1px solid var(--cat-line);
background: #ffffff;
} }
.nitro-catalog-classic-layout-hero { .nitro-catalog-classic-layout-hero {
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
flex: 1 1 auto; flex: 0 0 auto;
min-height: 32px; min-height: 32px;
overflow: hidden; overflow: visible;
} }
.nitro-catalog-classic-layout-hero img { .nitro-catalog-classic-layout-hero img {
max-width: 100%; display: block;
max-height: 32px;
width: auto; width: auto;
height: auto; height: auto;
max-width: 100%;
max-height: none;
object-fit: contain; object-fit: contain;
} }
@@ -234,7 +274,7 @@
flex: 1 1 auto; flex: 1 1 auto;
min-height: 0; min-height: 0;
padding: 6px; padding: 6px;
background: #f2f2eb; background: #ffffff;
overflow: hidden; overflow: hidden;
} }
@@ -244,24 +284,42 @@
.nitro-catalog-classic-offer-panel, .nitro-catalog-classic-offer-panel,
.nitro-catalog-classic-welcome { .nitro-catalog-classic-welcome {
border: 1px solid #bfc4bc; border: 1px solid var(--cat-line);
border-radius: 6px; border-radius: 6px;
background: linear-gradient(180deg, #ffffff 0%, #f3f3ed 100%); background: #ffffff;
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92); }
.nitro-catalog-classic-offer-panel {
min-height: 132px;
overflow: hidden;
} }
.nitro-catalog-classic-offer-preview { .nitro-catalog-classic-offer-preview {
width: 136px; width: 190px;
min-width: 136px; min-width: 190px;
padding: 8px; padding: 8px;
border-right: 1px solid #c9cec5; border-right: 1px solid var(--cat-line);
background: linear-gradient(180deg, #eef2ea 0%, #dde3d8 100%); background-color: var(--cat-canvas);
} }
.nitro-catalog-classic-offer-info { .nitro-catalog-classic-offer-info {
padding: 10px; padding: 10px;
} }
.nitro-catalog-classic-offer-actions {
justify-content: flex-end;
}
.nitro-catalog-classic-offer-info .rounded-full {
background: var(--cat-gold) !important;
border-color: var(--cat-gold-border) !important;
}
.nitro-catalog-classic-offer-info .rounded-full,
.nitro-catalog-classic-offer-info .rounded-full * {
color: var(--cat-gold-ink) !important;
}
.nitro-catalog-classic-welcome { .nitro-catalog-classic-welcome {
min-height: 128px; min-height: 128px;
padding: 10px; padding: 10px;
@@ -269,31 +327,40 @@
.nitro-catalog-classic-grid-shell { .nitro-catalog-classic-grid-shell {
min-height: 150px; min-height: 150px;
padding: 4px; padding: 6px;
border: 1px solid #bcc2b8; border: 1px solid var(--cat-line);
border-radius: 6px; border-radius: 6px;
background: linear-gradient(180deg, #f5f5f0 0%, #e4e7de 100%); background: #ffffff;
height: auto; height: auto;
flex: 1 1 auto; flex: 1 1 auto;
} }
.nitro-catalog-classic-grid { .nitro-catalog-classic-grid {
gap: 4px !important; gap: 6px !important;
align-content: start; align-content: start;
} }
.nitro-catalog-classic-window .layout-grid-item { .nitro-catalog-classic-window .layout-grid-item {
height: 54px; height: 54px;
border: 1px solid #b8beb6 !important; border: 1px solid var(--cat-line) !important;
border-radius: 6px !important; border-radius: 4px !important;
background-color: #d7dde2; background-color: #ffffff;
background-image: none; background-image: none;
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55); box-shadow: none;
transition: background-color 0.12s ease, border-color 0.12s ease, box-shadow 0.12s ease;
}
.nitro-catalog-classic-window .layout-grid-item:hover {
background-color: var(--cat-select-bg) !important;
border-color: var(--cat-select) !important;
box-shadow: 0 0 0 1px rgba(58, 130, 167, 0.2);
} }
.nitro-catalog-classic-window .layout-grid-item.is-active { .nitro-catalog-classic-window .layout-grid-item.is-active {
background-color: #e5ebef !important; background-color: var(--cat-select-bg) !important;
border-color: #8f978b !important; border-color: var(--cat-select) !important;
border-width: 2px !important;
box-shadow: 0 0 0 1px rgba(58, 130, 167, 0.35);
} }
.nitro-catalog-classic-grid-offer-icon { .nitro-catalog-classic-grid-offer-icon {
@@ -305,21 +372,12 @@
} }
.nitro-catalog-classic-window .nitro-catalog-header { .nitro-catalog-classic-window .nitro-catalog-header {
justify-content: flex-start; display: none;
min-height: 56px;
margin-bottom: 6px;
padding: 4px 6px;
border: 1px solid #bec3ba;
border-radius: 6px;
background: linear-gradient(180deg, #ffffff 0%, #f2f2ec 100%);
} }
.nitro-catalog-classic-window .nitro-catalog-header img { .nitro-catalog-classic-offer-info .bg-\[\#00800b\] {
max-width: 100%; background-color: var(--cat-buy) !important;
max-height: 48px; border-color: #007a00 !important;
width: auto;
height: auto;
object-fit: contain;
} }
.nitro-catalog-classic-breadcrumb { .nitro-catalog-classic-breadcrumb {
@@ -328,7 +386,7 @@
gap: 5px; gap: 5px;
min-height: 16px; min-height: 16px;
overflow: hidden; overflow: hidden;
color: #666a63; color: #5b7080;
font-size: 10px; font-size: 10px;
line-height: 1; line-height: 1;
white-space: nowrap; white-space: nowrap;
@@ -342,7 +400,7 @@
} }
.nitro-catalog-classic-breadcrumb-separator { .nitro-catalog-classic-breadcrumb-separator {
color: #9ea395; color: #94a7b3;
} }
.nitro-catalog-classic-navigation-shell::-webkit-scrollbar, .nitro-catalog-classic-navigation-shell::-webkit-scrollbar,
@@ -352,36 +410,37 @@
.nitro-catalog-classic-navigation-shell::-webkit-scrollbar-track, .nitro-catalog-classic-navigation-shell::-webkit-scrollbar-track,
.nitro-catalog-classic-layout-container :is(.overflow-auto, .nitro-card-content-shell, .nitro-catalog-classic-grid-shell)::-webkit-scrollbar-track { .nitro-catalog-classic-layout-container :is(.overflow-auto, .nitro-card-content-shell, .nitro-catalog-classic-grid-shell)::-webkit-scrollbar-track {
border-left: 1px solid #c2c6be; border-left: 1px solid var(--cat-line);
background: #dde2d8; background: var(--cat-panel);
} }
.nitro-catalog-classic-navigation-shell::-webkit-scrollbar-thumb, .nitro-catalog-classic-navigation-shell::-webkit-scrollbar-thumb,
.nitro-catalog-classic-layout-container :is(.overflow-auto, .nitro-card-content-shell, .nitro-catalog-classic-grid-shell)::-webkit-scrollbar-thumb { .nitro-catalog-classic-layout-container :is(.overflow-auto, .nitro-card-content-shell, .nitro-catalog-classic-grid-shell)::-webkit-scrollbar-thumb {
border: 1px solid #7d8680; border: 1px solid var(--cat-tab-border);
border-radius: 6px; border-radius: 6px;
background: linear-gradient(180deg, #a8b3ae 0%, #89948f 100%); background: linear-gradient(180deg, #a9bcc9 0%, #89a0ae 100%);
} }
.nitro-catalog-classic-navigation-shell::-webkit-scrollbar-button:single-button:vertical:decrement, .nitro-catalog-classic-navigation-shell::-webkit-scrollbar-button:single-button:vertical:decrement,
.nitro-catalog-classic-layout-container :is(.overflow-auto, .nitro-card-content-shell, .nitro-catalog-classic-grid-shell)::-webkit-scrollbar-button:single-button:vertical:decrement { .nitro-catalog-classic-layout-container :is(.overflow-auto, .nitro-card-content-shell, .nitro-catalog-classic-grid-shell)::-webkit-scrollbar-button:single-button:vertical:decrement {
height: 12px; height: 12px;
background: #dde2d8; background: var(--cat-panel);
} }
.nitro-catalog-classic-navigation-shell::-webkit-scrollbar-button:single-button:vertical:increment, .nitro-catalog-classic-navigation-shell::-webkit-scrollbar-button:single-button:vertical:increment,
.nitro-catalog-classic-layout-container :is(.overflow-auto, .nitro-card-content-shell, .nitro-catalog-classic-grid-shell)::-webkit-scrollbar-button:single-button:vertical:increment { .nitro-catalog-classic-layout-container :is(.overflow-auto, .nitro-card-content-shell, .nitro-catalog-classic-grid-shell)::-webkit-scrollbar-button:single-button:vertical:increment {
height: 12px; height: 12px;
background: #dde2d8; background: var(--cat-panel);
} }
@media (max-width: 991.98px) { @media (max-width: 1024px) and (min-width: 641px) {
.nitro-catalog-classic-window { .nitro-catalog-classic-window {
width: min(calc(100vw - 16px), 570px) !important; width: min(calc(100vw - 24px), 720px) !important;
min-width: 0 !important; min-width: 0 !important;
height: min(calc(100vh - 16px), 635px) !important; max-width: calc(100vw - 24px) !important;
height: min(calc(100vh - 24px), 720px) !important;
min-height: 0 !important; min-height: 0 !important;
max-width: calc(100vw - 16px) !important; max-height: calc(100vh - 24px) !important;
} }
.nitro-catalog-classic-stage { .nitro-catalog-classic-stage {
@@ -389,6 +448,267 @@
} }
.nitro-catalog-classic-sidebar { .nitro-catalog-classic-sidebar {
max-height: 180px; max-height: 200px;
}
}
.nitro-catalog-classic-mobile-header {
position: absolute;
top: 0;
left: 0;
right: 0;
z-index: 5;
display: flex;
align-items: center;
height: 38px;
padding: 0 44px 0 8px;
pointer-events: none;
}
.nitro-catalog-classic-mobile-burger {
position: relative;
pointer-events: auto;
}
.nitro-catalog-classic-burger-btn {
display: flex;
align-items: center;
justify-content: center;
width: 26px;
height: 26px;
border: 0;
border-radius: 5px;
background: rgba(0, 0, 0, 0.2);
color: #fff;
font-size: 13px;
cursor: pointer;
}
.nitro-catalog-classic-burger-btn:hover {
background: rgba(0, 0, 0, 0.3);
}
.nitro-catalog-classic-burger-btn:active {
background: rgba(0, 0, 0, 0.36);
}
.nitro-catalog-classic-burger-menu {
position: absolute;
top: 32px;
left: 0;
z-index: 60;
display: flex;
flex-direction: column;
gap: 4px;
min-width: 150px;
padding: 6px;
border: 1px solid var(--cat-line);
border-radius: 6px;
background: #fff;
box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
}
.nitro-catalog-classic-burger-menu button {
padding: 8px 10px;
border: 0;
border-radius: 4px;
background: var(--cat-strip);
color: var(--cat-ink);
font-weight: 700;
text-align: left;
cursor: pointer;
}
.nitro-catalog-classic-burger-menu button:disabled {
opacity: 0.6;
}
.nitro-catalog-classic-mobile-currency {
margin-left: auto;
display: flex;
align-items: center;
gap: 5px;
pointer-events: auto;
}
.nitro-catalog-classic-coin {
display: flex;
align-items: center;
gap: 3px;
padding: 3px 7px;
border-radius: 11px;
background: rgba(0, 0, 0, 0.25);
color: #fff;
font-size: 10px;
font-weight: 700;
}
.nitro-catalog-classic-coin span {
color: #fff;
}
.nitro-catalog-classic-admin-tab {
display: none !important;
}
.nitro-catalog-classic-preview-btn {
position: absolute;
top: 8px;
z-index: 4;
display: inline-flex;
align-items: center;
gap: 5px;
padding: 5px 10px;
border: 1px solid #555;
border-radius: 5px;
background: rgba(0, 0, 0, 0.7);
color: #fff;
font-size: 11px;
font-weight: 700;
white-space: nowrap;
cursor: pointer;
}
.nitro-catalog-classic-preview-btn:hover {
background: rgba(0, 0, 0, 0.82);
}
.nitro-catalog-classic-preview-btn:active {
background: rgba(0, 0, 0, 0.9);
}
.nitro-catalog-classic-preview-rotate {
left: 8px;
}
.nitro-catalog-classic-preview-state {
right: 8px;
}
@media (max-width: 640px) {
.nitro-catalog-classic-window {
width: 100vw !important;
min-width: 0 !important;
max-width: 100vw !important;
height: 100vh !important;
min-height: 0 !important;
max-height: 100vh !important;
border-radius: 0 !important;
}
.draggable-window:has(> .nitro-catalog-classic-window) {
transform: none !important;
left: 0 !important;
top: 0 !important;
}
.nitro-catalog-classic-window .nitro-card-title {
display: none;
}
.nitro-catalog-classic-mobile-currency {
position: absolute;
left: 50%;
margin-left: 0;
transform: translateX(-50%);
}
.nitro-catalog-classic-tabs-shell {
min-height: 44px;
max-height: 44px;
padding: 4px 4px 0;
-webkit-overflow-scrolling: touch;
}
.nitro-catalog-classic-tabs-shell .nitro-card-tab-item {
min-height: 42px;
padding: 6px 12px;
font-size: 12px;
justify-content: center;
}
.nitro-catalog-classic-tab-label {
display: none;
}
.nitro-catalog-classic-content-shell {
padding: 6px !important;
}
.nitro-catalog-classic-layout-hero {
display: none;
}
.nitro-catalog-classic-offer-panel {
flex-direction: column;
}
.nitro-catalog-classic-offer-preview {
width: 100%;
min-width: 0;
border-right: 0;
border-bottom: 1px solid var(--cat-line);
}
.nitro-catalog-classic-stage {
grid-template-columns: minmax(0, 1fr);
gap: 6px;
}
.nitro-catalog-classic-sidebar {
max-height: 33vh;
}
.nitro-catalog-classic-search-shell input {
height: 28px;
font-size: 13px;
}
.nitro-catalog-classic-navigation-item {
min-height: 40px;
padding: 6px 12px;
}
.nitro-catalog-classic-navigation-label {
font-size: 13px;
}
.nitro-catalog-classic-window .layout-grid-item {
height: 64px;
}
.nitro-catalog-classic-window .nitro-card-header-shell,
.nitro-catalog-classic-window .nitro-card-content-shell {
border-radius: 0 !important;
}
}
@media (max-height: 480px) {
.nitro-catalog-classic-window {
height: 100vh !important;
max-height: 100vh !important;
}
.nitro-catalog-classic-window .nitro-card-header-shell {
min-height: 32px;
max-height: 32px;
}
.nitro-catalog-classic-tabs-shell {
min-height: 38px;
max-height: 38px;
}
.nitro-catalog-classic-layout-header-shell {
min-height: 0;
padding: 3px 6px;
}
.nitro-catalog-classic-layout-hero {
display: none;
}
.nitro-catalog-classic-sidebar {
max-height: 26vh;
} }
} }
+48 -2
View File
@@ -176,9 +176,15 @@
border: 0 !important; border: 0 !important;
} }
& .nitro-card-accordion-set-header span { /* The header title is rendered by the shared <Text> component, which is a
font-size: 12px; <div> (not a <span>) — so target the div too, otherwise it keeps the app
default size and shows as oversized "testoni". */
& .nitro-card-accordion-set-header span,
& .nitro-card-accordion-set-header > div {
font-size: 12px !important;
font-weight: 700;
color: #111 !important; color: #111 !important;
line-height: 1.1;
} }
& .nitro-card-accordion-set-header .fa-icon { & .nitro-card-accordion-set-header .fa-icon {
@@ -800,3 +806,43 @@
} }
} }
} }
/* ------------------------------------------------------------------ *
* Flat (non-nested) overrides. The rules above live inside a nested
* `.nitro-friends { & ... }` block; these are written flat so they
* apply reliably and win by source order. They fix two things the
* nested rules didn't: the oversized/overflowing friend-list heads and
* the oversized accordion section titles ("testoni").
* ------------------------------------------------------------------ */
/* Friend-list avatar: clip a small box and centre the head, same proven
recipe as the messenger head. `inset: auto` cancels the component's
`inset-0`, otherwise the 130px head fills the row and overflows. */
.nitro-friends .friends-list-avatar {
position: relative !important;
width: 34px;
height: 36px;
flex-shrink: 0;
overflow: hidden;
}
.nitro-friends .friends-list-avatar .avatar-image {
position: absolute !important;
inset: auto !important;
left: 50% !important;
top: 56% !important;
width: 54px !important;
height: 54px !important;
margin: 0 !important;
background-position: center center !important;
transform: translate(-50%, -50%) scale(.95) !important;
}
/* Accordion section titles are rendered by <Text> (a <div>, not a <span>),
so size the div too — otherwise they show oversized. */
.nitro-friends .nitro-card-accordion-set-header > div,
.nitro-friends .nitro-card-accordion-set-header span {
font-size: 12px !important;
font-weight: 700 !important;
line-height: 1.15 !important;
}
+238
View File
@@ -0,0 +1,238 @@
.nitro-inventory-window {
--inv-blue: #4a7d8c;
--inv-beige: #e2e0d6;
--inv-tab: #c7c5ba;
--inv-line: #919088;
--inv-accent: #4a7d8c;
--inv-place: #5ca843;
--inv-place-dark: #397025;
--inv-place-light: #8ee374;
--inv-sell: #d13e31;
--inv-sell-dark: #881e15;
--inv-sell-light: #f07e74;
--inv-border: #6b6f73;
background: var(--inv-beige) !important;
}
.nitro-inventory-window .nitro-card-header {
background: var(--inv-blue);
border-color: var(--inv-blue);
border-bottom-color: var(--inv-border);
box-shadow: inset 0 2px 0 #709da9, inset 0 -2px 0 #315863;
}
.nitro-inventory-window .nitro-inventory-tabs-shell {
background: var(--inv-beige);
gap: 4px;
padding: 6px 8px 0;
border-bottom: 1px solid #b9c4ca;
}
.nitro-inventory-window .nitro-inventory-tabs-shell .nitro-card-tab-item {
background: var(--inv-tab);
border: 1px solid #aeb9bf;
border-bottom: 0;
border-radius: 6px 6px 0 0;
color: #8a9aa2;
font-weight: 600;
box-shadow: inset 1px 1px 0 #fff;
}
.nitro-inventory-window .nitro-inventory-tabs-shell .nitro-card-tab-item:hover {
background: #d2d0c6;
color: #6b7d86;
}
.nitro-inventory-window .nitro-inventory-tabs-shell .nitro-card-tab-item-active {
background: #fff;
color: #566a74;
border-color: #93a1a8;
position: relative;
top: 1px;
}
.nitro-inventory-window .nitro-inventory-tab-icon {
display: inline-flex;
align-items: center;
justify-content: center;
margin-right: 5px;
font-size: 14px;
line-height: 1;
}
.nitro-inventory-window .nitro-inventory-body {
background: var(--inv-beige);
}
.nitro-inventory-window .nitro-inventory-filter-bar {
background: #fff;
border: 2px solid var(--inv-border);
border-radius: 4px;
}
.nitro-inventory-window .nitro-inventory-filter-bar select {
background: var(--inv-beige);
border: 2px solid var(--inv-border) !important;
border-radius: 4px;
font-weight: 700;
}
.nitro-inventory-window .bg-card-grid-item {
background-color: var(--inv-beige) !important;
}
.nitro-inventory-window .border-card-grid-item-border {
border-color: var(--inv-line) !important;
}
.nitro-inventory-window .bg-card-grid-item-active {
background-color: #fff !important;
}
.nitro-inventory-window .border-card-grid-item-active {
border-color: var(--inv-border) !important;
box-shadow: 0 0 0 2px var(--inv-accent);
}
.nitro-inventory-window .bg-red-700 {
background-color: #fff !important;
color: var(--inv-accent) !important;
border-color: #75746e !important;
}
.nitro-inventory-window .shadow-room-previewer {
background-color: #fff;
border: 2px solid var(--inv-line);
}
.nitro-inventory-window .nitro-inventory-btn-place,
.nitro-inventory-window .nitro-inventory-btn-sell {
border: 2px solid var(--inv-border) !important;
border-radius: 4px;
color: #fff !important;
font-weight: 700;
text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5);
}
.nitro-inventory-window .nitro-inventory-btn-place {
background: var(--inv-place) !important;
box-shadow: inset -2px -2px 0 var(--inv-place-dark), inset 2px 2px 0 var(--inv-place-light);
}
.nitro-inventory-window .nitro-inventory-btn-place:hover {
background: #67b94e !important;
}
.nitro-inventory-window .nitro-inventory-btn-sell {
background: var(--inv-sell) !important;
box-shadow: inset -2px -2px 0 var(--inv-sell-dark), inset 2px 2px 0 var(--inv-sell-light);
}
.nitro-inventory-window .nitro-inventory-btn-sell:hover {
background: #db4d40 !important;
}
.nitro-inventory-preview-btn {
display: none;
}
@media (max-width: 1024px) and (min-width: 641px) {
.nitro-inventory-window {
width: min(calc(100vw - 24px), 640px) !important;
min-width: 0 !important;
max-width: calc(100vw - 24px) !important;
height: min(calc(100vh - 24px), 560px) !important;
min-height: 0 !important;
max-height: calc(100vh - 24px) !important;
}
}
@media (max-width: 640px) {
.draggable-window:has(> .nitro-inventory-window) {
inset: 0 !important;
left: 0 !important;
right: 0 !important;
top: 0 !important;
bottom: 0 !important;
width: auto !important;
height: auto !important;
transform: none !important;
}
.nitro-card-shell.nitro-inventory-window {
width: calc(100% - 40px) !important;
min-width: 0 !important;
max-width: calc(100% - 40px) !important;
height: calc(100% - 76px) !important;
min-height: 0 !important;
max-height: calc(100% - 76px) !important;
margin: 8px auto 0 auto !important;
}
.nitro-inventory-window .nitro-inventory-tabs-shell {
flex-wrap: nowrap;
overflow: hidden;
}
.nitro-inventory-window .nitro-inventory-tabs-shell .nitro-card-tab-item {
flex: 1 1 0;
min-width: 0;
padding: 8px 0;
justify-content: center;
}
.nitro-inventory-window .nitro-inventory-tab-label {
display: none;
}
.nitro-inventory-window .nitro-inventory-tab-icon {
margin-right: 0;
font-size: 17px;
}
.nitro-inventory-window .grid.grid-cols-12 {
grid-template-columns: minmax(0, 1fr) !important;
grid-template-rows: minmax(0, 1fr) auto !important;
}
.nitro-inventory-window .grid.grid-cols-12 > .col-span-7,
.nitro-inventory-window .grid.grid-cols-12 > .col-span-5 {
grid-column: 1 / -1 !important;
}
.nitro-inventory-window .nitro-inventory-btn-place,
.nitro-inventory-window .nitro-inventory-btn-sell {
padding-top: 0.5rem;
padding-bottom: 0.5rem;
}
.nitro-inventory-window .nitro-inventory-preview-btn {
position: absolute;
top: 6px;
z-index: 4;
display: inline-flex;
align-items: center;
gap: 5px;
padding: 4px 8px;
border: 1px solid #555;
border-radius: 5px;
background: rgba(0, 0, 0, 0.7);
color: #fff;
font-size: 10px;
font-weight: 700;
cursor: pointer;
}
.nitro-inventory-window .nitro-inventory-preview-btn:active {
background: rgba(0, 0, 0, 0.85);
}
.nitro-inventory-window .nitro-inventory-preview-rotate {
left: 6px;
}
.nitro-inventory-window .nitro-inventory-preview-state {
right: 6px;
}
}
+8
View File
@@ -212,3 +212,11 @@
} }
} }
} }
@media (max-width: 640px) {
.draggable-window {
left: 50% !important;
top: 50% !important;
transform: translate(-50%, -50%) !important;
}
}
+34 -26
View File
@@ -1,7 +1,3 @@
.nitro-extended-profile-window {
border-radius: 0 !important;
}
.nitro-extended-profile-window .nitro-card-header-shell { .nitro-extended-profile-window .nitro-card-header-shell {
min-height: 34px; min-height: 34px;
max-height: 34px; max-height: 34px;
@@ -46,32 +42,31 @@
.nitro-extended-profile__identity { .nitro-extended-profile__identity {
display: grid; display: grid;
grid-template-columns: 56px minmax(0, 1fr); grid-template-columns: 68px minmax(0, 1fr);
gap: 8px; gap: 10px;
} }
/* Mirror the room infostand exactly: a 68x135 flex column (= profile-background)
that centres the avatar horizontally and clips it; the stand/overlay sit on
top as absolute layers. The avatar keeps its component default classes
(relative w-[90px] h-[130px] left-[-2px]) so it lines up with bg + stand and
isn't crooked. Do NOT absolutely position or force width/height on it. */
.nitro-extended-profile__avatar-shell { .nitro-extended-profile__avatar-shell {
width: 56px; width: 68px;
height: 113px; height: 135px;
position: relative; position: relative;
overflow: hidden; overflow: hidden;
background-size: cover; border-radius: 3px;
background-position: center; display: flex;
flex-direction: column;
align-items: center;
} }
.nitro-extended-profile__avatar-stand, .nitro-extended-profile__avatar-stand,
.nitro-extended-profile__avatar-overlay { .nitro-extended-profile__avatar-overlay {
position: absolute; position: absolute;
inset: 0; top: 0;
} left: 0;
.nitro-extended-profile__avatar-image {
position: absolute !important;
left: 50% !important;
bottom: -4px;
transform: translateX(-50%);
width: auto !important;
height: auto !important;
} }
.nitro-extended-profile__identity-copy { .nitro-extended-profile__identity-copy {
@@ -253,14 +248,27 @@
.nitro-extended-profile__relationship-head { .nitro-extended-profile__relationship-head {
position: absolute; position: absolute;
right: -2px; right: 3px;
top: 50%; top: 50%;
width: 34px; width: 30px;
height: 34px; height: 32px;
transform: translateY(-50%); transform: translateY(-50%);
display: flex; overflow: hidden;
align-items: center; }
justify-content: center;
/* Same proven recipe as the messenger head: clip a small box and centre a
54x54 avatar in it. `inset: auto` cancels the component's `inset-0` so the
width/position take effect (otherwise the head overflows huge). */
.nitro-extended-profile__relationship-head .avatar-image {
position: absolute !important;
inset: auto !important;
left: 50% !important;
top: 54% !important;
width: 50px !important;
height: 50px !important;
margin: 0 !important;
background-position: center center !important;
transform: translate(-50%, -50%) scale(.95) !important;
} }
.nitro-extended-profile__relationship-subcopy { .nitro-extended-profile__relationship-subcopy {
+1
View File
@@ -1,4 +1,5 @@
export * from './useCatalog'; export * from './useCatalog';
export * from './useCatalogClassicStyle';
export * from './useCatalogFavorites'; export * from './useCatalogFavorites';
export * from './useCatalogPlaceMultipleItems'; export * from './useCatalogPlaceMultipleItems';
export * from './useCatalogSkipPurchaseConfirmation'; export * from './useCatalogSkipPurchaseConfirmation';
@@ -0,0 +1,14 @@
import { useBetween } from 'use-between';
import { GetConfigurationValue, LocalStorageKeys } from '../../api';
import { useLocalStorage } from '../useLocalStorage';
// Per-user toggle for the catalog visual style.
// - true => classic (old) catalog look
// - false => modern (rebuilt) catalog look
// The default for users who never touched the toggle comes from the global
// `catalog.classic.style` flag in ui-config.json, so an admin can flip the
// default for everyone (true = classic for all, false = modern for all)
// while still letting each user override it from the settings panel.
const useCatalogClassicStyleState = () => useLocalStorage<boolean>(LocalStorageKeys.CATALOG_CLASSIC_STYLE, GetConfigurationValue<boolean>('catalog.classic.style', false));
export const useCatalogClassicStyle = () => useBetween(useCatalogClassicStyleState);
+31 -3
View File
@@ -1,14 +1,29 @@
import { NavigatorSearchComposer, NavigatorSearchEvent, NavigatorSearchResultSet } from '@nitrots/nitro-renderer'; import { FlatCreatedEvent, NavigatorSearchComposer, NavigatorSearchEvent, NavigatorSearchResultSet } from '@nitrots/nitro-renderer';
import { useQueryClient } from '@tanstack/react-query';
import { useEffect, useState } from 'react'; import { useEffect, useState } from 'react';
import { SendMessageComposer } from '../../api'; import { SendMessageComposer } from '../../api';
import { useMessageEvent } from '../events'; import { useMessageEvent } from '../events';
import { useNavigatorUiStore } from './navigatorUiStore'; import { useNavigatorUiStore } from './navigatorUiStore';
/**
* Navigator search hook.
*
* Fires NavigatorSearchComposer(tabCode, filter) whenever the active tab
* or filter changes (skipped when tabCode is '' — initial state, before
* metadata arrives). Holds the latest NavigatorSearchResultSet that
* matches the active tab.
*
* The TanStack Query variant (see useNitroQuery) was tried earlier but
* its one-shot listener doesn't always reach NavigatorSearchEvent in
* production builds with older renderer SDKs; the persistent
* useMessageEvent listener used here matches the rest of the codebase
* and reliably catches every server push.
*/
export const useNavigatorSearch = () => export const useNavigatorSearch = () =>
{ {
const tabCode = useNavigatorUiStore(s => s.currentTabCode); const tabCode = useNavigatorUiStore(s => s.currentTabCode);
const filter = useNavigatorUiStore(s => s.currentFilter); const filter = useNavigatorUiStore(s => s.currentFilter);
const queryClient = useQueryClient();
const [ searchResult, setSearchResult ] = useState<NavigatorSearchResultSet | null>(null); const [ searchResult, setSearchResult ] = useState<NavigatorSearchResultSet | null>(null);
const [ isFetching, setIsFetching ] = useState(false); const [ isFetching, setIsFetching ] = useState(false);
@@ -26,12 +41,25 @@ export const useNavigatorSearch = () =>
const result = event.getParser()?.result; const result = event.getParser()?.result;
if(!result) return; if(!result) return;
if(tabCode && result.code !== tabCode) return; // No active tab → the search query is disabled, ignore any event.
// Otherwise only accept the event whose code matches the active tab.
if(!tabCode || (result.code !== tabCode)) return;
setSearchResult(result); setSearchResult(result);
setIsFetching(false); setIsFetching(false);
}); });
// A newly created room invalidates the current search so it refetches.
useMessageEvent<FlatCreatedEvent>(FlatCreatedEvent, () =>
{
queryClient.invalidateQueries({ queryKey: [ 'navigator', 'search' ] });
if(!tabCode) return;
setIsFetching(true);
SendMessageComposer(new NavigatorSearchComposer(tabCode, filter));
});
return { return {
searchResult, searchResult,
isFetching, isFetching,
+3 -1
View File
@@ -31,7 +31,9 @@ const useRadioState = () =>
if(loadStartedRef.current) return; if(loadStartedRef.current) return;
loadStartedRef.current = true; loadStartedRef.current = true;
const url = GetConfigurationValue<string>('radio.stations.url') || 'configuration/radio-stations.json5'; const url = GetConfigurationValue<string>('radio.url')
|| GetConfigurationValue<string>('radio.stations.url')
|| 'configuration/radio-stations.json5';
(async () => (async () =>
{ {
@@ -4,6 +4,9 @@ import { CommandDefinition, LocalizeText } from '../../../api';
import { createNitroStore } from '../../../state/createNitroStore'; import { createNitroStore } from '../../../state/createNitroStore';
import { useMessageEvent } from '../../events'; import { useMessageEvent } from '../../events';
// Client-only commands are static; safe to keep at module scope. The
// `descriptionKey` is a LocalizeText slot resolved at merge time so
// hotels in different locales see the right language.
const CLIENT_COMMANDS: { key: string; descriptionKey: string }[] = [ const CLIENT_COMMANDS: { key: string; descriptionKey: string }[] = [
// Room effects // Room effects
{ key: 'shake', descriptionKey: 'chatcmd.client.shake' }, { key: 'shake', descriptionKey: 'chatcmd.client.shake' },
+3 -1
View File
@@ -65,7 +65,9 @@ const useSoundboardState = () =>
if(!enabled || serverSounds.length || fileLoadStartedRef.current) return; if(!enabled || serverSounds.length || fileLoadStartedRef.current) return;
fileLoadStartedRef.current = true; fileLoadStartedRef.current = true;
const url = GetConfigurationValue<string>('soundboard.sounds.url') || 'configuration/soundboard-sounds.json5'; const url = GetConfigurationValue<string>('soundboard.url')
|| GetConfigurationValue<string>('soundboard.sounds.url')
|| 'configuration/soundboard-sounds.json5';
(async () => (async () =>
{ {
+2
View File
@@ -37,6 +37,8 @@ import './css/login/LoginView.css';
import './css/icons/icons.css'; import './css/icons/icons.css';
import './css/inventory/InventoryView.css';
import './css/layout/LayoutTrophy.css'; import './css/layout/LayoutTrophy.css';