mirror of
https://github.com/duckietm/Nitro-V3.git
synced 2026-06-20 15:36:18 +00:00
34 lines
1.7 KiB
TypeScript
34 lines
1.7 KiB
TypeScript
import { FC } from 'react';
|
|
import { GetConfigurationValue, LocalizeText, ReportType } from '../../../../api';
|
|
import { NitroCardContentView, NitroCardHeaderView, NitroCardView } from '../../../../common';
|
|
import { useFurnitureExternalImageWidget, useHelp } from '../../../../hooks';
|
|
import { CameraWidgetShowPhotoView } from '../../../camera/views/CameraWidgetShowPhotoView';
|
|
|
|
export const FurnitureExternalImageView: FC<{}> = props => {
|
|
const { objectId = -1, currentPhotoIndex = -1, currentPhotos = null, onClose = null } = useFurnitureExternalImageWidget();
|
|
const { report = null } = useHelp();
|
|
|
|
if (objectId === -1 || currentPhotoIndex === -1) return null;
|
|
|
|
const handleOpenFullPhoto = () => {
|
|
const photoUrl = currentPhotos[currentPhotoIndex].w.replace('_small.png', '.png');
|
|
if (photoUrl) {
|
|
console.log("Opened photo URL:", photoUrl);
|
|
window.open(photoUrl, '_blank');
|
|
}
|
|
};
|
|
|
|
return (
|
|
<NitroCardView className="nitro-external-image-widget no-resize" uniqueKey="photo-viewer" theme="primary-slim">
|
|
<NitroCardHeaderView
|
|
headerText={ LocalizeText('camera.interface.title') }
|
|
isGalleryPhoto={true}
|
|
onCloseClick={onClose}
|
|
onReportPhoto={() => report(ReportType.PHOTO, { extraData: currentPhotos[currentPhotoIndex].w, roomId: currentPhotos[currentPhotoIndex].s, reportedUserId: GetSessionDataManager().userId, roomObjectId: Number(currentPhotos[currentPhotoIndex].u) })}
|
|
/>
|
|
<NitroCardContentView>
|
|
<CameraWidgetShowPhotoView currentIndex={currentPhotoIndex} currentPhotos={currentPhotos} onClick={handleOpenFullPhoto} />
|
|
</NitroCardContentView>
|
|
</NitroCardView>
|
|
);
|
|
}; |