-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.js
More file actions
81 lines (64 loc) · 2.01 KB
/
App.js
File metadata and controls
81 lines (64 loc) · 2.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
import { StatusBar } from 'expo-status-bar';
import React, { useState } from 'react';
import { StyleSheet, Text, View, TextInput, Button, Modal, ScrollView, FlatList } from 'react-native';
import GoalItem from './components/GoalItem';
import GoalInput from './components/GoalInput';
import Header from './components/Header'
export default function App() {
const [courseGoals, setCourseGoals] = useState([])
const[isAddMode, setIsAddMode] = useState(false);
const addGoalHandler = (goalTitle, interestRate, years, paidOff) => {
//setCourseGoals([...courseGoals, enteredGoal])
setCourseGoals(prevGoals => [
...courseGoals,
{id: Math.random().toString(),
value: goalTitle,
interest: interestRate,
years: years,
paidOff: paidOff
}
])
setIsAddMode(false)
}
const cancelGoalAdditionHandler = () =>{
setIsAddMode(false);
}
const removeGoalHandler = goalId => {
setCourseGoals(currentGoals=>{
return currentGoals.filter(goal => goal.id !== goalId)
})}
return (
<View style={styles.screen} >
<Header title="Student Loan Calculator"/>
<View style= {{padding:20}}>
<Text style = {styles.title}> LOANS: </Text>
<GoalInput visible={isAddMode}
addGoalHandler={addGoalHandler}
onCancel={cancelGoalAdditionHandler}
/>
<FlatList
keyExtractor={(item, index) => item.id}
data={courseGoals}
renderItem={itemData => (
<GoalItem
onDelete={removeGoalHandler.bind(this, itemData.item.id)}
title={itemData.item.value}
subInterest={itemData.item.interest}
subPaid={itemData.item.paidOff}
subYears={itemData.item.years}
/>)}
/>
<Button title="Add New Loan" onPress={() => setIsAddMode(true)}/>
</View>
</View >
)
}
const styles = StyleSheet.create({
screen: {
flex: 1,
},
title: {
fontSize: 22,
fontWeight: 'bold',
}
});