import React from 'react'; import OuterRect from '../OuterRect'; import SvgShapeElement from '../SvgShapeElement'; import { rectCalc, parsePositionForBackend } from '../../helpers/position'; import { AnnotationContainer } from '../../global/otherStyled'; const Note: React.SFC = ({ id, obj_type, obj_attr: { bdcolor = '', fcolor = '', bdwidth = 0, transparency = 0, ftransparency = 0, position, }, scale, viewport, isCollapse, onUpdate, }: AnnotationElementPropsType) => { const annotRect = rectCalc(position as PositionType, viewport.height, scale); const handleScaleOrMove = ({ top, left, width = 0, height = 0, }: CoordType): void => { const newPosition = { top, left, bottom: top + (height || annotRect.height), right: left + (width || annotRect.width), }; onUpdate({ position: parsePositionForBackend( obj_type, newPosition, viewport.height, scale ), }); }; const actualbdwidth = bdwidth * scale; const actualWidth = annotRect.width; const actualHeight = annotRect.height; return ( <> {!isCollapse ? ( ) : ( '' )} ); }; export default Note;