Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
F
frontend
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
vicotor
frontend
Commits
4d814360
Commit
4d814360
authored
Oct 19, 2022
by
isstuev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add enums for query keys
parent
6eb3313d
Changes
29
Show whitespace changes
Inline
Side-by-side
Showing
29 changed files
with
80 additions
and
28 deletions
+80
-28
useFetchProfileInfo.tsx
lib/hooks/useFetchProfileInfo.tsx
+2
-1
accountQueries.ts
types/client/accountQueries.ts
+11
-0
queries.ts
types/client/queries.ts
+10
-0
ApiKeyForm.tsx
ui/apiKey/ApiKeyModal/ApiKeyForm.tsx
+2
-1
DeleteApiKeyModal.tsx
ui/apiKey/DeleteApiKeyModal.tsx
+2
-1
BlockDetails.tsx
ui/block/BlockDetails.tsx
+2
-1
BlocksContent.tsx
ui/blocks/BlocksContent.tsx
+2
-1
CustomAbiForm.tsx
ui/customAbi/CustomAbiModal/CustomAbiForm.tsx
+2
-1
DeleteCustomAbiModal.tsx
ui/customAbi/DeleteCustomAbiModal.tsx
+2
-1
ApiKeys.tsx
ui/pages/ApiKeys.tsx
+2
-1
CustomAbi.tsx
ui/pages/CustomAbi.tsx
+2
-1
Watchlist.tsx
ui/pages/Watchlist.tsx
+2
-1
AddressForm.tsx
ui/privateTags/AddressModal/AddressForm.tsx
+2
-1
DeletePrivateTagModal.tsx
ui/privateTags/DeletePrivateTagModal.tsx
+3
-2
PrivateAddressTags.tsx
ui/privateTags/PrivateAddressTags.tsx
+2
-1
PrivateTransactionTags.tsx
ui/privateTags/PrivateTransactionTags.tsx
+5
-1
TransactionForm.tsx
ui/privateTags/TransactionModal/TransactionForm.tsx
+2
-1
DeletePublicTagModal.tsx
ui/publicTags/DeletePublicTagModal.tsx
+2
-1
PublicTagsData.tsx
ui/publicTags/PublicTagsData.tsx
+2
-1
PublicTagsForm.tsx
ui/publicTags/PublicTagsForm/PublicTagsForm.tsx
+2
-1
Page.tsx
ui/shared/Page/Page.tsx
+3
-1
TxDetails.tsx
ui/tx/TxDetails.tsx
+2
-1
TxInternals.tsx
ui/tx/TxInternals.tsx
+2
-1
TxLogs.tsx
ui/tx/TxLogs.tsx
+2
-1
TxRawTrace.tsx
ui/tx/TxRawTrace.tsx
+2
-1
TxsPending.tsx
ui/txs/TxsPending.tsx
+2
-1
TxsValidated.tsx
ui/txs/TxsValidated.tsx
+2
-1
AddressForm.tsx
ui/watchlist/AddressModal/AddressForm.tsx
+2
-1
DeleteAddressModal.tsx
ui/watchlist/DeleteAddressModal.tsx
+2
-1
No files found.
lib/hooks/useFetchProfileInfo.tsx
View file @
4d814360
import
{
useQuery
}
from
'
@tanstack/react-query
'
;
import
{
useQuery
}
from
'
@tanstack/react-query
'
;
import
type
{
UserInfo
}
from
'
types/api/account
'
;
import
type
{
UserInfo
}
from
'
types/api/account
'
;
import
{
QueryKeys
}
from
'
types/client/queries
'
;
import
useFetch
from
'
lib/hooks/useFetch
'
;
import
useFetch
from
'
lib/hooks/useFetch
'
;
...
@@ -14,7 +15,7 @@ interface Error {
...
@@ -14,7 +15,7 @@ interface Error {
export
default
function
useFetchProfileInfo
()
{
export
default
function
useFetchProfileInfo
()
{
const
fetch
=
useFetch
();
const
fetch
=
useFetch
();
return
useQuery
<
unknown
,
Error
,
UserInfo
>
([
'
profile
'
],
async
()
=>
{
return
useQuery
<
unknown
,
Error
,
UserInfo
>
([
QueryKeys
.
profile
],
async
()
=>
{
return
fetch
(
'
/api/account/profile
'
);
return
fetch
(
'
/api/account/profile
'
);
},
{
},
{
refetchOnMount
:
false
,
refetchOnMount
:
false
,
...
...
types/client/accountQueries.ts
0 → 100644
View file @
4d814360
export
enum
QueryKeys
{
addressTags
=
'
address-tags
'
,
apiKeys
=
'
api-keys
'
,
block
=
'
block
'
,
blocks
=
'
blocks
'
,
customAbis
=
'
custom-abis
'
,
profile
=
'
profile
'
,
publicTags
=
'
public-tags
'
,
transactionTags
=
'
transaction-tags
'
,
watchlist
=
'
watchlist
'
,
}
types/client/queries.ts
0 → 100644
View file @
4d814360
export
enum
QueryKeys
{
csrf
=
'
csrf
'
,
profile
=
'
profile
'
,
transactionsPending
=
'
transactions_pending
'
,
transactionsValidated
=
'
transactions_validated
'
,
tx
=
'
tx
'
,
txInternals
=
'
tx-internals
'
,
txLog
=
'
tx-log
'
,
txRawTrace
=
'
tx-raw-trace
'
,
}
ui/apiKey/ApiKeyModal/ApiKeyForm.tsx
View file @
4d814360
...
@@ -12,6 +12,7 @@ import type { SubmitHandler, ControllerRenderProps } from 'react-hook-form';
...
@@ -12,6 +12,7 @@ import type { SubmitHandler, ControllerRenderProps } from 'react-hook-form';
import
{
useForm
,
Controller
}
from
'
react-hook-form
'
;
import
{
useForm
,
Controller
}
from
'
react-hook-form
'
;
import
type
{
ApiKey
,
ApiKeys
,
ApiKeyErrors
}
from
'
types/api/account
'
;
import
type
{
ApiKey
,
ApiKeys
,
ApiKeyErrors
}
from
'
types/api/account
'
;
import
{
QueryKeys
}
from
'
types/client/accountQueries
'
;
import
getErrorMessage
from
'
lib/getErrorMessage
'
;
import
getErrorMessage
from
'
lib/getErrorMessage
'
;
import
getPlaceholderWithError
from
'
lib/getPlaceholderWithError
'
;
import
getPlaceholderWithError
from
'
lib/getPlaceholderWithError
'
;
...
@@ -57,7 +58,7 @@ const ApiKeyForm: React.FC<Props> = ({ data, onClose, setAlertVisible }) => {
...
@@ -57,7 +58,7 @@ const ApiKeyForm: React.FC<Props> = ({ data, onClose, setAlertVisible }) => {
onSuccess
:
async
(
data
)
=>
{
onSuccess
:
async
(
data
)
=>
{
const
response
=
data
as
unknown
as
ApiKey
;
const
response
=
data
as
unknown
as
ApiKey
;
queryClient
.
setQueryData
([
'
api-keys
'
],
(
prevData
:
ApiKeys
|
undefined
)
=>
{
queryClient
.
setQueryData
([
QueryKeys
.
apiKeys
],
(
prevData
:
ApiKeys
|
undefined
)
=>
{
const
isExisting
=
prevData
&&
prevData
.
some
((
item
)
=>
item
.
api_key
===
response
.
api_key
);
const
isExisting
=
prevData
&&
prevData
.
some
((
item
)
=>
item
.
api_key
===
response
.
api_key
);
if
(
isExisting
)
{
if
(
isExisting
)
{
...
...
ui/apiKey/DeleteApiKeyModal.tsx
View file @
4d814360
...
@@ -3,6 +3,7 @@ import { useQueryClient } from '@tanstack/react-query';
...
@@ -3,6 +3,7 @@ import { useQueryClient } from '@tanstack/react-query';
import
React
,
{
useCallback
}
from
'
react
'
;
import
React
,
{
useCallback
}
from
'
react
'
;
import
type
{
ApiKey
,
ApiKeys
}
from
'
types/api/account
'
;
import
type
{
ApiKey
,
ApiKeys
}
from
'
types/api/account
'
;
import
{
QueryKeys
}
from
'
types/client/accountQueries
'
;
import
useFetch
from
'
lib/hooks/useFetch
'
;
import
useFetch
from
'
lib/hooks/useFetch
'
;
import
DeleteModal
from
'
ui/shared/DeleteModal
'
;
import
DeleteModal
from
'
ui/shared/DeleteModal
'
;
...
@@ -22,7 +23,7 @@ const DeleteAddressModal: React.FC<Props> = ({ isOpen, onClose, data }) => {
...
@@ -22,7 +23,7 @@ const DeleteAddressModal: React.FC<Props> = ({ isOpen, onClose, data }) => {
},
[
data
.
api_key
,
fetch
]);
},
[
data
.
api_key
,
fetch
]);
const
onSuccess
=
useCallback
(
async
()
=>
{
const
onSuccess
=
useCallback
(
async
()
=>
{
queryClient
.
setQueryData
([
'
api-keys
'
],
(
prevData
:
ApiKeys
|
undefined
)
=>
{
queryClient
.
setQueryData
([
QueryKeys
.
apiKeys
],
(
prevData
:
ApiKeys
|
undefined
)
=>
{
return
prevData
?.
filter
((
item
)
=>
item
.
api_key
!==
data
.
api_key
);
return
prevData
?.
filter
((
item
)
=>
item
.
api_key
!==
data
.
api_key
);
});
});
},
[
data
,
queryClient
]);
},
[
data
,
queryClient
]);
...
...
ui/block/BlockDetails.tsx
View file @
4d814360
...
@@ -6,6 +6,7 @@ import React from 'react';
...
@@ -6,6 +6,7 @@ import React from 'react';
import
{
scroller
,
Element
}
from
'
react-scroll
'
;
import
{
scroller
,
Element
}
from
'
react-scroll
'
;
import
type
{
Block
}
from
'
types/api/block
'
;
import
type
{
Block
}
from
'
types/api/block
'
;
import
{
QueryKeys
}
from
'
types/client/accountQueries
'
;
import
appConfig
from
'
configs/app/config
'
;
import
appConfig
from
'
configs/app/config
'
;
import
clockIcon
from
'
icons/clock.svg
'
;
import
clockIcon
from
'
icons/clock.svg
'
;
...
@@ -34,7 +35,7 @@ const BlockDetails = () => {
...
@@ -34,7 +35,7 @@ const BlockDetails = () => {
const
fetch
=
useFetch
();
const
fetch
=
useFetch
();
const
{
data
,
isLoading
,
isError
,
error
}
=
useQuery
<
unknown
,
ErrorType
<
{
status
:
number
}
>
,
Block
>
(
const
{
data
,
isLoading
,
isError
,
error
}
=
useQuery
<
unknown
,
ErrorType
<
{
status
:
number
}
>
,
Block
>
(
[
'
block
'
,
router
.
query
.
id
],
[
QueryKeys
.
block
,
router
.
query
.
id
],
async
()
=>
await
fetch
(
`/api/blocks/
${
router
.
query
.
id
}
`
),
async
()
=>
await
fetch
(
`/api/blocks/
${
router
.
query
.
id
}
`
),
{
{
enabled
:
Boolean
(
router
.
query
.
id
),
enabled
:
Boolean
(
router
.
query
.
id
),
...
...
ui/blocks/BlocksContent.tsx
View file @
4d814360
...
@@ -3,6 +3,7 @@ import { useQuery } from '@tanstack/react-query';
...
@@ -3,6 +3,7 @@ import { useQuery } from '@tanstack/react-query';
import
React
from
'
react
'
;
import
React
from
'
react
'
;
import
type
{
BlockType
,
BlocksResponse
}
from
'
types/api/block
'
;
import
type
{
BlockType
,
BlocksResponse
}
from
'
types/api/block
'
;
import
{
QueryKeys
}
from
'
types/client/accountQueries
'
;
import
useFetch
from
'
lib/hooks/useFetch
'
;
import
useFetch
from
'
lib/hooks/useFetch
'
;
import
BlocksList
from
'
ui/blocks/BlocksList
'
;
import
BlocksList
from
'
ui/blocks/BlocksList
'
;
...
@@ -20,7 +21,7 @@ const BlocksContent = ({ type }: Props) => {
...
@@ -20,7 +21,7 @@ const BlocksContent = ({ type }: Props) => {
const
fetch
=
useFetch
();
const
fetch
=
useFetch
();
const
{
data
,
isLoading
,
isError
}
=
useQuery
<
unknown
,
unknown
,
BlocksResponse
>
(
const
{
data
,
isLoading
,
isError
}
=
useQuery
<
unknown
,
unknown
,
BlocksResponse
>
(
[
'
blocks
'
,
type
],
[
QueryKeys
.
blocks
,
type
],
async
()
=>
await
fetch
(
`/api/blocks
${
type
?
`?type=
${
type
}
`
:
''
}
`
),
async
()
=>
await
fetch
(
`/api/blocks
${
type
?
`?type=
${
type
}
`
:
''
}
`
),
);
);
...
...
ui/customAbi/CustomAbiModal/CustomAbiForm.tsx
View file @
4d814360
...
@@ -13,6 +13,7 @@ import type { ControllerRenderProps, SubmitHandler } from 'react-hook-form';
...
@@ -13,6 +13,7 @@ import type { ControllerRenderProps, SubmitHandler } from 'react-hook-form';
import
{
useForm
,
Controller
}
from
'
react-hook-form
'
;
import
{
useForm
,
Controller
}
from
'
react-hook-form
'
;
import
type
{
CustomAbi
,
CustomAbis
,
CustomAbiErrors
}
from
'
types/api/account
'
;
import
type
{
CustomAbi
,
CustomAbis
,
CustomAbiErrors
}
from
'
types/api/account
'
;
import
{
QueryKeys
}
from
'
types/client/accountQueries
'
;
import
getErrorMessage
from
'
lib/getErrorMessage
'
;
import
getErrorMessage
from
'
lib/getErrorMessage
'
;
import
getPlaceholderWithError
from
'
lib/getPlaceholderWithError
'
;
import
getPlaceholderWithError
from
'
lib/getPlaceholderWithError
'
;
...
@@ -63,7 +64,7 @@ const CustomAbiForm: React.FC<Props> = ({ data, onClose, setAlertVisible }) => {
...
@@ -63,7 +64,7 @@ const CustomAbiForm: React.FC<Props> = ({ data, onClose, setAlertVisible }) => {
const
mutation
=
useMutation
(
customAbiKey
,
{
const
mutation
=
useMutation
(
customAbiKey
,
{
onSuccess
:
(
data
)
=>
{
onSuccess
:
(
data
)
=>
{
const
response
=
data
as
unknown
as
CustomAbi
;
const
response
=
data
as
unknown
as
CustomAbi
;
queryClient
.
setQueryData
([
'
custom-abis
'
],
(
prevData
:
CustomAbis
|
undefined
)
=>
{
queryClient
.
setQueryData
([
QueryKeys
.
customAbis
],
(
prevData
:
CustomAbis
|
undefined
)
=>
{
const
isExisting
=
prevData
&&
prevData
.
some
((
item
)
=>
item
.
id
===
response
.
id
);
const
isExisting
=
prevData
&&
prevData
.
some
((
item
)
=>
item
.
id
===
response
.
id
);
if
(
isExisting
)
{
if
(
isExisting
)
{
...
...
ui/customAbi/DeleteCustomAbiModal.tsx
View file @
4d814360
...
@@ -3,6 +3,7 @@ import { useQueryClient } from '@tanstack/react-query';
...
@@ -3,6 +3,7 @@ import { useQueryClient } from '@tanstack/react-query';
import
React
,
{
useCallback
}
from
'
react
'
;
import
React
,
{
useCallback
}
from
'
react
'
;
import
type
{
CustomAbi
,
CustomAbis
}
from
'
types/api/account
'
;
import
type
{
CustomAbi
,
CustomAbis
}
from
'
types/api/account
'
;
import
{
QueryKeys
}
from
'
types/client/accountQueries
'
;
import
DeleteModal
from
'
ui/shared/DeleteModal
'
;
import
DeleteModal
from
'
ui/shared/DeleteModal
'
;
...
@@ -21,7 +22,7 @@ const DeleteCustomAbiModal: React.FC<Props> = ({ isOpen, onClose, data }) => {
...
@@ -21,7 +22,7 @@ const DeleteCustomAbiModal: React.FC<Props> = ({ isOpen, onClose, data }) => {
},
[
data
]);
},
[
data
]);
const
onSuccess
=
useCallback
(
async
()
=>
{
const
onSuccess
=
useCallback
(
async
()
=>
{
queryClient
.
setQueryData
([
'
custom-abis
'
],
(
prevData
:
CustomAbis
|
undefined
)
=>
{
queryClient
.
setQueryData
([
QueryKeys
.
customAbis
],
(
prevData
:
CustomAbis
|
undefined
)
=>
{
return
prevData
?.
filter
((
item
)
=>
item
.
id
!==
data
.
id
);
return
prevData
?.
filter
((
item
)
=>
item
.
id
!==
data
.
id
);
});
});
},
[
data
,
queryClient
]);
},
[
data
,
queryClient
]);
...
...
ui/pages/ApiKeys.tsx
View file @
4d814360
...
@@ -3,6 +3,7 @@ import { useQuery } from '@tanstack/react-query';
...
@@ -3,6 +3,7 @@ import { useQuery } from '@tanstack/react-query';
import
React
,
{
useCallback
,
useState
}
from
'
react
'
;
import
React
,
{
useCallback
,
useState
}
from
'
react
'
;
import
type
{
ApiKey
,
ApiKeys
}
from
'
types/api/account
'
;
import
type
{
ApiKey
,
ApiKeys
}
from
'
types/api/account
'
;
import
{
QueryKeys
}
from
'
types/client/accountQueries
'
;
import
useFetch
from
'
lib/hooks/useFetch
'
;
import
useFetch
from
'
lib/hooks/useFetch
'
;
import
useIsMobile
from
'
lib/hooks/useIsMobile
'
;
import
useIsMobile
from
'
lib/hooks/useIsMobile
'
;
...
@@ -30,7 +31,7 @@ const ApiKeysPage: React.FC = () => {
...
@@ -30,7 +31,7 @@ const ApiKeysPage: React.FC = () => {
const
[
apiKeyModalData
,
setApiKeyModalData
]
=
useState
<
ApiKey
>
();
const
[
apiKeyModalData
,
setApiKeyModalData
]
=
useState
<
ApiKey
>
();
const
[
deleteModalData
,
setDeleteModalData
]
=
useState
<
ApiKey
>
();
const
[
deleteModalData
,
setDeleteModalData
]
=
useState
<
ApiKey
>
();
const
{
data
,
isLoading
,
isError
}
=
useQuery
<
unknown
,
unknown
,
ApiKeys
>
([
'
api-keys
'
],
async
()
=>
await
fetch
(
'
/api/account/api-keys
'
));
const
{
data
,
isLoading
,
isError
}
=
useQuery
<
unknown
,
unknown
,
ApiKeys
>
([
QueryKeys
.
apiKeys
],
async
()
=>
await
fetch
(
'
/api/account/api-keys
'
));
const
onEditClick
=
useCallback
((
data
:
ApiKey
)
=>
{
const
onEditClick
=
useCallback
((
data
:
ApiKey
)
=>
{
setApiKeyModalData
(
data
);
setApiKeyModalData
(
data
);
...
...
ui/pages/CustomAbi.tsx
View file @
4d814360
...
@@ -3,6 +3,7 @@ import { useQuery } from '@tanstack/react-query';
...
@@ -3,6 +3,7 @@ import { useQuery } from '@tanstack/react-query';
import
React
,
{
useCallback
,
useState
}
from
'
react
'
;
import
React
,
{
useCallback
,
useState
}
from
'
react
'
;
import
type
{
CustomAbi
,
CustomAbis
}
from
'
types/api/account
'
;
import
type
{
CustomAbi
,
CustomAbis
}
from
'
types/api/account
'
;
import
{
QueryKeys
}
from
'
types/client/accountQueries
'
;
import
useFetch
from
'
lib/hooks/useFetch
'
;
import
useFetch
from
'
lib/hooks/useFetch
'
;
import
useIsMobile
from
'
lib/hooks/useIsMobile
'
;
import
useIsMobile
from
'
lib/hooks/useIsMobile
'
;
...
@@ -27,7 +28,7 @@ const CustomAbiPage: React.FC = () => {
...
@@ -27,7 +28,7 @@ const CustomAbiPage: React.FC = () => {
const
[
customAbiModalData
,
setCustomAbiModalData
]
=
useState
<
CustomAbi
>
();
const
[
customAbiModalData
,
setCustomAbiModalData
]
=
useState
<
CustomAbi
>
();
const
[
deleteModalData
,
setDeleteModalData
]
=
useState
<
CustomAbi
>
();
const
[
deleteModalData
,
setDeleteModalData
]
=
useState
<
CustomAbi
>
();
const
{
data
,
isLoading
,
isError
}
=
useQuery
<
unknown
,
unknown
,
CustomAbis
>
([
'
custom-abis
'
],
async
()
=>
await
fetch
(
'
/api/account/custom-abis
'
));
const
{
data
,
isLoading
,
isError
}
=
useQuery
<
unknown
,
unknown
,
CustomAbis
>
([
QueryKeys
.
customAbis
],
async
()
=>
await
fetch
(
'
/api/account/custom-abis
'
));
const
onEditClick
=
useCallback
((
data
:
CustomAbi
)
=>
{
const
onEditClick
=
useCallback
((
data
:
CustomAbi
)
=>
{
setCustomAbiModalData
(
data
);
setCustomAbiModalData
(
data
);
...
...
ui/pages/Watchlist.tsx
View file @
4d814360
...
@@ -3,6 +3,7 @@ import { useQuery } from '@tanstack/react-query';
...
@@ -3,6 +3,7 @@ import { useQuery } from '@tanstack/react-query';
import
React
,
{
useCallback
,
useState
}
from
'
react
'
;
import
React
,
{
useCallback
,
useState
}
from
'
react
'
;
import
type
{
TWatchlist
,
TWatchlistItem
}
from
'
types/client/account
'
;
import
type
{
TWatchlist
,
TWatchlistItem
}
from
'
types/client/account
'
;
import
{
QueryKeys
}
from
'
types/client/accountQueries
'
;
import
useFetch
from
'
lib/hooks/useFetch
'
;
import
useFetch
from
'
lib/hooks/useFetch
'
;
import
useIsMobile
from
'
lib/hooks/useIsMobile
'
;
import
useIsMobile
from
'
lib/hooks/useIsMobile
'
;
...
@@ -19,7 +20,7 @@ import WatchlistTable from 'ui/watchlist/WatchlistTable/WatchlistTable';
...
@@ -19,7 +20,7 @@ import WatchlistTable from 'ui/watchlist/WatchlistTable/WatchlistTable';
const
WatchList
:
React
.
FC
=
()
=>
{
const
WatchList
:
React
.
FC
=
()
=>
{
const
{
data
,
isLoading
,
isError
}
=
const
{
data
,
isLoading
,
isError
}
=
useQuery
<
unknown
,
unknown
,
TWatchlist
>
([
'
watchlist
'
],
async
()
=>
fetch
(
'
/api/account/watchlist/get-with-tokens
'
));
useQuery
<
unknown
,
unknown
,
TWatchlist
>
([
QueryKeys
.
watchlist
],
async
()
=>
fetch
(
'
/api/account/watchlist/get-with-tokens
'
));
const
addressModalProps
=
useDisclosure
();
const
addressModalProps
=
useDisclosure
();
const
deleteModalProps
=
useDisclosure
();
const
deleteModalProps
=
useDisclosure
();
...
...
ui/privateTags/AddressModal/AddressForm.tsx
View file @
4d814360
...
@@ -9,6 +9,7 @@ import type { SubmitHandler, ControllerRenderProps } from 'react-hook-form';
...
@@ -9,6 +9,7 @@ import type { SubmitHandler, ControllerRenderProps } from 'react-hook-form';
import
{
useForm
,
Controller
}
from
'
react-hook-form
'
;
import
{
useForm
,
Controller
}
from
'
react-hook-form
'
;
import
type
{
AddressTag
,
AddressTagErrors
}
from
'
types/api/account
'
;
import
type
{
AddressTag
,
AddressTagErrors
}
from
'
types/api/account
'
;
import
{
QueryKeys
}
from
'
types/client/accountQueries
'
;
import
getErrorMessage
from
'
lib/getErrorMessage
'
;
import
getErrorMessage
from
'
lib/getErrorMessage
'
;
import
type
{
ErrorType
}
from
'
lib/hooks/useFetch
'
;
import
type
{
ErrorType
}
from
'
lib/hooks/useFetch
'
;
...
@@ -70,7 +71,7 @@ const AddressForm: React.FC<Props> = ({ data, onClose, setAlertVisible }) => {
...
@@ -70,7 +71,7 @@ const AddressForm: React.FC<Props> = ({ data, onClose, setAlertVisible }) => {
}
}
},
},
onSuccess
:
()
=>
{
onSuccess
:
()
=>
{
queryClient
.
refetchQueries
([
'
address-tags
'
]).
then
(()
=>
{
queryClient
.
refetchQueries
([
QueryKeys
.
addressTags
]).
then
(()
=>
{
onClose
();
onClose
();
setPending
(
false
);
setPending
(
false
);
});
});
...
...
ui/privateTags/DeletePrivateTagModal.tsx
View file @
4d814360
...
@@ -3,6 +3,7 @@ import { useQueryClient } from '@tanstack/react-query';
...
@@ -3,6 +3,7 @@ import { useQueryClient } from '@tanstack/react-query';
import
React
,
{
useCallback
}
from
'
react
'
;
import
React
,
{
useCallback
}
from
'
react
'
;
import
type
{
AddressTag
,
TransactionTag
,
AddressTags
,
TransactionTags
}
from
'
types/api/account
'
;
import
type
{
AddressTag
,
TransactionTag
,
AddressTags
,
TransactionTags
}
from
'
types/api/account
'
;
import
{
QueryKeys
}
from
'
types/client/accountQueries
'
;
import
useFetch
from
'
lib/hooks/useFetch
'
;
import
useFetch
from
'
lib/hooks/useFetch
'
;
import
DeleteModal
from
'
ui/shared/DeleteModal
'
;
import
DeleteModal
from
'
ui/shared/DeleteModal
'
;
...
@@ -27,11 +28,11 @@ const DeletePrivateTagModal: React.FC<Props> = ({ isOpen, onClose, data, type })
...
@@ -27,11 +28,11 @@ const DeletePrivateTagModal: React.FC<Props> = ({ isOpen, onClose, data, type })
const
onSuccess
=
useCallback
(
async
()
=>
{
const
onSuccess
=
useCallback
(
async
()
=>
{
if
(
type
===
'
address
'
)
{
if
(
type
===
'
address
'
)
{
queryClient
.
setQueryData
([
'
address-tags
'
],
(
prevData
:
AddressTags
|
undefined
)
=>
{
queryClient
.
setQueryData
([
QueryKeys
.
addressTags
],
(
prevData
:
AddressTags
|
undefined
)
=>
{
return
prevData
?.
filter
((
item
:
AddressTag
)
=>
item
.
id
!==
id
);
return
prevData
?.
filter
((
item
:
AddressTag
)
=>
item
.
id
!==
id
);
});
});
}
else
{
}
else
{
queryClient
.
setQueryData
([
'
transaction-tags
'
],
(
prevData
:
TransactionTags
|
undefined
)
=>
{
queryClient
.
setQueryData
([
QueryKeys
.
transactionTags
],
(
prevData
:
TransactionTags
|
undefined
)
=>
{
return
prevData
?.
filter
((
item
:
TransactionTag
)
=>
item
.
id
!==
id
);
return
prevData
?.
filter
((
item
:
TransactionTag
)
=>
item
.
id
!==
id
);
});
});
}
}
...
...
ui/privateTags/PrivateAddressTags.tsx
View file @
4d814360
...
@@ -3,6 +3,7 @@ import { useQuery } from '@tanstack/react-query';
...
@@ -3,6 +3,7 @@ import { useQuery } from '@tanstack/react-query';
import
React
,
{
useCallback
,
useState
}
from
'
react
'
;
import
React
,
{
useCallback
,
useState
}
from
'
react
'
;
import
type
{
AddressTags
,
AddressTag
}
from
'
types/api/account
'
;
import
type
{
AddressTags
,
AddressTag
}
from
'
types/api/account
'
;
import
{
QueryKeys
}
from
'
types/client/accountQueries
'
;
import
useFetch
from
'
lib/hooks/useFetch
'
;
import
useFetch
from
'
lib/hooks/useFetch
'
;
import
useIsMobile
from
'
lib/hooks/useIsMobile
'
;
import
useIsMobile
from
'
lib/hooks/useIsMobile
'
;
...
@@ -18,7 +19,7 @@ import DeletePrivateTagModal from './DeletePrivateTagModal';
...
@@ -18,7 +19,7 @@ import DeletePrivateTagModal from './DeletePrivateTagModal';
const
PrivateAddressTags
=
()
=>
{
const
PrivateAddressTags
=
()
=>
{
const
{
data
:
addressTagsData
,
isLoading
,
isError
}
=
const
{
data
:
addressTagsData
,
isLoading
,
isError
}
=
useQuery
<
unknown
,
unknown
,
AddressTags
>
([
'
address-tags
'
],
async
()
=>
fetch
(
'
/api/account/private-tags/address
'
),
{
refetchOnMount
:
false
});
useQuery
<
unknown
,
unknown
,
AddressTags
>
([
QueryKeys
.
addressTags
],
async
()
=>
fetch
(
'
/api/account/private-tags/address
'
),
{
refetchOnMount
:
false
});
const
addressModalProps
=
useDisclosure
();
const
addressModalProps
=
useDisclosure
();
const
deleteModalProps
=
useDisclosure
();
const
deleteModalProps
=
useDisclosure
();
...
...
ui/privateTags/PrivateTransactionTags.tsx
View file @
4d814360
...
@@ -3,6 +3,7 @@ import { useQuery } from '@tanstack/react-query';
...
@@ -3,6 +3,7 @@ import { useQuery } from '@tanstack/react-query';
import
React
,
{
useCallback
,
useState
}
from
'
react
'
;
import
React
,
{
useCallback
,
useState
}
from
'
react
'
;
import
type
{
TransactionTags
,
TransactionTag
}
from
'
types/api/account
'
;
import
type
{
TransactionTags
,
TransactionTag
}
from
'
types/api/account
'
;
import
{
QueryKeys
}
from
'
types/client/accountQueries
'
;
import
useFetch
from
'
lib/hooks/useFetch
'
;
import
useFetch
from
'
lib/hooks/useFetch
'
;
import
useIsMobile
from
'
lib/hooks/useIsMobile
'
;
import
useIsMobile
from
'
lib/hooks/useIsMobile
'
;
...
@@ -18,7 +19,10 @@ import TransactionTagTable from './TransactionTagTable/TransactionTagTable';
...
@@ -18,7 +19,10 @@ import TransactionTagTable from './TransactionTagTable/TransactionTagTable';
const
PrivateTransactionTags
=
()
=>
{
const
PrivateTransactionTags
=
()
=>
{
const
{
data
:
transactionTagsData
,
isLoading
,
isError
}
=
const
{
data
:
transactionTagsData
,
isLoading
,
isError
}
=
useQuery
<
unknown
,
unknown
,
TransactionTags
>
([
'
transaction-tags
'
],
async
()
=>
fetch
(
'
/api/account/private-tags/transaction
'
),
{
refetchOnMount
:
false
});
useQuery
<
unknown
,
unknown
,
TransactionTags
>
(
[
QueryKeys
.
transactionTags
],
async
()
=>
fetch
(
'
/api/account/private-tags/transaction
'
),
{
refetchOnMount
:
false
},
);
const
transactionModalProps
=
useDisclosure
();
const
transactionModalProps
=
useDisclosure
();
const
deleteModalProps
=
useDisclosure
();
const
deleteModalProps
=
useDisclosure
();
...
...
ui/privateTags/TransactionModal/TransactionForm.tsx
View file @
4d814360
...
@@ -9,6 +9,7 @@ import type { SubmitHandler, ControllerRenderProps } from 'react-hook-form';
...
@@ -9,6 +9,7 @@ import type { SubmitHandler, ControllerRenderProps } from 'react-hook-form';
import
{
useForm
,
Controller
}
from
'
react-hook-form
'
;
import
{
useForm
,
Controller
}
from
'
react-hook-form
'
;
import
type
{
TransactionTag
,
TransactionTagErrors
}
from
'
types/api/account
'
;
import
type
{
TransactionTag
,
TransactionTagErrors
}
from
'
types/api/account
'
;
import
{
QueryKeys
}
from
'
types/client/accountQueries
'
;
import
getErrorMessage
from
'
lib/getErrorMessage
'
;
import
getErrorMessage
from
'
lib/getErrorMessage
'
;
import
type
{
ErrorType
}
from
'
lib/hooks/useFetch
'
;
import
type
{
ErrorType
}
from
'
lib/hooks/useFetch
'
;
...
@@ -70,7 +71,7 @@ const TransactionForm: React.FC<Props> = ({ data, onClose, setAlertVisible }) =>
...
@@ -70,7 +71,7 @@ const TransactionForm: React.FC<Props> = ({ data, onClose, setAlertVisible }) =>
}
}
},
},
onSuccess
:
()
=>
{
onSuccess
:
()
=>
{
queryClient
.
refetchQueries
([
'
transaction-tags
'
]).
then
(()
=>
{
queryClient
.
refetchQueries
([
QueryKeys
.
transactionTags
]).
then
(()
=>
{
onClose
();
onClose
();
setPending
(
false
);
setPending
(
false
);
});
});
...
...
ui/publicTags/DeletePublicTagModal.tsx
View file @
4d814360
...
@@ -4,6 +4,7 @@ import React, { useCallback, useState } from 'react';
...
@@ -4,6 +4,7 @@ import React, { useCallback, useState } from 'react';
import
type
{
ChangeEvent
}
from
'
react
'
;
import
type
{
ChangeEvent
}
from
'
react
'
;
import
type
{
PublicTags
,
PublicTag
}
from
'
types/api/account
'
;
import
type
{
PublicTags
,
PublicTag
}
from
'
types/api/account
'
;
import
{
QueryKeys
}
from
'
types/client/accountQueries
'
;
import
useFetch
from
'
lib/hooks/useFetch
'
;
import
useFetch
from
'
lib/hooks/useFetch
'
;
import
DeleteModal
from
'
ui/shared/DeleteModal
'
;
import
DeleteModal
from
'
ui/shared/DeleteModal
'
;
...
@@ -32,7 +33,7 @@ const DeletePublicTagModal: React.FC<Props> = ({ isOpen, onClose, data, onDelete
...
@@ -32,7 +33,7 @@ const DeletePublicTagModal: React.FC<Props> = ({ isOpen, onClose, data, onDelete
const
onSuccess
=
useCallback
(
async
()
=>
{
const
onSuccess
=
useCallback
(
async
()
=>
{
onDeleteSuccess
();
onDeleteSuccess
();
queryClient
.
setQueryData
([
'
public-tags
'
],
(
prevData
:
PublicTags
|
undefined
)
=>
{
queryClient
.
setQueryData
([
QueryKeys
.
publicTags
],
(
prevData
:
PublicTags
|
undefined
)
=>
{
return
prevData
?.
filter
((
item
)
=>
item
.
id
!==
data
.
id
);
return
prevData
?.
filter
((
item
)
=>
item
.
id
!==
data
.
id
);
});
});
},
[
queryClient
,
data
,
onDeleteSuccess
]);
},
[
queryClient
,
data
,
onDeleteSuccess
]);
...
...
ui/publicTags/PublicTagsData.tsx
View file @
4d814360
...
@@ -3,6 +3,7 @@ import { useQuery } from '@tanstack/react-query';
...
@@ -3,6 +3,7 @@ import { useQuery } from '@tanstack/react-query';
import
React
,
{
useCallback
,
useState
}
from
'
react
'
;
import
React
,
{
useCallback
,
useState
}
from
'
react
'
;
import
type
{
PublicTags
,
PublicTag
}
from
'
types/api/account
'
;
import
type
{
PublicTags
,
PublicTag
}
from
'
types/api/account
'
;
import
{
QueryKeys
}
from
'
types/client/accountQueries
'
;
import
useFetch
from
'
lib/hooks/useFetch
'
;
import
useFetch
from
'
lib/hooks/useFetch
'
;
import
useIsMobile
from
'
lib/hooks/useIsMobile
'
;
import
useIsMobile
from
'
lib/hooks/useIsMobile
'
;
...
@@ -26,7 +27,7 @@ const PublicTagsData = ({ changeToFormScreen, onTagDelete }: Props) => {
...
@@ -26,7 +27,7 @@ const PublicTagsData = ({ changeToFormScreen, onTagDelete }: Props) => {
const
isMobile
=
useIsMobile
();
const
isMobile
=
useIsMobile
();
const
fetch
=
useFetch
();
const
fetch
=
useFetch
();
const
{
data
,
isLoading
,
isError
}
=
useQuery
<
unknown
,
unknown
,
PublicTags
>
([
'
public-tags
'
],
async
()
=>
await
fetch
(
'
/api/account/public-tags
'
));
const
{
data
,
isLoading
,
isError
}
=
useQuery
<
unknown
,
unknown
,
PublicTags
>
([
QueryKeys
.
publicTags
],
async
()
=>
await
fetch
(
'
/api/account/public-tags
'
));
const
onDeleteModalClose
=
useCallback
(()
=>
{
const
onDeleteModalClose
=
useCallback
(()
=>
{
setDeleteModalData
(
undefined
);
setDeleteModalData
(
undefined
);
...
...
ui/publicTags/PublicTagsForm/PublicTagsForm.tsx
View file @
4d814360
...
@@ -12,6 +12,7 @@ import type { FieldError, Path, SubmitHandler } from 'react-hook-form';
...
@@ -12,6 +12,7 @@ import type { FieldError, Path, SubmitHandler } from 'react-hook-form';
import
{
useForm
,
useFieldArray
}
from
'
react-hook-form
'
;
import
{
useForm
,
useFieldArray
}
from
'
react-hook-form
'
;
import
type
{
PublicTags
,
PublicTag
,
PublicTagNew
,
PublicTagErrors
}
from
'
types/api/account
'
;
import
type
{
PublicTags
,
PublicTag
,
PublicTagNew
,
PublicTagErrors
}
from
'
types/api/account
'
;
import
{
QueryKeys
}
from
'
types/client/accountQueries
'
;
import
getErrorMessage
from
'
lib/getErrorMessage
'
;
import
getErrorMessage
from
'
lib/getErrorMessage
'
;
import
type
{
ErrorType
}
from
'
lib/hooks/useFetch
'
;
import
type
{
ErrorType
}
from
'
lib/hooks/useFetch
'
;
...
@@ -108,7 +109,7 @@ const PublicTagsForm = ({ changeToDataScreen, data }: Props) => {
...
@@ -108,7 +109,7 @@ const PublicTagsForm = ({ changeToDataScreen, data }: Props) => {
onSuccess
:
async
(
data
)
=>
{
onSuccess
:
async
(
data
)
=>
{
const
response
=
data
as
unknown
as
PublicTag
;
const
response
=
data
as
unknown
as
PublicTag
;
queryClient
.
setQueryData
([
'
public-tags
'
],
(
prevData
:
PublicTags
|
undefined
)
=>
{
queryClient
.
setQueryData
([
QueryKeys
.
publicTags
],
(
prevData
:
PublicTags
|
undefined
)
=>
{
const
isExisting
=
prevData
&&
prevData
.
some
((
item
)
=>
item
.
id
===
response
.
id
);
const
isExisting
=
prevData
&&
prevData
.
some
((
item
)
=>
item
.
id
===
response
.
id
);
if
(
isExisting
)
{
if
(
isExisting
)
{
...
...
ui/shared/Page/Page.tsx
View file @
4d814360
...
@@ -2,6 +2,8 @@ import { Flex } from '@chakra-ui/react';
...
@@ -2,6 +2,8 @@ import { Flex } from '@chakra-ui/react';
import
{
useQuery
}
from
'
@tanstack/react-query
'
;
import
{
useQuery
}
from
'
@tanstack/react-query
'
;
import
React
from
'
react
'
;
import
React
from
'
react
'
;
import
{
QueryKeys
}
from
'
types/client/queries
'
;
import
useFetch
from
'
lib/hooks/useFetch
'
;
import
useFetch
from
'
lib/hooks/useFetch
'
;
import
PageContent
from
'
ui/shared/Page/PageContent
'
;
import
PageContent
from
'
ui/shared/Page/PageContent
'
;
import
Header
from
'
ui/snippets/header/Header
'
;
import
Header
from
'
ui/snippets/header/Header
'
;
...
@@ -15,7 +17,7 @@ interface Props {
...
@@ -15,7 +17,7 @@ interface Props {
const
Page
=
({
children
,
wrapChildren
=
true
}:
Props
)
=>
{
const
Page
=
({
children
,
wrapChildren
=
true
}:
Props
)
=>
{
const
fetch
=
useFetch
();
const
fetch
=
useFetch
();
useQuery
<
unknown
,
unknown
,
unknown
>
([
'
csrf
'
],
async
()
=>
await
fetch
(
'
/api/account/csrf
'
));
useQuery
<
unknown
,
unknown
,
unknown
>
([
QueryKeys
.
csrf
],
async
()
=>
await
fetch
(
'
/api/account/csrf
'
));
const
renderedChildren
=
wrapChildren
?
(
const
renderedChildren
=
wrapChildren
?
(
<
PageContent
>
{
children
}
</
PageContent
>
<
PageContent
>
{
children
}
</
PageContent
>
...
...
ui/tx/TxDetails.tsx
View file @
4d814360
...
@@ -6,6 +6,7 @@ import React from 'react';
...
@@ -6,6 +6,7 @@ import React from 'react';
import
{
scroller
,
Element
}
from
'
react-scroll
'
;
import
{
scroller
,
Element
}
from
'
react-scroll
'
;
import
type
{
Transaction
}
from
'
types/api/transaction
'
;
import
type
{
Transaction
}
from
'
types/api/transaction
'
;
import
{
QueryKeys
}
from
'
types/client/queries
'
;
import
appConfig
from
'
configs/app/config
'
;
import
appConfig
from
'
configs/app/config
'
;
import
clockIcon
from
'
icons/clock.svg
'
;
import
clockIcon
from
'
icons/clock.svg
'
;
...
@@ -47,7 +48,7 @@ const TxDetails = () => {
...
@@ -47,7 +48,7 @@ const TxDetails = () => {
const
fetch
=
useFetch
();
const
fetch
=
useFetch
();
const
{
data
,
isLoading
,
isError
}
=
useQuery
<
unknown
,
unknown
,
Transaction
>
(
const
{
data
,
isLoading
,
isError
}
=
useQuery
<
unknown
,
unknown
,
Transaction
>
(
[
'
tx
'
,
router
.
query
.
id
],
[
QueryKeys
.
tx
,
router
.
query
.
id
],
async
()
=>
await
fetch
(
`/api/transactions/
${
router
.
query
.
id
}
`
),
async
()
=>
await
fetch
(
`/api/transactions/
${
router
.
query
.
id
}
`
),
{
{
enabled
:
Boolean
(
router
.
query
.
id
),
enabled
:
Boolean
(
router
.
query
.
id
),
...
...
ui/tx/TxInternals.tsx
View file @
4d814360
...
@@ -4,6 +4,7 @@ import { useRouter } from 'next/router';
...
@@ -4,6 +4,7 @@ import { useRouter } from 'next/router';
import
React
from
'
react
'
;
import
React
from
'
react
'
;
import
type
{
InternalTransactionsResponse
,
TxInternalsType
,
InternalTransaction
}
from
'
types/api/internalTransaction
'
;
import
type
{
InternalTransactionsResponse
,
TxInternalsType
,
InternalTransaction
}
from
'
types/api/internalTransaction
'
;
import
{
QueryKeys
}
from
'
types/client/queries
'
;
import
useFetch
from
'
lib/hooks/useFetch
'
;
import
useFetch
from
'
lib/hooks/useFetch
'
;
import
useIsMobile
from
'
lib/hooks/useIsMobile
'
;
import
useIsMobile
from
'
lib/hooks/useIsMobile
'
;
...
@@ -73,7 +74,7 @@ const TxInternals = () => {
...
@@ -73,7 +74,7 @@ const TxInternals = () => {
const
[
searchTerm
,
setSearchTerm
]
=
React
.
useState
<
string
>
(
''
);
const
[
searchTerm
,
setSearchTerm
]
=
React
.
useState
<
string
>
(
''
);
const
[
sort
,
setSort
]
=
React
.
useState
<
Sort
>
();
const
[
sort
,
setSort
]
=
React
.
useState
<
Sort
>
();
const
{
data
,
isLoading
,
isError
}
=
useQuery
<
unknown
,
unknown
,
InternalTransactionsResponse
>
(
const
{
data
,
isLoading
,
isError
}
=
useQuery
<
unknown
,
unknown
,
InternalTransactionsResponse
>
(
[
'
tx-internals
'
,
router
.
query
.
id
],
[
QueryKeys
.
txInternals
,
router
.
query
.
id
],
async
()
=>
await
fetch
(
`/api/transactions/
${
router
.
query
.
id
}
/internal-transactions`
),
async
()
=>
await
fetch
(
`/api/transactions/
${
router
.
query
.
id
}
/internal-transactions`
),
{
{
enabled
:
Boolean
(
router
.
query
.
id
),
enabled
:
Boolean
(
router
.
query
.
id
),
...
...
ui/tx/TxLogs.tsx
View file @
4d814360
...
@@ -4,6 +4,7 @@ import { useRouter } from 'next/router';
...
@@ -4,6 +4,7 @@ import { useRouter } from 'next/router';
import
React
from
'
react
'
;
import
React
from
'
react
'
;
import
type
{
LogsResponse
}
from
'
types/api/log
'
;
import
type
{
LogsResponse
}
from
'
types/api/log
'
;
import
{
QueryKeys
}
from
'
types/client/queries
'
;
import
useFetch
from
'
lib/hooks/useFetch
'
;
import
useFetch
from
'
lib/hooks/useFetch
'
;
import
DataFetchAlert
from
'
ui/shared/DataFetchAlert
'
;
import
DataFetchAlert
from
'
ui/shared/DataFetchAlert
'
;
...
@@ -15,7 +16,7 @@ const TxLogs = () => {
...
@@ -15,7 +16,7 @@ const TxLogs = () => {
const
fetch
=
useFetch
();
const
fetch
=
useFetch
();
const
{
data
,
isLoading
,
isError
}
=
useQuery
<
unknown
,
unknown
,
LogsResponse
>
(
const
{
data
,
isLoading
,
isError
}
=
useQuery
<
unknown
,
unknown
,
LogsResponse
>
(
[
'
tx-log
'
,
router
.
query
.
id
],
[
QueryKeys
.
txLog
,
router
.
query
.
id
],
async
()
=>
await
fetch
(
`/api/transactions/
${
router
.
query
.
id
}
/logs`
),
async
()
=>
await
fetch
(
`/api/transactions/
${
router
.
query
.
id
}
/logs`
),
{
{
enabled
:
Boolean
(
router
.
query
.
id
),
enabled
:
Boolean
(
router
.
query
.
id
),
...
...
ui/tx/TxRawTrace.tsx
View file @
4d814360
...
@@ -4,6 +4,7 @@ import { useRouter } from 'next/router';
...
@@ -4,6 +4,7 @@ import { useRouter } from 'next/router';
import
React
from
'
react
'
;
import
React
from
'
react
'
;
import
type
{
RawTracesResponse
}
from
'
types/api/rawTrace
'
;
import
type
{
RawTracesResponse
}
from
'
types/api/rawTrace
'
;
import
{
QueryKeys
}
from
'
types/client/queries
'
;
import
useFetch
from
'
lib/hooks/useFetch
'
;
import
useFetch
from
'
lib/hooks/useFetch
'
;
import
CopyToClipboard
from
'
ui/shared/CopyToClipboard
'
;
import
CopyToClipboard
from
'
ui/shared/CopyToClipboard
'
;
...
@@ -14,7 +15,7 @@ const TxRawTrace = () => {
...
@@ -14,7 +15,7 @@ const TxRawTrace = () => {
const
fetch
=
useFetch
();
const
fetch
=
useFetch
();
const
{
data
,
isLoading
,
isError
}
=
useQuery
<
unknown
,
unknown
,
RawTracesResponse
>
(
const
{
data
,
isLoading
,
isError
}
=
useQuery
<
unknown
,
unknown
,
RawTracesResponse
>
(
[
'
tx-raw-trace
'
,
router
.
query
.
id
],
[
QueryKeys
.
txRawTrace
,
router
.
query
.
id
],
async
()
=>
await
fetch
(
`/api/transactions/
${
router
.
query
.
id
}
/raw-trace`
),
async
()
=>
await
fetch
(
`/api/transactions/
${
router
.
query
.
id
}
/raw-trace`
),
{
{
enabled
:
Boolean
(
router
.
query
.
id
),
enabled
:
Boolean
(
router
.
query
.
id
),
...
...
ui/txs/TxsPending.tsx
View file @
4d814360
...
@@ -3,6 +3,7 @@ import { useQuery } from '@tanstack/react-query';
...
@@ -3,6 +3,7 @@ import { useQuery } from '@tanstack/react-query';
import
React
from
'
react
'
;
import
React
from
'
react
'
;
import
type
{
TransactionsResponse
}
from
'
types/api/transaction
'
;
import
type
{
TransactionsResponse
}
from
'
types/api/transaction
'
;
import
{
QueryKeys
}
from
'
types/client/queries
'
;
import
useFetch
from
'
lib/hooks/useFetch
'
;
import
useFetch
from
'
lib/hooks/useFetch
'
;
import
DataFetchAlert
from
'
ui/shared/DataFetchAlert
'
;
import
DataFetchAlert
from
'
ui/shared/DataFetchAlert
'
;
...
@@ -14,7 +15,7 @@ import TxsSkeletonMobile from './TxsSkeletonMobile';
...
@@ -14,7 +15,7 @@ import TxsSkeletonMobile from './TxsSkeletonMobile';
const
TxsValidated
=
()
=>
{
const
TxsValidated
=
()
=>
{
const
fetch
=
useFetch
();
const
fetch
=
useFetch
();
const
{
data
,
isLoading
,
isError
}
=
const
{
data
,
isLoading
,
isError
}
=
useQuery
<
unknown
,
unknown
,
TransactionsResponse
>
([
'
transactions_pending
'
],
async
()
=>
fetch
(
'
/api/transactions/?filter=pending
'
));
useQuery
<
unknown
,
unknown
,
TransactionsResponse
>
([
QueryKeys
.
transactionsPending
],
async
()
=>
fetch
(
'
/api/transactions/?filter=pending
'
));
if
(
isError
)
{
if
(
isError
)
{
return
<
DataFetchAlert
/>;
return
<
DataFetchAlert
/>;
...
...
ui/txs/TxsValidated.tsx
View file @
4d814360
...
@@ -3,6 +3,7 @@ import { useQuery } from '@tanstack/react-query';
...
@@ -3,6 +3,7 @@ import { useQuery } from '@tanstack/react-query';
import
React
from
'
react
'
;
import
React
from
'
react
'
;
import
type
{
TransactionsResponse
}
from
'
types/api/transaction
'
;
import
type
{
TransactionsResponse
}
from
'
types/api/transaction
'
;
import
{
QueryKeys
}
from
'
types/client/queries
'
;
import
useFetch
from
'
lib/hooks/useFetch
'
;
import
useFetch
from
'
lib/hooks/useFetch
'
;
import
DataFetchAlert
from
'
ui/shared/DataFetchAlert
'
;
import
DataFetchAlert
from
'
ui/shared/DataFetchAlert
'
;
...
@@ -14,7 +15,7 @@ import TxsSkeletonMobile from './TxsSkeletonMobile';
...
@@ -14,7 +15,7 @@ import TxsSkeletonMobile from './TxsSkeletonMobile';
const
TxsValidated
=
()
=>
{
const
TxsValidated
=
()
=>
{
const
fetch
=
useFetch
();
const
fetch
=
useFetch
();
const
{
data
,
isLoading
,
isError
}
=
const
{
data
,
isLoading
,
isError
}
=
useQuery
<
unknown
,
unknown
,
TransactionsResponse
>
([
'
transactions_validated
'
],
async
()
=>
fetch
(
'
/api/transactions/?filter=validated
'
));
useQuery
<
unknown
,
unknown
,
TransactionsResponse
>
([
QueryKeys
.
transactionsValidated
],
async
()
=>
fetch
(
'
/api/transactions/?filter=validated
'
));
if
(
isError
)
{
if
(
isError
)
{
return
<
DataFetchAlert
/>;
return
<
DataFetchAlert
/>;
...
...
ui/watchlist/AddressModal/AddressForm.tsx
View file @
4d814360
...
@@ -11,6 +11,7 @@ import { useForm, Controller } from 'react-hook-form';
...
@@ -11,6 +11,7 @@ import { useForm, Controller } from 'react-hook-form';
import
type
{
WatchlistErrors
}
from
'
types/api/account
'
;
import
type
{
WatchlistErrors
}
from
'
types/api/account
'
;
import
type
{
TWatchlistItem
}
from
'
types/client/account
'
;
import
type
{
TWatchlistItem
}
from
'
types/client/account
'
;
import
{
QueryKeys
}
from
'
types/client/accountQueries
'
;
import
getErrorMessage
from
'
lib/getErrorMessage
'
;
import
getErrorMessage
from
'
lib/getErrorMessage
'
;
import
type
{
ErrorType
}
from
'
lib/hooks/useFetch
'
;
import
type
{
ErrorType
}
from
'
lib/hooks/useFetch
'
;
...
@@ -106,7 +107,7 @@ const AddressForm: React.FC<Props> = ({ data, onClose, setAlertVisible }) => {
...
@@ -106,7 +107,7 @@ const AddressForm: React.FC<Props> = ({ data, onClose, setAlertVisible }) => {
const
{
mutate
}
=
useMutation
(
updateWatchlist
,
{
const
{
mutate
}
=
useMutation
(
updateWatchlist
,
{
onSuccess
:
()
=>
{
onSuccess
:
()
=>
{
queryClient
.
refetchQueries
([
'
watchlist
'
]).
then
(()
=>
{
queryClient
.
refetchQueries
([
QueryKeys
.
watchlist
]).
then
(()
=>
{
onClose
();
onClose
();
setPending
(
false
);
setPending
(
false
);
});
});
...
...
ui/watchlist/DeleteAddressModal.tsx
View file @
4d814360
...
@@ -3,6 +3,7 @@ import { useQueryClient } from '@tanstack/react-query';
...
@@ -3,6 +3,7 @@ import { useQueryClient } from '@tanstack/react-query';
import
React
,
{
useCallback
}
from
'
react
'
;
import
React
,
{
useCallback
}
from
'
react
'
;
import
type
{
TWatchlistItem
,
TWatchlist
}
from
'
types/client/account
'
;
import
type
{
TWatchlistItem
,
TWatchlist
}
from
'
types/client/account
'
;
import
{
QueryKeys
}
from
'
types/client/accountQueries
'
;
import
useFetch
from
'
lib/hooks/useFetch
'
;
import
useFetch
from
'
lib/hooks/useFetch
'
;
import
useIsMobile
from
'
lib/hooks/useIsMobile
'
;
import
useIsMobile
from
'
lib/hooks/useIsMobile
'
;
...
@@ -24,7 +25,7 @@ const DeleteAddressModal: React.FC<Props> = ({ isOpen, onClose, data }) => {
...
@@ -24,7 +25,7 @@ const DeleteAddressModal: React.FC<Props> = ({ isOpen, onClose, data }) => {
}, [ data?.id, fetch ]);
}, [ data?.id, fetch ]);
const onSuccess = useCallback(async() => {
const onSuccess = useCallback(async() => {
queryClient.setQueryData([
'watchlist'
], (prevData: TWatchlist | undefined) => {
queryClient.setQueryData([
QueryKeys.watchlist
], (prevData: TWatchlist | undefined) => {
return prevData?.filter((item) => item.id !== data.id);
return prevData?.filter((item) => item.id !== data.id);
});
});
}, [ data, queryClient ]);
}, [ data, queryClient ]);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment