forked from cemaden-educacao/WPD-MobileApp
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.
190 lines
5.6 KiB
190 lines
5.6 KiB
import React, { useState } from "react";
|
|
import { StyleSheet, Text, Image, View } from "react-native";
|
|
import * as Yup from "yup";
|
|
|
|
import { Form, SubmitButton, FormField } from "../components/forms";
|
|
import FormImagePicker from "../components/forms/FormImagePicker";
|
|
import useLocation from "../hooks/useLocation";
|
|
import colors from "../config/colors";
|
|
import { scaleDimsFromWidth, dimensions } from "../config/dimensions";
|
|
import {
|
|
TouchableNativeFeedback,
|
|
TouchableOpacity,
|
|
} from "react-native-gesture-handler";
|
|
import { insertFloodZone } from "../database/databaseLoader";
|
|
import { showMessage } from "react-native-flash-message";
|
|
import { KeyboardAwareScrollView } from "react-native-keyboard-aware-scroll-view";
|
|
import Screen from "../components/Screen";
|
|
import assets from "../config/assets";
|
|
import moment from "moment";
|
|
import FormDatePicker from "../components/forms/FormDatePicker";
|
|
import FormLocationPicker from "../components/forms/FormLocationPicker";
|
|
|
|
function submitForm(props) {
|
|
console.log(props);
|
|
insertFloodZone(props);
|
|
}
|
|
|
|
const validationSchema = Yup.object().shape({
|
|
images: Yup.array(),
|
|
description: Yup.string().label("Description"),
|
|
});
|
|
|
|
function SharingFloodZonesScreen(props) {
|
|
const [passable, setPassable] = useState(-1);
|
|
const [error, setError] = useState(false);
|
|
const location = useLocation();
|
|
|
|
const [date, setDate] = useState(moment());
|
|
const [time, setTime] = useState(moment());
|
|
|
|
return (
|
|
<Screen style={styles.container}>
|
|
<KeyboardAwareScrollView
|
|
resetScrollToCoords={{ x: 0, y: 0 }}
|
|
scrollEnabled={true}
|
|
>
|
|
<Form
|
|
initialValues={{
|
|
images: [],
|
|
description: "",
|
|
}}
|
|
onSubmit={(values) => {
|
|
if (passable == -1) {
|
|
setError(true);
|
|
return;
|
|
}
|
|
submitForm({ ...values, passable, location, date, time });
|
|
console.log("DATA: " + moment(date).format("DD/MM/YYYY"));
|
|
console.log("HORA: " + moment(time).format("HH:MM"));
|
|
showMessage({
|
|
message: "Informação enviada!",
|
|
duration: 1950,
|
|
icon: "success",
|
|
type: "success",
|
|
});
|
|
props.navigation.navigate("Home");
|
|
}}
|
|
validationSchema={validationSchema}
|
|
>
|
|
<View style={styles.imgs_container}>
|
|
<TouchableNativeFeedback onPress={() => setPassable(1)}>
|
|
<View
|
|
style={styles.img_block}
|
|
borderColor={passable == 1 ? colors.primary : colors.white}
|
|
>
|
|
<Image
|
|
style={styles.image}
|
|
source={assets.floodZones.passable}
|
|
/>
|
|
<Text style={styles.text}>Transitável</Text>
|
|
</View>
|
|
</TouchableNativeFeedback>
|
|
|
|
<TouchableNativeFeedback onPress={() => setPassable(0)}>
|
|
<View
|
|
style={styles.img_block}
|
|
borderColor={passable == 0 ? colors.primary : colors.white}
|
|
>
|
|
<Image
|
|
style={styles.image}
|
|
source={assets.floodZones.notPassable}
|
|
/>
|
|
<Text style={styles.text}>Intransitável</Text>
|
|
</View>
|
|
</TouchableNativeFeedback>
|
|
</View>
|
|
|
|
{error && passable == -1 && (
|
|
<Text style={styles.error_txt}>Selecione uma opção</Text>
|
|
)}
|
|
|
|
<FormImagePicker name="images" height={10} />
|
|
|
|
<View
|
|
style={{
|
|
flex: 1,
|
|
flexDirection: "row",
|
|
justifyContent: "space-between",
|
|
}}
|
|
>
|
|
{/*Data da coleta:*/}
|
|
<View
|
|
style={{
|
|
flex: 0.48,
|
|
borderRightColor: colors.primary,
|
|
borderRightWidth: 1,
|
|
}}
|
|
>
|
|
<FormDatePicker
|
|
textStyle={{
|
|
borderColor: colors.gray,
|
|
borderWidth: 3,
|
|
}}
|
|
defaultDate={new Date()}
|
|
onDateChange={(value) => setDate(value)}
|
|
onTimeChange={(value) => setTime(value)}
|
|
/>
|
|
</View>
|
|
{/*Local do evento:*/}
|
|
<View style={{ flex: 0.48 }}>
|
|
<TouchableOpacity
|
|
onPress={() => props.navigation.navigate("FormMap")}
|
|
>
|
|
<FormLocationPicker />
|
|
</TouchableOpacity>
|
|
</View>
|
|
</View>
|
|
|
|
<FormField
|
|
maxLength={255}
|
|
multiline
|
|
name="description"
|
|
numberOfLines={3}
|
|
placeholder="Descrição"
|
|
/>
|
|
<SubmitButton title="Enviar" backgroundColor={colors.primary} />
|
|
</Form>
|
|
</KeyboardAwareScrollView>
|
|
</Screen>
|
|
);
|
|
}
|
|
const borderWidth = 4;
|
|
const dims = scaleDimsFromWidth(150, 80, 42.0);
|
|
|
|
const styles = StyleSheet.create({
|
|
container: {
|
|
padding: 10,
|
|
backgroundColor: colors.white,
|
|
},
|
|
|
|
image: {
|
|
width: dims.width * 0.9,
|
|
height: dims.height * 0.9,
|
|
resizeMode: "contain",
|
|
},
|
|
img_block: {
|
|
borderRadius: 5,
|
|
padding: 10,
|
|
borderStyle: "dotted",
|
|
borderColor: colors.white,
|
|
borderWidth: borderWidth,
|
|
alignItems: "center",
|
|
width: dims.width,
|
|
},
|
|
imgs_container: {
|
|
flexDirection: "row",
|
|
justifyContent: "space-between",
|
|
},
|
|
|
|
text: {
|
|
paddingTop: 5,
|
|
fontSize: dimensions.text.default,
|
|
},
|
|
error_txt: {
|
|
fontSize: 18,
|
|
color: colors.danger,
|
|
},
|
|
});
|
|
|
|
export default SharingFloodZonesScreen;
|