-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.js
More file actions
170 lines (158 loc) · 4.57 KB
/
App.js
File metadata and controls
170 lines (158 loc) · 4.57 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
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
import "react-native-gesture-handler";
import * as SQLite from "expo-sqlite";
import { StatusBar } from "expo-status-bar";
import React from "react";
import { StyleSheet, Text, View } from "react-native";
import {
Appbar,
DefaultTheme,
Provider as PaperProvider,
} from "react-native-paper";
import { createMaterialBottomTabNavigator } from "@react-navigation/material-bottom-tabs";
import { NavigationContainer } from "@react-navigation/native";
import { createStackNavigator } from "@react-navigation/stack";
import colors from "./constants/colors";
import { bleManager } from "./modules/BleManager";
import { StateContext } from "./modules/Context";
import { DeviceStatusScreen } from "./screens/DeviceStatusScreen";
import { homeScreen, homeStackNavigator } from "./screens/HomeScreen";
import {
windowListScreen,
windowStackNavigator,
} from "./screens/WindowListScreen";
export const db = SQLite.openDatabase("windowManager.db");
const Tab = createMaterialBottomTabNavigator();
export const theme = {
...DefaultTheme,
roundness: 5,
colors: {
...DefaultTheme.colors,
primary: colors.primary._800,
accent: colors.secondary._600,
},
};
export default function App() {
// States for global context API
const [bluetoothConnected, setBluetoothConnected] = React.useState(false);
const [measurementStatus, setMeasurementStatus] = React.useState("idle");
React.useEffect(() => {
db.transaction(
(tx) => {
tx.executeSql(
`CREATE TABLE IF NOT EXISTS projects (
id INTEGER PRIMARY KEY NOT null,
last_edit INTEGER,
created INTEGER,
customer TEXT,
street TEXT,
number TEXT,
zip INTEGER,
city TEXT,
country TEXT,
order_number TEXT
);`
);
tx.executeSql(
`CREATE TABLE IF NOT EXISTS windows (
id INTEGER PRIMARY KEY NOT null,
last_edit INTEGER,
created INTEGER,
project INTEGER,
name TEXT,
width REAL,
height REAL,
sensorCorner TEXT,
sensorPosH REAL,
sensorPosV REAL,
latitude REAL,
longitude REAL,
altitude REAL,
azimuth REAL,
inclination REAL,
qr TEXT,
annotations TEXT
);`
);
tx.executeSql(
`CREATE TABLE IF NOT EXISTS settings (
id INTEGER PRIMARY KEY NOT null,
key TEXT,
value INTEGER
);`
);
},
(error) => console.log(error)
);
}, []);
// React.useEffect(() => {
// bleManager.onStateChange((state) => {
// const subscription = manager.onStateChange((state) => {
// if (state === "PoweredOn") {
// this.scanAndConnect();
// subscription.remove();
// }
// }, true);
// return () => subscription.remove();
// });
// }, [bleManager]);
return (
<StateContext.Provider
value={{
bluetoothConnected,
setBluetoothConnected,
measurementStatus,
setMeasurementStatus,
}}
>
<PaperProvider theme={theme}>
<StatusBar style="light" />
{/* ---------- Navigation ----------- */}
<NavigationContainer>
<Tab.Navigator barStyle={{ backgroundColor: theme.colors.primary }}>
<Tab.Screen
name="Objekte"
component={homeStackNavigator}
options={{
tabBarIcon: "home-account",
}}
/>
<Tab.Screen
name="Fenster"
component={windowStackNavigator}
options={{
tabBarIcon: "application",
}}
/>
<Tab.Screen
name="Gerätestatus"
component={DeviceStatusScreen}
options={{
tabBarIcon: "devices",
tabBarColor: "green",
}}
/>
</Tab.Navigator>
</NavigationContainer>
</PaperProvider>
</StateContext.Provider>
);
}
function CustomNavigationBar({ navigation, previous }) {
return (
<Appbar.Header>
{previous ? <Appbar.BackAction onPress={navigation.goBack} /> : null}
<Appbar.Content title="My awesome app" />
</Appbar.Header>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: colors.primary._900,
alignItems: "center",
justifyContent: "center",
},
title: {
color: colors.white.high_emph,
},
});