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
d484b7b7
Commit
d484b7b7
authored
6 days ago
by
Lukas
Committed by
mcfarhat
6 days ago
Browse files
Options
Downloads
Patches
Plain Diff
Change cards order and add new card for hive chart
parent
64129136
No related branches found
No related tags found
1 merge request
!599
Lbudginas/#493 hive price chart
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
components/home/HeadBlockCard.tsx
+23
-8
23 additions, 8 deletions
components/home/HeadBlockCard.tsx
with
23 additions
and
8 deletions
components/home/HeadBlockCard.tsx
+
23
−
8
View file @
d484b7b7
...
...
@@ -17,6 +17,7 @@ import { getBlockDifference } from "./SyncInfo";
import
{
Toggle
}
from
"
../ui/toggle
"
;
import
{
Card
,
CardContent
,
CardHeader
}
from
"
../ui/card
"
;
import
CurrentBlockCard
from
"
./CurrentBlockCard
"
;
import
HeadBlockHiveChartCard
from
"
./HeadBlockHiveChartCard
"
;
interface
HeadBlockCardProps
{
headBlockCardData
?:
Explorer
.
HeadBlockCardData
|
any
;
...
...
@@ -61,6 +62,7 @@ const HeadBlockCard: React.FC<HeadBlockCardProps> = ({
timeCard
:
true
,
supplyCard
:
true
,
hiveParamsCard
:
true
,
hiveChart
:
false
,
});
const
{
settings
,
setSettings
}
=
useUserSettingsContext
();
...
...
@@ -84,6 +86,13 @@ const HeadBlockCard: React.FC<HeadBlockCardProps> = ({
});
};
const
handleHideHiveChart
=
()
=>
{
setHiddenPropertiesByCard
({
...
hiddenPropertiesByCard
,
hiveChart
:
!
hiddenPropertiesByCard
.
hiveChart
,
});
};
const
{
explorerBlockNumber
,
hiveBlockNumber
,
...
...
@@ -256,6 +265,14 @@ const HeadBlockCard: React.FC<HeadBlockCardProps> = ({
</
CardHeader
>
<
CardContent
className
=
"p-4 space-y-4"
>
{
/* Last Block Information */
}
<
CurrentBlockCard
blockDetails
=
{
blockDetails
}
transactionCount
=
{
transactionCount
}
opcount
=
{
opcount
}
timeDifferenceInSeconds
=
{
timeDifferenceInSeconds
}
liveBlockNumber
=
{
liveBlockNumber
}
/>
{
/* Other Information*/
}
<
div
className
=
"data-box"
>
<
div
>
...
...
@@ -265,16 +282,14 @@ const HeadBlockCard: React.FC<HeadBlockCardProps> = ({
<
span
>
Vests To Hive Ratio:
</
span
>
{
liveVestsToHiveRatio
}
VESTS
</
div
>
</
div
>
{
/* Last Block Information */
}
<
CurrentBlockCard
blockDetails
=
{
blockDetails
}
transactionCount
=
{
transactionCount
}
opcount
=
{
opcount
}
timeDifferenceInSeconds
=
{
timeDifferenceInSeconds
}
liveBlockNumber
=
{
liveBlockNumber
}
/>
<
div
>
<
HeadBlockHiveChartCard
header
=
"Hive Price Chart"
isParamsHidden
=
{
hiddenPropertiesByCard
.
hiveChart
}
handleHideParams
=
{
handleHideHiveChart
}
isLoading
=
{
isBlockCardLoading
}
/>
<
HeadBlockPropertyCard
parameters
=
{
fundAndSupplyParameters
}
header
=
"Fund and Supply"
...
...
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