Frontend: - New devices.tsx: section 'this device' + 'protected devices' + Legend CTA - AddMacSheet: label → Lyra-onboarding (4 steps) → success - protectedDevices store (Zustand): load, enroll, confirmInstalled, remove - Locale strings DE + EN (devices namespace, 36 keys each) - Path-fix: /api/devices/protected (was /api/devices) + /api/devices/:id/revoke Free/Pro see upgrade-CTA, Legend see add-Mac. Windows button shown disabled (soon). Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
618 lines
19 KiB
TypeScript
618 lines
19 KiB
TypeScript
import {
|
|
ActivityIndicator,
|
|
Alert,
|
|
Platform,
|
|
Pressable,
|
|
ScrollView,
|
|
Text,
|
|
View,
|
|
} from 'react-native';
|
|
import { useEffect, useState } from 'react';
|
|
import { useSafeAreaInsets } from 'react-native-safe-area-context';
|
|
import { Ionicons } from '@expo/vector-icons';
|
|
import { MenuView } from '@react-native-menu/menu';
|
|
import { useTranslation } from 'react-i18next';
|
|
import { useColors } from '../lib/theme';
|
|
import { useDevicesStore, type UserDevice } from '../stores/devices';
|
|
import { useProtectedDevicesStore, type ProtectedDevice } from '../stores/protectedDevices';
|
|
import { useUserPlan } from '../hooks/useUserPlan';
|
|
import { AppHeader } from '../components/AppHeader';
|
|
import { AddMacSheet } from '../components/devices/AddMacSheet';
|
|
|
|
// ─── Helpers ─────────────────────────────────────────────────────────────────
|
|
|
|
function mobileIcon(platform: string): React.ComponentProps<typeof Ionicons>['name'] {
|
|
if (platform === 'ios') return 'logo-apple';
|
|
if (platform === 'android') return 'logo-android';
|
|
return 'phone-portrait-outline';
|
|
}
|
|
|
|
function protectedDeviceIcon(platform: string): React.ComponentProps<typeof Ionicons>['name'] {
|
|
if (platform === 'mac') return 'laptop-outline';
|
|
if (platform === 'windows') return 'desktop-outline';
|
|
return 'globe-outline';
|
|
}
|
|
|
|
function formatLastSeen(iso: string, t: (k: string, o?: any) => string): string {
|
|
const ms = Date.now() - new Date(iso).getTime();
|
|
const min = Math.floor(ms / 60_000);
|
|
if (min < 1) return t('settings.devices_just_now');
|
|
if (min < 60) return t('settings.devices_mins_ago', { count: min });
|
|
const hr = Math.floor(min / 60);
|
|
if (hr < 24) return t('settings.devices_hours_ago', { count: hr });
|
|
const day = Math.floor(hr / 24);
|
|
if (day < 30) return t('settings.devices_days_ago', { count: day });
|
|
return new Date(iso).toLocaleDateString(Platform.OS === 'ios' ? undefined : 'de-DE', {
|
|
day: '2-digit',
|
|
month: 'short',
|
|
year: 'numeric',
|
|
});
|
|
}
|
|
|
|
function formatSince(iso: string): string {
|
|
return new Date(iso).toLocaleDateString(Platform.OS === 'ios' ? undefined : 'de-DE', {
|
|
day: '2-digit',
|
|
month: 'short',
|
|
year: 'numeric',
|
|
});
|
|
}
|
|
|
|
// ─── Status Badge ─────────────────────────────────────────────────────────────
|
|
|
|
function StatusBadge({ status }: { status: ProtectedDevice['status'] }) {
|
|
const { t } = useTranslation();
|
|
const colors = useColors();
|
|
|
|
const config = {
|
|
pending: {
|
|
label: t('devices.status_pending'),
|
|
bg: 'rgba(245,158,11,0.12)',
|
|
fg: '#f59e0b',
|
|
},
|
|
active: {
|
|
label: t('devices.status_active'),
|
|
bg: colors.success + '1a',
|
|
fg: colors.success,
|
|
},
|
|
revoked: {
|
|
label: t('devices.status_revoked'),
|
|
bg: 'rgba(0,0,0,0.06)',
|
|
fg: colors.textMuted,
|
|
},
|
|
}[status] ?? {
|
|
label: status,
|
|
bg: 'rgba(0,0,0,0.06)',
|
|
fg: colors.textMuted,
|
|
};
|
|
|
|
return (
|
|
<View
|
|
style={{
|
|
paddingHorizontal: 6,
|
|
paddingVertical: 2,
|
|
borderRadius: 6,
|
|
backgroundColor: config.bg,
|
|
}}
|
|
>
|
|
<Text style={{ fontSize: 10, color: config.fg, fontFamily: 'Nunito_600SemiBold' }}>
|
|
{config.label}
|
|
</Text>
|
|
</View>
|
|
);
|
|
}
|
|
|
|
// ─── Mobile Device Row (existing) ────────────────────────────────────────────
|
|
|
|
function MobileDeviceRow({
|
|
device,
|
|
onRemove,
|
|
}: {
|
|
device: UserDevice;
|
|
onRemove: (id: string) => void;
|
|
}) {
|
|
const { t } = useTranslation();
|
|
const colors = useColors();
|
|
|
|
function confirmRemove() {
|
|
Alert.alert(
|
|
t('settings.devices_remove_title'),
|
|
t('settings.devices_remove_desc'),
|
|
[
|
|
{ text: t('common.cancel'), style: 'cancel' },
|
|
{
|
|
text: t('settings.devices_remove_confirm'),
|
|
style: 'destructive',
|
|
onPress: () => onRemove(device.id),
|
|
},
|
|
]
|
|
);
|
|
}
|
|
|
|
return (
|
|
<View
|
|
style={{
|
|
flexDirection: 'row',
|
|
alignItems: 'flex-start',
|
|
gap: 12,
|
|
paddingHorizontal: 14,
|
|
paddingVertical: 14,
|
|
}}
|
|
>
|
|
<View
|
|
style={{
|
|
width: 40,
|
|
height: 40,
|
|
borderRadius: 12,
|
|
backgroundColor: colors.surfaceElevated,
|
|
alignItems: 'center',
|
|
justifyContent: 'center',
|
|
}}
|
|
>
|
|
<Ionicons name={mobileIcon(device.platform)} size={20} color={colors.text} />
|
|
</View>
|
|
|
|
<View style={{ flex: 1, minWidth: 0 }}>
|
|
<View style={{ flexDirection: 'row', alignItems: 'center', gap: 6 }}>
|
|
<Text
|
|
numberOfLines={1}
|
|
style={{
|
|
fontSize: 15,
|
|
color: colors.text,
|
|
fontFamily: 'Nunito_600SemiBold',
|
|
flexShrink: 1,
|
|
}}
|
|
>
|
|
{device.name ?? device.model ?? device.platform}
|
|
</Text>
|
|
{device.isCurrent ? (
|
|
<View
|
|
style={{
|
|
paddingHorizontal: 6,
|
|
paddingVertical: 2,
|
|
borderRadius: 6,
|
|
backgroundColor: 'rgba(249,115,22,0.12)',
|
|
}}
|
|
>
|
|
<Text
|
|
style={{
|
|
fontSize: 10,
|
|
color: colors.brandOrange,
|
|
fontFamily: 'Nunito_600SemiBold',
|
|
}}
|
|
>
|
|
{t('settings.devices_this_device')}
|
|
</Text>
|
|
</View>
|
|
) : null}
|
|
</View>
|
|
|
|
{device.model && device.name && !device.name.includes(device.model) ? (
|
|
<Text
|
|
style={{
|
|
fontSize: 11,
|
|
color: colors.textMuted,
|
|
fontFamily: 'Nunito_400Regular',
|
|
marginTop: 1,
|
|
}}
|
|
>
|
|
{device.model}
|
|
</Text>
|
|
) : null}
|
|
|
|
<View style={{ flexDirection: 'row', alignItems: 'center', gap: 12, marginTop: 4 }}>
|
|
<View style={{ flexDirection: 'row', alignItems: 'center', gap: 4 }}>
|
|
<Ionicons name="time-outline" size={11} color={colors.textMuted} />
|
|
<Text
|
|
style={{ fontSize: 11, color: colors.textMuted, fontFamily: 'Nunito_400Regular' }}
|
|
>
|
|
{formatLastSeen(device.lastSeenAt, t)}
|
|
</Text>
|
|
</View>
|
|
<View style={{ flexDirection: 'row', alignItems: 'center', gap: 4 }}>
|
|
<Ionicons name="link-outline" size={11} color={colors.textMuted} />
|
|
<Text
|
|
style={{ fontSize: 11, color: colors.textMuted, fontFamily: 'Nunito_400Regular' }}
|
|
>
|
|
{t('settings.devices_since')} {formatSince(device.createdAt)}
|
|
</Text>
|
|
</View>
|
|
</View>
|
|
</View>
|
|
|
|
{!device.isCurrent ? (
|
|
<Pressable
|
|
onPress={confirmRemove}
|
|
hitSlop={8}
|
|
style={({ pressed }) => ({ opacity: pressed ? 0.5 : 1 })}
|
|
>
|
|
<Ionicons name="trash-outline" size={18} color={colors.error} />
|
|
</Pressable>
|
|
) : null}
|
|
</View>
|
|
);
|
|
}
|
|
|
|
// ─── Protected Device Row ────────────────────────────────────────────────────
|
|
|
|
function ProtectedDeviceRow({
|
|
device,
|
|
onRemove,
|
|
}: {
|
|
device: ProtectedDevice;
|
|
onRemove: (id: string) => void;
|
|
}) {
|
|
const { t } = useTranslation();
|
|
const colors = useColors();
|
|
|
|
const menuActions = device.status === 'pending'
|
|
? [
|
|
{ id: 'remove', title: t('settings.devices_remove_confirm'), attributes: { destructive: true } },
|
|
]
|
|
: [
|
|
{ id: 'remove', title: t('settings.devices_remove_confirm'), attributes: { destructive: true } },
|
|
];
|
|
|
|
function handleMenuSelect(id: string) {
|
|
if (id === 'remove') {
|
|
Alert.alert(
|
|
t('devices.remove_warning_title'),
|
|
t('devices.remove_warning_body'),
|
|
[
|
|
{ text: t('common.cancel'), style: 'cancel' },
|
|
{
|
|
text: t('settings.devices_remove_confirm'),
|
|
style: 'destructive',
|
|
onPress: () => onRemove(device.id),
|
|
},
|
|
]
|
|
);
|
|
}
|
|
}
|
|
|
|
return (
|
|
<View
|
|
style={{
|
|
flexDirection: 'row',
|
|
alignItems: 'flex-start',
|
|
gap: 12,
|
|
paddingHorizontal: 14,
|
|
paddingVertical: 14,
|
|
}}
|
|
>
|
|
<View
|
|
style={{
|
|
width: 40,
|
|
height: 40,
|
|
borderRadius: 12,
|
|
backgroundColor: colors.surfaceElevated,
|
|
alignItems: 'center',
|
|
justifyContent: 'center',
|
|
}}
|
|
>
|
|
<Ionicons name={protectedDeviceIcon(device.platform)} size={20} color={colors.text} />
|
|
</View>
|
|
|
|
<View style={{ flex: 1, minWidth: 0 }}>
|
|
<View style={{ flexDirection: 'row', alignItems: 'center', gap: 6, flexWrap: 'wrap' }}>
|
|
<Text
|
|
numberOfLines={1}
|
|
style={{
|
|
fontSize: 15,
|
|
color: colors.text,
|
|
fontFamily: 'Nunito_600SemiBold',
|
|
flexShrink: 1,
|
|
}}
|
|
>
|
|
{device.label}
|
|
</Text>
|
|
<StatusBadge status={device.status} />
|
|
</View>
|
|
|
|
<View style={{ flexDirection: 'row', alignItems: 'center', gap: 4, marginTop: 4 }}>
|
|
<Ionicons name="link-outline" size={11} color={colors.textMuted} />
|
|
<Text style={{ fontSize: 11, color: colors.textMuted, fontFamily: 'Nunito_400Regular' }}>
|
|
{t('settings.devices_since')} {formatSince(device.createdAt)}
|
|
</Text>
|
|
</View>
|
|
</View>
|
|
|
|
<MenuView
|
|
title={device.label}
|
|
actions={menuActions}
|
|
onPressAction={({ nativeEvent: { event } }) => handleMenuSelect(event)}
|
|
shouldOpenOnLongPress={false}
|
|
>
|
|
<Pressable
|
|
hitSlop={8}
|
|
style={({ pressed }) => ({ opacity: pressed ? 0.5 : 1 })}
|
|
>
|
|
<Ionicons name="ellipsis-horizontal" size={18} color={colors.textMuted} />
|
|
</Pressable>
|
|
</MenuView>
|
|
</View>
|
|
);
|
|
}
|
|
|
|
// ─── Section Card wrapper ─────────────────────────────────────────────────────
|
|
|
|
function SectionCard({ children }: { children: React.ReactNode }) {
|
|
const colors = useColors();
|
|
return (
|
|
<View
|
|
style={{
|
|
backgroundColor: colors.surface,
|
|
borderRadius: 14,
|
|
overflow: 'hidden',
|
|
shadowColor: '#000',
|
|
shadowOffset: { width: 0, height: 1 },
|
|
shadowOpacity: 0.04,
|
|
shadowRadius: 3,
|
|
elevation: 1,
|
|
}}
|
|
>
|
|
{children}
|
|
</View>
|
|
);
|
|
}
|
|
|
|
function SectionLabel({ title }: { title: string }) {
|
|
const colors = useColors();
|
|
return (
|
|
<Text
|
|
style={{
|
|
fontSize: 11,
|
|
color: colors.textMuted,
|
|
fontFamily: 'Nunito_600SemiBold',
|
|
textTransform: 'uppercase',
|
|
letterSpacing: 1,
|
|
marginBottom: 8,
|
|
marginLeft: 4,
|
|
}}
|
|
>
|
|
{title}
|
|
</Text>
|
|
);
|
|
}
|
|
|
|
// ─── Screen ──────────────────────────────────────────────────────────────────
|
|
|
|
export default function DevicesScreen() {
|
|
const insets = useSafeAreaInsets();
|
|
const { t } = useTranslation();
|
|
const colors = useColors();
|
|
const { plan } = useUserPlan();
|
|
const isLegend = plan === 'legend';
|
|
|
|
const {
|
|
devices: mobileDevices,
|
|
loading: mobileLoading,
|
|
loadDevices,
|
|
removeDevice: removeMobileDevice,
|
|
} = useDevicesStore();
|
|
|
|
const {
|
|
devices: protectedDevices,
|
|
loading: protectedLoading,
|
|
load: loadProtected,
|
|
remove: removeProtected,
|
|
} = useProtectedDevicesStore();
|
|
|
|
const [addMacVisible, setAddMacVisible] = useState(false);
|
|
|
|
useEffect(() => {
|
|
loadDevices();
|
|
loadProtected();
|
|
}, []);
|
|
|
|
const currentDevice = mobileDevices.find((d) => d.isCurrent);
|
|
const subtitle = isLegend ? t('devices.subtitle_legend') : t('devices.subtitle_free');
|
|
|
|
async function handleRemoveProtected(id: string) {
|
|
try {
|
|
const { manualRemovalRequired } = await removeProtected(id);
|
|
if (manualRemovalRequired) {
|
|
Alert.alert(t('devices.remove_warning_title'), t('devices.remove_warning_body'));
|
|
}
|
|
} catch {
|
|
Alert.alert(t('common.error'), t('common.unknown_error'));
|
|
}
|
|
}
|
|
|
|
return (
|
|
<View style={{ flex: 1, backgroundColor: colors.bg }}>
|
|
<AppHeader showBack title={t('settings.devices')} />
|
|
|
|
<ScrollView
|
|
style={{ flex: 1 }}
|
|
contentContainerStyle={{
|
|
paddingHorizontal: 16,
|
|
paddingTop: 16,
|
|
paddingBottom: insets.bottom + 40,
|
|
gap: 24,
|
|
}}
|
|
showsVerticalScrollIndicator={false}
|
|
>
|
|
{/* Subtitle */}
|
|
<Text
|
|
style={{
|
|
fontSize: 13,
|
|
color: colors.textMuted,
|
|
fontFamily: 'Nunito_400Regular',
|
|
lineHeight: 18,
|
|
marginBottom: -12,
|
|
}}
|
|
>
|
|
{subtitle}
|
|
</Text>
|
|
|
|
{/* Section 1: Dieses Gerät */}
|
|
<View>
|
|
<SectionLabel title={t('devices.section_title_this')} />
|
|
<SectionCard>
|
|
{mobileLoading && !currentDevice ? (
|
|
<View style={{ paddingVertical: 32, alignItems: 'center' }}>
|
|
<ActivityIndicator color={colors.brandOrange} />
|
|
</View>
|
|
) : currentDevice ? (
|
|
<MobileDeviceRow device={currentDevice} onRemove={removeMobileDevice} />
|
|
) : (
|
|
<View style={{ paddingVertical: 20, alignItems: 'center' }}>
|
|
<Text
|
|
style={{
|
|
fontSize: 13,
|
|
color: colors.textMuted,
|
|
fontFamily: 'Nunito_400Regular',
|
|
}}
|
|
>
|
|
{t('settings.devices_empty')}
|
|
</Text>
|
|
</View>
|
|
)}
|
|
</SectionCard>
|
|
</View>
|
|
|
|
{/* Section 2: Weitere geschützte Geräte */}
|
|
<View>
|
|
<SectionLabel title={t('devices.section_title_others')} />
|
|
<SectionCard>
|
|
{protectedLoading ? (
|
|
<View style={{ paddingVertical: 32, alignItems: 'center' }}>
|
|
<ActivityIndicator color={colors.brandOrange} />
|
|
</View>
|
|
) : protectedDevices.length === 0 ? (
|
|
<View style={{ paddingVertical: 24, paddingHorizontal: 16, alignItems: 'center', gap: 8 }}>
|
|
<Ionicons name="laptop-outline" size={32} color={colors.border} />
|
|
<Text
|
|
style={{
|
|
fontSize: 13,
|
|
color: colors.textMuted,
|
|
fontFamily: 'Nunito_400Regular',
|
|
textAlign: 'center',
|
|
lineHeight: 18,
|
|
}}
|
|
>
|
|
{isLegend
|
|
? t('devices.add_mac')
|
|
: t('devices.subtitle_free')}
|
|
</Text>
|
|
</View>
|
|
) : (
|
|
protectedDevices.map((device, i) => (
|
|
<View
|
|
key={device.id}
|
|
style={{
|
|
borderBottomWidth: i < protectedDevices.length - 1 ? 1 : 0,
|
|
borderBottomColor: colors.border,
|
|
}}
|
|
>
|
|
<ProtectedDeviceRow device={device} onRemove={handleRemoveProtected} />
|
|
</View>
|
|
))
|
|
)}
|
|
</SectionCard>
|
|
</View>
|
|
|
|
{/* CTA or Upgrade */}
|
|
{isLegend ? (
|
|
<View style={{ gap: 10 }}>
|
|
<Pressable
|
|
onPress={() => setAddMacVisible(true)}
|
|
style={({ pressed }) => ({
|
|
backgroundColor: colors.brandOrange,
|
|
borderRadius: 14,
|
|
paddingVertical: 16,
|
|
alignItems: 'center',
|
|
flexDirection: 'row',
|
|
justifyContent: 'center',
|
|
gap: 8,
|
|
opacity: pressed ? 0.7 : 1,
|
|
})}
|
|
>
|
|
<Ionicons name="add-circle-outline" size={20} color="#fff" />
|
|
<Text style={{ fontSize: 16, color: '#fff', fontFamily: 'Nunito_700Bold' }}>
|
|
{t('devices.add_mac')}
|
|
</Text>
|
|
</Pressable>
|
|
|
|
<Pressable
|
|
disabled
|
|
style={{
|
|
borderRadius: 14,
|
|
paddingVertical: 14,
|
|
alignItems: 'center',
|
|
flexDirection: 'row',
|
|
justifyContent: 'center',
|
|
gap: 8,
|
|
opacity: 0.4,
|
|
backgroundColor: colors.surface,
|
|
borderWidth: 1,
|
|
borderColor: colors.border,
|
|
}}
|
|
>
|
|
<Ionicons name="desktop-outline" size={18} color={colors.textMuted} />
|
|
<Text
|
|
style={{ fontSize: 14, color: colors.textMuted, fontFamily: 'Nunito_600SemiBold' }}
|
|
>
|
|
{t('devices.add_windows')}
|
|
</Text>
|
|
</Pressable>
|
|
</View>
|
|
) : (
|
|
<View
|
|
style={{
|
|
backgroundColor: colors.surface,
|
|
borderRadius: 14,
|
|
padding: 16,
|
|
gap: 12,
|
|
borderWidth: 1,
|
|
borderColor: colors.border,
|
|
}}
|
|
>
|
|
<View style={{ flexDirection: 'row', alignItems: 'center', gap: 10 }}>
|
|
<Ionicons name="shield-checkmark-outline" size={22} color={colors.brandOrange} />
|
|
<Text
|
|
style={{ fontSize: 15, color: colors.text, fontFamily: 'Nunito_700Bold', flex: 1 }}
|
|
>
|
|
{t('devices.subtitle_legend')}
|
|
</Text>
|
|
</View>
|
|
<Pressable
|
|
style={({ pressed }) => ({
|
|
backgroundColor: colors.brandOrange,
|
|
borderRadius: 12,
|
|
paddingVertical: 14,
|
|
alignItems: 'center',
|
|
opacity: pressed ? 0.7 : 1,
|
|
})}
|
|
>
|
|
<Text style={{ fontSize: 15, color: '#fff', fontFamily: 'Nunito_700Bold' }}>
|
|
{t('devices.upgrade_cta')}
|
|
</Text>
|
|
</Pressable>
|
|
</View>
|
|
)}
|
|
|
|
<Text
|
|
style={{
|
|
fontSize: 11,
|
|
color: colors.textMuted,
|
|
fontFamily: 'Nunito_400Regular',
|
|
lineHeight: 16,
|
|
marginHorizontal: 4,
|
|
}}
|
|
>
|
|
{t('settings.devices_hint')}
|
|
</Text>
|
|
</ScrollView>
|
|
|
|
<AddMacSheet
|
|
visible={addMacVisible}
|
|
onClose={() => {
|
|
setAddMacVisible(false);
|
|
loadProtected();
|
|
}}
|
|
/>
|
|
</View>
|
|
);
|
|
}
|