-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Expand file tree
/
Copy pathapprovals.ts
More file actions
136 lines (113 loc) · 3.93 KB
/
approvals.ts
File metadata and controls
136 lines (113 loc) · 3.93 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
import {
ApprovalControllerState,
ApprovalRequest,
} from '@metamask/approval-controller';
import { ApprovalType } from '@metamask/controller-utils';
import { createSelector } from 'reselect';
import { Json } from '@metamask/utils';
import { createDeepEqualSelector } from '../../shared/lib/selectors/selector-creators';
import { EMPTY_OBJECT } from './shared';
export type ApprovalsMetaMaskState = {
metamask: {
pendingApprovals: ApprovalControllerState['pendingApprovals'];
approvalFlows: ApprovalControllerState['approvalFlows'];
};
};
export function hasPendingApprovals(
state: ApprovalsMetaMaskState,
approvalTypes: ApprovalType[],
predicate?: (
approval: ApprovalControllerState['pendingApprovals'][string],
) => boolean,
) {
const pendingApprovalRequests = Object.values(
state.metamask.pendingApprovals,
).filter(({ type }) => approvalTypes.includes(type as ApprovalType));
if (predicate) {
return pendingApprovalRequests.some(predicate);
}
return pendingApprovalRequests.length > 0;
}
export const getApprovalRequestsByType = (
state: ApprovalsMetaMaskState,
approvalType: ApprovalType,
predicate?: (
approval: ApprovalControllerState['pendingApprovals'][string],
) => boolean,
) => {
const pendingApprovalRequests = Object.values(
state.metamask.pendingApprovals,
).filter(({ type }) => type === approvalType);
if (predicate) {
return pendingApprovalRequests.filter(predicate);
}
return pendingApprovalRequests;
};
export function getApprovalFlows(state: ApprovalsMetaMaskState) {
return state.metamask.approvalFlows;
}
export function selectHasApprovalFlows(state: ApprovalsMetaMaskState) {
return (state.metamask.approvalFlows?.length ?? 0) > 0;
}
const getPendingApprovalsObject = (state: ApprovalsMetaMaskState) =>
state.metamask.pendingApprovals ?? EMPTY_OBJECT;
export const getPendingApprovals = createSelector(
getPendingApprovalsObject,
(approvals) => Object.values(approvals),
);
export const pendingApprovalsSortedSelector = createSelector(
getPendingApprovals,
(approvals) => [...approvals].sort((a1, a2) => a1.time - a2.time),
);
/**
* Returns pending approvals sorted by time for use in confirmation navigation.
* Excludes duplicate watch asset approvals as they are combined into a single confirmation.
*/
export const selectPendingApprovalsForNavigation = createDeepEqualSelector(
pendingApprovalsSortedSelector,
(sortedPendingApprovals) =>
sortedPendingApprovals.filter((approval, index) => {
if (
isWatchNftApproval(approval) &&
sortedPendingApprovals.findIndex(isWatchNftApproval) !== index
) {
return false;
}
if (
isWatchTokenApproval(approval) &&
sortedPendingApprovals.findIndex(isWatchTokenApproval) !== index
) {
return false;
}
return true;
}),
);
const internalSelectPendingApproval = createSelector(
getPendingApprovals,
(_state: ApprovalsMetaMaskState, id: string) => id,
(approvals, id) => approvals.find(({ id: approvalId }) => approvalId === id),
);
export const selectPendingApproval = createDeepEqualSelector(
internalSelectPendingApproval,
(approval) => approval,
);
export const getApprovalsByOrigin = (
state: ApprovalsMetaMaskState,
origin: string | undefined,
) => {
const pendingApprovals = getPendingApprovals(state);
return pendingApprovals?.filter(
(confirmation: ApprovalRequest<Record<string, Json>>) =>
confirmation.origin === origin,
);
};
function isWatchTokenApproval(approval: ApprovalRequest<Record<string, Json>>) {
const tokenId = (approval.requestData?.asset as Record<string, string>)
?.tokenId;
return approval.type === ApprovalType.WatchAsset && !tokenId;
}
function isWatchNftApproval(approval: ApprovalRequest<Record<string, Json>>) {
const tokenId = (approval.requestData?.asset as Record<string, string>)
?.tokenId;
return approval.type === ApprovalType.WatchAsset && Boolean(tokenId);
}