Added point deletion context menu
parent
b0dbbb3faa
commit
845be3b486
@ -0,0 +1,180 @@
|
|||||||
|
// Copyright (C) 2020 Intel Corporation
|
||||||
|
//
|
||||||
|
// SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
|
import React from 'react';
|
||||||
|
|
||||||
|
import { connect } from 'react-redux';
|
||||||
|
import { CombinedState, ContextMenuType } from 'reducers/interfaces';
|
||||||
|
|
||||||
|
import { updateAnnotationsAsync, updateCanvasContextMenu } from 'actions/annotation-actions';
|
||||||
|
|
||||||
|
import CanvasPointContextMenuComponent from 'components/annotation-page/standard-workspace/canvas-point-context-menu';
|
||||||
|
|
||||||
|
interface StateToProps {
|
||||||
|
activatedStateID: number | null;
|
||||||
|
activetedPointID: number | null | undefined;
|
||||||
|
states: any[];
|
||||||
|
visible: boolean;
|
||||||
|
top: number;
|
||||||
|
left: number;
|
||||||
|
type: ContextMenuType;
|
||||||
|
}
|
||||||
|
|
||||||
|
function mapStateToProps(state: CombinedState): StateToProps {
|
||||||
|
const {
|
||||||
|
annotation: {
|
||||||
|
annotations: {
|
||||||
|
states,
|
||||||
|
activatedStateID,
|
||||||
|
},
|
||||||
|
canvas: {
|
||||||
|
contextMenu: {
|
||||||
|
visible,
|
||||||
|
top,
|
||||||
|
left,
|
||||||
|
type,
|
||||||
|
pointID: activetedPointID,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
} = state;
|
||||||
|
|
||||||
|
return {
|
||||||
|
activatedStateID,
|
||||||
|
activetedPointID,
|
||||||
|
states,
|
||||||
|
visible,
|
||||||
|
left,
|
||||||
|
top,
|
||||||
|
type,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
interface DispatchToProps {
|
||||||
|
onUpdateAnnotations(states: any[]): void;
|
||||||
|
onCloseContextMenu(): void;
|
||||||
|
}
|
||||||
|
|
||||||
|
function mapDispatchToProps(dispatch: any): DispatchToProps {
|
||||||
|
return {
|
||||||
|
onUpdateAnnotations(states: any[]): void {
|
||||||
|
dispatch(updateAnnotationsAsync(states));
|
||||||
|
},
|
||||||
|
onCloseContextMenu(): void {
|
||||||
|
dispatch(updateCanvasContextMenu(false, 0, 0));
|
||||||
|
},
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
type Props = StateToProps & DispatchToProps;
|
||||||
|
|
||||||
|
interface State {
|
||||||
|
latestLeft: number;
|
||||||
|
latestTop: number;
|
||||||
|
left: number;
|
||||||
|
top: number;
|
||||||
|
}
|
||||||
|
|
||||||
|
class CanvasContextMenuContainer extends React.PureComponent<Props, State> {
|
||||||
|
public constructor(props: Props) {
|
||||||
|
super(props);
|
||||||
|
|
||||||
|
this.state = {
|
||||||
|
latestLeft: 0,
|
||||||
|
latestTop: 0,
|
||||||
|
left: 0,
|
||||||
|
top: 0,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
static getDerivedStateFromProps(props: Props, state: State): State | null {
|
||||||
|
if (props.left === state.latestLeft
|
||||||
|
&& props.top === state.latestTop) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
return {
|
||||||
|
...state,
|
||||||
|
latestLeft: props.left,
|
||||||
|
latestTop: props.top,
|
||||||
|
top: props.top,
|
||||||
|
left: props.left,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
public componentDidUpdate(): void {
|
||||||
|
const {
|
||||||
|
top,
|
||||||
|
left,
|
||||||
|
} = this.state;
|
||||||
|
|
||||||
|
const {
|
||||||
|
innerWidth,
|
||||||
|
innerHeight,
|
||||||
|
} = window;
|
||||||
|
|
||||||
|
const [element] = window.document.getElementsByClassName('cvat-canvas-point-context-menu');
|
||||||
|
if (element) {
|
||||||
|
const height = element.clientHeight;
|
||||||
|
const width = element.clientWidth;
|
||||||
|
|
||||||
|
if (top + height > innerHeight || left + width > innerWidth) {
|
||||||
|
this.setState({
|
||||||
|
top: top - Math.max(top + height - innerHeight, 0),
|
||||||
|
left: left - Math.max(left + width - innerWidth, 0),
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private deletePoint(): void {
|
||||||
|
const {
|
||||||
|
activetedPointID,
|
||||||
|
activatedStateID,
|
||||||
|
states,
|
||||||
|
onUpdateAnnotations,
|
||||||
|
onCloseContextMenu,
|
||||||
|
} = this.props;
|
||||||
|
|
||||||
|
const [objectState] = states.filter((e) => (e.clientID === activatedStateID));
|
||||||
|
if (activetedPointID) {
|
||||||
|
objectState.points = objectState.points.slice(0, activetedPointID * 2)
|
||||||
|
.concat(objectState.points.slice(activetedPointID * 2 + 2));
|
||||||
|
onUpdateAnnotations([objectState]);
|
||||||
|
onCloseContextMenu();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public render(): JSX.Element {
|
||||||
|
const {
|
||||||
|
visible,
|
||||||
|
activatedStateID,
|
||||||
|
type,
|
||||||
|
} = this.props;
|
||||||
|
|
||||||
|
const {
|
||||||
|
top,
|
||||||
|
left,
|
||||||
|
} = this.state;
|
||||||
|
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
{type === ContextMenuType.CANVAS_SHAPE_POINT && (
|
||||||
|
<CanvasPointContextMenuComponent
|
||||||
|
left={left}
|
||||||
|
top={top}
|
||||||
|
visible={visible}
|
||||||
|
activatedStateID={activatedStateID}
|
||||||
|
onPointDelete={() => this.deletePoint()}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export default connect(
|
||||||
|
mapStateToProps,
|
||||||
|
mapDispatchToProps,
|
||||||
|
)(CanvasContextMenuContainer);
|
||||||
Loading…
Reference in New Issue