Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
B
Block Explorer UI
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
hive
Block Explorer UI
Commits
b09074a1
Commit
b09074a1
authored
4 months ago
by
Lukas
Browse files
Options
Downloads
Patches
Plain Diff
Create hook to use block id
parent
c0c28d04
No related branches found
Branches containing commit
No related tags found
2 merge requests
!481
bring recent develop changes to mater to match the backend
,
!463
Lbudginas/#340 add virtual ops block and transaction pages
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
hooks/common/useBlockId.tsx
+14
-0
14 additions, 0 deletions
hooks/common/useBlockId.tsx
pages/block/[blockId].tsx
+10
-22
10 additions, 22 deletions
pages/block/[blockId].tsx
with
24 additions
and
22 deletions
hooks/common/useBlockId.tsx
0 → 100644
+
14
−
0
View file @
b09074a1
import
{
useRouter
}
from
"
next/router
"
;
const
useBlockId
=
()
=>
{
const
router
=
useRouter
();
const
blockFromRouter
=
(
router
.
query
.
blockId
as
string
)?.
replaceAll
(
"
,
"
,
""
);
const
blockId
=
Number
.
isNaN
(
Number
(
blockFromRouter
))
?
blockFromRouter
:
Number
(
blockFromRouter
);
return
{
blockId
};
};
export
default
useBlockId
;
This diff is collapsed.
Click to expand it.
pages/block/[blockId].tsx
+
10
−
22
View file @
b09074a1
...
...
@@ -27,6 +27,7 @@ import BlockDetails from "@/components/block/BlockDetails";
import
ScrollTopButton
from
"
@/components/ScrollTopButton
"
;
import
OperationsTable
from
"
@/components/OperationsTable
"
;
import
CustomPagination
from
"
@/components/CustomPagination
"
;
import
useBlockId
from
"
@/hooks/common/useBlockId
"
;
interface
BlockSearchParams
{
blockId
?:
number
;
...
...
@@ -68,9 +69,7 @@ const scrollToTrxSection = (trxId?: string) => {
export
default
function
Block
()
{
const
router
=
useRouter
();
const
blockId
=
(
router
.
query
.
blockId
as
string
)?.
replaceAll
(
"
,
"
,
""
);
const
{
blockId
}
=
useBlockId
();
const
{
refetch
}
=
useHeadBlockNumber
();
const
[
blockDate
,
setBlockDate
]
=
useState
<
Date
>
();
...
...
@@ -89,27 +88,16 @@ export default function Block() {
},
[
blockId
,
refetch
]);
const
{
settings
}
=
useUserSettingsContext
();
const
{
operationsCountInBlock
,
countLoading
}
=
useOperationsCountInBlock
(
Number
.
isNaN
(
Number
(
blockId
))
?
blockId
:
Number
(
blockId
)
);
const
{
operationsCountInBlock
,
countLoading
}
=
useOperationsCountInBlock
(
blockId
)
;
const
{
blockDetails
,
loading
}
=
useBlockData
(
blockId
);
const
{
blockDetails
,
loading
}
=
useBlockData
(
Number
.
isNaN
(
Number
(
blockId
))
?
blockId
:
Number
(
blockId
)
);
const
{
rawBlockdata
}
=
useBlockRawData
(
Number
.
isNaN
(
Number
(
blockId
))
?
blockId
:
Number
(
blockId
),
enableRawVirtualOperations
);
const
{
rawBlockdata
}
=
useBlockRawData
(
blockId
,
enableRawVirtualOperations
);
const
{
blockOperations
:
totalOperations
,
trxLoading
:
totalLoading
}
=
useBlockOperations
(
Number
.
isNaN
(
Number
(
blockId
))
?
blockId
:
Number
(
blockId
),
undefined
,
paramsState
.
page
||
1
);
useBlockOperations
(
blockId
,
undefined
,
paramsState
.
page
||
1
);
const
{
blockError
,
blockOperations
,
trxLoading
}
=
useBlockOperations
(
Number
.
isNaN
(
Number
(
blockId
))
?
blockId
:
Number
(
blockId
)
,
blockId
,
paramsState
.
filters
?
convertBooleanArrayToIds
(
paramsState
.
filters
)
:
undefined
,
...
...
@@ -275,6 +263,8 @@ export default function Block() {
nonVirtualOperationsTypesCounters
}
blockDetails
=
{
blockDetails
}
enableRawVirtualOperations
=
{
enableRawVirtualOperations
}
handleEnableVirtualOperations
=
{
handleEnableVirtualOperations
}
/>
<
div
className
=
"fixed top-[calc(100vh-90px)] md:top-[calc(100vh-60px)] right-0 flex flex-col items-end justify-end px-3 md:px-12"
>
<
ScrollTopButton
/>
...
...
@@ -290,8 +280,6 @@ export default function Block() {
json
=
{
rawBlockdata
||
{}
}
className
=
"w-full md:w-[962px] mt-6 m-auto py-2 px-4 bg-theme dark:bg-theme rounded text-white text-xs break-words break-all"
isPrettyView
=
{
settings
.
prettyJsonView
}
enableRawVirtualOperations
=
{
enableRawVirtualOperations
}
handleEnableVirtualOperations
=
{
handleEnableVirtualOperations
}
/>
</
div
>
)
:
(
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment