You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

172 lines
5.2 KiB

import React, { useState } from "react";
import { StyleSheet, View } from "react-native";
import * as Yup from "yup";
import { Form, FormPicker as Picker, SubmitButton } from "../components/forms";
import Screen from "../components/Screen";
import FormImagePicker from "../components/forms/FormImagePicker";
import useLocation from "../hooks/useLocation";
import { Image, Text } from "react-native";
import colors from "../config/colors";
import { TouchableNativeFeedback } from "react-native-gesture-handler";
import { insertRiverData } from "../database/databaseLoader";
import { showMessage } from "react-native-flash-message";
import { KeyboardAwareScrollView } from "react-native-keyboard-aware-scroll-view";
import assets from "../config/assets";
import { scaleDimsFromWidth } from "../config/dimensions";
const validationSchema = Yup.object().shape({
images: Yup.array(),
});
const borderWidth = 4;
function RiverFloodSharingDataScreen(props) {
const [riverScale, setRiverScale] = useState(-1);
const location = useLocation();
const [error, setError] = useState(false);
return (
<Screen style={styles.container}>
<Text
style={{
fontSize: 18,
fontWeight: "bold",
color: colors.primary,
textAlign: "center",
marginBottom: 30,
}}
>
Nível da água do rio
</Text>
<KeyboardAwareScrollView
resetScrollToCoords={{ x: 0, y: 0 }}
scrollEnabled={true}
>
<Form
initialValues={{
images: [],
}}
onSubmit={(values) => {
if (riverScale == -1) {
setError(true);
return;
}
insertRiverData({ ...values, riverScale, location });
showMessage({
message: "Informação enviada!",
duration: 1950,
icon: "success",
type: "success",
});
props.navigation.goBack(null);
}}
validationSchema={validationSchema}
>
<View>
<View style={styles.imgs_row}>
<TouchableNativeFeedback onPress={() => setRiverScale(0)}>
<View
borderColor={riverScale == 0 ? colors.primary : colors.white}
style={styles.img_block}
>
<Image
style={styles.floodingLogo}
source={assets.riverLevel.low}
/>
<Text style={styles.text}>Baixo</Text>
</View>
</TouchableNativeFeedback>
<TouchableNativeFeedback onPress={() => setRiverScale(1)}>
<View
borderColor={riverScale == 1 ? colors.primary : colors.white}
style={styles.img_block}
>
<Image
style={styles.floodingLogo}
source={assets.riverLevel.normal}
/>
<Text style={styles.text}>Rio normal</Text>
</View>
</TouchableNativeFeedback>
</View>
<View style={{ ...styles.imgs_row, marginTop: 10 }}>
<TouchableNativeFeedback onPress={() => setRiverScale(2)}>
<View
borderColor={riverScale == 2 ? colors.primary : colors.white}
style={styles.img_block}
>
<Image
style={styles.floodingLogo}
source={assets.riverLevel.high}
/>
<Text style={styles.text}>Alto</Text>
</View>
</TouchableNativeFeedback>
<TouchableNativeFeedback onPress={() => setRiverScale(3)}>
<View
borderColor={riverScale == 3 ? colors.primary : colors.white}
style={styles.img_block}
>
<Image
style={styles.floodingLogo}
source={assets.riverLevel.flooding}
/>
<Text style={styles.text}>Transbordando</Text>
</View>
</TouchableNativeFeedback>
</View>
</View>
{error && riverScale == -1 && (
<Text style={styles.error_txt}>Selecione ao menos uma opção</Text>
)}
<FormImagePicker backgroundColor={colors.primary} name="images" />
<SubmitButton title="Enviar" backgroundColor={colors.primary} />
</Form>
</KeyboardAwareScrollView>
</Screen>
);
}
const dims = scaleDimsFromWidth(85, 85, 42);
const styles = StyleSheet.create({
container: {
padding: 10,
backgroundColor: colors.white,
},
img_block: {
borderRadius: 5,
padding: 10,
borderStyle: "dotted",
borderColor: colors.white,
borderWidth: borderWidth,
alignItems: "center",
width: dims.width,
},
floodingLogo: {
width: dims.width * 0.8,
height: dims.height * 0.8,
},
imgs_row: {
flexDirection: "row",
justifyContent: "space-between",
},
text: {
fontSize: 14,
textAlign: "center",
marginTop: 10,
},
error_txt: {
fontSize: 18,
color: colors.danger,
},
});
export default RiverFloodSharingDataScreen;