Implement Handler mobile app (React Native + Expo iOS)

Build the committed 2a interactive prototype from Handler Mobile.dc.html as
a real Expo app: six wired screens (Fleet, Agent detail, Answer, Spawn, Log,
Settings) with the exact state logic ported from the design's renderVals().

- Port Leeworks tokens (colors light/dark, typography, spacing, radii,
  shadows) to typed RN values in src/theme.
- Reimplement the design-system components used by the screens (Button,
  Badge, Icon, Switch, Select, TextField, segmented control, chip, tab bar).
- Shared store mirrors the prototype's single-screen navigation and the
  Waiting -> Running flip when agt-7a1d is answered.
- Real OS status bar / home indicator (safe-area insets) replace the mock
  phone chrome; dark mode follows system appearance.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01PdF2hHVQ4UUBFPtpeMQ81o
This commit is contained in:
Claude
2026-07-20 18:48:30 +00:00
parent f143959b52
commit daecaa7e6b
31 changed files with 13423 additions and 0 deletions
+128
View File
@@ -0,0 +1,128 @@
import React, { useState } from "react";
import {
Modal,
Pressable,
StyleSheet,
Text,
View,
} from "react-native";
import { fonts, radius, shadows, text } from "../theme/tokens";
import { useTheme } from "../theme/useTheme";
import { Icon } from "./Icon";
/**
* Leeworks Select, ported from components/forms/Select.jsx. Native <select>
* has no cross-platform styling in RN, so the field opens a bottom sheet of
* options — same visual field (value + chevron), real picking behavior.
*/
export function Select({
label,
options,
value,
onChange,
}: {
label: string;
options: string[];
value: string;
onChange: (v: string) => void;
}) {
const { colors } = useTheme();
const [open, setOpen] = useState(false);
return (
<View style={{ gap: 6 }}>
<Text style={[styles.label, { color: colors.textHeading }]}>{label}</Text>
<Pressable
onPress={() => setOpen(true)}
style={[
styles.field,
{ backgroundColor: colors.surfaceCard, borderColor: colors.borderDefault },
]}
>
<Text style={[text.body, { color: colors.textHeading, flex: 1 }]}>
{value}
</Text>
<Icon name="chevronDown" size={16} color={colors.textMuted} />
</Pressable>
<Modal visible={open} transparent animationType="fade" onRequestClose={() => setOpen(false)}>
<Pressable style={styles.backdrop} onPress={() => setOpen(false)}>
<Pressable
style={[
styles.sheet,
{ backgroundColor: colors.surfaceCard, borderColor: colors.borderSubtle },
shadows.raised,
]}
>
{options.map((opt) => {
const on = opt === value;
return (
<Pressable
key={opt}
onPress={() => {
onChange(opt);
setOpen(false);
}}
style={({ pressed }) => [
styles.option,
pressed && { backgroundColor: colors.surfaceSunken },
]}
>
<Text
style={[
text.body,
{
color: colors.textHeading,
fontFamily: on ? fonts.bodySemiBold : fonts.bodyRegular,
flex: 1,
},
]}
>
{opt}
</Text>
{on && <Icon name="chevronRight" size={16} color={colors.textMuted} />}
</Pressable>
);
})}
</Pressable>
</Pressable>
</Modal>
</View>
);
}
const styles = StyleSheet.create({
label: {
fontFamily: fonts.bodySemiBold,
fontSize: 13,
lineHeight: 16,
},
field: {
height: 48,
flexDirection: "row",
alignItems: "center",
borderWidth: 1,
borderRadius: radius.md,
paddingHorizontal: 12,
gap: 8,
},
backdrop: {
flex: 1,
backgroundColor: "rgba(20,20,19,0.4)",
justifyContent: "flex-end",
padding: 20,
},
sheet: {
borderWidth: 1,
borderRadius: radius.xl,
overflow: "hidden",
marginBottom: 24,
},
option: {
flexDirection: "row",
alignItems: "center",
paddingVertical: 16,
paddingHorizontal: 20,
minHeight: 44,
},
});