oxen-electron-gui-wallet/src/components/wallet_details.vue

106 lines
2.5 KiB
Vue
Raw Normal View History

<template>
2020-03-03 04:16:23 +01:00
<div class="column wallet-info">
<div class="row justify-between items-center wallet-header loki-green">
2020-03-03 04:16:23 +01:00
<div class="title">{{ info.name }}</div>
<WalletSettings />
</div>
<div class="wallet-content">
2020-03-03 04:16:23 +01:00
<div class="row justify-center">
<div class="funds column items-center">
<div class="balance">
<div class="text">
<span>{{ $t("strings.lokiBalance") }}</span>
</div>
2020-03-03 04:16:23 +01:00
<div class="value">
<span><FormatLoki :amount="info.balance"/></span>
</div>
</div>
<div class="row unlocked">
<span>{{ $t("strings.lokiUnlockedShort") }}: <FormatLoki :amount="info.unlocked_balance"/></span>
</div>
</div>
2020-03-03 04:16:23 +01:00
</div>
<div class="wallet-address row justify-center items-center">
<div class="address">{{ info.address }}</div>
<q-btn ref="copy" color="primary" style="width:25px;" size="sm" icon="file_copy" @click="copyAddress">
<q-tooltip anchor="center right" self="center left" :offset="[5, 10]">
{{ $t("menuItems.copyAddress") }}
</q-tooltip>
</q-btn>
2020-03-03 04:16:23 +01:00
</div>
</div>
2020-03-03 04:16:23 +01:00
</div>
</template>
<script>
2020-03-03 04:16:23 +01:00
const { clipboard } = require("electron");
import { mapState } from "vuex";
import FormatLoki from "components/format_loki";
import WalletSettings from "components/wallet_settings";
export default {
2020-03-03 04:16:23 +01:00
name: "WalletDetails",
components: {
FormatLoki,
WalletSettings
},
computed: mapState({
theme: state => state.gateway.app.config.appearance.theme,
info: state => state.gateway.wallet.info
}),
methods: {
copyAddress() {
this.$refs.copy.$el.blur();
clipboard.writeText(this.info.address);
this.$q.notify({
type: "positive",
timeout: 1000,
message: this.$t("notification.positive.addressCopied")
});
}
}
};
</script>
<style lang="scss">
.wallet-info {
2020-03-03 04:16:23 +01:00
.wallet-header {
padding: 0.8rem 1.5rem;
.title {
font-weight: bold;
}
2020-03-03 04:16:23 +01:00
}
2020-03-03 04:16:23 +01:00
.wallet-content {
text-align: center;
background-color: #0a0a0a;
padding: 2em;
2020-03-03 04:16:23 +01:00
.balance {
.text {
font-size: 16px;
}
.value {
font-size: 35px;
}
}
2020-03-03 04:16:23 +01:00
.wallet-address {
margin-top: 12px;
.address {
overflow: hidden;
text-overflow: ellipsis;
margin: 4px 0;
}
.q-btn {
margin-left: 8px;
}
}
2020-03-03 04:16:23 +01:00
.unlocked {
font-size: 14px;
font-weight: 500;
}
2020-03-03 04:16:23 +01:00
}
}
</style>