mirror of
https://github.com/FranP-code/create-better-t-stack.git
synced 2025-10-12 23:52:15 +00:00
195 lines
5.5 KiB
Handlebars
195 lines
5.5 KiB
Handlebars
import { ScrollView, Text, View } from "react-native";
|
|
import { StyleSheet } from "react-native-unistyles";
|
|
import { Container } from "@/components/container";
|
|
|
|
{{#if (eq api "orpc")}}
|
|
import { useQuery } from "@tanstack/react-query";
|
|
import { orpc } from "@/utils/orpc";
|
|
{{/if}}
|
|
{{#if (eq api "trpc")}}
|
|
import { useQuery } from "@tanstack/react-query";
|
|
import { trpc } from "@/utils/trpc";
|
|
{{/if}}
|
|
{{#if (eq backend "convex")}}
|
|
import { useQuery } from "convex/react";
|
|
import { api } from "@{{ projectName }}/backend/convex/_generated/api";
|
|
{{/if}}
|
|
|
|
export default function Home() {
|
|
{{#if (eq api "orpc")}}
|
|
const healthCheck = useQuery(orpc.healthCheck.queryOptions());
|
|
{{/if}}
|
|
{{#if (eq api "trpc")}}
|
|
const healthCheck = useQuery(trpc.healthCheck.queryOptions());
|
|
{{/if}}
|
|
{{#if (eq backend "convex")}}
|
|
const healthCheck = useQuery(api.healthCheck.get);
|
|
{{/if}}
|
|
|
|
return (
|
|
<Container>
|
|
<ScrollView
|
|
contentContainerStyle={styles.container}
|
|
showsVerticalScrollIndicator={false}
|
|
>
|
|
<Text className="font-mono text-foreground text-3xl font-bold mb-4">
|
|
BETTER T STACK
|
|
</Text>
|
|
<View style={styles.statusCard}>
|
|
<View style={styles.statusHeader}>
|
|
<Text style={styles.statusTitle}>System Status</Text>
|
|
<View style={styles.statusBadge}>
|
|
<Text style={styles.statusBadgeText}>LIVE</Text>
|
|
</View>
|
|
</View>
|
|
|
|
{{#if (eq backend "convex")}}
|
|
<View style={styles.statusRow}>
|
|
<View
|
|
style={[
|
|
styles.statusDot,
|
|
healthCheck === "OK"
|
|
? styles.statusDotSuccess
|
|
: styles.statusDotWarning,
|
|
]}
|
|
/>
|
|
<View style={styles.statusContent}>
|
|
<Text style={styles.statusLabel}>Convex</Text>
|
|
<Text style={styles.statusDescription}>
|
|
{healthCheck === undefined
|
|
? "Checking connection..."
|
|
: healthCheck === "OK"
|
|
? "All systems operational"
|
|
: "Service unavailable"}
|
|
</Text>
|
|
</View>
|
|
</View>
|
|
{{else}}
|
|
{{#unless (eq api "none")}}
|
|
<View style={styles.statusRow}>
|
|
<View
|
|
style={[
|
|
styles.statusDot,
|
|
healthCheck.data
|
|
? styles.statusDotSuccess
|
|
: styles.statusDotWarning,
|
|
]}
|
|
/>
|
|
<View style={styles.statusContent}>
|
|
<Text style={styles.statusLabel}>
|
|
{{#if (eq api "orpc")}}
|
|
ORPC
|
|
{{/if}}
|
|
{{#if (eq api "trpc")}}
|
|
TRPC
|
|
{{/if}}
|
|
</Text>
|
|
<Text style={styles.statusDescription}>
|
|
{{#if (eq api "orpc")}}
|
|
{healthCheck.isLoading
|
|
? "Checking connection..."
|
|
: healthCheck.data
|
|
? "All systems operational"
|
|
: "Service unavailable"}
|
|
{{/if}}
|
|
{{#if (eq api "trpc")}}
|
|
{healthCheck.isLoading
|
|
? "Checking connection..."
|
|
: healthCheck.data
|
|
? "All systems operational"
|
|
: "Service unavailable"}
|
|
{{/if}}
|
|
</Text>
|
|
</View>
|
|
</View>
|
|
{{/unless}}
|
|
{{/if}}
|
|
</View>
|
|
</ScrollView>
|
|
</Container>
|
|
);
|
|
}
|
|
|
|
const styles = StyleSheet.create((theme) => ({
|
|
container: {
|
|
paddingHorizontal: theme.spacing.md,
|
|
},
|
|
heroSection: {
|
|
paddingVertical: theme.spacing.xl,
|
|
},
|
|
heroTitle: {
|
|
fontSize: theme.fontSize["4xl"],
|
|
fontWeight: "bold",
|
|
color: theme.colors.foreground,
|
|
marginBottom: theme.spacing.sm,
|
|
},
|
|
heroSubtitle: {
|
|
fontSize: theme.fontSize.lg,
|
|
color: theme.colors.mutedForeground,
|
|
lineHeight: 28,
|
|
},
|
|
statusCard: {
|
|
backgroundColor: theme.colors.card,
|
|
borderWidth: 1,
|
|
borderColor: theme.colors.border,
|
|
borderRadius: theme.borderRadius.xl,
|
|
padding: theme.spacing.lg,
|
|
marginBottom: theme.spacing.lg,
|
|
shadowColor: "#000",
|
|
shadowOffset: { width: 0, height: 1 },
|
|
shadowOpacity: 0.05,
|
|
shadowRadius: 3,
|
|
elevation: 2,
|
|
},
|
|
statusHeader: {
|
|
flexDirection: "row",
|
|
alignItems: "center",
|
|
justifyContent: "space-between",
|
|
marginBottom: theme.spacing.md,
|
|
},
|
|
statusTitle: {
|
|
fontSize: theme.fontSize.lg,
|
|
fontWeight: "600",
|
|
color: theme.colors.cardForeground,
|
|
},
|
|
statusBadge: {
|
|
backgroundColor: theme.colors.secondary,
|
|
paddingHorizontal: theme.spacing.sm + 4,
|
|
paddingVertical: theme.spacing.xs,
|
|
borderRadius: 9999,
|
|
},
|
|
statusBadgeText: {
|
|
fontSize: theme.fontSize.xs,
|
|
fontWeight: "500",
|
|
color: theme.colors.secondaryForeground,
|
|
},
|
|
statusRow: {
|
|
flexDirection: "row",
|
|
alignItems: "center",
|
|
gap: theme.spacing.sm + 4,
|
|
},
|
|
statusDot: {
|
|
height: 12,
|
|
width: 12,
|
|
borderRadius: 6,
|
|
},
|
|
statusDotSuccess: {
|
|
backgroundColor: theme.colors.success,
|
|
},
|
|
statusDotWarning: {
|
|
backgroundColor: "#F59E0B",
|
|
},
|
|
statusContent: {
|
|
flex: 1,
|
|
},
|
|
statusLabel: {
|
|
fontSize: theme.fontSize.sm,
|
|
fontWeight: "500",
|
|
color: theme.colors.cardForeground,
|
|
},
|
|
statusDescription: {
|
|
fontSize: theme.fontSize.xs,
|
|
color: theme.colors.mutedForeground,
|
|
}
|
|
}));
|