mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-27 00:17:31 +00:00

* feat: more debug response * fix: debug edge status * perf: doc * fix: workflow edge check * perf: i18n * package.json * perf: markdown mask
25 lines
691 B
TypeScript
25 lines
691 B
TypeScript
import React from 'react';
|
|
import { PhotoProvider, PhotoView } from 'react-photo-view';
|
|
import 'react-photo-view/dist/react-photo-view.css';
|
|
import { Box, Image, ImageProps } from '@chakra-ui/react';
|
|
import { useSystem } from '../../../hooks/useSystem';
|
|
import Loading from '../MyLoading';
|
|
|
|
const MyPhotoView = ({ ...props }: ImageProps) => {
|
|
const { isPc } = useSystem();
|
|
return (
|
|
<PhotoProvider
|
|
maskOpacity={0.6}
|
|
bannerVisible={!isPc}
|
|
photoClosable
|
|
loadingElement={<Loading fixed={false} />}
|
|
>
|
|
<PhotoView src={props.src}>
|
|
<Image cursor={'pointer'} {...props} />
|
|
</PhotoView>
|
|
</PhotoProvider>
|
|
);
|
|
};
|
|
|
|
export default MyPhotoView;
|