import {css, html, LitElement} from 'lit' import {connect} from 'pwa-helpers' import {store} from '../store.js' import {translate} from '../../translate' class WalletProfile extends connect(store)(LitElement) { static get properties() { return { wallet: { type: Object }, nodeConfig: { type: Object }, accountInfo: { type: Object }, theme: { type: String, reflect: true } } } static get styles() { return css` #profileInMenu { padding: 12px; border-top: var(--border); background: var(--sidetopbar); color: var(--black); } #accountName { margin: 0; font-size: 18px; font-weight: 500; width: 100%; padding-bottom: 8px; display: flex; } #blocksMinted { margin:0; margin-top: 0; font-size: 12px; color: #03a9f4; } #address { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin:0; margin-top: 8px; font-size: 11px; } .round-fullinfo { position: relative; width: 68px; height: 68px; border-radius: 50%; } .full-info-logo { width: 68px; height: 68px; border-radius: 50%; } .inline-block-child { flex: 1; } ` } constructor() { super() this.wallet = {} this.nodeConfig = {} this.accountInfo = { names: [], addressInfo: {} } this.theme = localStorage.getItem('qortalTheme') ? localStorage.getItem('qortalTheme') : 'light' } render() { return html`
${translate("walletprofile.blocksminted")} - ${this.accountInfo.addressInfo.blocksMinted + this.accountInfo.addressInfo.blocksMintedAdjustment}
${this.wallet.addresses[0].address}