mirror of
https://github.com/Doodle3D/Doodle3D-Core.git
synced 2024-11-05 06:03:24 +01:00
remove tap event plugin
This commit is contained in:
parent
02e312247c
commit
4879f47d4c
5431
package-lock.json
generated
5431
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -48,6 +48,7 @@
|
||||
"react-redux": "^5.0.6",
|
||||
"react-resize-detector": "^1.1.0",
|
||||
"react-svg-inline": "^2.0.1",
|
||||
"react-tap-event-plugin": "^3.0.3",
|
||||
"redux-form": "^7.1.2",
|
||||
"redux-undo": "^1.0.0-beta9-9-7",
|
||||
"reselect": "^3.0.1",
|
||||
|
@ -418,24 +418,24 @@ export function traceDrag(position, start, id, screenMatrixContainer, screenMatr
|
||||
});
|
||||
};
|
||||
}
|
||||
export function traceTap(position, objects, screenMatrixContainer, screenMatrixZoom) {
|
||||
return async (dispatch, getState) => {
|
||||
dispatch({ type: TRACE_TAP });
|
||||
|
||||
const state = getState();
|
||||
const id = objects.find(_id => state.sketcher.present.objectsById[_id].type === 'IMAGE_GUIDE');
|
||||
|
||||
if (id) {
|
||||
const shapeData = state.sketcher.present.objectsById[id];
|
||||
const traceStart = calculatePointInImage(position, shapeData, screenMatrixZoom);
|
||||
|
||||
const { value: traceData } = await dispatch(floodFill(DEFAULT_TRACE_TOLERANCE, shapeData, traceStart));
|
||||
|
||||
return dispatch(traceFloodFill(traceData, shapeData));
|
||||
} else {
|
||||
return dispatch(importImage());
|
||||
}
|
||||
};
|
||||
// export function traceTap(position, objects, screenMatrixContainer, screenMatrixZoom) {
|
||||
// return async (dispatch, getState) => {
|
||||
// dispatch({ type: TRACE_TAP });
|
||||
//
|
||||
// const state = getState();
|
||||
// const id = objects.find(_id => state.sketcher.present.objectsById[_id].type === 'IMAGE_GUIDE');
|
||||
//
|
||||
// if (id) {
|
||||
// const shapeData = state.sketcher.present.objectsById[id];
|
||||
// const traceStart = calculatePointInImage(position, shapeData, screenMatrixZoom);
|
||||
//
|
||||
// const { value: traceData } = await dispatch(floodFill(DEFAULT_TRACE_TOLERANCE, shapeData, traceStart));
|
||||
//
|
||||
// return dispatch(traceFloodFill(traceData, shapeData));
|
||||
// } else {
|
||||
// return dispatch(importImage());
|
||||
// }
|
||||
// };
|
||||
}
|
||||
|
||||
export function importImage() {
|
||||
|
Loading…
Reference in New Issue
Block a user