2
2
import React , { useCallback , useEffect , useState , useRef } from 'react'
3
3
import Button from 'react-bootstrap/Button'
4
4
import { useMediaQuery } from 'react-responsive'
5
- import { toast } from 'react-toastify'
6
5
import { View } from 'react-native'
6
+ // PropTypes is used to validate that the used props are in fact passed to this Component
7
+ import PropTypes from 'prop-types'
7
8
8
9
// Local Imports
9
10
import '../Home.css'
10
11
import { useGlobalState , MEAL_STATE } from '../../GlobalState'
11
12
import { MOVING_STATE_ICON_DICT } from '../../Constants'
12
13
import { useROS , createROSService , createROSServiceRequest , subscribeToROSTopic , unsubscribeFromROSTopic } from '../../../ros/ros_helpers'
13
- import {
14
- ACQUISITION_REPORT_SERVICE_NAME ,
15
- ACQUISITION_REPORT_SERVICE_TYPE ,
16
- FOOD_ON_FORK_DETECTION_TOPIC ,
17
- FOOD_ON_FORK_DETECTION_TOPIC_MSG ,
18
- REGULAR_CONTAINER_ID ,
19
- ROS_SERVICE_NAMES
20
- } from '../../Constants'
14
+ import { FOOD_ON_FORK_DETECTION_TOPIC , FOOD_ON_FORK_DETECTION_TOPIC_MSG , ROS_SERVICE_NAMES } from '../../Constants'
21
15
22
16
/**
23
17
* The BiteAcquisitionCheck component appears after the robot has attempted to
24
18
* acquire a bite, and asks the user whether it succeeded at acquiring the bite.
25
19
*/
26
- const BiteAcquisitionCheck = ( ) => {
20
+ const BiteAcquisitionCheck = ( props ) => {
27
21
// Store the remining time before auto-continuing
28
22
const [ remainingSeconds , setRemainingSeconds ] = useState ( null )
29
23
// Get the relevant global variables
@@ -50,17 +44,11 @@ const BiteAcquisitionCheck = () => {
50
44
let iconWidth = isPortrait ? '28vh' : '28vw'
51
45
let iconHeight = isPortrait ? '18vh' : '18vw'
52
46
53
- // Configure AcquisitionReport service
54
- const lastMotionActionResponse = useGlobalState ( ( state ) => state . lastMotionActionResponse )
55
47
/**
56
48
* Connect to ROS, if not already connected. Put this in useRef to avoid
57
49
* re-connecting upon re-renders.
58
50
*/
59
51
const ros = useRef ( useROS ( ) . ros )
60
- /**
61
- * Create the ROS Service Client for reporting success/failure
62
- */
63
- let acquisitionReportService = useRef ( createROSService ( ros . current , ACQUISITION_REPORT_SERVICE_NAME , ACQUISITION_REPORT_SERVICE_TYPE ) )
64
52
/**
65
53
* Create the ROS Service. This is created in local state to avoid re-creating
66
54
* it upon every re-render.
@@ -73,48 +61,20 @@ const BiteAcquisitionCheck = () => {
73
61
* succeeded.
74
62
*/
75
63
const acquisitionSuccess = useCallback ( ( ) => {
76
- console . log ( 'acquisitionSuccess' )
77
- // NOTE: This uses the ToastContainer in Header
78
- toast . info ( 'Reporting Food Acquisition Success!' , {
79
- containerId : REGULAR_CONTAINER_ID ,
80
- toastId : 'foodAcquisitionSuccess'
81
- } )
82
- // Create a service request
83
- let request = createROSServiceRequest ( {
84
- loss : 0.0 ,
85
- action_index : lastMotionActionResponse . action_index ,
86
- posthoc : lastMotionActionResponse . posthoc ,
87
- id : lastMotionActionResponse . selection_id
88
- } )
89
- // Call the service
90
- let service = acquisitionReportService . current
91
- service . callService ( request , ( response ) => console . log ( 'Got acquisition report response' , response ) )
64
+ let acquisitionResponse = props . acquisitionResponse
65
+ acquisitionResponse ( true )
92
66
setMealState ( MEAL_STATE . R_MovingToStagingConfiguration )
93
- } , [ lastMotionActionResponse , setMealState ] )
67
+ } , [ props . acquisitionResponse , setMealState ] )
94
68
95
69
/**
96
70
* Callback function for when the user indicates that the bite acquisition
97
71
* failed.
98
72
*/
99
73
const acquisitionFailure = useCallback ( ( ) => {
100
- console . log ( 'acquisitionFailure' )
101
- // NOTE: This uses the ToastContainer in Header
102
- toast . info ( 'Reporting Food Acquisition Failure.' , {
103
- containerId : REGULAR_CONTAINER_ID ,
104
- toastId : 'foodAcquisitionFailure'
105
- } )
106
- // Create a service request
107
- let request = createROSServiceRequest ( {
108
- loss : 1.0 ,
109
- action_index : lastMotionActionResponse . action_index ,
110
- posthoc : lastMotionActionResponse . posthoc ,
111
- id : lastMotionActionResponse . selection_id
112
- } )
113
- // Call the service
114
- let service = acquisitionReportService . current
115
- service . callService ( request , ( response ) => console . log ( 'Got acquisition report response' , response ) )
74
+ let acquisitionResponse = props . acquisitionResponse
75
+ acquisitionResponse ( false )
116
76
setMealState ( MEAL_STATE . R_MovingAbovePlate )
117
- } , [ lastMotionActionResponse , setMealState ] )
77
+ } , [ props . acquisitionResponse , setMealState ] )
118
78
119
79
/*
120
80
* Create refs to store the interval for the food-on-fork detection timers.
@@ -429,4 +389,11 @@ const BiteAcquisitionCheck = () => {
429
389
return < > { fullPageView ( ) } </ >
430
390
}
431
391
392
+ BiteAcquisitionCheck . propTypes = {
393
+ debug : PropTypes . bool ,
394
+ // A function that takes a boolean indicating whether the robot succeeded at acquiring the bite,
395
+ // and processes the response. Note that it does not transition to the next state.
396
+ acquisitionResponse : PropTypes . func . isRequired
397
+ }
398
+
432
399
export default BiteAcquisitionCheck
0 commit comments