-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathBlockDetails.vue
187 lines (163 loc) · 6.95 KB
/
BlockDetails.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
<!--
-
- Hedera Mirror Node Explorer
-
- Copyright (C) 2021 - 2024 Hedera Hashgraph, LLC
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
-
-->
<!-- --------------------------------------------------------------------------------------------------------------- -->
<!-- TEMPLATE -->
<!-- --------------------------------------------------------------------------------------------------------------- -->
<template>
<PageFrameV2 page-title="Block Details">
<template v-if="notification" #banner>
<NotificationBanner :message="notification"/>
</template>
<DashboardCardV2 collapsible-key="blockDetails">
<template #title>
Block {{ block?.number?.toString() ?? "" }}
</template>
<template #right-control>
<ButtonView
id="prev-block-button"
:enabled="!disablePreviousButton"
:size="ButtonSize.small"
@action="handlePreviousBlock"
>
<ArrowLeft :size="18" class="block-navigation-button"/>
<span class="block-navigation-button">{{ isSmallScreen ? 'PREV. BLOCK' : 'PREV.' }}</span>
</ButtonView>
<ButtonView
id="next-block-button"
:enabled="!disableNextButton"
:size="ButtonSize.small"
@action="handleNextBlock"
>
<span class="block-navigation-button">{{ isSmallScreen ? 'NEXT BLOCK' : 'NEXT' }}</span>
<ArrowRight :size="18" class="block-navigation-button"/>
</ButtonView>
</template>
<template #content>
<Property id="count" full-width>
<template #name>No. Transactions</template>
<template v-slot:value>
<PlainAmount :amount="block?.count"/>
</template>
</Property>
<Property id="blockHash" full-width>
<template v-slot:name>Hash</template>
<template v-slot:value>
<KeyValue :key-bytes="block?.hash" :show-none="true" key-type="SHA384"/>
</template>
</Property>
<Property id="fromTimestamp" full-width>
<template v-slot:name>From Timestamp</template>
<template v-slot:value>
<TimestampValue :show-none="true" :timestamp="block?.timestamp?.from"/>
</template>
</Property>
<Property id="toTimestamp" full-width>
<template v-slot:name>To Timestamp</template>
<template v-slot:value>
<TimestampValue :show-none="true" :timestamp="block?.timestamp?.to ?? undefined"/>
</template>
</Property>
<Property id="gasUsed" full-width>
<template v-slot:name>Gas Used</template>
<template v-slot:value>
<PlainAmount :amount="block?.gas_used"/>
</template>
</Property>
<Property id="recordFileName" full-width>
<template v-slot:name>Record File Name</template>
<template v-slot:value>
<StringValue :string-value="block?.name"/>
</template>
</Property>
</template>
</DashboardCardV2>
<DashboardCardV2 id="blockTransactions" collapsible-key="blockTransactions">
<template #title>
Block Transactions
</template>
<template #content>
<BlockTransactionTable :transactions="transactions"/>
</template>
</DashboardCardV2>
<MirrorLink :network="props.network" entityUrl="blocks" :loc="props.blockHon"/>
</PageFrameV2>
</template>
<!-- --------------------------------------------------------------------------------------------------------------- -->
<!-- SCRIPT -->
<!-- --------------------------------------------------------------------------------------------------------------- -->
<script setup lang="ts">
import {computed, inject, onBeforeUnmount, onMounted, ref, watch} from 'vue';
import {BlockLocParser} from "@/utils/parser/BlockLocParser";
import NotificationBanner from "@/components/NotificationBanner.vue";
import Property from "@/components/Property.vue";
import TimestampValue from "@/components/values/TimestampValue.vue";
import StringValue from "@/components/values/StringValue.vue";
import KeyValue from "@/components/values/KeyValue.vue";
import PageFrameV2 from "@/components/page/PageFrameV2.vue";
import PlainAmount from "@/components/values/PlainAmount.vue";
import BlockTransactionTable from "@/components/block/BlockTransactionTable.vue";
import {TransactionGroupByBlockCache} from "@/utils/cache/TransactionGroupByBlockCache";
import {routeManager} from "@/router";
import MirrorLink from "@/components/MirrorLink.vue";
import DashboardCardV2 from "@/components/DashboardCardV2.vue";
import ButtonView from "@/elements/ButtonView.vue";
import {ArrowLeft, ArrowRight} from 'lucide-vue-next';
import {ButtonSize} from "@/dialogs/core/DialogUtils.ts";
const props = defineProps({
blockHon: String,
network: String
})
const nullHash = "0x000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"
const isSmallScreen = inject('isSmallScreen', true)
//
// block
//
const blockLocParser = new BlockLocParser(computed(() => props.blockHon ?? null))
onMounted(() => blockLocParser.mount())
onBeforeUnmount(() => blockLocParser.unmount())
//
// transactions
//
const transactionsLookup = TransactionGroupByBlockCache.instance.makeLookup(blockLocParser.blockNumber)
onMounted(() => transactionsLookup.mount())
onBeforeUnmount(() => transactionsLookup.unmount())
const transactions = computed(() => transactionsLookup.entity.value ?? [])
const disablePreviousButton = ref(true)
const disableNextButton = ref(true)
watch(blockLocParser.block, () => {
disablePreviousButton.value = (blockLocParser.errorNotification.value != null) || (blockLocParser.block.value?.previous_hash === nullHash)
disableNextButton.value = blockLocParser.errorNotification.value != null
})
const handlePreviousBlock = () => {
const currentBlockNumber = blockLocParser.blockNumber.value ?? 0
routeManager.routeToBlock(currentBlockNumber - 1)
}
const handleNextBlock = () => {
const currentBlockNumber = blockLocParser.blockNumber.value ?? 0
routeManager.routeToBlock(currentBlockNumber + 1)
}
const block = blockLocParser.block
const notification = blockLocParser.errorNotification
</script>
<style scoped>
.block-navigation-button {
color: var(--text-primary);
}
</style>