cosmos-explorer/src/router/index.js
2022-05-12 10:03:10 +08:00

418 lines
8.7 KiB
JavaScript

import Vue from 'vue'
import VueRouter from 'vue-router'
import store from '../store'
Vue.use(VueRouter)
const router = new VueRouter({
mode: 'history',
base: process.env.BASE_URL,
scrollBehavior() {
return { x: 0, y: 0 }
},
routes: [
{
path: '/',
name: 'home',
component: () => import('@/views/Home.vue'),
meta: {
layout: 'full',
pageTitle: 'Home',
breadcrumb: [
{
text: 'Home',
active: true,
},
],
},
},
{
path: '/coffee',
name: 'coffee',
component: () => import('@core/layouts/components/Coffee.vue'),
meta: {
pageTitle: 'Donation',
breadcrumb: [
{
text: 'Buy me a cup of coffee!',
active: false,
},
],
},
},
{
path: '/wallet/accounts',
alias: '/wallet',
name: 'accounts',
component: () => import('@/views/WalletAccounts.vue'),
meta: {
pageTitle: 'Accounts',
breadcrumb: [
{
text: 'Accounts',
active: true,
},
],
},
},
{
path: '/wallet/import',
name: 'accounts-import',
component: () => import('@/views/WalletAccountImportAddress.vue'),
meta: {
pageTitle: 'Accounts',
breadcrumb: [
{
text: 'Import',
active: true,
},
],
},
},
{
path: '/wallet/delegations',
name: 'delegations',
component: () => import('@/views/WalletDelegations.vue'),
meta: {
pageTitle: 'My Delegations',
breadcrumb: [
{
text: 'Wallet',
},
{
text: 'My Delegations',
},
],
},
},
{
path: '/wallet/transactions',
name: 'mytransactions',
component: () => import('@/views/WalletTransactions.vue'),
meta: {
pageTitle: 'Transaction History',
breadcrumb: [
{
text: 'Wallet',
},
{
text: 'Transaction History',
},
],
},
},
{
path: '/wallet/votes',
name: 'myVotes',
component: () => import('@/views/WalletVotes.vue'),
meta: {
pageTitle: 'My Votes',
breadcrumb: [
{
text: 'Wallet',
},
{
text: 'My Votes',
},
],
},
},
// chain modules
{
path: '/:chain/',
name: 'info',
alias: '/:chain',
component: () => import('@/views/Summary.vue'),
meta: {
pageTitle: 'Home',
breadcrumb: [
{
text: 'Home',
active: true,
},
],
},
},
{
path: '/:chain/statesync',
name: 'statesync',
component: () => import('@/views/StateSync.vue'),
meta: {
pageTitle: 'State Sync',
breadcrumb: [
{
text: 'State Synchronization',
active: true,
},
],
},
},
{
path: '/:chain/uptime',
name: 'uptime',
component: () => import('@/views/Uptime.vue'),
meta: {
pageTitle: 'Uptime',
breadcrumb: [
{
text: 'Uptime',
active: true,
},
],
},
},
{
path: '/:chain/uptime/my',
name: 'myuptime',
component: () => import('@/views/UptimeMyValidators.vue'),
meta: {
pageTitle: 'Uptime',
breadcrumb: [
{
text: 'Uptime',
active: true,
},
{
text: 'My Validators',
active: true,
},
],
},
},
{
path: '/:chain/account/:address',
name: 'chain-account',
component: () => import('@/views/WalletAccountDetail.vue'),
meta: {
pageTitle: 'Accounts',
breadcrumb: [
{
text: 'Accounts',
active: true,
},
{
text: 'Detail',
active: true,
},
],
},
},
{
path: '/:chain/staking',
name: 'staking',
component: () => import('@/views/Staking.vue'),
meta: {
pageTitle: 'Staking',
breadcrumb: [
{
text: 'Staking',
active: true,
},
],
},
},
{
path: '/:chain/staking/:address',
name: 'staking-valiator',
component: () => import('@/views/StakingValidator.vue'),
meta: {
pageTitle: 'Staking Validator',
breadcrumb: [
{
text: 'Staking',
active: true,
},
{
text: 'Validator',
active: true,
},
],
},
},
{
path: '/:chain/gov',
name: 'governance',
component: () => import('@/views/Governance.vue'),
meta: {
pageTitle: 'Governance',
breadcrumb: [
{
text: 'Governance',
active: true,
},
{
text: 'Proposals',
active: true,
},
],
},
},
{
path: '/:chain/gov/:proposalid',
name: 'proposal',
component: () => import('@/views/GovernanceProposalView.vue'),
meta: {
pageTitle: 'Governance',
breadcrumb: [
{
text: 'Governance',
active: true,
},
{
text: 'Proposal Detail',
active: true,
},
],
},
},
{
path: '/:chain/blocks',
name: 'blocks',
component: () => import('@/views/Blocks.vue'),
meta: {
pageTitle: 'Blocks',
breadcrumb: [
{
text: 'Blocks',
active: true,
},
],
},
},
{
path: '/:chain/blocks/:height',
name: 'block',
component: () => import('@/views/Block.vue'),
meta: {
pageTitle: 'Block',
breadcrumb: [
{
text: 'Blocks',
active: true,
},
{
text: 'Block',
active: true,
},
],
},
},
{
path: '/:chain/tx/:hash',
name: 'transaction',
component: () => import('@/views/Transaction.vue'),
meta: {
pageTitle: 'Transaction',
breadcrumb: [
{
text: 'Transaction',
active: true,
},
],
},
},
// custom modules for specified chains
// 1. cosmos
{
path: '/:chain/cosmos/trade',
name: 'gravity',
component: () => import('@/views/GravityPool.vue'),
meta: {
pageTitle: 'Gravity Pools',
breadcrumb: [
{
text: 'Gravity',
active: true,
},
],
},
},
// 2. OSMOSIS
{
path: '/:chain/osmosis/trade/:poolid?',
name: 'osmosis-trade',
component: () => import('@/views/OsmosisTrade.vue'),
meta: {
pageTitle: 'Classic Trade',
breadcrumb: [
{
text: 'DEX',
active: true,
},
{
text: 'Classic Trade',
active: true,
},
],
},
},
// common modules
{
path: '/tools/consensus-states',
name: 'consensus',
component: () => import('@/views/ConsensusStates.vue'),
meta: {
layout: 'full',
},
},
{
path: '/error/error-404',
name: 'error-404',
component: () => import('@/views/error/Error404.vue'),
meta: {
layout: 'full',
},
},
{
path: '/error/chain-not-exists',
name: 'chain-404',
component: () => import('@/views/error/ChainNotExist.vue'),
meta: {
layout: 'full',
},
},
{
path: '/index.php',
redirect: '/',
},
{
path: '*',
redirect: '/error/error-404',
},
],
})
router.beforeEach((to, from, next) => {
const c = to.params.chain
if (c) {
store.commit('select', { chain_name: c })
store.dispatch('chains/getAllIBCDenoms', Vue.prototype)
}
const config = JSON.parse(localStorage.getItem('chains'))
// const has = Object.keys(config).findIndex(i => i === c)
if (!config || Object.keys(config).findIndex(i => i === c) > -1) {
next()
} else if (c) {
if (c === 'index.php') {
next({ name: '/' })
} else {
next({ name: 'chain-404' })
}
} else {
next()
}
})
// ? For splash screen
// Remove afterEach hook if you are not using splash screen
router.afterEach(() => {
// Remove initial loading
const appLoading = document.getElementById('loading-bg')
if (appLoading) {
appLoading.style.display = 'none'
}
})
export default router