forked from Junirezz/YieldVault-RWA
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuseTransactionConfirmation.tsx
More file actions
95 lines (84 loc) · 2.53 KB
/
Copy pathuseTransactionConfirmation.tsx
File metadata and controls
95 lines (84 loc) · 2.53 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
import { useState, useCallback, useRef } from 'react';
import type { TransactionSummary } from '../types/transaction';
import { TransactionConfirmationModal } from '../components/TransactionConfirmationModal';
import React from 'react';
interface ConfirmationState {
isOpen: boolean;
summary: TransactionSummary | null;
isLoading: boolean;
resolve: ((value: boolean) => void) | null;
}
interface UseTransactionConfirmationReturn {
/**
* Shows the modal and returns a Promise that resolves to true if confirmed
* or false if cancelled.
*
* The Promise is resolved when the user clicks Confirm or Cancel,
* or when pressing Escape.
*/
requestConfirmation(summary: TransactionSummary): Promise<boolean>;
/**
* React element to render the modal in the component tree.
* Must be placed at an appropriate level (not inside form or overflow:hidden).
*/
modal: React.ReactNode;
/**
* Whether the modal is currently open.
*/
isOpen: boolean;
}
export function useTransactionConfirmation(): UseTransactionConfirmationReturn {
const [state, setState] = useState<ConfirmationState>({
isOpen: false,
summary: null,
isLoading: false,
resolve: null,
});
const resolveRef = useRef<(value: boolean) => void | null>(null);
const handleConfirm = useCallback(() => {
setState((prev) => ({ ...prev, isLoading: true }));
// Calling resolve in the next tick allows setState to complete
if (resolveRef.current) {
setTimeout(() => {
resolveRef.current?.(true);
setState({ isOpen: false, summary: null, isLoading: false, resolve: null });
resolveRef.current = null;
}, 0);
}
}, []);
const handleCancel = useCallback(() => {
if (resolveRef.current) {
resolveRef.current(false);
setState({ isOpen: false, summary: null, isLoading: false, resolve: null });
resolveRef.current = null;
}
}, []);
const requestConfirmation = useCallback(
(summary: TransactionSummary): Promise<boolean> => {
return new Promise((resolve) => {
resolveRef.current = resolve;
setState({
isOpen: true,
summary,
isLoading: false,
resolve,
});
});
},
[]
);
const modal = state.summary ? (
<TransactionConfirmationModal
isOpen={state.isOpen}
summary={state.summary}
onConfirm={handleConfirm}
onCancel={handleCancel}
isLoading={state.isLoading}
/>
) : undefined;
return {
requestConfirmation,
modal,
isOpen: state.isOpen,
};
}