Skip to content

Commit 614611a

Browse files
author
Vivek Patel
committed
Re-initialized App
0 parents  commit 614611a

34 files changed

+15733
-0
lines changed

.expo-shared/README.md

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
> Why do I have a folder named ".expo-shared" in my project?
2+
3+
The ".expo-shared" folder is created when running commands that produce state that is intended to be shared with all developers on the project. For example, "npx expo-optimize".
4+
5+
> What does the "assets.json" file contain?
6+
7+
The "assets.json" file describes the assets that have been optimized through "expo-optimize" and do not need to be processed again.
8+
9+
> Should I commit the ".expo-shared" folder?
10+
11+
Yes, you should share the ".expo-shared" folder with your collaborators.

.expo-shared/assets.json

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"12bb71342c6255bbf50437ec8f4441c083f47cdb74bd89160c15e4f43e52a1cb": true,
3+
"40b842e832070c58deac6aa9e08fa459302ee3f9da492c7e77d93d2fbf4a56fd": true
4+
}

.gitignore

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
node_modules/**/*
2+
.expo/*
3+
npm-debug.*
4+
*.jks
5+
*.p8
6+
*.p12
7+
*.key
8+
*.mobileprovision
9+
*.orig.*
10+
web-build/
11+
12+
# macOS
13+
.DS_Store

App.js

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import React from "react";
2+
import Navigator from "./routes/homeStack";
3+
4+
export default function App() {
5+
return <Navigator />;
6+
}

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# CPU Scheduling Application with React Native
2+
3+
# OS project

app.json

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"expo": {
3+
"name": "cpuSchedulingApp",
4+
"slug": "cpuSchedulingApp",
5+
"version": "1.0.0",
6+
"orientation": "portrait",
7+
"icon": "./assets/favicon.jpg",
8+
"splash": {
9+
"image": "./assets/splash.png",
10+
"resizeMode": "contain",
11+
"backgroundColor": "#50c0d8"
12+
},
13+
"updates": {
14+
"fallbackToCacheTimeout": 0
15+
},
16+
"assetBundlePatterns": [
17+
"**/*"
18+
],
19+
"ios": {
20+
"supportsTablet": true
21+
},
22+
"web": {
23+
"favicon": "./assets/favicon.png"
24+
},
25+
"description": ""
26+
}
27+
}

assets/algoIcons/clock.png

2.4 KB
Loading

assets/algoIcons/fast-forward.png

1.43 KB
Loading

assets/algoIcons/flagIcon.png

1.51 KB
Loading

assets/algoIcons/percentage.png

1.92 KB
Loading

assets/algoIcons/priority.png

1.01 KB
Loading

assets/algoIcons/refresh.png

1.44 KB
Loading

assets/algoIcons/server.png

1.55 KB
Loading

assets/algoIcons/short.png

2.48 KB
Loading

assets/algoIcons/watch.png

2.3 KB
Loading

assets/favicon.jpg

345 KB
Loading

assets/favicon.png

1.43 KB
Loading

assets/icon.png

642 Bytes
Loading

assets/splash.png

318 KB
Loading

babel.config.js

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
module.exports = function(api) {
2+
api.cache(true);
3+
return {
4+
presets: ['babel-preset-expo'],
5+
};
6+
};

models/history.js

+168
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,168 @@
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

Comments
 (0)