mirror of
https://github.com/duckietm/Nitro-Cool-UI.git
synced 2025-06-21 22:36:58 +00:00
73 lines
3.0 KiB
TypeScript
73 lines
3.0 KiB
TypeScript
import { RoomObjectCategory, RoomObjectVariable } from '@nitrots/nitro-renderer';
|
|
import { FC, useEffect, useState } from 'react';
|
|
import { FaArrowLeft, FaArrowRight } from 'react-icons/fa';
|
|
import { GetRoomEngine, GetUserProfile, IPhotoData, LocalizeText } from '../../../api';
|
|
import { Flex, Grid, Text } from '../../../common';
|
|
|
|
export interface CameraWidgetShowPhotoViewProps
|
|
{
|
|
currentIndex: number;
|
|
currentPhotos: IPhotoData[];
|
|
}
|
|
|
|
export const CameraWidgetShowPhotoView: FC<CameraWidgetShowPhotoViewProps> = props =>
|
|
{
|
|
const { currentIndex = -1, currentPhotos = null } = props;
|
|
const [ imageIndex, setImageIndex ] = useState(0);
|
|
const currentImage = (currentPhotos && currentPhotos.length) ? currentPhotos[imageIndex] : null;
|
|
|
|
const next = () =>
|
|
{
|
|
setImageIndex(prevValue =>
|
|
{
|
|
let newIndex = (prevValue + 1);
|
|
if(newIndex >= currentPhotos.length) newIndex = 0;
|
|
return newIndex;
|
|
});
|
|
}
|
|
|
|
const previous = () =>
|
|
{
|
|
setImageIndex(prevValue =>
|
|
{
|
|
let newIndex = (prevValue - 1);
|
|
if(newIndex < 0) newIndex = (currentPhotos.length - 1);
|
|
return newIndex;
|
|
});
|
|
}
|
|
|
|
const getUserData = (roomId: number, objectId: number, type: string): number | string =>
|
|
{
|
|
const roomObject = GetRoomEngine().getRoomObject(roomId, objectId, RoomObjectCategory.WALL);
|
|
if (!roomObject) return '';
|
|
return type === 'username' ? roomObject.model.getValue<string>(RoomObjectVariable.FURNITURE_OWNER_NAME) : roomObject.model.getValue<number>(RoomObjectVariable.FURNITURE_OWNER_ID);
|
|
}
|
|
|
|
useEffect(() =>
|
|
{
|
|
setImageIndex(currentIndex);
|
|
}, [ currentIndex, currentPhotos ]);
|
|
|
|
if(!currentImage) return null;
|
|
|
|
const imageUrl = currentImage.w || '';
|
|
|
|
return (
|
|
<Grid style={ { display: 'flex', flexDirection: 'column' } }>
|
|
<Flex center className="picture-preview border border-black" style={ imageUrl ? { backgroundImage: `url(${imageUrl})` } : {} }>
|
|
{ !imageUrl && <Text bold>{ LocalizeText('camera.loading') }</Text> }
|
|
</Flex>
|
|
{ currentImage.m && currentImage.m.length && <Text center>{ currentImage.m }</Text> }
|
|
<Flex alignItems="center" justifyContent="between">
|
|
<Text> { new Date(currentImage.t * 1000).toLocaleDateString(undefined, { day: 'numeric', month: 'long', year: 'numeric' }) } </Text>
|
|
<Text className="username" onClick={() => GetUserProfile(Number(getUserData(currentImage.s, Number(currentImage.u), 'id')))}> { getUserData(currentImage.s, Number(currentImage.u), 'username') || 'Unknown' } </Text>
|
|
</Flex>
|
|
{ (currentPhotos.length > 1) &&
|
|
<Flex className="picture-preview-buttons">
|
|
<FaArrowLeft className="cursor-pointer" onClick={ previous } />
|
|
<FaArrowRight className="cursor-pointer" onClick={ next } />
|
|
</Flex>
|
|
}
|
|
</Grid>
|
|
);
|
|
} |