| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- import { View, Text, StyleSheet } from "react-native";
- import { SignUpFormData, HandleSignUpFormDataChange } from "../../../../types/signup";
- import NormalInput from "../../../global/normal_input";
- import NormalButton from "../../../global/normal_button";
- import { useState } from "react";
- import useSignUpStore from "../../../../providers/signup_form_store";
- type CarInformationProps = {
- goToNextPage: () => void;
- handleFormDataChange: HandleSignUpFormDataChange;
- formData: SignUpFormData;
- };
- const CarInformation: React.FC<CarInformationProps> = ({ goToNextPage, handleFormDataChange, formData }) => {
- const { signUpFormData, setSignUpFormData } = useSignUpStore();
- const [error, setError] = useState("");
- const handleNext = () => {
- if (
- signUpFormData.vehicleModel === "" ||
- signUpFormData.vehicleModel === "" ||
- signUpFormData.licensePlate === ""
- ) {
- setError("請確保所有資料都已填寫。");
- } else {
- setError("");
- goToNextPage();
- }
- };
- return (
- <>
- <View style={styles.container}>
- <Text style={styles.text}>您的車輛</Text>
- <View
- style={{
- display: "flex",
- flexDirection: "column",
- gap: 10,
- }}
- >
- <NormalInput
- placeholder={"車輛品牌"}
- onChangeText={(vehicleType) => {
- setSignUpFormData({ ...signUpFormData, vehicleType: vehicleType });
- }}
- />
- <NormalInput
- placeholder={"車輛型號"}
- onChangeText={(vehicleModel) => {
- setSignUpFormData({ ...signUpFormData, vehicleModel: vehicleModel });
- }}
- />
- <NormalInput
- placeholder="車輛號碼"
- onChangeText={(licensePlate) => {
- setSignUpFormData({ ...signUpFormData, licensePlate: licensePlate });
- }}
- />
- <NormalButton
- title={<Text style={{ color: "#fff" }}>下一步</Text>}
- onPress={handleNext}
- extendedStyle={{}}
- />
- {error && <Text style={styles.errorMessage}>{error}</Text>}
- <NormalButton
- title={<Text style={{ color: "#888888" }}>略過</Text>}
- onPress={goToNextPage}
- extendedStyle={{ backgroundColor: "transparent" }}
- />
- </View>
- </View>
- </>
- );
- };
- const styles = StyleSheet.create({
- container: {
- flex: 1,
- marginHorizontal: 20,
- },
- text: {
- fontSize: 20,
- paddingBottom: 10,
- },
- errorMessage: {
- fontSize: 14,
- color: "#ff0033",
- fontWeight: "400",
- marginLeft: 10,
- marginTop: 10,
- },
- });
- export default CarInformation;
|