@@ -73,11 +73,10 @@ export default class HomeScreen extends React.Component {
73
73
) }
74
74
renderHiddenRow = { ( data , secId , rowId , rowMap ) => (
75
75
< View style = { styles . rowBack } >
76
- < Text > Left</ Text >
77
76
< TouchableOpacity style = { [ styles . backRightBtn , styles . backRightBtnLeft ] } onPress = { ( ) => this . closeRow ( rowMap , `${ secId } ${ rowId } ` ) } >
78
77
< Text style = { styles . backTextWhite } > Close</ Text >
79
78
</ TouchableOpacity >
80
- < TouchableOpacity style = { [ styles . backRightBtn , styles . backRightBtnRight ] } onPress = { ( ) => this . deleteRow ( rowMap , `${ secId } ${ rowId } ` ) } >
79
+ < TouchableOpacity style = { [ styles . backRightBtn , styles . backRightBtnRight ] } onPress = { ( ) => this . deleteRow ( data , rowMap , `${ secId } ${ rowId } ` ) } >
81
80
< Text style = { styles . backTextWhite } > Delete</ Text >
82
81
</ TouchableOpacity >
83
82
</ View >
@@ -95,15 +94,24 @@ export default class HomeScreen extends React.Component {
95
94
}
96
95
}
97
96
98
- deleteRow ( rowMap , rowKey ) {
97
+ deleteRow ( data , rowMap , rowKey ) {
99
98
this . closeRow ( rowMap , rowKey ) ;
100
- const newData = [ ...this . state . studentList ] ;
101
- const prevIndex = this . state . studentList . findIndex ( item => item . key === rowKey ) ;
102
- let student = this . state . studentList [ prevIndex + 1 ] ;
103
- console . log ( student ) ;
104
- DBManagerModule . deleteStudent ( student . studentName ) ;
105
- newData . splice ( prevIndex , 1 ) ;
106
- this . setState ( { studentList : newData } ) ;
99
+ DBManagerModule . deleteStudent ( data . studentName ) ;
100
+ let index = - 1 ;
101
+ let tempList = this . state . studentList ;
102
+ for ( let i = 0 ; i < tempList . length ; i ++ ) {
103
+ let obj = tempList [ i ] ;
104
+ if ( obj . studentName === data . studentName ) {
105
+ index = i ;
106
+ break ;
107
+ }
108
+ }
109
+ if ( index >= 0 ) {
110
+ tempList . splice ( index , 1 ) ;
111
+ this . setState ( {
112
+ studentList : tempList
113
+ } )
114
+ }
107
115
}
108
116
}
109
117
0 commit comments