2019-06-24 18:40:59 +01:00
|
|
|
// Copyright (C) 2019 Storj Labs, Inc.
|
|
|
|
// See LICENSE for copying information.
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<div class="referral-stats">
|
|
|
|
<p class="referral-stats__title"> {{ title }} </p>
|
|
|
|
<div class="referral-stats__wrapper">
|
|
|
|
<div class="referral-stats__card"
|
|
|
|
v-for="(stat, key) in stats"
|
|
|
|
:key="key"
|
2019-07-08 14:45:25 +01:00
|
|
|
:style="stat.background">
|
2019-10-02 10:42:12 +01:00
|
|
|
<span class="referral-stats__card-text">
|
|
|
|
<span class="referral-stats__card-title">{{ stat.title }}</span>
|
|
|
|
<span class="referral-stats__card-description">{{ stat.description }}</span>
|
|
|
|
</span>
|
|
|
|
<br>
|
|
|
|
<span class="referral-stats__card-number">{{ stat.symbol + usage[key] }}</span>
|
2019-06-24 18:40:59 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2019-09-09 11:33:39 +01:00
|
|
|
import { Component, Vue } from 'vue-property-decorator';
|
|
|
|
|
|
|
|
import { CREDIT_USAGE_ACTIONS } from '@/store/modules/credits';
|
|
|
|
import { CreditUsage } from '@/types/credits';
|
|
|
|
|
|
|
|
class CreditDescription {
|
|
|
|
public title: string;
|
|
|
|
public description: string;
|
|
|
|
public symbol: string;
|
|
|
|
|
|
|
|
// possibly we could add some 'style' type
|
|
|
|
public style: any;
|
|
|
|
|
|
|
|
constructor(title: string, description: string, symbol: string, color: string) {
|
|
|
|
this.title = title;
|
|
|
|
this.description = description;
|
|
|
|
this.symbol = symbol;
|
|
|
|
this.style = { backgroundColor: color };
|
2019-08-19 19:12:23 +01:00
|
|
|
}
|
2019-09-09 11:33:39 +01:00
|
|
|
}
|
2019-08-19 19:12:23 +01:00
|
|
|
|
2019-09-09 11:33:39 +01:00
|
|
|
@Component
|
|
|
|
export default class ReferralStats extends Vue {
|
|
|
|
private readonly TITLE_SUFFIX: string = 'Here Are Your Referrals So Far';
|
|
|
|
private stats: CreditDescription[] = [
|
|
|
|
new CreditDescription('referrals made', 'People you referred who signed up', '', '#FFFFFF'),
|
|
|
|
new CreditDescription('earned credits', 'Free credits that will apply to your upcoming bill', '$', 'rgba(217, 225, 236, 0.5)'),
|
|
|
|
new CreditDescription('applied credits', 'Free credits that have already been applied to your bill', '$', '#D1D7E0'),
|
|
|
|
];
|
2019-07-18 14:39:39 +01:00
|
|
|
|
2019-09-09 11:33:39 +01:00
|
|
|
public async mounted() {
|
|
|
|
// TODO: we pre-fetch all data in /src/views/Dashboard, but this is tardigrade related, so could be here
|
|
|
|
await this.fetch();
|
|
|
|
}
|
|
|
|
|
|
|
|
public async fetch(): Promise<void> {
|
|
|
|
try {
|
|
|
|
await this.$store.dispatch(CREDIT_USAGE_ACTIONS.FETCH);
|
|
|
|
} catch (error) {
|
2019-10-28 17:33:06 +00:00
|
|
|
await this.$notify.error('Unable to fetch credit usage: ' + error.message);
|
2019-06-24 18:40:59 +01:00
|
|
|
}
|
2019-09-09 11:33:39 +01:00
|
|
|
}
|
2019-08-19 19:12:23 +01:00
|
|
|
|
2019-09-09 11:33:39 +01:00
|
|
|
public get title(): string {
|
|
|
|
// TODO: not sure that we are able to create a user with empty name
|
|
|
|
const name = this.$store.state.usersModule.fullName || '' ;
|
2019-08-19 19:12:23 +01:00
|
|
|
|
2019-09-09 11:33:39 +01:00
|
|
|
return name.length > 0 ? `${name}, ${this.TITLE_SUFFIX}` : this.TITLE_SUFFIX;
|
|
|
|
}
|
2019-08-19 19:12:23 +01:00
|
|
|
|
2019-09-09 11:33:39 +01:00
|
|
|
public get usage(): CreditUsage {
|
|
|
|
return this.$store.getters.credits;
|
2019-08-19 19:12:23 +01:00
|
|
|
}
|
2019-09-09 11:33:39 +01:00
|
|
|
}
|
2019-06-24 18:40:59 +01:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped lang="scss">
|
2019-07-10 10:55:40 +01:00
|
|
|
.referral-stats {
|
2019-06-24 18:40:59 +01:00
|
|
|
|
2019-07-10 10:55:40 +01:00
|
|
|
&__title {
|
|
|
|
text-align: center;
|
2019-10-28 15:59:19 +00:00
|
|
|
font-family: 'font_bold', sans-serif;
|
2019-06-24 18:40:59 +01:00
|
|
|
}
|
|
|
|
|
2019-07-10 10:55:40 +01:00
|
|
|
&__wrapper {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: space-around;
|
|
|
|
left: 15%;
|
|
|
|
right: 15%;
|
2019-10-28 15:59:19 +00:00
|
|
|
font-family: 'font_regular', sans-serif;
|
2019-06-24 18:40:59 +01:00
|
|
|
}
|
|
|
|
|
2019-07-10 10:55:40 +01:00
|
|
|
&__card {
|
|
|
|
color: #354049;
|
|
|
|
min-height: 176px;
|
|
|
|
max-width: 276px;
|
|
|
|
flex-basis: 25%;
|
|
|
|
border-radius: 24px;
|
|
|
|
padding-top: 25px;
|
|
|
|
padding-left: 26px;
|
|
|
|
padding-right: 29px;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: space-evenly;
|
|
|
|
|
|
|
|
&-text {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
&-title {
|
|
|
|
display: block;
|
|
|
|
text-transform: uppercase;
|
2019-10-28 15:59:19 +00:00
|
|
|
font-family: 'font_bold', sans-serif;
|
2019-07-10 10:55:40 +01:00
|
|
|
font-size: 14px;
|
|
|
|
line-height: 18px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&-description {
|
|
|
|
display: block;
|
|
|
|
font-size: 14px;
|
|
|
|
line-height: 21px;
|
|
|
|
margin-top: 7px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&-number {
|
|
|
|
display: block;
|
2019-10-28 15:59:19 +00:00
|
|
|
font-family: 'font_bold', sans-serif;
|
2019-07-10 10:55:40 +01:00
|
|
|
font-size: 46px;
|
|
|
|
line-height: 60px;
|
|
|
|
margin-bottom: 27px;
|
|
|
|
}
|
2019-06-24 18:40:59 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|