Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Wallet Groups #6314

Open
wants to merge 10 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added src/assets/CreateNewWalletGroup.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 2 additions & 1 deletion src/components/sheet/SlackSheet.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ const Container = styled(Centered).attrs({
? deviceHeight - contentHeight
: 0,
}),
...(IS_ANDROID ? { borderTopLeftRadius: 30, borderTopRightRadius: 30 } : {}),
borderTopLeftRadius: 30,
borderTopRightRadius: 30,
backgroundColor: backgroundColor,
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can I do this? is a square on ios if not, but only when the height is not 100% idk why

bottom: 0,
left: 0,
Expand Down
8 changes: 8 additions & 0 deletions src/languages/en_US.json
Original file line number Diff line number Diff line change
Expand Up @@ -2650,6 +2650,14 @@
"my_account_address": "My account address:",
"network_title": "Network",
"new": {
"choose_wallet_group": {
"title": "Choose Wallet Group",
"description": "Choose the wallet group you’d like to create a new wallet within, or create a new one."
},
"new_wallet_group": {
"title": "New Wallet Group",
"description": "Create a new wallet group"
},
"add_wallet_sheet": {
"options": {
"cloud": {
Expand Down
1 change: 1 addition & 0 deletions src/navigation/AddWalletNavigator.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import { ImportOrWatchWalletSheet, ImportOrWatchWalletSheetParams } from '@/scre
import { BackgroundProvider } from '@/design-system';
import { RouteProp, useRoute } from '@react-navigation/native';
import { SimpleSheet } from '@/components/sheet/SimpleSheet';
import { ChooseWalletGroup } from './ChooseWalletGroup';

const Swipe = createMaterialTopTabNavigator();

Expand Down
240 changes: 240 additions & 0 deletions src/navigation/ChooseWalletGroup.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,240 @@
import React from 'react';
import { Separator, Text, useBackgroundColor, useForegroundColor } from '@/design-system';
import { View, Text as NativeText } from 'react-native';
import chroma from 'chroma-js';
import { useInitializeWallet, useWallets } from '@/hooks';
import { PROFILES, useExperimentalFlag } from '@/config';
import { useDispatch } from 'react-redux';
import Routes from '@/navigation/routesNames';
import { useNavigation } from './Navigation';
import WalletBackupTypes from '@/helpers/walletBackupTypes';
import WalletTypes from '@/helpers/walletTypes';
import { backupUserDataIntoCloud } from '@/handlers/cloudBackup';
import { logger, RainbowError } from '@/logger';
import { createAccountForWallet, walletsLoadState } from '@/redux/wallets';
import { createWallet, RainbowAccount, RainbowWallet } from '@/model/wallet';
import { ButtonPressAnimation } from '@/components/animations';
import { abbreviateEnsForDisplay, formatAddressForDisplay } from '@/utils/abbreviations';
import { ImgixImage } from '@/components/images';
import { useTheme } from '@/theme';
import { removeFirstEmojiFromString, returnStringFirstEmoji } from '@/helpers/emojiHandler';
import { profileUtils } from '@/utils';
import * as i18n from '@/languages';
import showWalletErrorAlert from '@/helpers/support';
import { ScrollView } from 'react-native-gesture-handler';
import CreateNewWalletGroupIcon from '@/assets/CreateNewWalletGroup.png';
import { SlackSheet } from '@/components/sheet';

function NewWalletGroup({ numWalletGroups }: { numWalletGroups: number }) {
const blue = useForegroundColor('blue');

const { navigate } = useNavigation();
const profilesEnabled = useExperimentalFlag(PROFILES);
const dispatch = useDispatch();
const initializeWallet = useInitializeWallet();

const onNewWalletGroup = () => {
navigate(Routes.MODAL_SCREEN, {
actionType: 'Create',
numWalletGroups,
onCloseModal: async (args: { name: string; color: number }) => {
if (!args) return;
try {
const { name, color } = args;
await createWallet({ color, name });
await dispatch(walletsLoadState(profilesEnabled));
// @ts-ignore
await initializeWallet();
navigate(Routes.WALLET_SCREEN, {}, true);
} catch (error) {
logger.error(new RainbowError('[AddWalletSheet]: Error while trying to add account'), { error });
}
},
profile: { color: null, name: `` },
type: 'new_wallet_group',
});
};

return (
<ButtonPressAnimation
onPress={onNewWalletGroup}
scaleTo={0.95}
style={{
flexDirection: 'row',
alignItems: 'center',
gap: 10,
paddingHorizontal: 12,
paddingVertical: 10,
borderRadius: 30,
height: 60,
width: '100%',
backgroundColor: chroma(blue).alpha(0.05).hex(),
borderWidth: 1,
borderColor: chroma(blue).alpha(0.06).hex(),
}}
>
<ImgixImage style={{ height: 36, width: 36, borderRadius: 18 }} source={CreateNewWalletGroupIcon} />
<View style={{ gap: 10 }}>
<Text color="blue" size="17pt" weight="heavy">
{i18n.t(i18n.l.wallet.new.new_wallet_group.title)}
</Text>
<Text color="labelQuaternary" size="13pt" weight="bold">
{i18n.t(i18n.l.wallet.new.new_wallet_group.description)}
</Text>
</View>
</ButtonPressAnimation>
);
}

function AccountAvatar({ account, size }: { account: RainbowAccount; size: number }) {
const { colors } = useTheme();

if (account.image) {
return <ImgixImage source={{ uri: account.image }} style={{ height: size, width: size, borderRadius: size / 2 }} />;
}

const backgroundColor = colors.avatarBackgrounds[account.color];
const emoji = returnStringFirstEmoji(account.label) || profileUtils.addressHashedEmoji(account.address);

return (
<View
style={[
{ backgroundColor, height: size, width: size, borderRadius: size / 2 },
{ alignItems: 'center', justifyContent: 'center' },
]}
>
<NativeText style={{ fontSize: size / 2, textAlign: 'center' }}>{emoji}</NativeText>
</View>
);
}

function WalletGroup({ wallet }: { wallet: RainbowWallet }) {
const separatorSecondary = useForegroundColor('separatorSecondary');

const accounts = wallet.addresses;

const { navigate } = useNavigation();
const dispatch = useDispatch();
const initializeWallet = useInitializeWallet();

const onAddToGroup = () => {
navigate(Routes.MODAL_SCREEN, {
actionType: 'Create',
asset: [],
isNewProfile: true,
onCloseModal: async (args: { name: string; color: number }) => {
if (!args) return;
try {
const { name, color } = args;
if (wallet.damaged) throw new Error('Wallet is damaged');
const newWallets = await dispatch(createAccountForWallet(wallet.id, color, name));
// @ts-ignore
await initializeWallet();
// If this wallet was previously backed up to the cloud
// We need to update userData backup so it can be restored too
if (wallet.backedUp && wallet.backupType === WalletBackupTypes.cloud) {
try {
await backupUserDataIntoCloud({ wallets: newWallets });
} catch (error) {
logger.error(new RainbowError('[AddWalletSheet]: Updating wallet userdata failed after new account creation'), { error });
throw error;
}
}
navigate(Routes.WALLET_SCREEN, {}, true);
} catch (e) {
logger.error(new RainbowError('[AddWalletSheet]: Error while trying to add account'), {
error: e,
});
showWalletErrorAlert();
}
},
profile: { color: null, name: `` },
type: 'wallet_profile',
});
};

return (
<ButtonPressAnimation onPress={onAddToGroup} scaleTo={0.95} style={{ flexDirection: 'row', alignItems: 'center', gap: 10 }}>
<View
style={[
{ height: 40, width: 40, gap: 2, padding: 5 },
{ borderRadius: 10, backgroundColor: separatorSecondary },
{ flexWrap: 'wrap', flexDirection: 'row' },
]}
>
{accounts.slice(0, 4).map(account => (
<AccountAvatar key={account.address} account={account} size={14} />
))}
</View>
<View style={{ gap: 8 }}>
<Text color="label" size="15pt" weight="semibold">
{removeFirstEmojiFromString(wallet.name)}
</Text>
<View style={{ flexDirection: 'row', alignItems: 'center', gap: 5 }}>
<Text color="labelQuaternary" size="13pt" weight="bold">
{abbreviateEnsForDisplay(accounts[0].ens) || formatAddressForDisplay(accounts[0].address, 4, 4)}
</Text>
{accounts.length > 1 && (
<View
style={[
{ height: 16, paddingHorizontal: 3.5, justifyContent: 'center', marginVertical: -2 },
{ borderColor: chroma(separatorSecondary).alpha(0.04).hex(), borderWidth: 1, borderRadius: 6 },
{ backgroundColor: separatorSecondary },
]}
>
<Text color="labelQuaternary" size="11pt" weight="bold">
{`+${accounts.length - 1}`}
</Text>
</View>
)}
</View>
</View>
</ButtonPressAnimation>
);
}

export function ChooseWalletGroup() {
const { goBack } = useNavigation();
const { wallets } = useWallets();
const surfaceSecondary = useBackgroundColor('surfaceSecondary');

if (!wallets) {
showWalletErrorAlert();
return;
}

const groups = Object.values(wallets).filter(wallet => wallet.type === WalletTypes.mnemonic);

return (
<SlackSheet removeTopPadding additionalTopPadding={false} backgroundColor={surfaceSecondary} onDismiss={goBack}>
<View style={{ width: '100%', paddingHorizontal: 24, gap: 20, alignItems: 'center', paddingBottom: 64 }}>
<View style={{ paddingTop: 24, paddingBottom: 12, width: '100%' }}>
<ButtonPressAnimation scaleTo={0.9} onPress={goBack} hitSlop={64} style={{ width: 20, height: 20 }}>
<Text color="blue" size="22pt" weight="bold">
􀆉
</Text>
</ButtonPressAnimation>
</View>
<Text color="label" size="22pt" weight="heavy">
{i18n.t(i18n.l.wallet.new.choose_wallet_group.title)}
</Text>
<Text color="labelQuaternary" size="15pt" weight="semibold" align="center">
{i18n.t(i18n.l.wallet.new.choose_wallet_group.description)}
</Text>

<View style={{ width: '100%' }}>
<Separator color={'separatorTertiary'} />
</View>

<NewWalletGroup numWalletGroups={groups.length} />
{groups.length > 0 && (
<ScrollView style={{ width: '100%' }} contentContainerStyle={{ gap: 16, paddingHorizontal: 12 }}>
{groups.map(wallet => (
<WalletGroup key={wallet.id} wallet={wallet} />
))}
</ScrollView>
)}
</View>
</SlackSheet>
);
}
3 changes: 3 additions & 0 deletions src/navigation/Routes.android.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ import {
stackNavigationConfig,
learnWebViewScreenConfig,
backupSheetSizes,
panelConfig,
} from './config';
import {
addWalletNavigatorPreset,
Expand Down Expand Up @@ -93,6 +94,7 @@ import { RootStackParamList } from './types';
import WalletLoadingListener from '@/components/WalletLoadingListener';
import { Portal as CMPortal } from '@/react-native-cool-modals/Portal';
import { NetworkSelector } from '@/components/NetworkSwitcher';
import { ChooseWalletGroup } from './ChooseWalletGroup';

const Stack = createStackNavigator();
const OuterStack = createStackNavigator();
Expand Down Expand Up @@ -161,6 +163,7 @@ function BSNavigator() {
<BSStack.Screen component={MintSheet} name={Routes.MINT_SHEET} />
<BSStack.Screen component={QRScannerScreen} name={Routes.QR_SCANNER_SCREEN} />
<BSStack.Screen component={AddWalletNavigator} name={Routes.ADD_WALLET_NAVIGATOR} options={addWalletNavigatorPreset} />
<BSStack.Screen component={ChooseWalletGroup} name={Routes.CHOOSE_WALLET_GROUP} options={{ ...bottomSheetPreset }} />
<BSStack.Screen
component={PairHardwareWalletNavigator}
name={Routes.PAIR_HARDWARE_WALLET_NAVIGATOR}
Expand Down
2 changes: 2 additions & 0 deletions src/navigation/Routes.ios.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ import { ControlPanel } from '@/components/DappBrowser/control-panel/ControlPane
import { ClaimRewardsPanel } from '@/screens/points/claim-flow/ClaimRewardsPanel';
import { ClaimClaimablePanel } from '@/screens/claimables/ClaimPanel';
import { RootStackParamList } from './types';
import { ChooseWalletGroup } from './ChooseWalletGroup';
import WalletLoadingListener from '@/components/WalletLoadingListener';
import { Portal as CMPortal } from '@/react-native-cool-modals/Portal';
import { NetworkSelector } from '@/components/NetworkSwitcher';
Expand Down Expand Up @@ -237,6 +238,7 @@ function NativeStackNavigator() {
{...hardwareWalletTxNavigatorConfig}
/>
<NativeStack.Screen component={AddWalletNavigator} name={Routes.ADD_WALLET_NAVIGATOR} {...addWalletNavigatorConfig} />
<NativeStack.Screen component={ChooseWalletGroup} name={Routes.CHOOSE_WALLET_GROUP} {...panelConfig} />
<NativeStack.Screen component={Portal} name={Routes.PORTAL} {...portalSheetConfig} />
{profilesEnabled && (
<>
Expand Down
1 change: 1 addition & 0 deletions src/navigation/routesNames.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ const Routes = {
ADD_CASH_SCREEN_NAVIGATOR: 'AddCashSheetNavigator',
ADD_CASH_SHEET: 'AddCashSheet',
ADD_WALLET_NAVIGATOR: 'AddWalletNavigator',
CHOOSE_WALLET_GROUP: 'ChooseWalletGroup',
ADD_WALLET_SHEET: 'AddWalletSheet',
APP_ICON_UNLOCK_SHEET: 'AppIconUnlockSheet',
AVATAR_BUILDER: 'AvatarBuilder',
Expand Down
Loading
Loading