feat(mobile): ConsentScreen + consent api
This commit is contained in:
@@ -0,0 +1,112 @@
|
|||||||
|
import { useState } from "react";
|
||||||
|
import {
|
||||||
|
Linking,
|
||||||
|
Pressable,
|
||||||
|
StyleSheet,
|
||||||
|
Text,
|
||||||
|
View,
|
||||||
|
} from "react-native";
|
||||||
|
import { Body, Button, Screen, Small, Title } from "@/components/ui";
|
||||||
|
import type { TextStyle } from "react-native";
|
||||||
|
import { acceptConsent } from "@/lib/api";
|
||||||
|
import { t } from "@/lib/i18n";
|
||||||
|
import { colors, spacing, typography } from "@/lib/theme";
|
||||||
|
|
||||||
|
interface ConsentScreenProps {
|
||||||
|
onAccepted: () => void;
|
||||||
|
}
|
||||||
|
|
||||||
|
export function ConsentScreen({ onAccepted }: ConsentScreenProps) {
|
||||||
|
const [checked, setChecked] = useState(false);
|
||||||
|
const [busy, setBusy] = useState(false);
|
||||||
|
const [error, setError] = useState<string | null>(null);
|
||||||
|
|
||||||
|
const openUrl = (url: string) => {
|
||||||
|
void Linking.openURL(url);
|
||||||
|
};
|
||||||
|
|
||||||
|
const submit = async () => {
|
||||||
|
if (!checked) return;
|
||||||
|
setBusy(true);
|
||||||
|
setError(null);
|
||||||
|
try {
|
||||||
|
await acceptConsent();
|
||||||
|
onAccepted();
|
||||||
|
} catch (err) {
|
||||||
|
setError(err instanceof Error ? err.message : t("common.error"));
|
||||||
|
} finally {
|
||||||
|
setBusy(false);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Screen style={{ justifyContent: "space-between" }}>
|
||||||
|
<View style={{ gap: spacing.md, paddingTop: spacing.lg }}>
|
||||||
|
<Title>{t("consent.title")}</Title>
|
||||||
|
<Body>{t("consent.body")}</Body>
|
||||||
|
<View style={{ gap: spacing.sm, paddingTop: spacing.sm }}>
|
||||||
|
<Pressable onPress={() => openUrl("https://cibello.app/villkor.html")}>
|
||||||
|
<Text style={[typography.body, styles.link]}>{t("consent.termsLink")}</Text>
|
||||||
|
</Pressable>
|
||||||
|
<Pressable onPress={() => openUrl("https://cibello.app/integritet.html")}>
|
||||||
|
<Text style={[typography.body, styles.link]}>{t("consent.privacyLink")}</Text>
|
||||||
|
</Pressable>
|
||||||
|
</View>
|
||||||
|
</View>
|
||||||
|
|
||||||
|
<View style={{ gap: spacing.md, paddingBottom: spacing.lg }}>
|
||||||
|
<Pressable
|
||||||
|
onPress={() => setChecked((v) => !v)}
|
||||||
|
style={styles.checkboxRow}
|
||||||
|
>
|
||||||
|
<View style={[styles.box, checked && styles.boxChecked]}>
|
||||||
|
{checked && <Text style={styles.checkmark}>✓</Text>}
|
||||||
|
</View>
|
||||||
|
<Body>{t("consent.checkbox")}</Body>
|
||||||
|
</Pressable>
|
||||||
|
|
||||||
|
{error && <Small style={{ color: colors.danger }}>{error}</Small>}
|
||||||
|
|
||||||
|
<Button
|
||||||
|
label={t("consent.submit")}
|
||||||
|
onPress={() => void submit()}
|
||||||
|
disabled={!checked}
|
||||||
|
loading={busy}
|
||||||
|
/>
|
||||||
|
</View>
|
||||||
|
</Screen>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
const styles = StyleSheet.create({
|
||||||
|
link: {
|
||||||
|
color: colors.primaryDark,
|
||||||
|
textDecorationLine: "underline",
|
||||||
|
},
|
||||||
|
checkboxRow: {
|
||||||
|
flexDirection: "row",
|
||||||
|
alignItems: "flex-start",
|
||||||
|
gap: spacing.sm,
|
||||||
|
},
|
||||||
|
box: {
|
||||||
|
width: 22,
|
||||||
|
height: 22,
|
||||||
|
borderRadius: 4,
|
||||||
|
borderWidth: 2,
|
||||||
|
borderColor: colors.primary,
|
||||||
|
alignItems: "center",
|
||||||
|
justifyContent: "center",
|
||||||
|
marginTop: 2,
|
||||||
|
},
|
||||||
|
boxChecked: {
|
||||||
|
backgroundColor: colors.primary,
|
||||||
|
},
|
||||||
|
checkmark: {
|
||||||
|
color: "#fff",
|
||||||
|
fontSize: 14,
|
||||||
|
fontWeight: "700",
|
||||||
|
},
|
||||||
|
checkboxLabel: {
|
||||||
|
flex: 1,
|
||||||
|
},
|
||||||
|
});
|
||||||
@@ -107,4 +107,18 @@ export async function uploadImage(
|
|||||||
if (!res.ok) throw new ApiError(res.status, "UPLOAD_FAILED", "Bilduppladdningen misslyckades.");
|
if (!res.ok) throw new ApiError(res.status, "UPLOAD_FAILED", "Bilduppladdningen misslyckades.");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface ConsentStatus {
|
||||||
|
accepted: boolean;
|
||||||
|
version: string;
|
||||||
|
acceptedAt: string | null;
|
||||||
|
}
|
||||||
|
|
||||||
|
export async function getConsent(): Promise<ConsentStatus> {
|
||||||
|
return api<ConsentStatus>("/v1/me/consent");
|
||||||
|
}
|
||||||
|
|
||||||
|
export async function acceptConsent(): Promise<ConsentStatus> {
|
||||||
|
return api<ConsentStatus>("/v1/me/consent", { method: "POST" });
|
||||||
|
}
|
||||||
|
|
||||||
export { API_BASE };
|
export { API_BASE };
|
||||||
|
|||||||
@@ -357,6 +357,12 @@
|
|||||||
"home.trustStatus.uncertain": "Lagret är osäkert – gör en snabbkoll",
|
"home.trustStatus.uncertain": "Lagret är osäkert – gör en snabbkoll",
|
||||||
"reconciliation.title": "Snabbkoll av lagret",
|
"reconciliation.title": "Snabbkoll av lagret",
|
||||||
"reconciliation.subtitle": "Bekräfta vad du har kvar så blir förslagen bättre.",
|
"reconciliation.subtitle": "Bekräfta vad du har kvar så blir förslagen bättre.",
|
||||||
|
"consent.title": "Innan du börjar",
|
||||||
|
"consent.body": "För att använda Cibello behöver du godkänna våra villkor. Bilderna du tar i appen (kylskåp, förpackningar, maträtter) används för att träna och förbättra Cibellos AI – det ingår i villkoren.",
|
||||||
|
"consent.termsLink": "Läs Användarvillkoren",
|
||||||
|
"consent.privacyLink": "Läs Integritetspolicyn",
|
||||||
|
"consent.checkbox": "Jag har läst och godkänner Användarvillkoren och Integritetspolicyn.",
|
||||||
|
"consent.submit": "Godkänn och fortsätt",
|
||||||
"reconciliation.exists": "Finns kvar",
|
"reconciliation.exists": "Finns kvar",
|
||||||
"reconciliation.depleted": "Är slut",
|
"reconciliation.depleted": "Är slut",
|
||||||
"reconciliation.uncertain": "Osäker",
|
"reconciliation.uncertain": "Osäker",
|
||||||
|
|||||||
Reference in New Issue
Block a user