update time format
This commit is contained in:
parent
08ed484f54
commit
b6dd542cb3
@ -12,6 +12,7 @@ import { ethToEvmos } from '@tharsis/address-converter'
|
|||||||
import dayjs from 'dayjs'
|
import dayjs from 'dayjs'
|
||||||
import duration from 'dayjs/plugin/duration'
|
import duration from 'dayjs/plugin/duration'
|
||||||
import relativeTime from 'dayjs/plugin/relativeTime'
|
import relativeTime from 'dayjs/plugin/relativeTime'
|
||||||
|
import updateLocale from 'dayjs/plugin/updateLocale'
|
||||||
import utc from 'dayjs/plugin/utc'
|
import utc from 'dayjs/plugin/utc'
|
||||||
import RIPEMD160 from 'ripemd160'
|
import RIPEMD160 from 'ripemd160'
|
||||||
import localeData from 'dayjs/plugin/localeData'
|
import localeData from 'dayjs/plugin/localeData'
|
||||||
@ -25,7 +26,25 @@ import { EthereumLedgerSigner } from './client/EthereumLedgerSigner.ts'
|
|||||||
dayjs.extend(localeData)
|
dayjs.extend(localeData)
|
||||||
dayjs.extend(duration)
|
dayjs.extend(duration)
|
||||||
dayjs.extend(relativeTime)
|
dayjs.extend(relativeTime)
|
||||||
|
dayjs.extend(updateLocale)
|
||||||
dayjs.extend(utc)
|
dayjs.extend(utc)
|
||||||
|
dayjs.updateLocale('en', {
|
||||||
|
relativeTime: {
|
||||||
|
future: 'in %s',
|
||||||
|
past: '%s ago',
|
||||||
|
s: '%ds',
|
||||||
|
m: '1m',
|
||||||
|
mm: '%dm',
|
||||||
|
h: 'an hour',
|
||||||
|
hh: '%d hours',
|
||||||
|
d: 'a day',
|
||||||
|
dd: '%d days',
|
||||||
|
M: 'a month',
|
||||||
|
MM: '%d months',
|
||||||
|
y: 'a year',
|
||||||
|
yy: '%d years',
|
||||||
|
},
|
||||||
|
})
|
||||||
|
|
||||||
export function getLocalObject(name) {
|
export function getLocalObject(name) {
|
||||||
const text = localStorage.getItem(name)
|
const text = localStorage.getItem(name)
|
||||||
|
@ -120,7 +120,7 @@ export default {
|
|||||||
],
|
],
|
||||||
txFields: [
|
txFields: [
|
||||||
{ key: 'hash' },
|
{ key: 'hash' },
|
||||||
{ key: 'time', formatter: v => toDay(v, 'time') },
|
{ key: 'time', formatter: v => toDay(v, 'from') },
|
||||||
{ key: 'fee', formatter: v => tokenFormatter(v) },
|
{ key: 'fee', formatter: v => tokenFormatter(v) },
|
||||||
{ key: 'messages', formatter: v => abbrMessage(v) },
|
{ key: 'messages', formatter: v => abbrMessage(v) },
|
||||||
{ key: 'memo' },
|
{ key: 'memo' },
|
||||||
@ -162,7 +162,7 @@ export default {
|
|||||||
methods: {
|
methods: {
|
||||||
length: v => (Array.isArray(v) ? v.length : 0),
|
length: v => (Array.isArray(v) ? v.length : 0),
|
||||||
shortHash: v => abbr(v),
|
shortHash: v => abbr(v),
|
||||||
formatTime: v => toDay(v, 'time'),
|
formatTime: v => toDay(v, 'from'),
|
||||||
formatProposer(v) {
|
formatProposer(v) {
|
||||||
return getStakingValidatorByHex(this.$http.config.chain_name, v)
|
return getStakingValidatorByHex(this.$http.config.chain_name, v)
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user