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
b73dff19
Commit
b73dff19
authored
4 months ago
by
Lukas
Browse files
Options
Downloads
Patches
Plain Diff
Add include virtual operations toggle to block details section
parent
b09074a1
No related branches found
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
Pipeline
#109244
failed
4 months ago
Stage: build
Stage: test
Stage: test-report-aggregate
Stage: cleanup
Changes
2
Pipelines
3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
components/block/BlockDetails.tsx
+6
-0
6 additions, 0 deletions
components/block/BlockDetails.tsx
components/block/BlockPageOperationCount.tsx
+19
-0
19 additions, 0 deletions
components/block/BlockPageOperationCount.tsx
with
25 additions
and
0 deletions
components/block/BlockDetails.tsx
+
6
−
0
View file @
b73dff19
...
@@ -13,6 +13,8 @@ interface BlockDetailsProps {
...
@@ -13,6 +13,8 @@ interface BlockDetailsProps {
virtualOperationLength
:
number
;
virtualOperationLength
:
number
;
nonVirtualOperationLength
:
number
;
nonVirtualOperationLength
:
number
;
blockDetails
?:
Hive
.
BlockDetails
;
blockDetails
?:
Hive
.
BlockDetails
;
enableRawVirtualOperations
:
boolean
;
handleEnableVirtualOperations
:
()
=>
void
;
}
}
const
BlockDetails
:
React
.
FC
<
BlockDetailsProps
>
=
({
const
BlockDetails
:
React
.
FC
<
BlockDetailsProps
>
=
({
...
@@ -21,6 +23,8 @@ const BlockDetails: React.FC<BlockDetailsProps> = ({
...
@@ -21,6 +23,8 @@ const BlockDetails: React.FC<BlockDetailsProps> = ({
blockDetails
,
blockDetails
,
virtualOperationLength
,
virtualOperationLength
,
nonVirtualOperationLength
,
nonVirtualOperationLength
,
enableRawVirtualOperations
,
handleEnableVirtualOperations
,
})
=>
{
})
=>
{
return
(
return
(
<
Card
<
Card
...
@@ -85,6 +89,8 @@ const BlockDetails: React.FC<BlockDetailsProps> = ({
...
@@ -85,6 +89,8 @@ const BlockDetails: React.FC<BlockDetailsProps> = ({
nonVirtualOperationLength
=
{
nonVirtualOperationLength
}
nonVirtualOperationLength
=
{
nonVirtualOperationLength
}
virtualOperationsTypesCounters
=
{
virtualOperationsTypesCounters
}
virtualOperationsTypesCounters
=
{
virtualOperationsTypesCounters
}
nonVirtualOperationsTypesCounters
=
{
nonVirtualOperationsTypesCounters
}
nonVirtualOperationsTypesCounters
=
{
nonVirtualOperationsTypesCounters
}
enableRawVirtualOperations
=
{
enableRawVirtualOperations
}
handleEnableVirtualOperations
=
{
handleEnableVirtualOperations
}
/>
/>
</
CardContent
>
</
CardContent
>
</
Card
>
</
Card
>
...
...
This diff is collapsed.
Click to expand it.
components/block/BlockPageOperationCount.tsx
+
19
−
0
View file @
b73dff19
import
Explorer
from
"
@/types/Explorer
"
;
import
Explorer
from
"
@/types/Explorer
"
;
import
{
getOperationTypeForDisplay
}
from
"
@/utils/UI
"
;
import
{
getOperationTypeForDisplay
}
from
"
@/utils/UI
"
;
import
{
getOperationColor
}
from
"
../OperationsTable
"
;
import
{
getOperationColor
}
from
"
../OperationsTable
"
;
import
{
Toggle
}
from
"
../ui/toggle
"
;
import
{
useUserSettingsContext
}
from
"
@/contexts/UserSettingsContext
"
;
interface
BlockPageOperationCountProps
{
interface
BlockPageOperationCountProps
{
virtualOperationsTypesCounters
?:
Explorer
.
OperationCounter
[];
virtualOperationsTypesCounters
?:
Explorer
.
OperationCounter
[];
nonVirtualOperationsTypesCounters
?:
Explorer
.
OperationCounter
[];
nonVirtualOperationsTypesCounters
?:
Explorer
.
OperationCounter
[];
virtualOperationLength
:
number
;
virtualOperationLength
:
number
;
nonVirtualOperationLength
:
number
;
nonVirtualOperationLength
:
number
;
enableRawVirtualOperations
:
boolean
;
handleEnableVirtualOperations
:
()
=>
void
;
}
}
const
BlockPageOperationCount
:
React
.
FC
<
BlockPageOperationCountProps
>
=
({
const
BlockPageOperationCount
:
React
.
FC
<
BlockPageOperationCountProps
>
=
({
...
@@ -14,7 +18,12 @@ const BlockPageOperationCount: React.FC<BlockPageOperationCountProps> = ({
...
@@ -14,7 +18,12 @@ const BlockPageOperationCount: React.FC<BlockPageOperationCountProps> = ({
nonVirtualOperationLength
,
nonVirtualOperationLength
,
virtualOperationsTypesCounters
,
virtualOperationsTypesCounters
,
nonVirtualOperationsTypesCounters
,
nonVirtualOperationsTypesCounters
,
enableRawVirtualOperations
,
handleEnableVirtualOperations
,
})
=>
{
})
=>
{
const
{
settings
}
=
useUserSettingsContext
();
const
isRawView
=
settings
.
rawJsonView
||
settings
.
prettyJsonView
;
return
(
return
(
<
section
className
=
"w-full flex flex-col items-center text-md px-4 mb-2 md:mb-4"
>
<
section
className
=
"w-full flex flex-col items-center text-md px-4 mb-2 md:mb-4"
>
<
div
className
=
"w-full py-4"
>
<
div
className
=
"w-full py-4"
>
...
@@ -44,6 +53,16 @@ const BlockPageOperationCount: React.FC<BlockPageOperationCountProps> = ({
...
@@ -44,6 +53,16 @@ const BlockPageOperationCount: React.FC<BlockPageOperationCountProps> = ({
</
div
>
</
div
>
<
div
className
=
"my-5 flex justify-center"
>
<
div
className
=
"my-5 flex justify-center"
>
Virtual operations:
{
virtualOperationLength
}
Virtual operations:
{
virtualOperationLength
}
{
isRawView
&&
(
<
div
className
=
"flex justify-center items-center"
>
<
span
className
=
"ml-2"
>
<
Toggle
checked
=
{
enableRawVirtualOperations
}
onClick
=
{
handleEnableVirtualOperations
}
/>
</
span
>
</
div
>
)
}
</
div
>
</
div
>
<
div
className
=
"flex flex-wrap justify-center text-sm"
>
<
div
className
=
"flex flex-wrap justify-center text-sm"
>
{
virtualOperationsTypesCounters
&&
{
virtualOperationsTypesCounters
&&
...
...
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