-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
110 lines (96 loc) · 2.57 KB
/
App.js
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
import React, { useState, useEffect } from 'react';
import {
Alert,
Text,
View,
StyleSheet,
Pressable,
Vibration,
} from 'react-native';
import { Focus } from './src/components/features/focus/Focus';
import { FocusHistory } from './src/components/features/focus/FocusHistory';
import { Timer } from './src/components/features/timer/Timer';
import { colors } from './src/components/utils/colors';
import { spacingSizes } from './src/components/utils/sizes';
import AsyncStorage from '@react-native-async-storage/async-storage';
const STATUS = {
COMPLETED: 1,
CANCELLED: 2,
};
export default function App() {
const [focusSubject, setFocusSubject] = useState();
const [focusHistory, setFocusHistory] = useState([]);
const updateFocusHistory = (subject, status) => {
setFocusHistory([
...focusHistory,
{ key: String(focusHistory.length + 1), subject, status },
]);
};
//console.log(focusHistory);
const endTimer = () => {
updateFocusHistory(focusSubject, STATUS.COMPLETED);
setFocusSubject(null);
};
const clearSubject = () => {
updateFocusHistory(focusSubject, STATUS.CANCELLED);
setFocusSubject(null);
};
const onClear = () => {
setFocusHistory([]);
};
const saveHistory = async () => {
try {
AsyncStorage.setItem('focusHistory', JSON.stringify(focusHistory));
} catch (e) {
console.log(e);
}
};
const loadFocusHistory = async () => {
try {
const history = await AsyncStorage.getItem('focusHistory');
if (history && JSON.parse(history).length) {
setFocusHistory(JSON.parse(history));
}
} catch (e) {
console.log(e);
}
};
const handleVibrating = () => {
Vibration.cancel();
};
useEffect(() => {
loadFocusHistory();
}, []);
useEffect(() => {
saveHistory();
}, [focusHistory]);
return (
<View style={styles.container}>
<Pressable style={{ flex: 1 }} onPress={() => handleVibrating()}>
{focusSubject ? (
<Timer
focusSubject={focusSubject}
onTimerEnd={endTimer}
clearSubject={clearSubject}
/>
) : (
<View style={styles.focusContainer}>
<Focus addSubject={setFocusSubject} />
<FocusHistory focusHistory={focusHistory} onClear={onClear} />
</View>
)}
</Pressable>
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: colors.heavyGreen,
paddingTop: spacingSizes.xl,
justifyContent: 'space-around',
},
focusContainer: {
flex: 1,
},
});