Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge develop into master #209

Merged
merged 5 commits into from
Mar 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/BigField.vue
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export default {
display flex

.decode
align-self flex-end
margin-left 10px

textarea
padding 0
Expand Down
5 changes: 3 additions & 2 deletions src/components/DataField.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<div class="data-field" :style="cellStyle(field, value)" :class="fieldClass">
<div class="data-field" :class="fieldClass">
<template v-if="field.renderAs">
<component :is="field.renderAs" v-bind="renderAsProps({ field, value, filteredValue, row })"></component>
</template>
Expand Down Expand Up @@ -78,7 +78,8 @@ export default {
return getType(this.filteredValue)
},
link () {
return this.makeLink(this.field, this.row)
const value = this.makeLink(this.field, this.row)
return value === this.$route.path ? false : value
},
trim () {
return this.computeTrim(this.field, this.value, this.filteredValue)
Expand Down
14 changes: 7 additions & 7 deletions src/components/DataPage.vue
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<template>
<div class="data-page centered" :class="$route.name">
<div class="flex container-title" v-if="!requesting">
<div class="flex container-title">
<icon :class="titleDescription" :name="titleDescription.toLowerCase()"></icon>
<div class="text-white-100 title capitalize" v-if="titleDescription">{{ titleDescription }}</div>
</div>
<div v-if="(requesting && !error && !delayed.fields) || delayed.registry" class="flex justify-center content-spiner">
<spinner :height="300" :width="300" :border="5" />
<div v-if="(requesting && !error && !delayed.fields) || delayed.registry" class="content-spiner">
<Loader type="table" :fixed="false" />
</div>
<error-page v-if="error" :error="error"></error-page>
<div class="update-error" v-if="updateError">
Expand Down Expand Up @@ -75,7 +75,7 @@
</div>
<template v-for="(tab, i) in tabs">
<template v-if="isActiveTab(tab)">
<spinner :key="tab.action" v-if="isRequesting()(tab.name)" :height="300" :width="300" :border="5" />
<Loader type="table" :key="tab.action" v-if="isRequesting()(tab.name)" :fixed="true" />
<data-section :key="`${tab.module}-${i}`" class="tab-content" v-else :module="tab.module" :dataType="tab.dataType" :reqKey="tab.name" :action="tab.action" :msgs="tab.msgs"></data-section>
</template>
</template>
Expand All @@ -92,22 +92,22 @@ import Message from './Message'
import ItemNavigator from './ItemNavigator'
import ExportControls from './ExportControls'
import common from '../mixins/common'
import Spinner from './Loaders/Spinner.vue'
import { PAGE_COLORS } from '@/config/pageColors'
import TitleDetail from './General/TitleDetail.vue'
import BackContent from './General/BackContent.vue'
import Loader from './Loaders/Loader.vue'

export default {
name: 'data-page',
components: {
Spinner,
DataSection,
ErrorPage,
Message,
ItemNavigator,
ExportControls,
TitleDetail,
BackContent
BackContent,
Loader
},
mixins: [
common
Expand Down
1 change: 0 additions & 1 deletion src/components/FieldItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
data-field(
:field='parsedField'
:row='data'
:style='cellStyle(field,getValue(field,data,true))'
:delayed='delayed')

</template>
Expand Down
38 changes: 30 additions & 8 deletions src/components/General/BackContent.vue
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<template>
<div class="back-content">
<router-link :to="routes[$route.name] || ''" class="flex item-center">
<router-link :to="routes[$route.name].route || ''" class="flex item-center">
<icon name="back" :class="$route.name" />
<span :style="{color: PAGE_COLORS[$route.name].cl}">{{ `All ${$route.name}s` }}</span>
<span :style="{color: PAGE_COLORS[$route.name].cl}">{{ `All ${routes[$route.name].name}` }}</span>
</router-link>
</div>
</template>
Expand All @@ -17,12 +17,34 @@ export default {
return {
PAGE_COLORS,
routes: {
Block: '/blocks',
Transaction: '/txs',
Address: '/addresses',
'Internal transaction': '/txs',
Event: '/txs',
Token: '/tokens'
Block: {
route: '/blocks',
name: 'Blocks'
},
Transaction: {
route: '/txs',
name: 'Transactions'
},
Address: {
route: '/addresses',
name: 'Addresses'
},
'Internal transaction': {
route: '/txs',
name: 'Transactions'
},
Event: {
route: '/txs',
name: 'Transactions'
},
Token: {
route: '/tokens',
name: 'Tokens'
},
'Account Balance': {
route: '/balance',
name: 'Balance'
}
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/components/General/TitleDetail.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<div class="title-detail flex">
<icon :class="titleDescription" :name="icon"></icon>
<div class="text-white-100">
<div class="text-white-100 cursor-text">
<tool-tip :text="value" :hideCopy="true" :trim="data[routerName].hideTrim" />
<span class="capitalize"> {{ titleDescription }}</span>
</div>
Expand Down
3 changes: 0 additions & 3 deletions src/components/Home.vue
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,3 @@ export default {

}
</script>
<style lang="stylus">
// @import ('../lib/styl/style.styl')
</style>
36 changes: 36 additions & 0 deletions src/components/Loaders/Loader.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<template>
<div>
<spinner v-if="type === 'spinner'" />
<table-loader v-if="typeLoader === 'table'" />
<section-loader v-if="typeLoader === 'section'" />
</div>
</template>
<script>
import Spinner from './Spinner.vue'
import TableLoader from './TableLoader.vue'
import SectionLoader from './SectionLoader.vue'
export default {
components: {
Spinner,
TableLoader,
SectionLoader
},
props: ['type', 'fixed'],
data () {
return {
typeLoader: ''
}
},
created () {
if (this.fixed) {
this.typeLoader = this.type
return
}
if (Object.values(this.$route.params).length > 0) {
this.typeLoader = 'section'
} else {
this.typeLoader = 'table'
}
}
}
</script>
20 changes: 20 additions & 0 deletions src/components/Loaders/SectionLoader.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<template>
<div class="section-loader animate-pulse bg-secondary">
<svg width="1300" height="470" viewBox="0 0 1300 470" fill="red" xmlns="http://www.w3.org/2000/svg">
<rect x="0" y="1" rx="5" ry="5" width="120px" height="10" />
<rect x="0" y="41" rx="5" ry="5" width="270px" height="30" />
<rect x="0" y="100" rx="5" ry="5" width="100px" height="30" />
<rect x="120" y="100" rx="5" ry="5" width="100px" height="30" />
<circle cx="18" cy="190" r="18" />
<rect x="67" y="175" rx="5" ry="5" width="87%" height="30" />
<circle cx="18" cy="250" r="18" />
<rect x="67" y="235" rx="5" ry="5" width="87%" height="30" />
<circle cx="18" cy="310" r="18" />
<rect x="67" y="295" rx="5" ry="5" width="87%" height="30" />
<circle cx="18" cy="370" r="18" />
<rect x="67" y="355" rx="5" ry="5" width="87%" height="30" />
<circle cx="18" cy="430" r="18" />
<rect x="67" y="415" rx="5" ry="5" width="87%" height="30" />
</svg>
</div>
</template>
71 changes: 71 additions & 0 deletions src/components/Loaders/TableLoader.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
<template>
<div class="table-loader animate-pulse">
<svg width="1400" height="450" viewBox="0 0 1400 450" xmlns="http://www.w3.org/2000/svg">
<rect x="0" y="0" rx="4" ry="4" width="100%" height="52" />
<rect x="67" y="15" rx="10" ry="10" width="85" height="20" fill="#3A3A3A" />
<rect x="188" y="15" rx="10" ry="10" width="169" height="19" fill="#3A3A3A" />
<rect x="402" y="15" rx="10" ry="10" width="85" height="19" fill="#3A3A3A" />
<rect x="523" y="15" rx="10" ry="10" width="169" height="19" fill="#3A3A3A" />
<rect x="731" y="15" rx="10" ry="10" width="85" height="19" fill="#3A3A3A" />
<rect x="852" y="15" rx="10" ry="10" width="85" height="19" fill="#3A3A3A" />
<rect x="978" y="15" rx="10" ry="10" width="169" height="19" fill="#3A3A3A" />
<rect x="1180" y="15" rx="10" ry="10" width="50" height="19" fill="#3A3A3A" />

<rect x="10" y="72" rx="50" ry="50" width="30" height="30" />
<rect x="66" y="80" rx="10" ry="10" width="85" height="19" />
<rect x="187" y="80" rx="10" ry="10" width="169" height="19" />
<rect x="401" y="80" rx="10" ry="10" width="85" height="19" />
<rect x="522" y="80" rx="10" ry="10" width="169" height="19" />
<rect x="730" y="80" rx="10" ry="10" width="85" height="19" />
<rect x="851" y="80" rx="10" ry="10" width="85" height="19" />
<rect x="977" y="80" rx="10" ry="10" width="169" height="19" />
<rect x="1180" y="80" rx="10" ry="10" width="50" height="19" />
<rect x="0" y="120" rx="10" ry="10" width="100%" height="1" />

<rect x="10" y="152" rx="50" ry="50" width="30" height="30" />
<rect x="66" y="160" rx="10" ry="10" width="85" height="19" />
<rect x="187" y="160" rx="10" ry="10" width="169" height="19" />
<rect x="401" y="160" rx="10" ry="10" width="85" height="19" />
<rect x="522" y="160" rx="10" ry="10" width="169" height="19" />
<rect x="730" y="160" rx="10" ry="10" width="85" height="19" />
<rect x="851" y="160" rx="10" ry="10" width="85" height="19" />
<rect x="977" y="160" rx="10" ry="10" width="169" height="19" />
<rect x="1180" y="160" rx="10" ry="10" width="50" height="19" />
<rect x="0" y="200" rx="10" ry="10" width="100%" height="1" />

<rect x="10" y="232" rx="50" ry="50" width="30" height="30" />
<rect x="66" y="240" rx="10" ry="10" width="85" height="19" />
<rect x="187" y="240" rx="10" ry="10" width="169" height="19" />
<rect x="401" y="240" rx="10" ry="10" width="85" height="19" />
<rect x="522" y="240" rx="10" ry="10" width="169" height="19" />
<rect x="730" y="240" rx="10" ry="10" width="85" height="19" />
<rect x="851" y="240" rx="10" ry="10" width="85" height="19" />
<rect x="977" y="240" rx="10" ry="10" width="169" height="19" />
<rect x="1180" y="240" rx="10" ry="10" width="50" height="19" />
<rect x="0" y="280" rx="10" ry="10" width="100%" height="1" />

<rect x="10" y="312" rx="50" ry="50" width="30" height="30" />
<rect x="66" y="320" rx="10" ry="10" width="85" height="19" />
<rect x="187" y="320" rx="10" ry="10" width="169" height="19" />
<rect x="401" y="320" rx="10" ry="10" width="85" height="19" />
<rect x="522" y="320" rx="10" ry="10" width="169" height="19" />
<rect x="730" y="320" rx="10" ry="10" width="85" height="19" />
<rect x="851" y="320" rx="10" ry="10" width="85" height="19" />
<rect x="977" y="320" rx="10" ry="10" width="169" height="19" />
<rect x="1180" y="320" rx="10" ry="10" width="50" height="19" />
<rect x="0" y="360" rx="10" ry="10" width="100%" height="1" />

<rect x="10" y="392" rx="50" ry="50" width="30" height="30" />
<rect x="66" y="400" rx="10" ry="10" width="85" height="19" />
<rect x="187" y="400" rx="10" ry="10" width="169" height="19" />
<rect x="401" y="400" rx="10" ry="10" width="85" height="19" />
<rect x="522" y="400" rx="10" ry="10" width="169" height="19" />
<rect x="730" y="400" rx="10" ry="10" width="85" height="19" />
<rect x="851" y="400" rx="10" ry="10" width="85" height="19" />
<rect x="977" y="400" rx="10" ry="10" width="169" height="19" />
<rect x="1180" y="400" rx="10" ry="10" width="50" height="19" />
<rect x="0" y="440" rx="10" ry="10" width="100%" height="1" />

</svg>
</div>
</template>
15 changes: 9 additions & 6 deletions src/components/Navigations/Sidebar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,23 +14,26 @@
<img class="home-active" src="@/assets/svg/home-active.svg" alt="home-icon">
<span>Home</span>
</router-link>
<router-link to="/blocks" class="link-blocks" :class="$route.name === 'Block' ? activeClasses : ''">
<router-link to="/blocks" class="link-blocks"
:class="PAGE_NAME.BLOCKS.some((v) => $route.name?.includes(v)) ? activeClasses : ''">
<img class="base-icon" src="@/assets/svg/block-icon.svg" alt="block-icon">
<img class="active-icon" src="@/assets/svg/block-active.svg" alt="block-icon">
<span>Blocks</span>
</router-link>
<router-link to="/txs" class="link-txs"
:class="$route.name === 'Internal transaction' || $route.name === 'Transaction' || $route.name === 'Event' ? activeClasses : ''">
:class="PAGE_NAME.TXS.some((v) => $route.name?.includes(v)) ? activeClasses : ''">
<img class="base-icon" src="@/assets/svg/tx-icon.svg" alt="transaction-icon">
<img class="active-icon" src="@/assets/svg/tx-active.svg" alt="transaction-icon">
<span>Transactions</span>
</router-link>
<router-link to="/addresses" class="link-address" :class="$route.name === 'Address' ? activeClasses : ''">
<router-link to="/addresses" class="link-address"
:class="PAGE_NAME.ADDRESSES.some((v) => $route.name?.includes(v)) ? activeClasses : ''">
<img class="base-icon" src="@/assets/svg/address-icon.svg" alt="address-icon">
<img class="active-icon" src="@/assets/svg/address-active.svg" alt="address-icon">
<span>Addresses</span>
</router-link>
<router-link to="/tokens" class="link-tokens" :class="$route.name === 'Token' || $route.name === 'Token Account' ? activeClasses : ''">
<router-link to="/tokens" class="link-tokens"
:class="PAGE_NAME.TOKENS.some((v) => $route.name?.includes(v)) ? activeClasses : ''">
<img class="base-icon" src="@/assets/svg/token-icon.svg" alt="token-icon">
<img class="active-icon" src="@/assets/svg/token-active.svg" alt="token-icon">
<span>Tokens</span>
Expand All @@ -51,12 +54,12 @@
<script>
import { mapActions, mapGetters } from 'vuex'
import { DOMAIN_STATS_TESTNET, DOMAIN_STATS_MAINNET } from '../../config/network'
import { PAGE_NAME } from '@/config/types'

export default {
components: {
},
data () {
return {
PAGE_NAME,
DOMAIN_STATS_MAINNET,
DOMAIN_STATS_TESTNET,
activeClasses: 'router-link-exact-active router-link-active'
Expand Down
16 changes: 12 additions & 4 deletions src/components/Search/CtrlSearch.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
type="text"
:value="value"
@input.prevent="input"
@change.prevent="changeInput"
@keyup.enter="changeInput"
@keyup.stop="onKey"
:placeholder="onFocusValue ? placeholder : null"
:class="cssClass"
Expand Down Expand Up @@ -43,6 +43,7 @@
import { mapActions } from 'vuex'
import { clamp } from '../../lib/js/utils'
import Spinner from '../Loaders/Spinner.vue'
import { ROUTES } from '../../config/types'
export default {
name: 'ctrl-search',
components: {
Expand All @@ -64,7 +65,7 @@ export default {
if (searchValue) this.value = searchValue
},
methods: {
...mapActions(['searchExpand']),
...mapActions(['searchExpand', 'clearSearchedResults']),
setExpand () {
if (window.innerWidth > 600) return
this.expandSearch = !this.expandSearch
Expand All @@ -73,6 +74,7 @@ export default {
clear () {
this.value = ''
this.selectResult(0)
this.clearSearchedResults()
},
input (event, type) {
this.selectResult(0)
Expand Down Expand Up @@ -102,7 +104,6 @@ export default {
onChange (event) {
const value = this.value
this.emit(event, 'change', value)
this.clear()
},
selectResult (result) {
this.selectedResult = result
Expand All @@ -113,7 +114,6 @@ export default {
if (link) this.$router.push(link)
this.selectResult(key++)
this.emitResult(event, result)
this.clear()
},
emitResult (event, result) {
this.emit(event, 'result', result)
Expand Down Expand Up @@ -148,6 +148,14 @@ export default {
isLoading () {
return !!this.loading
}
},
watch: {
$route () {
if (this.$route.name.toLowerCase() !== ROUTES.search.toLowerCase()) {
this.clearSearchedResults()
this.value = ''
}
}
}
}
</script>
Loading
Loading