You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.2 KiB
TypeScript
39 lines
1.2 KiB
TypeScript
// Copyright (C) 2021-2022 Intel Corporation
|
|
//
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
import React from 'react';
|
|
import CameraIcon from '@ant-design/icons/CameraOutlined';
|
|
|
|
import CVATTooltip from 'components/common/cvat-tooltip';
|
|
import { Canvas3d } from 'cvat-canvas3d-wrapper';
|
|
import { Canvas } from 'cvat-canvas-wrapper';
|
|
import { ActiveControl } from 'reducers';
|
|
|
|
interface Props {
|
|
canvasInstance: Canvas3d | Canvas;
|
|
activeControl: ActiveControl;
|
|
hideShowContextImage: (hidden: boolean) => void;
|
|
contextImageHide: boolean;
|
|
}
|
|
|
|
function PhotoContextControl(props: Props): JSX.Element {
|
|
const { activeControl, contextImageHide, hideShowContextImage } = props;
|
|
|
|
return (
|
|
<CVATTooltip title='Photo context show/hide' placement='right'>
|
|
<CameraIcon
|
|
className={`cvat-context-image-control
|
|
cvat-control-side-bar-icon-size ${
|
|
activeControl === ActiveControl.PHOTO_CONTEXT ? 'cvat-active-canvas-control' : ''
|
|
}`}
|
|
onClick={(): void => {
|
|
hideShowContextImage(!contextImageHide);
|
|
}}
|
|
/>
|
|
</CVATTooltip>
|
|
);
|
|
}
|
|
|
|
export default React.memo(PhotoContextControl);
|