3d8bd68fe0
Alla kategori-flikar anvander nu SAMMA rekommendations-motor (what-to-eat) som 'Rekommenderat', sa vyn blir identisk overallt: - sok fungerar i alla flikar, %-hemma och stjarnor visas, samma kort-layout, och samma paginering med 'Visa fler' (5 at gangen). - Backend: what-to-eat tar nu valfri ?tag= (Baka-fliken filtrerar pa 'baking' i stallet for maltidstyp; mealType styr bara poangsattningen). - Enhetliga chip-rutor: Button far en style-prop, flikarna ligger i 2 kolumner med lika bred ruta (48%), centrerad text som krymper vid behov. - 'Toppval' visas bara pa forsta sidan. 'Alla recept & sok' kvar som lank. Full typecheck 20/20.
320 lines
8.2 KiB
TypeScript
320 lines
8.2 KiB
TypeScript
import type { PropsWithChildren, ReactNode } from "react";
|
|
import { useEffect, useState } from "react";
|
|
import {
|
|
ActivityIndicator,
|
|
KeyboardAvoidingView,
|
|
Platform,
|
|
Pressable,
|
|
ScrollView,
|
|
StyleSheet,
|
|
Text,
|
|
TextInput,
|
|
View,
|
|
type StyleProp,
|
|
type TextInputProps,
|
|
type TextStyle,
|
|
type ViewStyle,
|
|
} from "react-native";
|
|
import { SafeAreaView } from "react-native-safe-area-context";
|
|
import { colors, radius, spacing, typography } from "@/lib/theme";
|
|
import { t } from "@/lib/i18n";
|
|
import * as Haptics from "expo-haptics";
|
|
|
|
/** Lätt haptik + handlern — gör tryck taktila i hela appen. */
|
|
function withHaptic(fn: () => void): () => void {
|
|
return () => {
|
|
Haptics.impactAsync(Haptics.ImpactFeedbackStyle.Light).catch(() => {});
|
|
fn();
|
|
};
|
|
}
|
|
|
|
export function Screen({
|
|
children,
|
|
scroll = true,
|
|
style,
|
|
}: PropsWithChildren<{ scroll?: boolean; style?: StyleProp<ViewStyle> }>) {
|
|
const content = scroll ? (
|
|
<ScrollView
|
|
contentContainerStyle={[styles.screenContent, style]}
|
|
keyboardShouldPersistTaps="handled"
|
|
keyboardDismissMode="on-drag"
|
|
>
|
|
{children}
|
|
</ScrollView>
|
|
) : (
|
|
<View style={[styles.screenContent, { flex: 1 }, style]}>{children}</View>
|
|
);
|
|
return (
|
|
<SafeAreaView style={styles.screen} edges={["top"]}>
|
|
<KeyboardAvoidingView
|
|
style={{ flex: 1 }}
|
|
behavior={Platform.OS === "ios" ? "padding" : undefined}
|
|
>
|
|
{content}
|
|
</KeyboardAvoidingView>
|
|
</SafeAreaView>
|
|
);
|
|
}
|
|
|
|
export function Title({ children }: { children: ReactNode }) {
|
|
return <Text style={typography.title}>{children}</Text>;
|
|
}
|
|
export function Heading({ children }: { children: ReactNode }) {
|
|
return <Text style={[typography.heading, { marginBottom: spacing.sm }]}>{children}</Text>;
|
|
}
|
|
export function Body({ children, muted = false }: { children: ReactNode; muted?: boolean }) {
|
|
return <Text style={[typography.body, muted && { color: colors.textMuted }]}>{children}</Text>;
|
|
}
|
|
export function Small({
|
|
children,
|
|
style,
|
|
numberOfLines,
|
|
adjustsFontSizeToFit,
|
|
}: {
|
|
children: ReactNode;
|
|
style?: StyleProp<TextStyle>;
|
|
numberOfLines?: number;
|
|
adjustsFontSizeToFit?: boolean;
|
|
}) {
|
|
return (
|
|
<Text
|
|
style={[typography.small, style]}
|
|
numberOfLines={numberOfLines}
|
|
adjustsFontSizeToFit={adjustsFontSizeToFit}
|
|
>
|
|
{children}
|
|
</Text>
|
|
);
|
|
}
|
|
|
|
export function Card({
|
|
children,
|
|
onPress,
|
|
style,
|
|
}: PropsWithChildren<{ onPress?: () => void; style?: StyleProp<ViewStyle> }>) {
|
|
if (onPress) {
|
|
return (
|
|
<Pressable
|
|
onPress={withHaptic(onPress)}
|
|
style={({ pressed }) => [
|
|
styles.card,
|
|
style,
|
|
pressed && { opacity: 0.85, transform: [{ scale: 0.98 }] },
|
|
]}
|
|
>
|
|
{children}
|
|
</Pressable>
|
|
);
|
|
}
|
|
return <View style={[styles.card, style]}>{children}</View>;
|
|
}
|
|
|
|
export function Button({
|
|
label,
|
|
onPress,
|
|
variant = "primary",
|
|
disabled = false,
|
|
loading = false,
|
|
style,
|
|
}: {
|
|
label: string;
|
|
onPress: () => void;
|
|
variant?: "primary" | "secondary" | "ghost" | "danger";
|
|
disabled?: boolean;
|
|
loading?: boolean;
|
|
style?: StyleProp<ViewStyle>;
|
|
}) {
|
|
const bg =
|
|
variant === "primary"
|
|
? colors.primary
|
|
: variant === "danger"
|
|
? colors.dangerSoft
|
|
: variant === "secondary"
|
|
? colors.primarySoft
|
|
: "transparent";
|
|
const fg =
|
|
variant === "primary" ? "#fff" : variant === "danger" ? colors.danger : colors.primaryDark;
|
|
return (
|
|
<Pressable
|
|
onPress={withHaptic(onPress)}
|
|
disabled={disabled || loading}
|
|
style={({ pressed }) => [
|
|
styles.button,
|
|
{
|
|
backgroundColor: bg,
|
|
opacity: disabled ? 0.5 : pressed ? 0.85 : 1,
|
|
transform: [{ scale: pressed ? 0.97 : 1 }],
|
|
},
|
|
variant === "ghost" && { borderWidth: 1, borderColor: colors.border },
|
|
style,
|
|
]}
|
|
>
|
|
{loading ? (
|
|
<ActivityIndicator color={fg} />
|
|
) : (
|
|
<Text
|
|
numberOfLines={1}
|
|
adjustsFontSizeToFit
|
|
style={{ color: fg, fontWeight: "600", fontSize: 15, textAlign: "center" }}
|
|
>
|
|
{label}
|
|
</Text>
|
|
)}
|
|
</Pressable>
|
|
);
|
|
}
|
|
|
|
export function Input(props: TextInputProps) {
|
|
return (
|
|
<TextInput
|
|
placeholderTextColor={colors.textMuted}
|
|
{...props}
|
|
style={[styles.input, props.style]}
|
|
/>
|
|
);
|
|
}
|
|
|
|
export function Tag({
|
|
label,
|
|
tone = "neutral",
|
|
}: {
|
|
label: string;
|
|
tone?: "neutral" | "success" | "warning" | "danger" | "accent";
|
|
}) {
|
|
const palette = {
|
|
neutral: { bg: colors.surfaceAlt, fg: colors.textMuted },
|
|
success: { bg: colors.primarySoft, fg: colors.primaryDark },
|
|
warning: { bg: colors.warningSoft, fg: colors.warning },
|
|
danger: { bg: colors.dangerSoft, fg: colors.danger },
|
|
accent: { bg: colors.accentSoft, fg: colors.accent },
|
|
}[tone];
|
|
return (
|
|
<View style={[styles.tag, { backgroundColor: palette.bg }]}>
|
|
<Text style={{ color: palette.fg, fontSize: 12, fontWeight: "600" }}>{label}</Text>
|
|
</View>
|
|
);
|
|
}
|
|
|
|
export function ProgressBar({
|
|
progress,
|
|
tone = "primary",
|
|
}: {
|
|
progress: number;
|
|
tone?: "primary" | "warning";
|
|
}) {
|
|
const clamped = Math.max(0, Math.min(1, progress));
|
|
const over = progress > 1;
|
|
return (
|
|
<View style={styles.progressTrack}>
|
|
<View
|
|
style={[
|
|
styles.progressFill,
|
|
{
|
|
width: `${clamped * 100}%`,
|
|
backgroundColor: over
|
|
? colors.warning
|
|
: tone === "warning"
|
|
? colors.warning
|
|
: colors.primary,
|
|
},
|
|
]}
|
|
/>
|
|
</View>
|
|
);
|
|
}
|
|
|
|
export function LoadingView({ messages }: { messages?: string[] } = {}) {
|
|
const [i, setI] = useState(0);
|
|
const list = messages ?? [];
|
|
useEffect(() => {
|
|
setI(0);
|
|
if (list.length <= 1) return;
|
|
const id = setInterval(() => setI((v) => (v + 1 < list.length ? v + 1 : v)), 1800);
|
|
return () => clearInterval(id);
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
}, [list.length]);
|
|
return (
|
|
<View style={styles.center}>
|
|
<ActivityIndicator size="large" color={colors.primary} />
|
|
<Small>{list.length ? list[i] : t("common.loading")}</Small>
|
|
</View>
|
|
);
|
|
}
|
|
|
|
export function ErrorView({ message, onRetry }: { message?: string; onRetry?: () => void }) {
|
|
return (
|
|
<View style={styles.center}>
|
|
<Body>{message ?? t("common.error")}</Body>
|
|
{onRetry && <Button label={t("common.retry")} onPress={onRetry} variant="secondary" />}
|
|
</View>
|
|
);
|
|
}
|
|
|
|
export function EmptyState({ text }: { text: string }) {
|
|
return (
|
|
<Card style={{ alignItems: "center", paddingVertical: spacing.xl }}>
|
|
<Body muted>{text}</Body>
|
|
</Card>
|
|
);
|
|
}
|
|
|
|
export function Row({ children, style }: PropsWithChildren<{ style?: StyleProp<ViewStyle> }>) {
|
|
return <View style={[styles.row, style]}>{children}</View>;
|
|
}
|
|
|
|
export function Spacer({ size = spacing.md }: { size?: number }) {
|
|
return <View style={{ height: size }} />;
|
|
}
|
|
|
|
const styles = StyleSheet.create({
|
|
screen: { flex: 1, backgroundColor: colors.background },
|
|
screenContent: { padding: spacing.md, gap: spacing.sm, paddingBottom: spacing.xl },
|
|
card: {
|
|
backgroundColor: colors.surface,
|
|
borderRadius: radius.lg,
|
|
padding: spacing.md,
|
|
borderWidth: 1,
|
|
borderColor: colors.border,
|
|
gap: spacing.xs,
|
|
},
|
|
button: {
|
|
paddingVertical: 13,
|
|
paddingHorizontal: spacing.lg,
|
|
borderRadius: radius.md,
|
|
alignItems: "center",
|
|
justifyContent: "center",
|
|
minHeight: 48,
|
|
},
|
|
input: {
|
|
backgroundColor: colors.surface,
|
|
borderWidth: 1,
|
|
borderColor: colors.border,
|
|
borderRadius: radius.md,
|
|
paddingHorizontal: spacing.md,
|
|
paddingVertical: 12,
|
|
fontSize: 15,
|
|
color: colors.text,
|
|
},
|
|
tag: {
|
|
paddingHorizontal: 10,
|
|
paddingVertical: 3,
|
|
borderRadius: radius.full,
|
|
alignSelf: "flex-start",
|
|
},
|
|
progressTrack: {
|
|
height: 8,
|
|
backgroundColor: colors.surfaceAlt,
|
|
borderRadius: radius.full,
|
|
overflow: "hidden",
|
|
},
|
|
progressFill: { height: 8, borderRadius: radius.full },
|
|
center: {
|
|
flex: 1,
|
|
alignItems: "center",
|
|
justifyContent: "center",
|
|
gap: spacing.md,
|
|
padding: spacing.xl,
|
|
},
|
|
row: { flexDirection: "row", alignItems: "center", gap: spacing.sm, flexWrap: "wrap" },
|
|
});
|