- lib/api.ts: sends x-device-name + x-device-model + x-device-os headers
(cached per session, URL-encoded). Backend persists into user_devices for
visual differentiation in DeviceLimitSheet.
- DeviceLimitReachedSheet: renders name (primary) + model · OS-version
(secondary), "Dieses Gerät"-Pill on isCurrent. Stale phantoms become
distinguishable.
- Profile i18n sweep: 8 keys × 3 languages = 24 fixes — all {{var}} placeholders
switched to %{var} matching i18next config (Vue-i18n leftover from Nuxt-port).
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
271 lines
7.6 KiB
TypeScript
271 lines
7.6 KiB
TypeScript
import { ActivityIndicator, Platform, TouchableOpacity, Text, View } from 'react-native';
|
|
import { useEffect, useRef, useState } from 'react';
|
|
import { TrueSheet, type SheetDetent } from '@lodev09/react-native-true-sheet';
|
|
import { Ionicons } from '@expo/vector-icons';
|
|
import { useTranslation } from 'react-i18next';
|
|
import { useColors } from '../lib/theme';
|
|
import { apiFetch } from '../lib/api';
|
|
import { useDeviceLimitStore, type DeviceLimitDevice } from '../stores/deviceLimit';
|
|
|
|
function platformIcon(
|
|
platform: string
|
|
): React.ComponentProps<typeof Ionicons>['name'] {
|
|
if (platform === 'ios') return 'logo-apple';
|
|
if (platform === 'android') return 'logo-android';
|
|
return 'phone-portrait-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 DeviceLimitRow({
|
|
device,
|
|
removing,
|
|
onRemove,
|
|
}: {
|
|
device: DeviceLimitDevice;
|
|
removing: boolean;
|
|
onRemove: (id: string) => void;
|
|
}) {
|
|
const { t } = useTranslation();
|
|
const colors = useColors();
|
|
|
|
const primaryName = device.name ?? device.model ?? device.platform;
|
|
const secondaryParts: string[] = [];
|
|
if (device.model) secondaryParts.push(device.model);
|
|
if (device.osVersion) {
|
|
const osLabel = device.platform === 'android' ? 'Android' : 'iOS';
|
|
secondaryParts.push(`${osLabel} ${device.osVersion}`);
|
|
}
|
|
const secondaryLine = secondaryParts.join(' · ');
|
|
const showSecondary = secondaryLine.length > 0 && secondaryLine !== primaryName;
|
|
|
|
return (
|
|
<View
|
|
style={{
|
|
flexDirection: 'row',
|
|
alignItems: 'flex-start',
|
|
gap: 12,
|
|
paddingHorizontal: 14,
|
|
paddingVertical: 14,
|
|
}}
|
|
>
|
|
<View
|
|
style={{
|
|
width: 40,
|
|
height: 40,
|
|
borderRadius: 12,
|
|
backgroundColor: 'rgba(0,0,0,0.04)',
|
|
alignItems: 'center',
|
|
justifyContent: 'center',
|
|
}}
|
|
>
|
|
<Ionicons name={platformIcon(device.platform)} size={20} color={colors.text} />
|
|
</View>
|
|
|
|
<View style={{ flex: 1, minWidth: 0 }}>
|
|
<View style={{ flexDirection: 'row', alignItems: 'center', gap: 8 }}>
|
|
<Text
|
|
numberOfLines={1}
|
|
style={{
|
|
fontSize: 15,
|
|
color: colors.text,
|
|
fontFamily: 'Nunito_600SemiBold',
|
|
flexShrink: 1,
|
|
}}
|
|
>
|
|
{primaryName}
|
|
</Text>
|
|
{device.isCurrent ? (
|
|
<View
|
|
style={{
|
|
backgroundColor: 'rgba(59,130,246,0.12)',
|
|
borderRadius: 999,
|
|
paddingHorizontal: 8,
|
|
paddingVertical: 2,
|
|
}}
|
|
>
|
|
<Text
|
|
style={{
|
|
fontSize: 10,
|
|
color: '#3b82f6',
|
|
fontFamily: 'Nunito_700Bold',
|
|
}}
|
|
>
|
|
{t('device_limit.this_device')}
|
|
</Text>
|
|
</View>
|
|
) : null}
|
|
</View>
|
|
{showSecondary ? (
|
|
<Text
|
|
style={{
|
|
fontSize: 11,
|
|
color: colors.textMuted,
|
|
fontFamily: 'Nunito_400Regular',
|
|
marginTop: 1,
|
|
}}
|
|
>
|
|
{secondaryLine}
|
|
</Text>
|
|
) : null}
|
|
<View style={{ flexDirection: 'row', alignItems: 'center', gap: 4, marginTop: 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>
|
|
|
|
{removing ? (
|
|
<ActivityIndicator size="small" color={colors.error} />
|
|
) : (
|
|
<TouchableOpacity
|
|
onPress={() => onRemove(device.id)}
|
|
hitSlop={8}
|
|
activeOpacity={0.5}
|
|
>
|
|
<Ionicons name="trash-outline" size={18} color={colors.error} />
|
|
</TouchableOpacity>
|
|
)}
|
|
</View>
|
|
);
|
|
}
|
|
|
|
export function DeviceLimitReachedSheet() {
|
|
const { t } = useTranslation();
|
|
const colors = useColors();
|
|
const sheetRef = useRef<TrueSheet>(null);
|
|
const { visible, devices, max, plan, hide, removeDevice } = useDeviceLimitStore();
|
|
const [removingId, setRemovingId] = useState<string | null>(null);
|
|
|
|
useEffect(() => {
|
|
if (visible) {
|
|
sheetRef.current?.present();
|
|
}
|
|
}, [visible]);
|
|
|
|
async function handleRemove(id: string) {
|
|
setRemovingId(id);
|
|
try {
|
|
await apiFetch(`/api/devices/${id}`, {
|
|
method: 'DELETE',
|
|
skipDeviceHeader: true,
|
|
});
|
|
removeDevice(id);
|
|
|
|
const remaining = useDeviceLimitStore.getState().devices;
|
|
if (remaining.length < max) {
|
|
sheetRef.current?.dismiss();
|
|
hide();
|
|
}
|
|
} finally {
|
|
setRemovingId(null);
|
|
}
|
|
}
|
|
|
|
return (
|
|
<TrueSheet
|
|
ref={sheetRef}
|
|
detents={['auto', 1] satisfies SheetDetent[]}
|
|
cornerRadius={20}
|
|
grabber
|
|
onDidDismiss={hide}
|
|
>
|
|
<View style={{ paddingHorizontal: 20, paddingTop: 8, paddingBottom: 32 }}>
|
|
<View
|
|
style={{
|
|
width: 40,
|
|
height: 40,
|
|
borderRadius: 12,
|
|
backgroundColor: 'rgba(239,68,68,0.1)',
|
|
alignItems: 'center',
|
|
justifyContent: 'center',
|
|
marginBottom: 12,
|
|
}}
|
|
>
|
|
<Ionicons name="phone-portrait-outline" size={20} color={colors.error} />
|
|
</View>
|
|
|
|
<Text
|
|
style={{
|
|
fontSize: 22,
|
|
color: colors.text,
|
|
fontFamily: 'Nunito_700Bold',
|
|
marginBottom: 6,
|
|
}}
|
|
>
|
|
{t('device_limit.title')}
|
|
</Text>
|
|
<Text
|
|
style={{
|
|
fontSize: 14,
|
|
color: colors.textMuted,
|
|
fontFamily: 'Nunito_400Regular',
|
|
marginBottom: 20,
|
|
lineHeight: 20,
|
|
}}
|
|
>
|
|
{t('device_limit.subtitle', { count: devices.length, max, plan: plan.toUpperCase() })}
|
|
</Text>
|
|
|
|
<View
|
|
style={{
|
|
backgroundColor: colors.bg,
|
|
borderRadius: 14,
|
|
overflow: 'hidden',
|
|
borderWidth: 1,
|
|
borderColor: 'rgba(239,68,68,0.12)',
|
|
}}
|
|
>
|
|
{devices.map((device, i) => (
|
|
<View
|
|
key={device.id}
|
|
style={{
|
|
borderBottomWidth: i < devices.length - 1 ? 1 : 0,
|
|
borderBottomColor: 'rgba(0,0,0,0.04)',
|
|
}}
|
|
>
|
|
<DeviceLimitRow
|
|
device={device}
|
|
removing={removingId === device.id}
|
|
onRemove={handleRemove}
|
|
/>
|
|
</View>
|
|
))}
|
|
</View>
|
|
|
|
<Text
|
|
style={{
|
|
fontSize: 11,
|
|
color: colors.textMuted,
|
|
fontFamily: 'Nunito_400Regular',
|
|
marginTop: 12,
|
|
lineHeight: 16,
|
|
}}
|
|
>
|
|
{t('device_limit.hint')}
|
|
</Text>
|
|
</View>
|
|
</TrueSheet>
|
|
);
|
|
}
|