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
a081b212
Unverified
Commit
a081b212
authored
Jun 06, 2023
by
Igor Stuev
Committed by
GitHub
Jun 06, 2023
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #872 from blockscout/fix-home-skeleton
fix home skeleton
parents
77db369c
fcbb46d0
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
141 additions
and
99 deletions
+141
-99
LatestTxs.tsx
ui/home/LatestTxs.tsx
+11
-1
LatestTxsItem.tsx
ui/home/LatestTxsItem.tsx
+1
-98
LatestTxsItemMobile.tsx
ui/home/LatestTxsItemMobile.tsx
+129
-0
No files found.
ui/home/LatestTxs.tsx
View file @
a081b212
...
@@ -10,6 +10,7 @@ import LinkInternal from 'ui/shared/LinkInternal';
...
@@ -10,6 +10,7 @@ import LinkInternal from 'ui/shared/LinkInternal';
import
SocketNewItemsNotice
from
'
ui/shared/SocketNewItemsNotice
'
;
import
SocketNewItemsNotice
from
'
ui/shared/SocketNewItemsNotice
'
;
import
LatestTxsItem
from
'
./LatestTxsItem
'
;
import
LatestTxsItem
from
'
./LatestTxsItem
'
;
import
LatestTxsItemMobile
from
'
./LatestTxsItemMobile
'
;
const
LatestTransactions
=
()
=>
{
const
LatestTransactions
=
()
=>
{
const
isMobile
=
useIsMobile
();
const
isMobile
=
useIsMobile
();
...
@@ -31,7 +32,16 @@ const LatestTransactions = () => {
...
@@ -31,7 +32,16 @@ const LatestTransactions = () => {
return
(
return
(
<>
<>
<
SocketNewItemsNotice
borderBottomRadius=
{
0
}
url=
{
txsUrl
}
num=
{
num
}
alert=
{
socketAlert
}
isLoading=
{
isPlaceholderData
}
/>
<
SocketNewItemsNotice
borderBottomRadius=
{
0
}
url=
{
txsUrl
}
num=
{
num
}
alert=
{
socketAlert
}
isLoading=
{
isPlaceholderData
}
/>
<
Box
mb=
{
{
base
:
3
,
lg
:
4
}
}
>
<
Box
mb=
{
3
}
display=
{
{
base
:
'
block
'
,
lg
:
'
none
'
}
}
>
{
data
.
slice
(
0
,
txsCount
).
map
(((
tx
,
index
)
=>
(
<
LatestTxsItemMobile
key=
{
tx
.
hash
+
(
isPlaceholderData
?
index
:
''
)
}
tx=
{
tx
}
isLoading=
{
isPlaceholderData
}
/>
)))
}
</
Box
>
<
Box
mb=
{
4
}
display=
{
{
base
:
'
none
'
,
lg
:
'
block
'
}
}
>
{
data
.
slice
(
0
,
txsCount
).
map
(((
tx
,
index
)
=>
(
{
data
.
slice
(
0
,
txsCount
).
map
(((
tx
,
index
)
=>
(
<
LatestTxsItem
<
LatestTxsItem
key=
{
tx
.
hash
+
(
isPlaceholderData
?
index
:
''
)
}
key=
{
tx
.
hash
+
(
isPlaceholderData
?
index
:
''
)
}
...
...
ui/home/LatestTxsItem.tsx
View file @
a081b212
...
@@ -14,7 +14,6 @@ import appConfig from 'configs/app/config';
...
@@ -14,7 +14,6 @@ import appConfig from 'configs/app/config';
import
rightArrowIcon
from
'
icons/arrows/east.svg
'
;
import
rightArrowIcon
from
'
icons/arrows/east.svg
'
;
import
transactionIcon
from
'
icons/transactions.svg
'
;
import
transactionIcon
from
'
icons/transactions.svg
'
;
import
getValueWithUnit
from
'
lib/getValueWithUnit
'
;
import
getValueWithUnit
from
'
lib/getValueWithUnit
'
;
import
useIsMobile
from
'
lib/hooks/useIsMobile
'
;
import
useTimeAgoIncrement
from
'
lib/hooks/useTimeAgoIncrement
'
;
import
useTimeAgoIncrement
from
'
lib/hooks/useTimeAgoIncrement
'
;
import
Address
from
'
ui/shared/address/Address
'
;
import
Address
from
'
ui/shared/address/Address
'
;
import
AddressIcon
from
'
ui/shared/address/AddressIcon
'
;
import
AddressIcon
from
'
ui/shared/address/AddressIcon
'
;
...
@@ -33,103 +32,6 @@ const LatestTxsItem = ({ tx, isLoading }: Props) => {
...
@@ -33,103 +32,6 @@ const LatestTxsItem = ({ tx, isLoading }: Props) => {
const
dataTo
=
tx
.
to
?
tx
.
to
:
tx
.
created_contract
;
const
dataTo
=
tx
.
to
?
tx
.
to
:
tx
.
created_contract
;
const
timeAgo
=
useTimeAgoIncrement
(
tx
.
timestamp
||
'
0
'
,
true
);
const
timeAgo
=
useTimeAgoIncrement
(
tx
.
timestamp
||
'
0
'
,
true
);
const
isMobile
=
useIsMobile
();
if
(
isMobile
)
{
return
(
<
Box
width=
"100%"
borderTop=
"1px solid"
borderColor=
"divider"
py=
{
4
}
_last=
{
{
borderBottom
:
'
1px solid
'
,
borderColor
:
'
divider
'
}
}
>
<
Flex
justifyContent=
"space-between"
>
<
HStack
>
<
TxType
types=
{
tx
.
tx_types
}
isLoading=
{
isLoading
}
/>
<
TxStatus
status=
{
tx
.
status
}
errorText=
{
tx
.
status
===
'
error
'
?
tx
.
result
:
undefined
}
isLoading=
{
isLoading
}
/>
</
HStack
>
<
TxAdditionalInfo
tx=
{
tx
}
isMobile
isLoading=
{
isLoading
}
/>
</
Flex
>
<
Flex
mt=
{
2
}
alignItems=
"center"
width=
"100%"
justifyContent=
"space-between"
mb=
{
6
}
>
<
Flex
mr=
{
3
}
>
<
Icon
as=
{
transactionIcon
}
boxSize=
"30px"
mr=
{
2
}
color=
"link"
isLoading=
{
isLoading
}
/>
<
Address
width=
"100%"
>
<
AddressLink
hash=
{
tx
.
hash
}
type=
"transaction"
fontWeight=
"700"
truncation=
"constant"
isLoading=
{
isLoading
}
/>
</
Address
>
</
Flex
>
{
tx
.
timestamp
&&
(
<
Skeleton
isLoaded=
{
!
isLoading
}
color=
"text_secondary"
fontWeight=
"400"
fontSize=
"sm"
>
<
span
>
{
timeAgo
}
</
span
>
</
Skeleton
>
)
}
</
Flex
>
<
Flex
alignItems=
"center"
mb=
{
3
}
>
<
Address
mr=
{
2
}
>
<
AddressIcon
address=
{
tx
.
from
}
isLoading=
{
isLoading
}
/>
<
AddressLink
type=
"address"
hash=
{
tx
.
from
.
hash
}
alias=
{
tx
.
from
.
name
}
fontWeight=
"500"
ml=
{
2
}
truncation=
"constant"
fontSize=
"sm"
isLoading=
{
isLoading
}
/>
</
Address
>
<
Icon
as=
{
rightArrowIcon
}
boxSize=
{
6
}
color=
"gray.500"
isLoading=
{
isLoading
}
/>
{
dataTo
&&
(
<
Address
ml=
{
2
}
>
<
AddressIcon
address=
{
dataTo
}
isLoading=
{
isLoading
}
/>
<
AddressLink
type=
"address"
hash=
{
dataTo
.
hash
}
alias=
{
dataTo
.
name
}
fontWeight=
"500"
ml=
{
2
}
truncation=
"constant"
fontSize=
"sm"
isLoading=
{
isLoading
}
/>
</
Address
>
)
}
</
Flex
>
<
Skeleton
isLoaded=
{
!
isLoading
}
mb=
{
2
}
fontSize=
"sm"
w=
"fit-content"
>
<
Text
as=
"span"
>
Value
{
appConfig
.
network
.
currency
.
symbol
}
</
Text
>
<
Text
as=
"span"
variant=
"secondary"
>
{
getValueWithUnit
(
tx
.
value
).
dp
(
5
).
toFormat
()
}
</
Text
>
</
Skeleton
>
<
Skeleton
isLoaded=
{
!
isLoading
}
fontSize=
"sm"
w=
"fit-content"
>
<
Text
as=
"span"
>
Fee
{
appConfig
.
network
.
currency
.
symbol
}
</
Text
>
<
Text
as=
"span"
variant=
"secondary"
>
{
getValueWithUnit
(
tx
.
fee
.
value
).
dp
(
5
).
toFormat
()
}
</
Text
>
</
Skeleton
>
</
Box
>
);
}
return
(
return
(
<
Box
<
Box
width=
"100%"
width=
"100%"
...
@@ -138,6 +40,7 @@ const LatestTxsItem = ({ tx, isLoading }: Props) => {
...
@@ -138,6 +40,7 @@ const LatestTxsItem = ({ tx, isLoading }: Props) => {
borderColor=
"divider"
borderColor=
"divider"
p=
{
4
}
p=
{
4
}
_last=
{
{
borderBottom
:
'
1px solid
'
,
borderColor
:
'
divider
'
}
}
_last=
{
{
borderBottom
:
'
1px solid
'
,
borderColor
:
'
divider
'
}
}
display=
{
{
base
:
'
none
'
,
lg
:
'
block
'
}
}
>
>
<
Grid
width=
"100%"
gridTemplateColumns=
"3fr 2fr 150px"
gridGap=
{
8
}
>
<
Grid
width=
"100%"
gridTemplateColumns=
"3fr 2fr 150px"
gridGap=
{
8
}
>
<
Flex
overflow=
"hidden"
w=
"100%"
>
<
Flex
overflow=
"hidden"
w=
"100%"
>
...
...
ui/home/LatestTxsItemMobile.tsx
0 → 100644
View file @
a081b212
import
{
Box
,
Flex
,
HStack
,
Text
,
Skeleton
,
}
from
'
@chakra-ui/react
'
;
import
React
from
'
react
'
;
import
type
{
Transaction
}
from
'
types/api/transaction
'
;
import
appConfig
from
'
configs/app/config
'
;
import
rightArrowIcon
from
'
icons/arrows/east.svg
'
;
import
transactionIcon
from
'
icons/transactions.svg
'
;
import
getValueWithUnit
from
'
lib/getValueWithUnit
'
;
import
useTimeAgoIncrement
from
'
lib/hooks/useTimeAgoIncrement
'
;
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
TxStatus
from
'
ui/shared/TxStatus
'
;
import
TxAdditionalInfo
from
'
ui/txs/TxAdditionalInfo
'
;
import
TxType
from
'
ui/txs/TxType
'
;
type
Props
=
{
tx
:
Transaction
;
isLoading
?:
boolean
;
}
const
LatestTxsItem
=
({
tx
,
isLoading
}:
Props
)
=>
{
const
dataTo
=
tx
.
to
?
tx
.
to
:
tx
.
created_contract
;
const
timeAgo
=
useTimeAgoIncrement
(
tx
.
timestamp
||
'
0
'
,
true
);
return
(
<
Box
width=
"100%"
borderTop=
"1px solid"
borderColor=
"divider"
py=
{
4
}
_last=
{
{
borderBottom
:
'
1px solid
'
,
borderColor
:
'
divider
'
}
}
display=
{
{
base
:
'
block
'
,
lg
:
'
none
'
}
}
>
<
Flex
justifyContent=
"space-between"
>
<
HStack
>
<
TxType
types=
{
tx
.
tx_types
}
isLoading=
{
isLoading
}
/>
<
TxStatus
status=
{
tx
.
status
}
errorText=
{
tx
.
status
===
'
error
'
?
tx
.
result
:
undefined
}
isLoading=
{
isLoading
}
/>
</
HStack
>
<
TxAdditionalInfo
tx=
{
tx
}
isMobile
isLoading=
{
isLoading
}
/>
</
Flex
>
<
Flex
mt=
{
2
}
alignItems=
"center"
width=
"100%"
justifyContent=
"space-between"
mb=
{
6
}
>
<
Flex
mr=
{
3
}
>
<
Icon
as=
{
transactionIcon
}
boxSize=
"30px"
mr=
{
2
}
color=
"link"
isLoading=
{
isLoading
}
/>
<
Address
width=
"100%"
>
<
AddressLink
hash=
{
tx
.
hash
}
type=
"transaction"
fontWeight=
"700"
truncation=
"constant"
isLoading=
{
isLoading
}
/>
</
Address
>
</
Flex
>
{
tx
.
timestamp
&&
(
<
Skeleton
isLoaded=
{
!
isLoading
}
color=
"text_secondary"
fontWeight=
"400"
fontSize=
"sm"
>
<
span
>
{
timeAgo
}
</
span
>
</
Skeleton
>
)
}
</
Flex
>
<
Flex
alignItems=
"center"
mb=
{
3
}
>
<
Address
mr=
{
2
}
>
<
AddressIcon
address=
{
tx
.
from
}
isLoading=
{
isLoading
}
/>
<
AddressLink
type=
"address"
hash=
{
tx
.
from
.
hash
}
alias=
{
tx
.
from
.
name
}
fontWeight=
"500"
ml=
{
2
}
truncation=
"constant"
fontSize=
"sm"
isLoading=
{
isLoading
}
/>
</
Address
>
<
Icon
as=
{
rightArrowIcon
}
boxSize=
{
6
}
color=
"gray.500"
isLoading=
{
isLoading
}
/>
{
dataTo
&&
(
<
Address
ml=
{
2
}
>
<
AddressIcon
address=
{
dataTo
}
isLoading=
{
isLoading
}
/>
<
AddressLink
type=
"address"
hash=
{
dataTo
.
hash
}
alias=
{
dataTo
.
name
}
fontWeight=
"500"
ml=
{
2
}
truncation=
"constant"
fontSize=
"sm"
isLoading=
{
isLoading
}
/>
</
Address
>
)
}
</
Flex
>
<
Skeleton
isLoaded=
{
!
isLoading
}
mb=
{
2
}
fontSize=
"sm"
w=
"fit-content"
>
<
Text
as=
"span"
>
Value
{
appConfig
.
network
.
currency
.
symbol
}
</
Text
>
<
Text
as=
"span"
variant=
"secondary"
>
{
getValueWithUnit
(
tx
.
value
).
dp
(
5
).
toFormat
()
}
</
Text
>
</
Skeleton
>
<
Skeleton
isLoaded=
{
!
isLoading
}
fontSize=
"sm"
w=
"fit-content"
>
<
Text
as=
"span"
>
Fee
{
appConfig
.
network
.
currency
.
symbol
}
</
Text
>
<
Text
as=
"span"
variant=
"secondary"
>
{
getValueWithUnit
(
tx
.
fee
.
value
).
dp
(
5
).
toFormat
()
}
</
Text
>
</
Skeleton
>
</
Box
>
);
};
export
default
React
.
memo
(
LatestTxsItem
);
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