style: add back wallet connect button and style add session

This commit is contained in:
Cody Bender 2024-08-10 16:09:49 -04:00
parent 44e6670aab
commit 360f3b76bc
5 changed files with 127 additions and 126 deletions

View File

@ -1,4 +1,4 @@
import React, { useCallback, useEffect, useState } from "react"; import React, { useCallback, useEffect, useMemo, useState } from "react";
import { Button, Snackbar, Surface, Text } from "react-native-paper"; import { Button, Snackbar, Surface, Text } from "react-native-paper";
import { TxBody, AuthInfo } from "cosmjs-types/cosmos/tx/v1beta1/tx"; import { TxBody, AuthInfo } from "cosmjs-types/cosmos/tx/v1beta1/tx";
@ -217,8 +217,10 @@ const App = (): React.JSX.Element => {
}; };
}); });
const showWalletConnect = useMemo(() => accounts.length > 0, [accounts]);
return ( return (
<Surface id="surfface" style={styles.appSurface}> <Surface style={styles.appSurface}>
<Stack.Navigator <Stack.Navigator
screenOptions={{ screenOptions={{
headerBackTitleVisible: true, headerBackTitleVisible: true,
@ -229,7 +231,9 @@ const App = (): React.JSX.Element => {
component={HomeScreen} component={HomeScreen}
options={{ options={{
// eslint-disable-next-line react/no-unstable-nested-components // eslint-disable-next-line react/no-unstable-nested-components
header: () => <Header title="Wallet" />, header: () => (
<Header title="Wallet" showWalletConnect={showWalletConnect} />
),
}} }}
/> />
<Stack.Screen <Stack.Screen

View File

@ -8,10 +8,24 @@ import {
} from "@mui/material"; } from "@mui/material";
import React from "react"; import React from "react";
import { useNavigation } from "@react-navigation/native"; import { useNavigation } from "@react-navigation/native";
import { Image } from "react-native";
import { NativeStackNavigationProp } from "@react-navigation/native-stack"; import { NativeStackNavigationProp } from "@react-navigation/native-stack";
import { StackParamsList } from "../types"; import { StackParamsList } from "../types";
import styles from "../styles/stylesheet";
export const Header: React.FC<{ title: string }> = ({ title }) => { const WCLogo = () => {
return (
<Image
style={styles.walletConnectLogo}
source={require("../assets/WalletConnect-Icon-Blueberry.png")}
/>
);
};
export const Header: React.FC<{
title: string;
showWalletConnect?: boolean;
}> = ({ title, showWalletConnect }) => {
const navigation = const navigation =
useNavigation<NativeStackNavigationProp<StackParamsList>>(); useNavigation<NativeStackNavigationProp<StackParamsList>>();
return ( return (
@ -22,9 +36,11 @@ export const Header: React.FC<{ title: string }> = ({ title }) => {
pl: 2, pl: 2,
alignItems: "center", alignItems: "center",
py: 1, py: 1,
justifyContent: "space-between",
}} }}
spacing={1} spacing={1}
> >
<Stack direction="row">
<Button <Button
component={Link} component={Link}
onClick={() => { onClick={() => {
@ -80,9 +96,18 @@ export const Header: React.FC<{ title: string }> = ({ title }) => {
flexItem flexItem
orientation="vertical" orientation="vertical"
color="#FBFBFB" color="#FBFBFB"
sx={{ height: "75%", alignSelf: "center" }} sx={{ height: "20px", width: "1px", alignSelf: "center" }}
/> />
<Typography fontSize="1.25rem" sx={{ paddingLeft: 1}}>{title}</Typography> <Typography fontSize="1.25rem" sx={{ paddingLeft: 1 }}>
{title}
</Typography>
</Stack>
{showWalletConnect && (
<Button onClick={() => navigation.navigate("WalletConnect")}>
{<WCLogo />}
</Button>
)}
</Stack> </Stack>
); );
}; };

View File

@ -1,20 +1,22 @@
import React, { useCallback, useState } from 'react'; import React, { useCallback, useState } from "react";
import { View } from 'react-native'; import { View } from "react-native";
import { Button, Text, TextInput } from 'react-native-paper'; import { Text, TextInput } from "react-native-paper";
import { useNavigation } from '@react-navigation/native'; import { useNavigation } from "@react-navigation/native";
import { NativeStackNavigationProp } from '@react-navigation/native-stack'; import { NativeStackNavigationProp } from "@react-navigation/native-stack";
import { Box, Button } from "@mui/material";
import { web3WalletPair } from '../utils/wallet-connect/WalletConnectUtils'; import { web3WalletPair } from "../utils/wallet-connect/WalletConnectUtils";
import styles from '../styles/stylesheet'; import styles from "../styles/stylesheet";
import { StackParamsList } from '../types'; import { StackParamsList } from "../types";
import { useWalletConnect } from '../context/WalletConnectContext'; import { useWalletConnect } from "../context/WalletConnectContext";
import { Layout } from "../components/Layout";
const AddSession = () => { const AddSession = () => {
const navigation = const navigation =
useNavigation<NativeStackNavigationProp<StackParamsList>>(); useNavigation<NativeStackNavigationProp<StackParamsList>>();
const [currentWCURI, setCurrentWCURI] = useState<string>(''); const [currentWCURI, setCurrentWCURI] = useState<string>("");
const { web3wallet } = useWalletConnect(); const { web3wallet } = useWalletConnect();
@ -24,12 +26,12 @@ const AddSession = () => {
} }
const pairing = await web3WalletPair(web3wallet, { uri: currentWCURI }); const pairing = await web3WalletPair(web3wallet, { uri: currentWCURI });
navigation.navigate('WalletConnect'); navigation.navigate("WalletConnect");
return pairing; return pairing;
}, [currentWCURI, navigation, web3wallet]); }, [currentWCURI, navigation, web3wallet]);
return ( return (
<View style={styles.appContainer}> <Layout title="Add Session">
<View style={styles.inputContainer}> <View style={styles.inputContainer}>
<Text variant="titleMedium">Enter WalletConnect URI</Text> <Text variant="titleMedium">Enter WalletConnect URI</Text>
<TextInput <TextInput
@ -41,13 +43,13 @@ const AddSession = () => {
style={styles.walletConnectUriText} style={styles.walletConnectUriText}
/> />
<View style={styles.signButton}> <Box sx={{ mt: 2 }}>
<Button mode="contained" onPress={pair}> <Button variant="contained" onClick={pair}>
Pair Session Pair Session
</Button> </Button>
</Box>
</View> </View>
</View> </Layout>
</View>
); );
}; };
export default AddSession; export default AddSession;

View File

@ -1,10 +1,8 @@
import React, { useCallback, useEffect, useState } from "react"; import React, { useCallback, useEffect, useState } from "react";
import { View, ActivityIndicator, Image } from "react-native"; import { View, ActivityIndicator } from "react-native";
import { Text } from "react-native-paper"; import { Text } from "react-native-paper";
import { Button, Divider, Portal, Snackbar } from "@mui/material"; import { Button, Divider, Portal, Snackbar } from "@mui/material";
import { NativeStackNavigationProp } from "@react-navigation/native-stack";
import { useNavigation } from "@react-navigation/native";
import { getSdkError } from "@walletconnect/utils"; import { getSdkError } from "@walletconnect/utils";
import { createWallet, resetWallet, retrieveAccounts } from "../utils/accounts"; import { createWallet, resetWallet, retrieveAccounts } from "../utils/accounts";
@ -15,47 +13,19 @@ import ConfirmDialog from "../components/ConfirmDialog";
import styles from "../styles/stylesheet"; import styles from "../styles/stylesheet";
import { useAccounts } from "../context/AccountsContext"; import { useAccounts } from "../context/AccountsContext";
import { useWalletConnect } from "../context/WalletConnectContext"; import { useWalletConnect } from "../context/WalletConnectContext";
import { NetworksDataState, StackParamsList } from "../types"; import { NetworksDataState } from "../types";
import { useNetworks } from "../context/NetworksContext"; import { useNetworks } from "../context/NetworksContext";
import ImportWalletDialog from "../components/ImportWalletDialog"; import ImportWalletDialog from "../components/ImportWalletDialog";
import { MnemonicDialog } from "../components/MnemonicDialog"; import { MnemonicDialog } from "../components/MnemonicDialog";
import { Container } from "../components/Container"; import { Container } from "../components/Container";
const WCLogo = () => {
return (
<Image
style={styles.walletConnectLogo}
source={require("../assets/WalletConnect-Icon-Blueberry.png")}
/>
);
};
const HomeScreen = () => { const HomeScreen = () => {
const { accounts, setAccounts, setCurrentIndex } = useAccounts(); const { setAccounts, setCurrentIndex } = useAccounts();
const { networksData, selectedNetwork, setSelectedNetwork, setNetworksData } = const { networksData, selectedNetwork, setSelectedNetwork, setNetworksData } =
useNetworks(); useNetworks();
const { setActiveSessions, web3wallet } = useWalletConnect(); const { setActiveSessions, web3wallet } = useWalletConnect();
const navigation =
useNavigation<NativeStackNavigationProp<StackParamsList>>();
useEffect(() => {
if (accounts.length > 0) {
navigation.setOptions({
// eslint-disable-next-line react/no-unstable-nested-components
headerRight: () => (
<Button onClick={() => navigation.navigate("WalletConnect")}>
{<WCLogo />}
</Button>
),
});
} else {
navigation.setOptions({
headerRight: undefined,
});
}
}, [navigation, accounts]);
const [isWalletCreated, setIsWalletCreated] = useState<boolean>(false); const [isWalletCreated, setIsWalletCreated] = useState<boolean>(false);
const [isWalletCreating, setIsWalletCreating] = useState<boolean>(false); const [isWalletCreating, setIsWalletCreating] = useState<boolean>(false);
const [importWalletDialog, setImportWalletDialog] = useState<boolean>(false); const [importWalletDialog, setImportWalletDialog] = useState<boolean>(false);

View File

@ -1,11 +1,12 @@
import React, { useEffect } from 'react'; import React, { useEffect } from "react";
import { Image, TouchableOpacity, View } from 'react-native'; import { Image, TouchableOpacity, View } from "react-native";
import { List, Text } from 'react-native-paper'; import { List, Text } from "react-native-paper";
import { getSdkError } from '@walletconnect/utils'; import { getSdkError } from "@walletconnect/utils";
import { useWalletConnect } from '../context/WalletConnectContext'; import { useWalletConnect } from "../context/WalletConnectContext";
import styles from '../styles/stylesheet'; import styles from "../styles/stylesheet";
import { Layout } from "../components/Layout";
export default function WalletConnect() { export default function WalletConnect() {
const { web3wallet, activeSessions, setActiveSessions } = useWalletConnect(); const { web3wallet, activeSessions, setActiveSessions } = useWalletConnect();
@ -13,7 +14,7 @@ export default function WalletConnect() {
const disconnect = async (sessionId: string) => { const disconnect = async (sessionId: string) => {
await web3wallet!.disconnectSession({ await web3wallet!.disconnectSession({
topic: sessionId, topic: sessionId,
reason: getSdkError('USER_DISCONNECTED'), reason: getSdkError("USER_DISCONNECTED"),
}); });
const sessions = web3wallet?.getActiveSessions() || {}; const sessions = web3wallet?.getActiveSessions() || {};
setActiveSessions(sessions); setActiveSessions(sessions);
@ -26,12 +27,10 @@ export default function WalletConnect() {
}, [web3wallet, setActiveSessions]); }, [web3wallet, setActiveSessions]);
return ( return (
<View> <Layout title="Active Sessions">
{Object.keys(activeSessions).length > 0 ? ( {Object.keys(activeSessions).length > 0 ? (
<> <>
<View style={styles.sessionsContainer}> <View style={styles.sessionsContainer} />
<Text variant="titleMedium">Active Sessions</Text>
</View>
<List.Section> <List.Section>
{Object.entries(activeSessions).map(([sessionId, session]) => ( {Object.entries(activeSessions).map(([sessionId, session]) => (
<List.Item <List.Item
@ -44,7 +43,7 @@ export default function WalletConnect() {
// eslint-disable-next-line react/no-unstable-nested-components // eslint-disable-next-line react/no-unstable-nested-components
left={() => ( left={() => (
<> <>
{session.peer.metadata.icons[0].endsWith('.svg') ? ( {session.peer.metadata.icons[0].endsWith(".svg") ? (
<View style={styles.dappLogo}> <View style={styles.dappLogo}>
<Text>SvgURI peerMetaDataIcon</Text> <Text>SvgURI peerMetaDataIcon</Text>
</View> </View>
@ -60,7 +59,8 @@ export default function WalletConnect() {
right={() => ( right={() => (
<TouchableOpacity <TouchableOpacity
onPress={() => disconnect(sessionId)} onPress={() => disconnect(sessionId)}
style={styles.disconnectSession}> style={styles.disconnectSession}
>
<List.Icon icon="close" /> <List.Icon icon="close" />
</TouchableOpacity> </TouchableOpacity>
)} )}
@ -73,6 +73,6 @@ export default function WalletConnect() {
<Text>You have no active sessions</Text> <Text>You have no active sessions</Text>
</View> </View>
)} )}
</View> </Layout>
); );
} }