-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Expand file tree
/
Copy pathPerpsOrderTransactionView.tsx
More file actions
206 lines (190 loc) · 6.33 KB
/
PerpsOrderTransactionView.tsx
File metadata and controls
206 lines (190 loc) · 6.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
import { useNavigation, useRoute } from '@react-navigation/native';
import React, { useLayoutEffect } from 'react';
import { ScrollView, View } from 'react-native';
import { strings } from '../../../../../../locales/i18n';
import Text, {
TextColor,
TextVariant,
} from '../../../../../component-library/components/Texts/Text';
import { useSelector } from 'react-redux';
import { PerpsTransactionSelectorsIDs } from '../../Perps.testIds';
import {
Button,
ButtonVariant,
ButtonSize,
HeaderStandard,
} from '@metamask/design-system-react-native';
import { useStyles } from '../../../../../component-library/hooks';
import { selectSelectedInternalAccountByScope } from '../../../../../selectors/multichainAccounts/accounts';
import ScreenView from '../../../../Base/ScreenView';
import PerpsTransactionDetailAssetHero from '../../components/PerpsTransactionDetailAssetHero';
import { usePerpsBlockExplorerUrl, usePerpsOrderFees } from '../../hooks';
import { PerpsOrderTransactionRouteProp } from '../../types/transactionHistory';
import {
formatPerpsFiat,
formatTransactionDate,
PRICE_RANGES_UNIVERSAL,
} from '../../utils/formatUtils';
import { styleSheet } from './PerpsOrderTransactionView.styles';
const PerpsOrderTransactionView: React.FC = () => {
const { styles } = useStyles(styleSheet, {});
const navigation = useNavigation();
const route = useRoute<PerpsOrderTransactionRouteProp>();
const selectedInternalAccount = useSelector(
selectSelectedInternalAccountByScope,
)('eip155:1');
const { getExplorerUrl } = usePerpsBlockExplorerUrl();
// Get transaction from route params
const transaction = route.params?.transaction;
// Call hooks before conditional return
const { totalFee, protocolFee, metamaskFee } = usePerpsOrderFees({
orderType: transaction?.order?.type ?? 'market',
amount: transaction?.order?.size ?? '0',
});
useLayoutEffect(() => {
navigation.setOptions({
headerShown: false,
});
}, [navigation]);
if (!transaction) {
return (
<ScreenView>
<HeaderStandard includesTopInset onBack={() => navigation.goBack()} />
<View style={styles.content}>
<Text>{strings('perps.transactions.not_found')}</Text>
</View>
</ScreenView>
);
}
const handleViewOnBlockExplorer = () => {
if (!selectedInternalAccount) {
return;
}
const explorerUrl = getExplorerUrl(selectedInternalAccount.address);
if (!explorerUrl) {
return;
}
navigation.navigate('Webview', {
screen: 'SimpleWebview',
params: {
url: explorerUrl,
},
});
};
// Main detail rows based on design
const mainDetailRows = [
{
label: strings('perps.transactions.order.date'),
value: formatTransactionDate(transaction.timestamp),
},
// Add order-specific fields when available from transaction data
{
label: strings('perps.transactions.order.size'),
value: formatPerpsFiat(transaction.order?.size ?? 0),
},
{
label: strings('perps.transactions.order.limit_price'),
value: formatPerpsFiat(transaction.order?.limitPrice ?? 0, {
ranges: PRICE_RANGES_UNIVERSAL,
}),
},
{
label: strings('perps.transactions.order.filled'),
value: transaction.order?.filled,
},
];
const isFilled = transaction.order?.text === 'Filled';
// Fee breakdown - use PRICE_RANGES_UNIVERSAL to show exact values instead of "< $0.01"
const formatFee = (fee: number) =>
formatPerpsFiat(fee, { ranges: PRICE_RANGES_UNIVERSAL });
const feeRows = [
{
label: strings('perps.transactions.order.metamask_fee'),
value: formatFee(isFilled ? metamaskFee : 0),
},
{
label: strings('perps.transactions.order.hyperliquid_fee'),
value: formatFee(isFilled ? protocolFee : 0),
},
{
label: strings('perps.transactions.order.total_fee'),
value: formatFee(isFilled ? totalFee : 0),
},
];
return (
<ScreenView>
<HeaderStandard
includesTopInset
title={transaction.title}
onBack={() => navigation.goBack()}
/>
<ScrollView
testID={PerpsTransactionSelectorsIDs.ORDER_TRANSACTION_VIEW}
style={styles.container}
>
<View style={styles.content}>
<PerpsTransactionDetailAssetHero
transaction={transaction}
styles={styles}
/>
{/* Transaction details */}
<View style={styles.detailsContainer}>
{mainDetailRows.map((detail, index) => (
<View
key={index}
style={[
styles.detailRow,
index === mainDetailRows.length - 1 && styles.detailRowLast,
]}
>
<Text
variant={TextVariant.BodySM}
color={TextColor.Alternative}
>
{detail.label}
</Text>
<Text variant={TextVariant.BodySM} color={TextColor.Default}>
{detail.value}
</Text>
</View>
))}
{/* Separator between sections */}
<View style={styles.sectionSeparator} />
{/* Fee breakdown */}
{feeRows.map((detail, index) => (
<View
key={`fee-${index}`}
style={[
styles.detailRow,
index === feeRows.length - 1 && styles.detailRowLast,
]}
>
<Text
variant={TextVariant.BodySM}
color={TextColor.Alternative}
>
{detail.label}
</Text>
<Text variant={TextVariant.BodySM} color={TextColor.Default}>
{detail.value}
</Text>
</View>
))}
</View>
{/* Block explorer button */}
<Button
testID={PerpsTransactionSelectorsIDs.BLOCK_EXPLORER_BUTTON}
variant={ButtonVariant.Secondary}
size={ButtonSize.Lg}
isFullWidth
onPress={handleViewOnBlockExplorer}
style={styles.blockExplorerButton}
>
{strings('perps.transactions.view_on_explorer')}
</Button>
</View>
</ScrollView>
</ScreenView>
);
};
export default PerpsOrderTransactionView;