Archived
- Backend: Django 5 + DRF with accounts, documents, collections, and reading apps - Custom User model with email-based auth, JWT via SimpleJWT - Full CRUD viewsets with ModelSerializer + DRF routers - pytest, Ruff, drf-spectacular (OpenAPI), whitenoise - Dockerfile for production deployment - Frontend: React 18 + TypeScript + Vite - Lazy-loaded routes with ProtectedRoute/PublicRoute guards - Auth context with useReducer, token refresh interceptor - Pages: Login, Register, Library, Document Detail, Reader, Collections, Settings - Dark theme, responsive grid layout, Vite proxy to Django backend - Mobile: Expo SDK 51 + React Native + Expo Router - File-based routing with login, register, and library screens - AsyncStorage for token persistence, token refresh interceptor - Shared API types via @cloud-reader/shared workspace package - Shared: TypeScript types (API responses, auth, documents, etc.) - CI/CD: 3 independent GitHub Actions pipelines (backend, frontend, mobile)
78 lines
3.1 KiB
TypeScript
78 lines
3.1 KiB
TypeScript
import React, { useState } from "react";
|
|
import { View, Text, TextInput, TouchableOpacity, StyleSheet, Alert, KeyboardAvoidingView, Platform } from "react-native";
|
|
import { useRouter } from "expo-router";
|
|
import AsyncStorage from "@react-native-async-storage/async-storage";
|
|
import api from "../src/services/api";
|
|
|
|
export default function LoginScreen(): React.ReactElement {
|
|
const router = useRouter();
|
|
const [email, setEmail] = useState("");
|
|
const [password, setPassword] = useState("");
|
|
const [loading, setLoading] = useState(false);
|
|
|
|
const handleLogin = async (): Promise<void> => {
|
|
if (!email || !password) {
|
|
Alert.alert("Error", "Please fill in all fields.");
|
|
return;
|
|
}
|
|
setLoading(true);
|
|
try {
|
|
const { data } = await api.post("/auth/token/", { email, password });
|
|
await AsyncStorage.setItem("access_token", data.access);
|
|
await AsyncStorage.setItem("refresh_token", data.refresh);
|
|
router.replace("/library");
|
|
} catch {
|
|
Alert.alert("Error", "Invalid email or password.");
|
|
} finally {
|
|
setLoading(false);
|
|
}
|
|
};
|
|
|
|
return (
|
|
<KeyboardAvoidingView style={styles.container} behavior={Platform.OS === "ios" ? "padding" : "height"}>
|
|
<View style={styles.card}>
|
|
<Text style={styles.title}>Cloud Reader</Text>
|
|
<Text style={styles.subtitle}>Sign in to continue</Text>
|
|
|
|
<Text style={styles.label}>Email</Text>
|
|
<TextInput
|
|
style={styles.input}
|
|
value={email}
|
|
onChangeText={setEmail}
|
|
autoCapitalize="none"
|
|
keyboardType="email-address"
|
|
placeholderTextColor="#8892a4"
|
|
/>
|
|
|
|
<Text style={styles.label}>Password</Text>
|
|
<TextInput
|
|
style={styles.input}
|
|
value={password}
|
|
onChangeText={setPassword}
|
|
secureTextEntry
|
|
placeholderTextColor="#8892a4"
|
|
/>
|
|
|
|
<TouchableOpacity style={styles.button} onPress={handleLogin} disabled={loading}>
|
|
<Text style={styles.buttonText}>{loading ? "Signing in..." : "Sign In"}</Text>
|
|
</TouchableOpacity>
|
|
|
|
<TouchableOpacity onPress={() => router.push("/register")}>
|
|
<Text style={styles.link}>Don't have an account? Register</Text>
|
|
</TouchableOpacity>
|
|
</View>
|
|
</KeyboardAvoidingView>
|
|
);
|
|
}
|
|
|
|
const styles = StyleSheet.create({
|
|
container: { flex: 1, justifyContent: "center", alignItems: "center", backgroundColor: "#0f1419", padding: 24 },
|
|
card: { width: "100%", maxWidth: 400, padding: 32, backgroundColor: "#1a1f2e", borderRadius: 12 },
|
|
title: { fontSize: 24, fontWeight: "700", color: "#e1e4ed", marginBottom: 4 },
|
|
subtitle: { fontSize: 16, color: "#8892a4", marginBottom: 24 },
|
|
label: { fontSize: 13, fontWeight: "500", color: "#8892a4", marginBottom: 6 },
|
|
input: { backgroundColor: "#0f1419", borderWidth: 1, borderColor: "#2a3042", borderRadius: 8, padding: 12, color: "#e1e4ed", fontSize: 14, marginBottom: 16 },
|
|
button: { backgroundColor: "#4f8cff", borderRadius: 8, padding: 14, alignItems: "center", marginTop: 8 },
|
|
buttonText: { color: "#fff", fontWeight: "600", fontSize: 16 },
|
|
link: { color: "#4f8cff", textAlign: "center", marginTop: 16, fontSize: 14 },
|
|
}); |