storj/web/satellite/src/components/project/ProjectDashboard.vue

70 lines
1.7 KiB
Vue
Raw Normal View History

// Copyright (C) 2019 Storj Labs, Inc.
// See LICENSE for copying information.
<template>
<div class="dashboard-area">
<h1 class="dashboard-area__title">Dashboard</h1>
<div class="dashboard-area__top-area">
<ProjectDetails/>
<ProjectUsage/>
</div>
<BucketArea/>
</div>
</template>
<script lang="ts">
2019-09-09 11:33:39 +01:00
import { Component, Vue } from 'vue-property-decorator';
import BucketArea from '@/components/project/buckets/BucketArea.vue';
import ProjectDetails from '@/components/project/ProjectDetails.vue';
import ProjectUsage from '@/components/project/usage/ProjectUsage.vue';
2019-09-09 11:33:39 +01:00
import { RouteConfig } from '@/router';
import { SegmentEvent } from '@/utils/constants/analyticsEventNames';
2019-09-09 11:33:39 +01:00
@Component({
components: {
BucketArea,
ProjectDetails,
ProjectUsage,
},
2019-09-09 11:33:39 +01:00
})
export default class ProjectDashboard extends Vue {
/**
* Lifecycle hook after initial render.
* Segment tracking is processed.
*/
public mounted(): void {
if (!this.$store.getters.selectedProject.id) {
this.$router.push(RouteConfig.OnboardingTour.path);
return;
}
this.$segment.track(SegmentEvent.PROJECT_VIEWED, {
project_id: this.$store.getters.selectedProject.id,
});
2019-09-09 11:33:39 +01:00
}
}
</script>
<style scoped lang="scss">
.dashboard-area {
padding: 40px 65px 80px 65px;
&__title {
font-family: 'font_bold', sans-serif;
font-size: 32px;
line-height: 39px;
color: #263549;
margin: 0 0 35px 0;
}
&__top-area {
display: flex;
align-items: flex-start;
justify-content: space-between;
}
}
</style>