UNPKG

@oxyhq/services

Version:

Reusable OxyHQ module to handle authentication, user management, karma system, device-based session management and more 🚀

324 lines (321 loc) • 12.6 kB
"use strict"; import { View, Text, StyleSheet, ActivityIndicator, ScrollView, Platform } from 'react-native'; import { useCallback, useMemo } from 'react'; import { useOxy } from '../context/OxyContext'; import { packageInfo } from '../../constants/version'; import { toast } from '../../lib/sonner'; import { confirmAction } from '../utils/confirmAction'; import { fontFamilies } from '../styles/fonts'; import ProfileCard from '../components/ProfileCard'; import Section from '../components/Section'; import QuickActions from '../components/QuickActions'; import GroupedSection from '../components/GroupedSection'; import GroupedItem from '../components/GroupedItem'; import { useI18n } from '../hooks/useI18n'; import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; const AccountCenterScreen = ({ onClose, theme, navigate }) => { const { user, logout, isLoading, sessions, isAuthenticated } = useOxy(); const { t } = useI18n(); const isDarkTheme = theme === 'dark'; const textColor = isDarkTheme ? '#FFFFFF' : '#000000'; const backgroundColor = isDarkTheme ? '#121212' : '#f2f2f2'; const secondaryBackgroundColor = isDarkTheme ? '#222222' : '#FFFFFF'; const borderColor = isDarkTheme ? '#444444' : '#E0E0E0'; const primaryColor = '#0066CC'; const dangerColor = '#D32F2F'; // Memoized logout handler - prevents unnecessary re-renders const handleLogout = useCallback(async () => { try { await logout(); if (onClose) { onClose(); } } catch (error) { console.error('Logout failed:', error); toast.error(t('common.errors.signOutFailed') || 'There was a problem signing you out. Please try again.'); } }, [logout, onClose, t]); // Memoized confirm logout handler - prevents unnecessary re-renders const confirmLogout = useCallback(() => { confirmAction(t('common.confirms.signOut') || 'Are you sure you want to sign out?', handleLogout); }, [handleLogout, t]); if (!isAuthenticated) { return /*#__PURE__*/_jsx(View, { style: [styles.container, { backgroundColor }], children: /*#__PURE__*/_jsx(Text, { style: [styles.message, { color: textColor }], children: t('common.status.notSignedIn') || 'Not signed in' }) }); } if (isLoading) { return /*#__PURE__*/_jsx(View, { style: [styles.container, { backgroundColor, justifyContent: 'center' }], children: /*#__PURE__*/_jsx(ActivityIndicator, { size: "large", color: primaryColor }) }); } return /*#__PURE__*/_jsxs(View, { style: [styles.container, { backgroundColor }], children: [user && /*#__PURE__*/_jsx(ProfileCard, { user: user, theme: theme, onEditPress: () => navigate('EditProfile', { activeTab: 'profile' }), onClosePress: onClose, showCloseButton: !!onClose }), /*#__PURE__*/_jsxs(ScrollView, { style: styles.scrollView, contentContainerStyle: styles.scrollContainer, showsVerticalScrollIndicator: false, children: [/*#__PURE__*/_jsx(Section, { title: t('accountCenter.sections.quickActions') || 'Quick Actions', theme: theme, isFirst: true, children: /*#__PURE__*/_jsx(QuickActions, { actions: useMemo(() => [{ id: 'overview', icon: 'person-circle', iconColor: '#007AFF', title: t('accountCenter.quickActions.overview') || 'Overview', onPress: () => navigate('AccountOverview') }, { id: 'settings', icon: 'settings', iconColor: '#5856D6', title: t('accountCenter.quickActions.editProfile') || 'Edit Profile', onPress: () => navigate('EditProfile') }, { id: 'sessions', icon: 'shield-checkmark', iconColor: '#30D158', title: t('accountCenter.quickActions.sessions') || 'Sessions', onPress: () => navigate('SessionManagement') }, { id: 'premium', icon: 'star', iconColor: '#FFD700', title: t('accountCenter.quickActions.premium') || 'Premium', onPress: () => navigate('PremiumSubscription') }, ...(user?.isPremium ? [{ id: 'billing', icon: 'card', iconColor: '#34C759', title: t('accountCenter.quickActions.billing') || 'Billing', onPress: () => navigate('PaymentGateway') }] : []), ...(sessions && sessions.length > 1 ? [{ id: 'switch', icon: 'swap-horizontal', iconColor: '#FF9500', title: t('accountCenter.quickActions.switch') || 'Switch', onPress: () => navigate('AccountSwitcher') }] : [])], [user?.isPremium, sessions, navigate, t]), theme: theme }) }), /*#__PURE__*/_jsx(Section, { title: t('accountCenter.sections.accountManagement') || 'Account Management', theme: theme, children: /*#__PURE__*/_jsx(GroupedSection, { items: useMemo(() => [{ id: 'overview', icon: 'person-circle', iconColor: '#007AFF', title: t('accountCenter.items.accountOverview.title') || 'Account Overview', subtitle: t('accountCenter.items.accountOverview.subtitle') || 'Complete account information', onPress: () => navigate('AccountOverview') }, { id: 'settings', icon: 'settings', iconColor: '#5856D6', title: t('accountCenter.items.editProfile.title') || 'Edit Profile', subtitle: t('accountCenter.items.editProfile.subtitle') || 'Manage your profile and preferences', onPress: () => navigate('EditProfile') }, { id: 'sessions', icon: 'shield-checkmark', iconColor: '#30D158', title: t('accountCenter.items.manageSessions.title') || 'Manage Sessions', subtitle: t('accountCenter.items.manageSessions.subtitle') || 'Security and active devices', onPress: () => navigate('SessionManagement') }, { id: 'files', icon: 'folder', iconColor: '#FF9500', title: t('accountCenter.items.fileManagement.title') || 'File Management', subtitle: t('accountCenter.items.fileManagement.subtitle') || 'Upload, download, and manage your files', onPress: () => navigate('FileManagement') }, { id: 'premium', icon: 'star', iconColor: '#FFD700', title: t('accountCenter.items.premium.title') || 'Oxy+ Subscriptions', subtitle: user?.isPremium ? t('accountCenter.items.premium.manage') || 'Manage your premium plan' : t('accountCenter.items.premium.upgrade') || 'Upgrade to premium features', onPress: () => navigate('PremiumSubscription') }, ...(user?.isPremium ? [{ id: 'billing', icon: 'card', iconColor: '#34C759', title: t('accountCenter.items.billing.title') || 'Billing Management', subtitle: t('accountCenter.items.billing.subtitle') || 'Payment methods and invoices', onPress: () => navigate('PaymentGateway') }] : [])], [user?.isPremium, navigate, t]), theme: theme }) }), sessions && sessions.length > 1 && /*#__PURE__*/_jsx(Section, { title: t('accountCenter.sections.multiAccount') || 'Multi-Account', theme: theme, children: /*#__PURE__*/_jsx(GroupedSection, { items: useMemo(() => [{ id: 'switch', icon: 'people', iconColor: '#FF9500', title: t('accountCenter.items.switchAccount.title') || 'Switch Account', subtitle: t('accountCenter.items.switchAccount.subtitle', { count: sessions.length }) || `${sessions.length} accounts available`, onPress: () => navigate('AccountSwitcher') }, { id: 'add', icon: 'person-add', iconColor: '#30D158', title: t('accountCenter.items.addAccount.title') || 'Add Another Account', subtitle: t('accountCenter.items.addAccount.subtitle') || 'Sign in with a different account', onPress: () => navigate('SignIn') }], [sessions.length, navigate, t]), theme: theme }) }), (!sessions || sessions.length <= 1) && /*#__PURE__*/_jsx(Section, { title: t('accountCenter.sections.addAccount') || 'Add Account', theme: theme, children: /*#__PURE__*/_jsx(GroupedSection, { items: useMemo(() => [{ id: 'add', icon: 'person-add', iconColor: '#30D158', title: t('accountCenter.items.addAccount.title') || 'Add Another Account', subtitle: t('accountCenter.items.addAccount.subtitle') || 'Sign in with a different account', onPress: () => navigate('SignIn') }], [navigate, t]), theme: theme }) }), /*#__PURE__*/_jsx(Section, { title: t('accountCenter.sections.moreOptions') || 'More Options', theme: theme, children: /*#__PURE__*/_jsx(GroupedSection, { items: useMemo(() => [...(Platform.OS !== 'web' ? [{ id: 'notifications', icon: 'notifications', iconColor: '#FF9500', title: t('accountCenter.items.notifications.title') || 'Notifications', subtitle: t('accountCenter.items.notifications.subtitle') || 'Manage notification settings', onPress: () => toast.info(t('accountCenter.items.notifications.coming') || 'Notifications feature coming soon!') }] : []), { id: 'language', icon: 'language', iconColor: '#32D74B', title: t('language.title') || 'Language', subtitle: t('language.subtitle') || 'Choose your preferred language', onPress: () => navigate('LanguageSelector') }, { id: 'help', icon: 'help-circle', iconColor: '#007AFF', title: t('accountOverview.items.help.title') || 'Help & Support', subtitle: t('accountOverview.items.help.subtitle') || 'Get help and contact support', onPress: () => toast.info(t('accountOverview.items.help.coming') || 'Help & Support feature coming soon!') }, { id: 'appinfo', icon: 'information-circle', iconColor: '#8E8E93', title: t('accountCenter.items.appInfo.title') || 'App Information', subtitle: t('accountCenter.items.appInfo.subtitle') || 'Version and system details', onPress: () => navigate('AppInfo') }], [navigate, t]), theme: theme }) }), /*#__PURE__*/_jsx(Section, { theme: theme, children: /*#__PURE__*/_jsx(GroupedItem, { icon: "log-out", iconColor: dangerColor, title: isLoading ? t('accountCenter.signingOut') || 'Signing out...' : t('common.actions.signOut') || 'Sign Out', theme: theme, onPress: confirmLogout, isFirst: true, isLast: true, showChevron: false, disabled: isLoading, customContent: isLoading ? /*#__PURE__*/_jsx(ActivityIndicator, { color: dangerColor, size: "small", style: { marginRight: 16 } }) : null }) }), /*#__PURE__*/_jsx(View, { style: styles.versionContainer, children: /*#__PURE__*/_jsx(Text, { style: [styles.versionText, { color: isDarkTheme ? '#666666' : '#999999' }], children: t('accountCenter.version', { version: packageInfo.version }) || `Version ${packageInfo.version}` }) })] })] }); }; const styles = StyleSheet.create({ container: { flex: 1 }, scrollView: { flex: 1 }, scrollContainer: { padding: 16, paddingBottom: 20 }, versionContainer: { alignItems: 'center', marginTop: 20, marginBottom: 20 }, versionText: { fontSize: 12, fontFamily: fontFamilies.phudu }, message: { fontSize: 16, textAlign: 'center', marginTop: 24 } }); export default AccountCenterScreen; //# sourceMappingURL=AccountCenterScreen.js.map