-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAdmin.js
120 lines (111 loc) · 3.26 KB
/
Admin.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
111
112
113
114
115
116
117
118
119
120
import { StatusBar } from "expo-status-bar";
import {
StyleSheet,
Button,
View,
Text,
TouchableOpacity,
Linking,
} from "react-native";
import * as XLSX from "xlsx";
import * as FileSystem from "expo-file-system";
import * as Sharing from "expo-sharing";
import { useNavigation } from "@react-navigation/native";
import { auth, db } from "./firebase/firebase";
import { collection, doc, getDoc, getDocs, query } from "firebase/firestore";
import firestore from "@react-native-firebase/firestore";
import { useEffect, useState } from "react";
import PushNotification from "./PushNotification";
export default function AdminGenerate() {
const navigation = useNavigation();
const [formData, setFormData] = useState({});
const handleSignOut = () => {
auth
.signOut()
.then(() => {
navigation.replace("LoginScreen");
})
.catch((error) => alert(error.message));
};
const generateExcel = () => {
let wb = XLSX.utils.book_new();
let ws = XLSX.utils.aoa_to_sheet([
["Email", "Password", "History"],
["[email protected]", "213456"],
["[email protected]", "231456"],
]);
XLSX.utils.book_append_sheet(wb, ws, "MyFirstSheet", true);
const base64 = XLSX.write(wb, { type: "base64" });
const filename = FileSystem.documentDirectory + "MyExcel.xlsx";
FileSystem.writeAsStringAsync(filename, base64, {
encoding: FileSystem.EncodingType.Base64,
}).then(() => {
Sharing.shareAsync(filename);
});
};
return (
<View style={styles.container}>
{/* <PushNotification /> */}
<Text
style={{
fontSize: 30,
fontWeight: "800",
position: "absolute",
top: 90,
}}
>
WELCOME ADMIN
</Text>
<Text style={{ position: "relative", fontSize: 22, margin: 30 }}>
Click here to generate Excel
</Text>
<TouchableOpacity
style={{ backgroundColor: "#3ba0fc", padding: 15, borderRadius: 12 }}
onPress={() =>
Linking.openURL("https://rotary-clubof-bombay-admin.vercel.app/")
}
>
<Text style={{ color: "white" }}>Generate Excel</Text>
</TouchableOpacity>
<Text style={{ position: "relative", fontSize: 22, margin: 30 }}>
Click here to push notification
</Text>
<TouchableOpacity
style={{
backgroundColor: "#3ba0fc",
padding: 15,
borderRadius: 12,
marginTop: 10,
}}
onPress={() => navigation.replace("Notifications")}
>
<Text style={{ color: "white" }}>Push Notifications</Text>
</TouchableOpacity>
<StatusBar style="auto" />
<View
style={{
backgroundColor: "#FFA500",
padding: 20,
borderRadius: 50,
// marginTop: 80,
position: "absolute",
bottom: 50,
width: 200,
alignItems: "center",
}}
>
<TouchableOpacity onPress={handleSignOut} style={{ zIndex: 10 }}>
<Text style={{ fontSize: 18, color: "white" }}>Sign out</Text>
</TouchableOpacity>
</View>
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: "#86c5fd",
alignItems: "center",
justifyContent: "center",
},
});