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.
49 lines
1.3 KiB
TypeScript
49 lines
1.3 KiB
TypeScript
// Copyright (C) 2020 Intel Corporation
|
|
//
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
import React from 'react';
|
|
import Popover from 'antd/lib/popover';
|
|
import Icon from '@ant-design/icons';
|
|
|
|
import { Canvas } from 'cvat-canvas-wrapper';
|
|
import { PolygonIcon } from 'icons';
|
|
import { ShapeType } from 'reducers/interfaces';
|
|
|
|
import DrawShapePopoverContainer from 'containers/annotation-page/standard-workspace/controls-side-bar/draw-shape-popover';
|
|
|
|
interface Props {
|
|
canvasInstance: Canvas;
|
|
isDrawing: boolean;
|
|
}
|
|
|
|
function DrawPolygonControl(props: Props): JSX.Element {
|
|
const { canvasInstance, isDrawing } = props;
|
|
|
|
const dynamcPopoverPros = isDrawing ? {
|
|
overlayStyle: {
|
|
display: 'none',
|
|
},
|
|
} : {};
|
|
|
|
const dynamicIconProps = isDrawing ? {
|
|
className: 'cvat-active-canvas-control',
|
|
onClick: (): void => {
|
|
canvasInstance.draw({ enabled: false });
|
|
},
|
|
} : {};
|
|
|
|
return (
|
|
<Popover
|
|
{...dynamcPopoverPros}
|
|
overlayClassName='cvat-draw-shape-popover'
|
|
placement='right'
|
|
content={<DrawShapePopoverContainer shapeType={ShapeType.POLYGON} />}
|
|
>
|
|
<Icon className='cvat-draw-polygon-control' {...dynamicIconProps} component={PolygonIcon} />
|
|
</Popover>
|
|
);
|
|
}
|
|
|
|
export default React.memo(DrawPolygonControl);
|