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
951ac583
Commit
951ac583
authored
Jun 01, 2023
by
tom
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
skeletons for L2 withdrawls
parent
c51631f0
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
132 additions
and
79 deletions
+132
-79
l2-withdrawals.tsx
pages/l2-withdrawals.tsx
+7
-2
L2.ts
stubs/L2.ts
+13
-1
l2Withdrawals.ts
types/api/l2Withdrawals.ts
+0
-1
WithdrawalsListItem.tsx
ui/l2Withdrawals/WithdrawalsListItem.tsx
+34
-22
WithdrawalsTable.tsx
ui/l2Withdrawals/WithdrawalsTable.tsx
+4
-3
WithdrawalsTableItem.tsx
ui/l2Withdrawals/WithdrawalsTableItem.tsx
+22
-12
L2Deposits.tsx
ui/pages/L2Deposits.tsx
+2
-2
L2Withdrawals.tsx
ui/pages/L2Withdrawals.tsx
+49
-35
LinkExternal.tsx
ui/shared/LinkExternal.tsx
+1
-1
No files found.
pages/l2-withdrawals.tsx
View file @
951ac583
import
type
{
NextPage
}
from
'
next
'
;
import
dynamic
from
'
next/dynamic
'
;
import
Head
from
'
next/head
'
;
import
React
from
'
react
'
;
import
getNetworkTitle
from
'
lib/networks/getNetworkTitle
'
;
import
L2Withdrawals
from
'
ui/pages/L2Withdrawals
'
;
import
Page
from
'
ui/shared/Page/Page
'
;
const
L2Withdrawals
=
dynamic
(()
=>
import
(
'
ui/pages/L2Withdrawals
'
),
{
ssr
:
false
});
const
WithdrawalsPage
:
NextPage
=
()
=>
{
const
title
=
getNetworkTitle
();
...
...
@@ -12,7 +15,9 @@ const WithdrawalsPage: NextPage = () => {
<
Head
>
<
title
>
{
title
}
</
title
>
</
Head
>
<
L2Withdrawals
/>
<
Page
>
<
L2Withdrawals
/>
</
Page
>
</>
);
};
...
...
stubs/L2.ts
View file @
951ac583
import
type
{
L2DepositsItem
}
from
'
types/api/l2Deposits
'
;
import
type
{
L2WithdrawalsItem
}
from
'
types/api/l2Withdrawals
'
;
import
{
ADDRESS_HASH
}
from
'
./addressParams
'
;
import
{
ADDRESS_HASH
,
ADDRESS_PARAMS
}
from
'
./addressParams
'
;
import
{
TX_HASH
}
from
'
./tx
'
;
export
const
L2_DEPOSIT_ITEM
:
L2DepositsItem
=
{
...
...
@@ -11,3 +12,14 @@ export const L2_DEPOSIT_ITEM: L2DepositsItem = {
l2_tx_gas_limit
:
'
100000
'
,
l2_tx_hash
:
TX_HASH
,
};
export
const
L2_WITHDRAWAL_ITEM
:
L2WithdrawalsItem
=
{
challenge_period_end
:
null
,
from
:
ADDRESS_PARAMS
,
l1_tx_hash
:
TX_HASH
,
l2_timestamp
:
'
2023-06-01T13:44:56.000000Z
'
,
l2_tx_hash
:
TX_HASH
,
msg_nonce
:
2393
,
msg_nonce_version
:
1
,
status
:
'
Ready to prove
'
,
};
types/api/l2Withdrawals.ts
View file @
951ac583
...
...
@@ -24,5 +24,4 @@ export type L2WithdrawalsResponse = {
'
items_count
'
:
number
;
'
nonce
'
:
string
;
};
total
:
number
;
}
ui/l2Withdrawals/WithdrawalsListItem.tsx
View file @
951ac583
import
{
Box
,
Ic
on
}
from
'
@chakra-ui/react
'
;
import
{
Skelet
on
}
from
'
@chakra-ui/react
'
;
import
{
route
}
from
'
nextjs-routes
'
;
import
React
from
'
react
'
;
...
...
@@ -10,39 +10,42 @@ import dayjs from 'lib/date/dayjs';
import
Address
from
'
ui/shared/address/Address
'
;
import
AddressIcon
from
'
ui/shared/address/AddressIcon
'
;
import
AddressLink
from
'
ui/shared/address/AddressLink
'
;
import
Icon
from
'
ui/shared/chakra/Icon
'
;
import
HashStringShortenDynamic
from
'
ui/shared/HashStringShortenDynamic
'
;
import
LinkExternal
from
'
ui/shared/LinkExternal
'
;
import
LinkInternal
from
'
ui/shared/LinkInternal
'
;
import
ListItemMobileGrid
from
'
ui/shared/ListItemMobile/ListItemMobileGrid
'
;
type
Props
=
{
item
:
L2WithdrawalsItem
};
type
Props
=
{
item
:
L2WithdrawalsItem
;
isLoading
?:
boolean
};
const
WithdrawalsListItem
=
({
item
}:
Props
)
=>
{
const
WithdrawalsListItem
=
({
item
,
isLoading
}:
Props
)
=>
{
const
timeAgo
=
item
.
l2_timestamp
?
dayjs
(
item
.
l2_timestamp
).
fromNow
()
:
null
;
const
timeToEnd
=
item
.
challenge_period_end
?
dayjs
(
item
.
challenge_period_end
).
fromNow
(
true
)
+
'
left
'
:
null
;
return
(
<
ListItemMobileGrid
.
Container
>
<
ListItemMobileGrid
.
Label
>
Msg nonce
</
ListItemMobileGrid
.
Label
>
<
ListItemMobileGrid
.
Label
isLoading=
{
isLoading
}
>
Msg nonce
</
ListItemMobileGrid
.
Label
>
<
ListItemMobileGrid
.
Value
>
{
item
.
msg_nonce_version
+
'
-
'
+
item
.
msg_nonce
}
<
Skeleton
isLoaded=
{
!
isLoading
}
display=
"inline-block"
>
{
item
.
msg_nonce_version
+
'
-
'
+
item
.
msg_nonce
}
</
Skeleton
>
</
ListItemMobileGrid
.
Value
>
{
item
.
from
&&
(
<>
<
ListItemMobileGrid
.
Label
>
From
</
ListItemMobileGrid
.
Label
>
<
ListItemMobileGrid
.
Value
>
<
ListItemMobileGrid
.
Label
isLoading=
{
isLoading
}
>
From
</
ListItemMobileGrid
.
Label
>
<
ListItemMobileGrid
.
Value
py=
"3px"
>
<
Address
>
<
AddressIcon
address=
{
item
.
from
}
/>
<
AddressLink
hash=
{
item
.
from
.
hash
}
type=
"address"
truncation=
"dynamic"
ml=
{
2
}
/>
<
AddressIcon
address=
{
item
.
from
}
isLoading=
{
isLoading
}
/>
<
AddressLink
hash=
{
item
.
from
.
hash
}
type=
"address"
truncation=
"dynamic"
ml=
{
2
}
isLoading=
{
isLoading
}
/>
</
Address
>
</
ListItemMobileGrid
.
Value
>
</>
)
}
<
ListItemMobileGrid
.
Label
>
L2 txn hash
</
ListItemMobileGrid
.
Label
>
<
ListItemMobileGrid
.
Value
>
<
ListItemMobileGrid
.
Label
isLoading=
{
isLoading
}
>
L2 txn hash
</
ListItemMobileGrid
.
Label
>
<
ListItemMobileGrid
.
Value
py=
"3px"
>
<
LinkInternal
href=
{
route
({
pathname
:
'
/tx/[hash]
'
,
query
:
{
hash
:
item
.
l2_tx_hash
}
})
}
display=
"flex"
...
...
@@ -51,37 +54,46 @@ const WithdrawalsListItem = ({ item }: Props) => {
overflow=
"hidden"
w=
"100%"
>
<
Icon
as=
{
txIcon
}
boxSize=
{
6
}
mr=
{
1
}
/>
<
Box
w=
"calc(100% - 36px)"
overflow=
"hidden"
whiteSpace=
"nowrap"
><
HashStringShortenDynamic
hash=
{
item
.
l2_tx_hash
}
/></
Box
>
<
Icon
as=
{
txIcon
}
boxSize=
{
6
}
isLoading=
{
isLoading
}
/>
<
Skeleton
isLoaded=
{
!
isLoading
}
w=
"calc(100% - 36px)"
overflow=
"hidden"
whiteSpace=
"nowrap"
ml=
{
1
}
>
<
HashStringShortenDynamic
hash=
{
item
.
l2_tx_hash
}
/>
</
Skeleton
>
</
LinkInternal
>
</
ListItemMobileGrid
.
Value
>
{
timeAgo
&&
(
<>
<
ListItemMobileGrid
.
Label
>
Age
</
ListItemMobileGrid
.
Label
>
<
ListItemMobileGrid
.
Value
>
{
timeAgo
}
</
ListItemMobileGrid
.
Value
>
<
ListItemMobileGrid
.
Label
isLoading=
{
isLoading
}
>
Age
</
ListItemMobileGrid
.
Label
>
<
ListItemMobileGrid
.
Value
>
<
Skeleton
isLoaded=
{
!
isLoading
}
display=
"inline-block"
>
{
timeAgo
}
</
Skeleton
>
</
ListItemMobileGrid
.
Value
>
</>
)
}
<
ListItemMobileGrid
.
Label
>
Status
</
ListItemMobileGrid
.
Label
>
<
ListItemMobileGrid
.
Label
isLoading=
{
isLoading
}
>
Status
</
ListItemMobileGrid
.
Label
>
<
ListItemMobileGrid
.
Value
>
{
item
.
status
===
'
Ready for relay
'
?
<
LinkExternal
href=
{
appConfig
.
L2
.
withdrawalUrl
}
>
{
item
.
status
}
</
LinkExternal
>
:
item
.
status
}
<
Skeleton
isLoaded=
{
!
isLoading
}
display=
"inline-block"
>
{
item
.
status
}
</
Skeleton
>
}
</
ListItemMobileGrid
.
Value
>
{
item
.
l1_tx_hash
&&
(
<>
<
ListItemMobileGrid
.
Label
>
L1 txn hash
</
ListItemMobileGrid
.
Label
>
<
ListItemMobileGrid
.
Value
>
<
ListItemMobileGrid
.
Label
isLoading=
{
isLoading
}
>
L1 txn hash
</
ListItemMobileGrid
.
Label
>
<
ListItemMobileGrid
.
Value
py=
"3px"
>
<
LinkExternal
href=
{
appConfig
.
L2
.
L1BaseUrl
+
route
({
pathname
:
'
/tx/[hash]
'
,
query
:
{
hash
:
item
.
l1_tx_hash
}
})
}
maxW=
"100%"
display=
"inline-flex"
overflow=
"hidden"
isLoading=
{
isLoading
}
>
<
Icon
as=
{
txIcon
}
boxSize=
{
6
}
mr=
{
1
}
/>
<
Box
w=
"calc(100% - 44px)"
overflow=
"hidden"
whiteSpace=
"nowrap"
><
HashStringShortenDynamic
hash=
{
item
.
l1_tx_hash
}
/></
Box
>
<
Icon
as=
{
txIcon
}
boxSize=
{
6
}
mr=
{
1
}
isLoading=
{
isLoading
}
/>
<
Skeleton
isLoaded=
{
!
isLoading
}
w=
"calc(100% - 44px)"
overflow=
"hidden"
whiteSpace=
"nowrap"
>
<
HashStringShortenDynamic
hash=
{
item
.
l1_tx_hash
}
/>
</
Skeleton
>
</
LinkExternal
>
</
ListItemMobileGrid
.
Value
>
</>
...
...
@@ -89,7 +101,7 @@ const WithdrawalsListItem = ({ item }: Props) => {
{
timeToEnd
&&
(
<>
<
ListItemMobileGrid
.
Label
>
Time left
</
ListItemMobileGrid
.
Label
>
<
ListItemMobileGrid
.
Label
isLoading=
{
isLoading
}
>
Time left
</
ListItemMobileGrid
.
Label
>
<
ListItemMobileGrid
.
Value
>
{
timeToEnd
}
</
ListItemMobileGrid
.
Value
>
</>
)
}
...
...
ui/l2Withdrawals/WithdrawalsTable.tsx
View file @
951ac583
...
...
@@ -10,9 +10,10 @@ import WithdrawalsTableItem from './WithdrawalsTableItem';
type
Props
=
{
items
:
Array
<
L2WithdrawalsItem
>
;
top
:
number
;
isLoading
?:
boolean
;
}
const
WithdrawalsTable
=
({
items
,
top
}:
Props
)
=>
{
const
WithdrawalsTable
=
({
items
,
top
,
isLoading
}:
Props
)
=>
{
return
(
<
Table
variant=
"simple"
size=
"sm"
style=
{
{
tableLayout
:
'
auto
'
}
}
minW=
"950px"
>
<
Thead
top=
{
top
}
>
...
...
@@ -27,8 +28,8 @@ const WithdrawalsTable = ({ items, top }: Props) => {
</
Tr
>
</
Thead
>
<
Tbody
>
{
items
.
map
((
item
)
=>
(
<
WithdrawalsTableItem
key=
{
item
.
l2_tx_hash
}
item=
{
item
}
/>
{
items
.
map
((
item
,
index
)
=>
(
<
WithdrawalsTableItem
key=
{
item
.
l2_tx_hash
+
(
isLoading
?
index
:
''
)
}
item=
{
item
}
isLoading=
{
isLoading
}
/>
))
}
</
Tbody
>
</
Table
>
...
...
ui/l2Withdrawals/WithdrawalsTableItem.tsx
View file @
951ac583
import
{
Box
,
Td
,
Tr
,
Text
,
Ic
on
}
from
'
@chakra-ui/react
'
;
import
{
Td
,
Tr
,
Skelet
on
}
from
'
@chakra-ui/react
'
;
import
{
route
}
from
'
nextjs-routes
'
;
import
React
from
'
react
'
;
...
...
@@ -10,26 +10,27 @@ import dayjs from 'lib/date/dayjs';
import
Address
from
'
ui/shared/address/Address
'
;
import
AddressIcon
from
'
ui/shared/address/AddressIcon
'
;
import
AddressLink
from
'
ui/shared/address/AddressLink
'
;
import
Icon
from
'
ui/shared/chakra/Icon
'
;
import
HashStringShorten
from
'
ui/shared/HashStringShorten
'
;
import
LinkExternal
from
'
ui/shared/LinkExternal
'
;
import
LinkInternal
from
'
ui/shared/LinkInternal
'
;
type
Props
=
{
item
:
L2WithdrawalsItem
};
type
Props
=
{
item
:
L2WithdrawalsItem
;
isLoading
?:
boolean
};
const
WithdrawalsTableItem
=
({
item
}:
Props
)
=>
{
const
WithdrawalsTableItem
=
({
item
,
isLoading
}:
Props
)
=>
{
const
timeAgo
=
item
.
l2_timestamp
?
dayjs
(
item
.
l2_timestamp
).
fromNow
()
:
'
N/A
'
;
const
timeToEnd
=
item
.
challenge_period_end
?
dayjs
(
item
.
challenge_period_end
).
fromNow
(
true
)
+
'
left
'
:
''
;
return
(
<
Tr
>
<
Td
verticalAlign=
"middle"
fontWeight=
{
600
}
>
<
Text
>
{
item
.
msg_nonce_version
+
'
-
'
+
item
.
msg_nonce
}
</
Text
>
<
Skeleton
isLoaded=
{
!
isLoading
}
display=
"inline-block"
>
{
item
.
msg_nonce_version
+
'
-
'
+
item
.
msg_nonce
}
</
Skeleton
>
</
Td
>
<
Td
verticalAlign=
"middle"
>
{
item
.
from
?
(
<
Address
>
<
AddressIcon
address=
{
item
.
from
}
/>
<
AddressLink
hash=
{
item
.
from
.
hash
}
type=
"address"
truncation=
"constant"
ml=
{
2
}
/>
<
AddressIcon
address=
{
item
.
from
}
isLoading=
{
isLoading
}
/>
<
AddressLink
hash=
{
item
.
from
.
hash
}
type=
"address"
truncation=
"constant"
ml=
{
2
}
isLoading=
{
isLoading
}
/>
</
Address
>
)
:
'
N/A
'
}
</
Td
>
...
...
@@ -39,33 +40,42 @@ const WithdrawalsTableItem = ({ item }: Props) => {
display=
"flex"
width=
"fit-content"
alignItems=
"center"
isLoading=
{
isLoading
}
>
<
Icon
as=
{
txIcon
}
boxSize=
{
6
}
mr=
{
1
}
/>
<
Box
w=
"calc(100% - 36px)"
overflow=
"hidden"
whiteSpace=
"nowrap"
><
HashStringShorten
hash=
{
item
.
l2_tx_hash
}
/></
Box
>
<
Icon
as=
{
txIcon
}
boxSize=
{
6
}
isLoading=
{
isLoading
}
/>
<
Skeleton
isLoaded=
{
!
isLoading
}
w=
"calc(100% - 36px)"
overflow=
"hidden"
whiteSpace=
"nowrap"
ml=
{
1
}
>
<
HashStringShorten
hash=
{
item
.
l2_tx_hash
}
/>
</
Skeleton
>
</
LinkInternal
>
</
Td
>
<
Td
verticalAlign=
"middle"
pr=
{
12
}
>
<
Text
variant=
"secondary"
>
{
timeAgo
}
</
Text
>
<
Skeleton
isLoaded=
{
!
isLoading
}
color=
"text_secondary"
display=
"inline-block"
>
<
span
>
{
timeAgo
}
</
span
>
</
Skeleton
>
</
Td
>
<
Td
verticalAlign=
"middle"
>
{
item
.
status
===
'
Ready for relay
'
?
<
LinkExternal
href=
{
appConfig
.
L2
.
withdrawalUrl
}
>
{
item
.
status
}
</
LinkExternal
>
:
<
Text
>
{
item
.
status
}
</
Text
>
<
Skeleton
isLoaded=
{
!
isLoading
}
display=
"inline-block"
>
{
item
.
status
}
</
Skeleton
>
}
</
Td
>
<
Td
verticalAlign=
"middle"
>
{
item
.
l1_tx_hash
?
(
<
LinkExternal
href=
{
appConfig
.
L2
.
L1BaseUrl
+
route
({
pathname
:
'
/tx/[hash]
'
,
query
:
{
hash
:
item
.
l1_tx_hash
}
})
}
isLoading=
{
isLoading
}
display=
"inline-flex"
>
<
HashStringShorten
hash=
{
item
.
l1_tx_hash
}
/>
<
Skeleton
isLoaded=
{
!
isLoading
}
>
<
HashStringShorten
hash=
{
item
.
l1_tx_hash
}
/>
</
Skeleton
>
</
LinkExternal
>
)
:
'
N/A
'
}
</
Td
>
<
Td
verticalAlign=
"middle"
>
<
Text
variant=
"secondary"
>
{
timeToEnd
}
</
Text
>
<
Skeleton
isLoaded=
{
!
isLoading
}
color=
"text_secondary"
minW=
"50px"
minH=
"20px"
display=
"inline-block"
>
{
timeToEnd
}
</
Skeleton
>
</
Td
>
</
Tr
>
);
...
...
ui/pages/L2Deposits.tsx
View file @
951ac583
...
...
@@ -71,11 +71,11 @@ const L2Deposits = () => {
const
actionBar
=
(
<>
<
Box
mb=
{
6
}
display=
{
{
base
:
'
flex
'
,
lg
:
'
none
'
}
}
>
<
Box
mb=
{
6
}
display=
{
{
base
:
'
block
'
,
lg
:
'
none
'
}
}
>
{
text
}
</
Box
>
<
ActionBar
mt=
{
-
6
}
>
<
Box
display=
{
{
base
:
'
none
'
,
lg
:
'
flex
'
}
}
>
<
Box
display=
{
{
base
:
'
none
'
,
lg
:
'
block
'
}
}
>
{
text
}
</
Box
>
{
isPaginationVisible
&&
<
Pagination
ml=
"auto"
{
...
pagination
}
/>
}
...
...
ui/pages/L2Withdrawals.tsx
View file @
951ac583
import
{
Flex
,
Hide
,
Show
,
Skeleton
,
Text
}
from
'
@chakra-ui/react
'
;
import
{
Box
,
Hide
,
Show
,
Skeleton
}
from
'
@chakra-ui/react
'
;
import
React
from
'
react
'
;
import
useApiQuery
from
'
lib/api/useApiQuery
'
;
import
useIsMobile
from
'
lib/hooks/useIsMobile
'
;
import
useQueryWithPages
from
'
lib/hooks/useQueryWithPages
'
;
import
{
rightLineArrow
,
nbsp
}
from
'
lib/html-entities
'
;
import
{
L2_WITHDRAWAL_ITEM
}
from
'
stubs/L2
'
;
import
{
generateListStub
}
from
'
stubs/utils
'
;
import
WithdrawalsListItem
from
'
ui/l2Withdrawals/WithdrawalsListItem
'
;
import
WithdrawalsTable
from
'
ui/l2Withdrawals/WithdrawalsTable
'
;
import
ActionBar
from
'
ui/shared/ActionBar
'
;
import
DataListDisplay
from
'
ui/shared/DataListDisplay
'
;
import
Page
from
'
ui/shared/Page/Page
'
;
import
PageTitle
from
'
ui/shared/Page/PageTitle
'
;
import
Pagination
from
'
ui/shared/Pagination
'
;
const
L2Withdrawals
=
()
=>
{
const
isMobile
=
useIsMobile
();
const
{
data
,
isError
,
isLoading
,
isPaginationVisible
,
pagination
}
=
useQueryWithPages
({
const
{
data
,
isError
,
isPlaceholderData
,
isPaginationVisible
,
pagination
}
=
useQueryWithPages
({
resourceName
:
'
l2_withdrawals
'
,
options
:
{
placeholderData
:
generateListStub
<
'
l2_withdrawals
'
>
(
L2_WITHDRAWAL_ITEM
,
50
,
{
next_page_params
:
{
items_count
:
50
,
nonce
:
''
,
},
},
),
},
});
const
countersQuery
=
useApiQuery
(
'
l2_withdrawals_count
'
);
const
countersQuery
=
useApiQuery
(
'
l2_withdrawals_count
'
,
{
queryOptions
:
{
placeholderData
:
23700
,
},
});
const
content
=
data
?.
items
?
(
<>
<
Show
below=
"lg"
ssr=
{
false
}
>
{
data
.
items
.
map
((
item
=>
<
WithdrawalsListItem
key=
{
item
.
l2_tx_hash
}
item=
{
item
}
/>))
}
</
Show
>
<
Hide
below=
"lg"
ssr=
{
false
}
><
WithdrawalsTable
items=
{
data
.
items
}
top=
{
isPaginationVisible
?
80
:
0
}
/></
Hide
>
<
Show
below=
"lg"
ssr=
{
false
}
>
{
data
.
items
.
map
(((
item
,
index
)
=>
(
<
WithdrawalsListItem
key=
{
item
.
l2_tx_hash
+
(
isPlaceholderData
?
index
:
''
)
}
item=
{
item
}
isLoading=
{
isPlaceholderData
}
/>
)))
}
</
Show
>
<
Hide
below=
"lg"
ssr=
{
false
}
>
<
WithdrawalsTable
items=
{
data
.
items
}
top=
{
isPaginationVisible
?
80
:
0
}
isLoading=
{
isPlaceholderData
}
/>
</
Hide
>
</>
)
:
null
;
const
text
=
(()
=>
{
if
(
countersQuery
.
isLoading
)
{
return
(
<
Skeleton
w=
{
{
base
:
'
100%
'
,
lg
:
'
320px
'
}
}
h=
"24px"
mb=
{
{
base
:
6
,
lg
:
isPaginationVisible
?
0
:
7
}
}
mt=
{
{
base
:
0
,
lg
:
isPaginationVisible
?
0
:
7
}
}
/>
);
}
if
(
countersQuery
.
isError
)
{
return
null
;
}
return
(
<
Text
mb=
{
{
base
:
6
,
lg
:
isPaginationVisible
?
0
:
6
}
}
lineHeight=
{
{
base
:
'
24px
'
,
lg
:
'
32px
'
}
}
>
A total of
{
countersQuery
.
data
.
toLocaleString
()
}
withdrawals found
</
Text
>
<
Skeleton
isLoaded=
{
!
countersQuery
.
isPlaceholderData
}
display=
"inline-block"
>
A total of
{
countersQuery
.
data
?.
toLocaleString
()
}
withdrawals found
</
Skeleton
>
);
})();
const
actionBar
=
(
<>
{
(
isMobile
||
!
isPaginationVisible
)
&&
text
}
{
isPaginationVisible
&&
(
<
ActionBar
mt=
{
-
6
}
>
<
Flex
alignItems=
"center"
justifyContent=
"space-between"
w=
"100%"
>
{
!
isMobile
&&
text
}
<
Pagination
ml=
"auto"
{
...
pagination
}
/>
</
Fle
x
>
</
ActionBar
>
)
}
<
Box
mb=
{
6
}
display=
{
{
base
:
'
block
'
,
lg
:
'
none
'
}
}
>
{
text
}
</
Box
>
<
ActionBar
mt=
{
-
6
}
>
<
Box
display=
{
{
base
:
'
none
'
,
lg
:
'
block
'
}
}
>
{
text
}
</
Bo
x
>
{
isPaginationVisible
&&
<
Pagination
ml=
"auto"
{
...
pagination
}
/>
}
</
ActionBar
>
</>
);
return
(
<
Page
>
<>
<
PageTitle
title=
{
`Withdrawals (L2${ nbsp }${ rightLineArrow }${ nbsp }L1)`
}
withTextAd
/>
<
DataListDisplay
isError=
{
isError
}
isLoading=
{
isLoading
}
isLoading=
{
false
}
items=
{
data
?.
items
}
skeletonProps=
{
{
skeletonDesktopColumns
:
Array
(
7
).
fill
(
`${ 100 / 7 }%`
),
skeletonDesktopMinW
:
'
950px
'
}
}
emptyText=
"There are no withdrawals."
content=
{
content
}
actionBar=
{
actionBar
}
/>
</
Page
>
</>
);
};
...
...
ui/shared/LinkExternal.tsx
View file @
951ac583
...
...
@@ -15,7 +15,7 @@ const LinkExternal = ({ href, children, className, isLoading }: Props) => {
return
(
<
Box
className=
{
className
}
fontSize=
"sm"
lineHeight=
{
5
}
display=
"inline-block"
alignItems=
"center"
>
{
children
}
<
Skeleton
boxSize=
{
4
}
verticalAlign=
"middle"
/>
<
Skeleton
boxSize=
{
4
}
verticalAlign=
"middle"
display=
"inline-block"
/>
</
Box
>
);
}
...
...
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