feat: dashboard chain summary

This commit is contained in:
alisa 2023-05-05 00:20:38 +08:00
parent aac687cd0d
commit 7bda8be6f5
3 changed files with 218 additions and 208 deletions

View File

@ -1,6 +1,7 @@
<script lang="ts" setup>
import { getLogo, useDashboard, } from '@/stores/useDashboard';
import { computed } from 'vue';
import { Icon } from '@iconify/vue'
const props = defineProps({
name: {
@ -14,33 +15,18 @@ const conf = computed(() => dashboardStore.chains[props.name] || {})
</script>
<template>
<VCard outlined class="p-1">
<VList class="card-list">
<VListItem :to="`/${name}`">
<template #prepend>
<VAvatar rounded size="45" variant="tonal" class="me-3">
<VImg :src="conf.logo" height="22" />
</VAvatar>
</template>
<VListItemTitle class="font-weight-semibold text-sm mb-1">
{{ conf?.prettyName || props.name }}
</VListItemTitle>
<VListItemSubtitle class="text-xs">
{{ conf?.chainId || '' }}
</VListItemSubtitle>
<template #append>
<VListItemAction @click="(e: Event) => { e.stopPropagation() }">
<VCheckbox v-model="dashboardStore.favorite" true-icon="mdi-star" false-icon="mdi-star" color="warning"
:value="props.name" />
<VTooltip activator="parent" location="top">
{{ $t('index.add_to_favorite') }}
</VTooltip>
</VListItemAction>
</template>
</VListItem>
</VList>
</VCard>
<RouterLink :to="`/${name}`" class="bg-base-100 rounded shadow flex items-center px-3 py-3 cursor-pointer">
<div class="w-8 h-8 rounded-full overflow-hidden">
<img :src="conf.logo" />
</div>
<div class="font-semibold ml-4 text-base flex-1">
{{ conf?.prettyName || props.name }}
</div>
<div
@click="(e: Event) => { e.stopPropagation(); e.preventDefault(); dashboardStore.favoriteMap[props.name] = !dashboardStore?.favoriteMap?.[props.name] }"
class="pl-4 text-xl"
:class="{ 'text-warning': dashboardStore?.favoriteMap?.[props.name], 'text-gray-300 dark:text-gray-500': !dashboardStore?.favoriteMap?.[props.name] }">
<Icon icon="mdi-star" />
</div>
</RouterLink>
</template>

View File

@ -29,7 +29,7 @@ const chain = useBlockchain()
<h1 class="text-primary text-3xl md:text-6xl font-bold mr-2">
Ping dashboard
</h1>
<div class="badge badge-info badge-outline mt-1 text-sm md:mt-5">Beta</div>
<div class="badge badge-info badge-outline mt-1 text-sm md:mt-8">Beta</div>
</div>
<div class="text-center text-base">
<p class="mb-1">

View File

@ -1,8 +1,7 @@
import { defineStore } from "pinia";
import { get } from '../libs/http'
import type { Chain, Asset } from '@ping-pub/chain-registry-client/dist/types'
import { useBlockchain } from "./useBlockchain";
import { defineStore } from 'pinia';
import { get } from '../libs/http';
import type { Chain, Asset } from '@ping-pub/chain-registry-client/dist/types';
import { useBlockchain } from './useBlockchain';
export enum EndpointType {
rpc,
@ -12,253 +11,278 @@ export enum EndpointType {
}
export interface Endpoint {
type?: EndpointType,
address: string,
provider: string
type?: EndpointType;
address: string;
provider: string;
}
// Chain config structure of cosmos.directory
export interface DirectoryChain {
assets: Asset[],
bech32_prefix: string,
assets: Asset[];
bech32_prefix: string;
best_apis: {
rest: Endpoint[]
rpc: Endpoint[]
},
chain_id: string,
chain_name: string,
pretty_name: string,
coingecko_id: string,
cosmwasm_enabled: boolean,
decimals: number,
denom: string,
display: string,
explorers: {
name?: string | undefined;
kind?: string | undefined;
url?: string | undefined;
tx_page?: string | undefined;
account_page?: string | undefined;
}[] | undefined,
height: number,
image: string,
name: string,
network_type: string,
symbol: string,
rest: Endpoint[];
rpc: Endpoint[];
};
chain_id: string;
chain_name: string;
pretty_name: string;
coingecko_id: string;
cosmwasm_enabled: boolean;
decimals: number;
denom: string;
display: string;
explorers:
| {
name?: string | undefined;
kind?: string | undefined;
url?: string | undefined;
tx_page?: string | undefined;
account_page?: string | undefined;
}[]
| undefined;
height: number;
image: string;
name: string;
network_type: string;
symbol: string;
versions?: {
application_version: string,
cosmos_sdk_version: string,
tendermint_version: string,
}
application_version: string;
cosmos_sdk_version: string;
tendermint_version: string;
};
}
export interface ChainConfig {
chainName: string,
prettyName: string,
bech32Prefix: string,
chainId: string,
assets: Asset[],
themeColor?: string,
chainName: string;
prettyName: string;
bech32Prefix: string;
chainId: string;
assets: Asset[];
themeColor?: string;
endpoints: {
rest?: Endpoint[]
rpc?: Endpoint[]
grpc?: Endpoint[]
},
logo: string,
rest?: Endpoint[];
rpc?: Endpoint[];
grpc?: Endpoint[];
};
logo: string;
versions: {
application?: string,
cosmosSdk?: string,
tendermint?: string,
},
exponent: string,
excludes?: string,
application?: string;
cosmosSdk?: string;
tendermint?: string;
};
exponent: string;
excludes?: string;
}
export interface LocalConfig {
addr_prefix: string,
alias: string,
api: string[] | Endpoint[],
assets: {base: string, coingecko_id: string, exponent: string, logo: string, symbol: string}[]
chain_name: string,
coin_type: string
logo: string,
min_tx_fee: string,
rpc: string[] | Endpoint[],
sdk_version: string,
addr_prefix: string;
alias: string;
api: string[] | Endpoint[];
assets: {
base: string;
coingecko_id: string;
exponent: string;
logo: string;
symbol: string;
}[];
chain_name: string;
coin_type: string;
logo: string;
min_tx_fee: string;
rpc: string[] | Endpoint[];
sdk_version: string;
}
function apiConverter(api: any[]){
if(!api) return []
const array = typeof api === 'string'? [api] : api
return array.map(x => {
if(typeof x === 'string') {
const parts = String(x).split('.')
function apiConverter(api: any[]) {
if (!api) return [];
const array = typeof api === 'string' ? [api] : api;
return array.map((x) => {
if (typeof x === 'string') {
const parts = String(x).split('.');
return {
address: x,
provider: parts.length >=2 ? parts[parts.length-2] : x
}
}else{
return x as Endpoint
provider: parts.length >= 2 ? parts[parts.length - 2] : x,
};
} else {
return x as Endpoint;
}
})
});
}
export function fromLocal(lc: LocalConfig ): ChainConfig {
const conf = {} as ChainConfig
conf.assets = lc.assets.map(x => ({
name: x.base,
base: x.base,
display: x.symbol,
symbol: x.symbol,
logo_URIs: { svg: x.logo },
export function fromLocal(lc: LocalConfig): ChainConfig {
const conf = {} as ChainConfig;
conf.assets = lc.assets.map((x) => ({
name: x.base,
base: x.base,
display: x.symbol,
symbol: x.symbol,
logo_URIs: { svg: x.logo },
coingecko_id: x.coingecko_id,
exponent: x.exponent,
denom_units: [{denom: x.base, exponent: 0}, {denom: x.symbol.toLowerCase(), exponent: Number(x.exponent)}]
}))
conf.bech32Prefix = lc.addr_prefix
conf.chainName = lc.chain_name
conf.prettyName = lc.chain_name
exponent: x.exponent,
denom_units: [
{ denom: x.base, exponent: 0 },
{ denom: x.symbol.toLowerCase(), exponent: Number(x.exponent) },
],
}));
conf.bech32Prefix = lc.addr_prefix;
conf.chainName = lc.chain_name;
conf.prettyName = lc.chain_name;
conf.endpoints = {
rest: apiConverter(lc.api),
rpc: apiConverter(lc.rpc),
}
conf.logo = lc.logo
return conf
};
conf.logo = lc.logo;
return conf;
}
export function fromDirectory(source: DirectoryChain): ChainConfig {
const conf = {} as ChainConfig
conf.assets = source.assets,
conf.bech32Prefix = source.bech32_prefix,
conf.chainId = source.chain_id,
conf.chainName = source.chain_name,
conf.prettyName = source.pretty_name,
conf.versions = {
application: source.versions?.application_version || '',
cosmosSdk: source.versions?.cosmos_sdk_version || '',
tendermint: source.versions?.tendermint_version || '',
},
conf.logo = pathConvert(source.image)
conf.endpoints = source.best_apis
return conf
const conf = {} as ChainConfig;
(conf.assets = source.assets),
(conf.bech32Prefix = source.bech32_prefix),
(conf.chainId = source.chain_id),
(conf.chainName = source.chain_name),
(conf.prettyName = source.pretty_name),
(conf.versions = {
application: source.versions?.application_version || '',
cosmosSdk: source.versions?.cosmos_sdk_version || '',
tendermint: source.versions?.tendermint_version || '',
}),
(conf.logo = pathConvert(source.image));
conf.endpoints = source.best_apis;
return conf;
}
function pathConvert(path: string | undefined) {
if(path) {
path = path.replace('https://raw.githubusercontent.com/cosmos/chain-registry/master', 'https://registry.ping.pub')
if (path) {
path = path.replace(
'https://raw.githubusercontent.com/cosmos/chain-registry/master',
'https://registry.ping.pub'
);
}
return path || ''
return path || '';
}
export function getLogo(conf: {
svg?: string,
png?: string,
jpeg?: string,
} | undefined) {
if(conf) {
return pathConvert(conf.svg || conf.png || conf.jpeg)
export function getLogo(
conf:
| {
svg?: string;
png?: string;
jpeg?: string;
}
| undefined
) {
if (conf) {
return pathConvert(conf.svg || conf.png || conf.jpeg);
}
return undefined
return undefined;
}
function createChainFromDirectory(source: DirectoryChain) : Chain {
const conf: Chain = {} as Chain;
conf.apis = source.best_apis
conf.bech32_prefix = source.bech32_prefix
conf.chain_id = source.chain_id
conf.chain_name = source.chain_name
conf.explorers = source.explorers
conf.pretty_name = source.pretty_name
if(source.versions) {
function createChainFromDirectory(source: DirectoryChain): Chain {
const conf: Chain = {} as Chain;
conf.apis = source.best_apis;
conf.bech32_prefix = source.bech32_prefix;
conf.chain_id = source.chain_id;
conf.chain_name = source.chain_name;
conf.explorers = source.explorers;
conf.pretty_name = source.pretty_name;
if (source.versions) {
conf.codebase = {
recommended_version: source.versions.application_version,
cosmos_sdk_version: source.versions.cosmos_sdk_version,
tendermint_version: source.versions.tendermint_version,
}
};
}
if(source.image) {
if (source.image) {
conf.logo_URIs = {
svg: source.image
}
svg: source.image,
};
}
return conf
return conf;
}
export enum LoadingStatus {
Empty,
Loading,
Loaded,
Empty,
Loading,
Loaded,
}
export enum NetworkType {
Mainnet,
Testnet,
}
export enum ConfigSource {
MainnetCosmosDirectory = "https://chains.cosmos.directory",
TestnetCosmosDirectory = "https://chains.testcosmos.directory",
MainnetCosmosDirectory = 'https://chains.cosmos.directory',
TestnetCosmosDirectory = 'https://chains.testcosmos.directory',
Local = 'local',
}
export const useDashboard = defineStore('dashboard', {
state: () => {
const fav = JSON.parse(localStorage.getItem('favorite') || '["cosmoshub", "osmosis"]')
return {
status: LoadingStatus.Empty,
source: ConfigSource.MainnetCosmosDirectory,
networkType: NetworkType.Mainnet,
favorite: fav as string[],
chains: {} as Record<string, ChainConfig>,
}
const fav = JSON.parse(
localStorage.getItem('favorite') || '["cosmoshub", "osmosis"]'
);
const favMap = JSON.parse(
localStorage.getItem('favoriteMap') ||
'{"cosmoshub":true, "osmosis":true}'
);
return {
status: LoadingStatus.Empty,
source: ConfigSource.MainnetCosmosDirectory,
networkType: NetworkType.Mainnet,
favorite: fav as string[],
favoriteMap: favMap as Record<string, boolean>,
chains: {} as Record<string, ChainConfig>,
};
},
getters: {
length() : number {
return Object.keys(this.chains).length
}
length(): number {
return Object.keys(this.chains).length;
},
},
actions: {
initial() {
this.loadingFromLocal()
this.loadingFromLocal();
// this.loadingFromRegistry()
},
async loadingFromRegistry() {
if(this.status === LoadingStatus.Empty) {
this.status = LoadingStatus.Loading
get(this.source).then((res)=> {
res.chains.forEach(( x: DirectoryChain ) => {
this.chains[x.chain_name] = fromDirectory(x)
});
this.status = LoadingStatus.Loaded
})
if (this.status === LoadingStatus.Empty) {
this.status = LoadingStatus.Loading;
get(this.source).then((res) => {
res.chains.forEach((x: DirectoryChain) => {
this.chains[x.chain_name] = fromDirectory(x);
});
this.status = LoadingStatus.Loaded;
});
}
},
async loadingFromLocal() {
const source: Record<string, LocalConfig> = this.networkType === NetworkType.Mainnet
? import.meta.glob('../../chains/mainnet/*.json', {eager: true})
: import.meta.glob('../../chains/testnet/*.json', {eager: true})
Object.values<LocalConfig>(source).forEach((x: LocalConfig) => {
this.chains[x.chain_name] = fromLocal(x)
})
this.setupDefault()
this.status = LoadingStatus.Loaded
const source: Record<string, LocalConfig> =
this.networkType === NetworkType.Mainnet
? import.meta.glob('../../chains/mainnet/*.json', { eager: true })
: import.meta.glob('../../chains/testnet/*.json', { eager: true });
Object.values<LocalConfig>(source).forEach((x: LocalConfig) => {
this.chains[x.chain_name] = fromLocal(x);
});
this.setupDefault();
this.status = LoadingStatus.Loaded;
},
setupDefault() {
if(this.length > 0) {
const blockchain = useBlockchain()
for(let i=0; i < this.favorite.length; i++) {
if(!blockchain.chainName && this.chains[this.favorite[i]]) {
blockchain.setCurrent(this.favorite[i])
if (this.length > 0) {
const blockchain = useBlockchain();
for (let i = 0; i < this.favorite.length; i++) {
if (!blockchain.chainName && this.chains[this.favorite[i]]) {
blockchain.setCurrent(this.favorite[i]);
}
}
if(!blockchain.chainName) {
const [first] = Object.keys(this.chains)
blockchain.setCurrent(first)
if (!blockchain.chainName) {
const [first] = Object.keys(this.chains);
blockchain.setCurrent(first);
}
}
},
setConfigSource(newSource: ConfigSource) {
this.source = newSource
this.initial()
}
}
})
this.source = newSource;
this.initial();
},
},
});