208 lines
7.0 KiB
TypeScript
208 lines
7.0 KiB
TypeScript
import React, { useState } from 'react';
|
|
import { View, Text, StyleSheet, TextInput, Pressable, KeyboardAvoidingView, Platform, Alert, Image, ScrollView } from 'react-native';
|
|
import { router } from 'expo-router';
|
|
import Animated, { FadeInDown, FadeInUp } from 'react-native-reanimated';
|
|
import { COLORS, SPACING, TYPOGRAPHY, BORDER_RADIUS, SHADOWS } from '../../../constants/theme';
|
|
import { Button } from '../../../components/ui/Button';
|
|
import { Mail, Lock, Scissors, User, Phone, ChevronLeft } from 'lucide-react-native';
|
|
import * as Haptics from 'expo-haptics';
|
|
import { useLanguage } from '../../../stores/LanguageContext';
|
|
import { useBarbearia } from '../../../stores/BarbeariaContext';
|
|
import { SafeAreaView } from 'react-native-safe-area-context';
|
|
|
|
export default function RegisterScreen() {
|
|
const { t } = useLanguage();
|
|
const { barbearia } = useBarbearia();
|
|
const colors = barbearia?.colors || COLORS;
|
|
|
|
const [name, setName] = useState('');
|
|
const [email, setEmail] = useState('');
|
|
const [phone, setPhone] = useState('');
|
|
const [password, setPassword] = useState('');
|
|
const [isLoading, setIsLoading] = useState(false);
|
|
|
|
const handleRegister = async () => {
|
|
if (!name || !email || !password || !phone) {
|
|
if (Platform.OS === 'web') {
|
|
window.alert(t('admin.config.fill_all') || 'Preencha todos os campos');
|
|
} else {
|
|
Alert.alert('Erro', t('admin.config.fill_all') || 'Preencha todos os campos');
|
|
}
|
|
return;
|
|
}
|
|
|
|
setIsLoading(true);
|
|
Haptics.impactAsync(Haptics.ImpactFeedbackStyle.Medium);
|
|
|
|
// Simulação de cadastro
|
|
setTimeout(() => {
|
|
setIsLoading(false);
|
|
router.replace(`/${barbearia?.slug}/(auth)/login`);
|
|
}, 1500);
|
|
};
|
|
|
|
return (
|
|
<SafeAreaView style={[styles.container, { backgroundColor: colors.background }]}>
|
|
<KeyboardAvoidingView
|
|
behavior={Platform.OS === 'ios' ? 'padding' : 'height'}
|
|
style={{flex: 1}}
|
|
>
|
|
<Pressable
|
|
style={styles.backButton}
|
|
onPress={() => router.back()}
|
|
>
|
|
<ChevronLeft color={colors.primary} size={24} />
|
|
<Text style={[styles.backText, { color: colors.primary }]}>{t('book.back') || 'Voltar'}</Text>
|
|
</Pressable>
|
|
|
|
<ScrollView contentContainerStyle={styles.content} showsVerticalScrollIndicator={false}>
|
|
<Animated.View entering={FadeInDown.duration(600)} style={styles.logoContainer}>
|
|
<View style={[styles.logoCircle, { backgroundColor: colors.surface, borderColor: colors.primary }]}>
|
|
{barbearia?.logo ? (
|
|
<Image source={{ uri: barbearia.logo }} style={{ width: 64, height: 64, borderRadius: 32 }} />
|
|
) : (
|
|
<Scissors color={colors.primary} size={32} />
|
|
)}
|
|
</View>
|
|
<Text style={[styles.brandName, { color: colors.primary }]}>
|
|
Criar Conta
|
|
</Text>
|
|
<Text style={[styles.brandTagline, { color: colors.textMuted }]}>Cadastre-se para agendar seu horário.</Text>
|
|
</Animated.View>
|
|
|
|
<Animated.View entering={FadeInUp.delay(200)} style={styles.form}>
|
|
|
|
<View style={[styles.inputContainer, { backgroundColor: colors.surface, borderColor: colors.divider }]}>
|
|
<User size={20} color={colors.textMuted} style={styles.inputIcon} />
|
|
<TextInput
|
|
placeholder="Seu Nome Completo"
|
|
placeholderTextColor={colors.textMuted}
|
|
style={[styles.input, { color: colors.text }]}
|
|
value={name}
|
|
onChangeText={setName}
|
|
/>
|
|
</View>
|
|
|
|
<View style={[styles.inputContainer, { backgroundColor: colors.surface, borderColor: colors.divider }]}>
|
|
<Mail size={20} color={colors.textMuted} style={styles.inputIcon} />
|
|
<TextInput
|
|
placeholder={t('login.email')}
|
|
placeholderTextColor={colors.textMuted}
|
|
style={[styles.input, { color: colors.text }]}
|
|
value={email}
|
|
onChangeText={setEmail}
|
|
keyboardType="email-address"
|
|
autoCapitalize="none"
|
|
/>
|
|
</View>
|
|
|
|
<View style={[styles.inputContainer, { backgroundColor: colors.surface, borderColor: colors.divider }]}>
|
|
<Phone size={20} color={colors.textMuted} style={styles.inputIcon} />
|
|
<TextInput
|
|
placeholder="Seu Telefone"
|
|
placeholderTextColor={colors.textMuted}
|
|
style={[styles.input, { color: colors.text }]}
|
|
value={phone}
|
|
onChangeText={setPhone}
|
|
keyboardType="phone-pad"
|
|
/>
|
|
</View>
|
|
|
|
<View style={[styles.inputContainer, { backgroundColor: colors.surface, borderColor: colors.divider }]}>
|
|
<Lock size={20} color={colors.textMuted} style={styles.inputIcon} />
|
|
<TextInput
|
|
placeholder={t('login.password')}
|
|
placeholderTextColor={colors.textMuted}
|
|
style={[styles.input, { color: colors.text }]}
|
|
value={password}
|
|
onChangeText={setPassword}
|
|
secureTextEntry
|
|
/>
|
|
</View>
|
|
|
|
<Button
|
|
title={t('login.register') || 'Cadastrar'}
|
|
onPress={handleRegister}
|
|
isLoading={isLoading}
|
|
style={[styles.loginButton, { backgroundColor: colors.primary, ...(SHADOWS.glow(colors.primary) as any) }]}
|
|
textStyle={{ color: colors.background }}
|
|
/>
|
|
</Animated.View>
|
|
</ScrollView>
|
|
</KeyboardAvoidingView>
|
|
</SafeAreaView>
|
|
);
|
|
}
|
|
|
|
const styles = StyleSheet.create({
|
|
container: {
|
|
flex: 1,
|
|
},
|
|
backButton: {
|
|
flexDirection: 'row',
|
|
alignItems: 'center',
|
|
padding: SPACING.lg,
|
|
position: 'absolute',
|
|
top: Platform.OS === 'web' ? 20 : 0,
|
|
zIndex: 10,
|
|
},
|
|
backText: {
|
|
...TYPOGRAPHY.body,
|
|
marginLeft: 4,
|
|
fontWeight: '600'
|
|
},
|
|
content: {
|
|
padding: SPACING.xl,
|
|
paddingTop: Platform.OS === 'web' ? 80 : 60,
|
|
paddingBottom: 60,
|
|
justifyContent: 'center',
|
|
maxWidth: 500,
|
|
width: '100%',
|
|
alignSelf: 'center',
|
|
},
|
|
logoContainer: {
|
|
alignItems: 'center',
|
|
marginBottom: SPACING.xxxl,
|
|
},
|
|
logoCircle: {
|
|
width: 64,
|
|
height: 64,
|
|
borderRadius: 32,
|
|
alignItems: 'center',
|
|
justifyContent: 'center',
|
|
marginBottom: SPACING.md,
|
|
borderWidth: 1,
|
|
},
|
|
brandName: {
|
|
...TYPOGRAPHY.h1,
|
|
letterSpacing: 1,
|
|
},
|
|
brandTagline: {
|
|
...TYPOGRAPHY.body,
|
|
marginTop: 8,
|
|
textAlign: 'center',
|
|
},
|
|
form: {
|
|
gap: SPACING.lg,
|
|
},
|
|
inputContainer: {
|
|
flexDirection: 'row',
|
|
alignItems: 'center',
|
|
borderRadius: BORDER_RADIUS.md,
|
|
paddingHorizontal: SPACING.md,
|
|
height: 60,
|
|
borderWidth: 1,
|
|
},
|
|
inputIcon: {
|
|
marginRight: SPACING.sm,
|
|
},
|
|
input: {
|
|
flex: 1,
|
|
...TYPOGRAPHY.body,
|
|
height: '100%',
|
|
},
|
|
loginButton: {
|
|
marginTop: SPACING.md,
|
|
},
|
|
});
|