cosmos-explorer/src/views/Summary.vue
2021-10-11 15:10:29 +08:00

244 lines
6.8 KiB
Vue

<template>
<div>
<b-alert
variant="danger"
:show="syncing"
>
<div class="alert-body">
<span>No new block is produced since <strong>{{ latestTime }}</strong> </span>
</div>
</b-alert>
<b-row>
<b-col>
<summary-parmeters-component
:data="chain"
/>
</b-col>
</b-row>
<b-row v-if="marketChartData">
<b-col>
<b-card>
<summary-price-chart
:chart-data="marketChartData"
:height="150"
:min-height="150"
/>
</b-card>
</b-col>
</b-row>
<b-row>
<b-col>
<summary-assets-component />
</b-col>
</b-row>
<b-row>
<b-col>
<summary-parmeters-component :data="mint" />
</b-col>
</b-row>
<b-row>
<b-col>
<summary-parmeters-component :data="staking" />
</b-col>
</b-row>
<b-row v-if="gov.items.length > 0">
<b-col>
<summary-parmeters-component :data="gov" />
</b-col>
</b-row>
<b-row>
<b-col>
<summary-parmeters-component :data="distribution" />
</b-col>
</b-row>
<b-row>
<b-col>
<summary-parmeters-component :data="slasing" />
</b-col>
</b-row>
</div>
</template>
<script>
import {
BRow, BCol, BAlert, BCard,
} from 'bootstrap-vue'
import {
formatNumber, formatTokenAmount, getUserCurrency, isToken, percent, timeIn, toDay, toDuration, tokenFormatter,
} from '@/libs/data'
import SummaryParmetersComponent from './SummaryParmetersComponent.vue'
import SummaryAssetsComponent from './SummaryAssetsComponent.vue'
import SummaryPriceChart from './SummaryPriceChart.vue'
export default {
components: {
BRow,
BCol,
BAlert,
BCard,
SummaryParmetersComponent,
SummaryAssetsComponent,
SummaryPriceChart,
},
data() {
return {
syncing: false,
latestTime: '',
marketData: null,
chain: {
title: '',
class: 'border-primary',
items: [
{ subtitle: 'height', icon: 'BoxIcon', color: 'light-success' },
{ subtitle: 'bonded_and_supply', icon: 'DollarSignIcon', color: 'light-danger' },
{ subtitle: 'bonded_ratio', icon: 'PercentIcon', color: 'light-warning' },
{ subtitle: 'inflation', icon: 'TrendingUpIcon', color: 'light-primary' },
],
},
staking: {
title: 'Staking Parameters',
items: [],
},
distribution: {
title: 'Distribution Parameters',
items: [],
},
slasing: {
title: 'Slasing Parameters',
items: null,
},
mint: {
title: 'Mint Parameters',
items: null,
},
gov: {
title: 'Governance Parameters',
items: [],
},
}
},
computed: {
marketChartData() {
if (this.marketData && this.marketData.prices) {
const labels = this.marketData.prices.map(x => x[0])
const data = this.marketData.prices.map(x => x[1])
return {
labels,
datasets: [
{
label: `Price (${getUserCurrency().toUpperCase()})`,
data,
backgroundColor: 'rgba(54, 162, 235, 0.2)',
borderColor: 'rgba(54, 162, 235, 1)',
borderWidth: 1,
pointStyle: 'dash',
barThickness: 15,
},
],
}
}
return null
},
},
created() {
this.$http.getLatestBlock().then(res => {
const height = this.chain.items.findIndex(x => x.subtitle === 'height')
this.$set(this.chain, 'title', `Chain ID: ${res.block.header.chain_id}`)
this.$set(this.chain.items[height], 'title', res.block.header.height)
if (timeIn(res.block.header.time, 3, 'm')) {
this.syncing = true
} else {
this.syncing = false
}
this.latestTime = toDay(res.block.header.time, 'long')
})
this.$http.getMarketChart().then(res => {
this.marketData = res
})
this.$http.getStakingParameters().then(res => {
this.staking = this.normalize(res, 'Staking Parameters')
Promise.all([this.$http.getStakingPool(), this.$http.getBankTotal(res.bond_denom)])
.then(pool => {
const bondedAndSupply = this.chain.items.findIndex(x => x.subtitle === 'bonded_and_supply')
this.$set(this.chain.items[bondedAndSupply], 'title', `${formatNumber(formatTokenAmount(pool[0].bondedToken, 2, res.bond_denom), true, 0)}/${formatNumber(formatTokenAmount(pool[1].amount, 2, res.bond_denom), true, 0)}`)
const bondedRatio = this.chain.items.findIndex(x => x.subtitle === 'bonded_ratio')
this.$set(this.chain.items[bondedRatio], 'title', `${percent(pool[0].bondedToken / pool[1].amount)}%`)
})
})
this.$http.getSlashingParameters().then(res => {
this.slasing = this.normalize(res, 'Slashing Parameters')
})
const conf = this.$http.getSelectedConfig()
if (conf.excludes && conf.excludes.indexOf('mint') > -1) {
this.mint = null
} else {
this.$http.getMintingInflation().then(res => {
const chainIndex = this.chain.items.findIndex(x => x.subtitle === 'inflation')
this.$set(this.chain.items[chainIndex], 'title', `${percent(res)}%`)
})
this.$http.getMintParameters().then(res => {
this.mint = this.normalize(res, 'Minting Parameters')
})
}
this.$http.getDistributionParameters().then(res => {
this.distribution = this.normalize(res, 'Distribution Parameters')
})
if (conf.excludes && conf.excludes.indexOf('governance') > -1) {
this.gov.items = []
} else {
Promise.all([
this.$http.getGovernanceParameterDeposit(),
this.$http.getGovernanceParameterTallying(),
this.$http.getGovernanceParameterVoting(),
]).then(data => {
let items = []
data.forEach(item => {
const values = this.normalize(item, '').items
items = items.concat(values)
})
this.gov.items = items
this.$set(this.gov, 'items', items)
})
}
},
methods: {
normalize(data, title) {
if (!data) return null
const items = this.makeItems(data)
return {
title,
items,
}
},
makeItems(data) {
return Object.keys(data).map(k => {
if (isToken(data[k])) {
return { title: tokenFormatter(data[k]), subtitle: k }
}
if (typeof data[k] === 'boolean') {
return { title: data[k], subtitle: k }
}
const d = Number(data[k])
if (d < 1.01) {
return { title: `${percent(d)}%`, subtitle: k }
}
if (d > 1000000000) {
return { title: `${toDuration(d / 1000000)}`, subtitle: k }
}
return { title: data[k], subtitle: k }
})
},
},
}
</script>
<style>
</style>