Commit 6ef167a5 authored by Kiridena I.T.K_IT19981840's avatar Kiridena I.T.K_IT19981840

Merge branch 'UI-changes' into 'master'

progress bars

See merge request !49
parents a249a58e 3031d1e0
This source diff could not be displayed because it is too large. You can view the blob instead.
import React, { useState } from "react"; import React, { useState } from "react";
import { View, Text, Button, StyleSheet, Alert, Clipboard } from "react-native"; import {
View,
Text,
Button,
StyleSheet,
Alert,
Clipboard,
ActivityIndicator,
} from "react-native";
import RadioForm, { import RadioForm, {
RadioButton, RadioButton,
RadioButtonInput, RadioButtonInput,
...@@ -13,6 +21,7 @@ import AsyncStorage from "@react-native-async-storage/async-storage"; ...@@ -13,6 +21,7 @@ import AsyncStorage from "@react-native-async-storage/async-storage";
export default function PatientRegEight({ navigation, route }) { export default function PatientRegEight({ navigation, route }) {
const [educationLevel, setEducationLevel] = useState(""); const [educationLevel, setEducationLevel] = useState("");
const [employedStatus, setEmployedStatus] = useState(""); const [employedStatus, setEmployedStatus] = useState("");
const [isLoading, setIsLoading] = useState(false);
const educationLevelOptions = [ const educationLevelOptions = [
{ label: "Schooling", value: "Schooling" }, { label: "Schooling", value: "Schooling" },
...@@ -28,6 +37,8 @@ export default function PatientRegEight({ navigation, route }) { ...@@ -28,6 +37,8 @@ export default function PatientRegEight({ navigation, route }) {
]; ];
const handleSave = async () => { const handleSave = async () => {
setIsLoading(true);
//encrypt the data //encrypt the data
const encryptedEmail = EncryptWithServerKey(route.params.email); const encryptedEmail = EncryptWithServerKey(route.params.email);
const encryptedUsername = EncryptWithServerKey(route.params.username); const encryptedUsername = EncryptWithServerKey(route.params.username);
...@@ -132,7 +143,7 @@ export default function PatientRegEight({ navigation, route }) { ...@@ -132,7 +143,7 @@ export default function PatientRegEight({ navigation, route }) {
`\nSecret key : ` + `\nSecret key : ` +
decryptedStellarSecretKey + decryptedStellarSecretKey +
`\n Save the keys in a safe place`; `\n Save the keys in a safe place`;
setIsLoading(false);
//Show keys on the alert //Show keys on the alert
Alert.alert("Account keys", alertMessage, [ Alert.alert("Account keys", alertMessage, [
{ {
...@@ -156,17 +167,23 @@ export default function PatientRegEight({ navigation, route }) { ...@@ -156,17 +167,23 @@ export default function PatientRegEight({ navigation, route }) {
//on close send to main UI //on close send to main UI
} catch (errorWhenStoringInAsyncStorage) { } catch (errorWhenStoringInAsyncStorage) {
console.log(errorWhenStoringInAsyncStorage); console.log(errorWhenStoringInAsyncStorage);
setIsLoading(false);
} }
} else { } else {
console.log(responseData); console.log(responseData);
} }
} catch (errorWhenSendingRegObj) { } catch (errorWhenSendingRegObj) {
console.error("Error : ", errorWhenSendingRegObj); console.error("Error : ", errorWhenSendingRegObj);
setIsLoading(false);
} }
}; };
return ( return (
<View style={styles.container}> <View style={styles.container}>
{isLoading ? (
<ActivityIndicator size="large" color="#560CCE" />
) : (
<>
<Text>Highest Education Level:</Text> <Text>Highest Education Level:</Text>
<RadioForm animation={true}> <RadioForm animation={true}>
{educationLevelOptions.map((option, index) => ( {educationLevelOptions.map((option, index) => (
...@@ -234,6 +251,8 @@ export default function PatientRegEight({ navigation, route }) { ...@@ -234,6 +251,8 @@ export default function PatientRegEight({ navigation, route }) {
</RadioForm> </RadioForm>
<Button title="All Done" onPress={handleSave} /> <Button title="All Done" onPress={handleSave} />
</>
)}
</View> </View>
); );
} }
......
import { useNavigation } from "@react-navigation/core"; import { useNavigation } from "@react-navigation/core";
import { View, TextInput, Button, StyleSheet, Alert } from "react-native"; import {
View,
TextInput,
Button,
StyleSheet,
Alert,
ActivityIndicator,
} from "react-native";
import React, { useState } from "react"; import React, { useState } from "react";
import EncryptWithServerKey from "../../services/encryptByServerKey"; import EncryptWithServerKey from "../../services/encryptByServerKey";
import { LOCALBACKEND } from "../../env"; import { LOCALBACKEND } from "../../env";
...@@ -13,8 +20,11 @@ export default function PractitionerRegistration() { ...@@ -13,8 +20,11 @@ export default function PractitionerRegistration() {
const [email, setEmail] = useState(""); const [email, setEmail] = useState("");
const [fullName, setFullName] = useState(""); const [fullName, setFullName] = useState("");
const [workspace, setWorkspace] = useState(""); const [workspace, setWorkspace] = useState("");
const [isLoading, setIsLoading] = useState(false);
const handleNext = async () => { const handleNext = async () => {
setIsLoading(true);
//encrypt the data //encrypt the data
const encryptedUsername = EncryptWithServerKey(username); const encryptedUsername = EncryptWithServerKey(username);
const encryptedPassword = EncryptWithServerKey(password); const encryptedPassword = EncryptWithServerKey(password);
...@@ -75,6 +85,7 @@ export default function PractitionerRegistration() { ...@@ -75,6 +85,7 @@ export default function PractitionerRegistration() {
`\nSecret key : ` + `\nSecret key : ` +
decryptedStellarSecretKey + decryptedStellarSecretKey +
`\n Save the keys in a safe place`; `\n Save the keys in a safe place`;
setIsLoading(false);
Alert.alert("Account keys", alertMessage, [ Alert.alert("Account keys", alertMessage, [
{ {
...@@ -94,17 +105,23 @@ export default function PractitionerRegistration() { ...@@ -94,17 +105,23 @@ export default function PractitionerRegistration() {
"Error when saving details in the async storage : ", "Error when saving details in the async storage : ",
errorWhenStoringInTheAsyncStorage errorWhenStoringInTheAsyncStorage
); );
setIsLoading(false);
} }
} catch (errorWhenRegisteringPractitioner) { } catch (errorWhenRegisteringPractitioner) {
console.log( console.log(
"Error when registering practitioner : ", "Error when registering practitioner : ",
errorWhenRegisteringPractitioner errorWhenRegisteringPractitioner
); );
setIsLoading(false);
} }
}; };
return ( return (
<View style={styles.container}> <View style={styles.container}>
{isLoading ? (
<ActivityIndicator size="large" color="#560CCE" />
) : (
<>
<TextInput <TextInput
style={styles.input} style={styles.input}
placeholder="User name" placeholder="User name"
...@@ -137,6 +154,8 @@ export default function PractitionerRegistration() { ...@@ -137,6 +154,8 @@ export default function PractitionerRegistration() {
onChangeText={(text) => setEmail(text)} onChangeText={(text) => setEmail(text)}
/> />
<Button title="Register" onPress={handleNext} /> <Button title="Register" onPress={handleNext} />
</>
)}
</View> </View>
); );
} }
......
This diff is collapsed.
...@@ -23,10 +23,10 @@ ...@@ -23,10 +23,10 @@
"react-native-base64": "^0.2.1", "react-native-base64": "^0.2.1",
"react-native-crypto-js": "^1.0.0", "react-native-crypto-js": "^1.0.0",
"react-native-datepicker": "^1.7.2", "react-native-datepicker": "^1.7.2",
"react-native-gesture-handler": "^2.10.0", "react-native-gesture-handler": "~2.9.0",
"react-native-render-html": "^6.3.4", "react-native-render-html": "^6.3.4",
"react-native-rsa-native": "^2.0.5", "react-native-rsa-native": "^2.0.5",
"react-native-safe-area-context": "^4.5.3", "react-native-safe-area-context": "4.5.0",
"react-native-simple-radio-button": "^2.7.4", "react-native-simple-radio-button": "^2.7.4",
"react-native-toast-message": "^2.1.6", "react-native-toast-message": "^2.1.6",
"react-native-webview": "11.26.0" "react-native-webview": "11.26.0"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment