d538c0879d
Co-authored-by: christianlouis <361235+christianlouis@users.noreply.github.com>
166 lines
4.0 KiB
TypeScript
166 lines
4.0 KiB
TypeScript
/**
|
||
* LoginScreen – entry point for unauthenticated users.
|
||
*
|
||
* Renders a server URL input and a "Sign in with SSO" button that opens the
|
||
* DocuElevate web login page in the system browser. On success the
|
||
* AuthContext stores the API token and navigates to the main app.
|
||
*/
|
||
|
||
import React, { useState } from "react";
|
||
import {
|
||
ActivityIndicator,
|
||
Alert,
|
||
KeyboardAvoidingView,
|
||
Platform,
|
||
Pressable,
|
||
StyleSheet,
|
||
Text,
|
||
TextInput,
|
||
View,
|
||
} from "react-native";
|
||
import { useAuth } from "../context/AuthContext";
|
||
|
||
export default function LoginScreen() {
|
||
const { signIn } = useAuth();
|
||
const [serverUrl, setServerUrl] = useState("");
|
||
const [loading, setLoading] = useState(false);
|
||
|
||
async function handleSignIn() {
|
||
const url = serverUrl.trim();
|
||
if (!url) {
|
||
Alert.alert("Server URL required", "Please enter the URL of your DocuElevate server.");
|
||
return;
|
||
}
|
||
if (!url.startsWith("http://") && !url.startsWith("https://")) {
|
||
Alert.alert("Invalid URL", "The server URL must start with http:// or https://");
|
||
return;
|
||
}
|
||
|
||
setLoading(true);
|
||
try {
|
||
await signIn(url);
|
||
} catch (err: unknown) {
|
||
const message = err instanceof Error ? err.message : "Sign-in failed";
|
||
Alert.alert("Sign-in failed", message);
|
||
} finally {
|
||
setLoading(false);
|
||
}
|
||
}
|
||
|
||
return (
|
||
<KeyboardAvoidingView
|
||
style={styles.container}
|
||
behavior={Platform.OS === "ios" ? "padding" : undefined}
|
||
>
|
||
<View style={styles.card}>
|
||
<Text style={styles.logo}>DocuElevate</Text>
|
||
<Text style={styles.tagline}>Intelligent Document Processing</Text>
|
||
|
||
<Text style={styles.label}>Server URL</Text>
|
||
<TextInput
|
||
style={styles.input}
|
||
placeholder="https://your-docuelevate-server.com"
|
||
placeholderTextColor="#9ca3af"
|
||
value={serverUrl}
|
||
onChangeText={setServerUrl}
|
||
autoCapitalize="none"
|
||
autoCorrect={false}
|
||
keyboardType="url"
|
||
returnKeyType="go"
|
||
onSubmitEditing={handleSignIn}
|
||
accessibilityLabel="Server URL"
|
||
/>
|
||
|
||
<Pressable
|
||
style={[styles.button, loading && styles.buttonDisabled]}
|
||
onPress={handleSignIn}
|
||
disabled={loading}
|
||
accessibilityRole="button"
|
||
accessibilityLabel="Sign in with SSO"
|
||
>
|
||
{loading ? (
|
||
<ActivityIndicator color="#fff" />
|
||
) : (
|
||
<Text style={styles.buttonText}>Sign in with SSO</Text>
|
||
)}
|
||
</Pressable>
|
||
|
||
<Text style={styles.hint}>
|
||
You will be redirected to your organisation's sign-in page.
|
||
</Text>
|
||
</View>
|
||
</KeyboardAvoidingView>
|
||
);
|
||
}
|
||
|
||
const styles = StyleSheet.create({
|
||
container: {
|
||
flex: 1,
|
||
backgroundColor: "#f3f4f6",
|
||
justifyContent: "center",
|
||
padding: 24,
|
||
},
|
||
card: {
|
||
backgroundColor: "#ffffff",
|
||
borderRadius: 16,
|
||
padding: 28,
|
||
shadowColor: "#000",
|
||
shadowOpacity: 0.08,
|
||
shadowOffset: { width: 0, height: 4 },
|
||
shadowRadius: 12,
|
||
elevation: 4,
|
||
},
|
||
logo: {
|
||
fontSize: 28,
|
||
fontWeight: "700",
|
||
color: "#1e40af",
|
||
textAlign: "center",
|
||
marginBottom: 4,
|
||
},
|
||
tagline: {
|
||
fontSize: 14,
|
||
color: "#6b7280",
|
||
textAlign: "center",
|
||
marginBottom: 32,
|
||
},
|
||
label: {
|
||
fontSize: 14,
|
||
fontWeight: "600",
|
||
color: "#374151",
|
||
marginBottom: 6,
|
||
},
|
||
input: {
|
||
borderWidth: 1,
|
||
borderColor: "#d1d5db",
|
||
borderRadius: 8,
|
||
paddingHorizontal: 12,
|
||
paddingVertical: 12,
|
||
fontSize: 15,
|
||
color: "#111827",
|
||
marginBottom: 20,
|
||
backgroundColor: "#f9fafb",
|
||
},
|
||
button: {
|
||
backgroundColor: "#1e40af",
|
||
borderRadius: 8,
|
||
paddingVertical: 14,
|
||
alignItems: "center",
|
||
justifyContent: "center",
|
||
minHeight: 48,
|
||
},
|
||
buttonDisabled: {
|
||
opacity: 0.6,
|
||
},
|
||
buttonText: {
|
||
color: "#ffffff",
|
||
fontSize: 16,
|
||
fontWeight: "600",
|
||
},
|
||
hint: {
|
||
marginTop: 16,
|
||
fontSize: 12,
|
||
color: "#9ca3af",
|
||
textAlign: "center",
|
||
},
|
||
});
|