|
| 1 | +import AsyncStorage from "@react-native-async-storage/async-storage"; |
| 2 | + |
| 3 | +import React, { Component } from "react"; |
| 4 | +import { View, ScrollView, Text, TouchableHighlight } from "react-native"; |
| 5 | + |
| 6 | +export default class History extends React.Component { |
| 7 | + constructor(props) { |
| 8 | + super(props); |
| 9 | + this.state = { |
| 10 | + allKeys: [], |
| 11 | + }; |
| 12 | + } |
| 13 | + getDate = () => { |
| 14 | + let today = new Date(); |
| 15 | + var date = |
| 16 | + today.getFullYear() + |
| 17 | + "-" + |
| 18 | + (today.getMonth() + 1) + |
| 19 | + "-" + |
| 20 | + today.getDate(); |
| 21 | + var time = |
| 22 | + today.getHours() + ":" + today.getMinutes() + ":" + today.getSeconds(); |
| 23 | + today = date + " @ " + time; |
| 24 | + |
| 25 | + return today; |
| 26 | + }; |
| 27 | + |
| 28 | + storeData = async (id, data) => { |
| 29 | + var inpt_data = data; |
| 30 | + if (id != "storage_key") { |
| 31 | + inpt_data = { ...inpt_data, date: this.getDate() }; |
| 32 | + } |
| 33 | + |
| 34 | + try { |
| 35 | + const jsonValue = JSON.stringify(inpt_data); |
| 36 | + // console.log(jsonValue); |
| 37 | + await AsyncStorage.setItem(id, jsonValue); |
| 38 | + // return jsonValue; |
| 39 | + } catch (e) { |
| 40 | + console.log("Couldn't Store the Value"); |
| 41 | + console.log(e); |
| 42 | + } |
| 43 | + }; |
| 44 | + |
| 45 | + getData = async (id) => { |
| 46 | + try { |
| 47 | + const jsonValue = await AsyncStorage.getItem(id); |
| 48 | + // console.log(jsonValue); |
| 49 | + if (jsonValue != null) { |
| 50 | + let inpt_data = JSON.parse(jsonValue); |
| 51 | + // console.log(inpt_data); |
| 52 | + inpt_data = { ...inpt_data, from_history: true }; |
| 53 | + return jsonValue; |
| 54 | + } else { |
| 55 | + console.log("NULL value!"); |
| 56 | + return null; |
| 57 | + } |
| 58 | + } catch (e) { |
| 59 | + console.log("Couldn't Get the Value"); |
| 60 | + console.log(e); |
| 61 | + } |
| 62 | + }; |
| 63 | + |
| 64 | + getAllKeys = async () => { |
| 65 | + try { |
| 66 | + // await AsyncStorage.clear(); |
| 67 | + const allKeys = await AsyncStorage.getAllKeys(); |
| 68 | + const result = await AsyncStorage.multiGet(allKeys); |
| 69 | + |
| 70 | + // console.log(allKeys, result); |
| 71 | + let final_data = []; |
| 72 | + for (let i = 0; i < result.length; i++) { |
| 73 | + // console.log(allKeys[i]); |
| 74 | + if (allKeys[i] == "storage_key") continue; |
| 75 | + result[i][1] = JSON.parse(result[i][1]); |
| 76 | + result[i][1] = { ...result[i][1], from_history: true }; |
| 77 | + final_data.push(result[i]); |
| 78 | + } |
| 79 | + // result.pop(); |
| 80 | + final_data.sort((a, b) => { |
| 81 | + return a[0] < b[0]; |
| 82 | + }); |
| 83 | + this.setState({ allKeys: final_data }); |
| 84 | + } catch (e) { |
| 85 | + console.log("Couldn't Get All Keys!"); |
| 86 | + console.log(e); |
| 87 | + } |
| 88 | + }; |
| 89 | + clearHistory = async () => { |
| 90 | + try { |
| 91 | + await AsyncStorage.clear(); |
| 92 | + alert("History Cleared!"); |
| 93 | + this.setState({ allKeys: [] }); |
| 94 | + } catch (e) { |
| 95 | + console.log("Couldn't Clear History!"); |
| 96 | + console.log(e); |
| 97 | + } |
| 98 | + }; |
| 99 | + componentDidMount() { |
| 100 | + this.getAllKeys(); |
| 101 | + } |
| 102 | + |
| 103 | + printHistoryData = () => { |
| 104 | + var historyData = []; |
| 105 | + var allData = this.state.allKeys; |
| 106 | + for (let i = 0; i < allData.length; i++) { |
| 107 | + historyData.push( |
| 108 | + <TouchableHighlight |
| 109 | + key={i} |
| 110 | + style={{ width: "90%", marginTop: 10 }} |
| 111 | + onPress={() => |
| 112 | + this.props.navigation.navigate( |
| 113 | + allData[i][1]["algorithm"], |
| 114 | + allData[i][1] |
| 115 | + ) |
| 116 | + } |
| 117 | + > |
| 118 | + <View |
| 119 | + backgroundColor="black" |
| 120 | + style={{ padding: 10, backgroundColor: "black" }} |
| 121 | + > |
| 122 | + <Text style={{ color: "white" }}>{allData[i][1]["date"]}</Text> |
| 123 | + <Text style={{ color: "white" }}>{allData[i][1]["algorithm"]}</Text> |
| 124 | + </View> |
| 125 | + </TouchableHighlight> |
| 126 | + ); |
| 127 | + } |
| 128 | + return historyData; |
| 129 | + }; |
| 130 | + |
| 131 | + render() { |
| 132 | + const state = this.state; |
| 133 | + return ( |
| 134 | + <ScrollView> |
| 135 | + <View |
| 136 | + style={{ |
| 137 | + display: "flex", |
| 138 | + flexDirection: "column", |
| 139 | + alignItems: "center", |
| 140 | + justifyContent: "center", |
| 141 | + }} |
| 142 | + > |
| 143 | + <TouchableHighlight |
| 144 | + style={{ width: "90%", marginTop: 10 }} |
| 145 | + onPress={this.clearHistory} |
| 146 | + > |
| 147 | + <View |
| 148 | + backgroundColor="red" |
| 149 | + style={{ |
| 150 | + padding: 10, |
| 151 | + display: "flex", |
| 152 | + flexDirection: "column", |
| 153 | + alignItems: "center", |
| 154 | + justifyContent: "center", |
| 155 | + backgroundColor: "red", |
| 156 | + }} |
| 157 | + > |
| 158 | + <Text style={{ color: "white", fontWeight: "bold" }}> |
| 159 | + CLEAR ALL |
| 160 | + </Text> |
| 161 | + </View> |
| 162 | + </TouchableHighlight> |
| 163 | + {this.printHistoryData()} |
| 164 | + </View> |
| 165 | + </ScrollView> |
| 166 | + ); |
| 167 | + } |
| 168 | +} |
0 commit comments