2019-05-15 16:01:41 +01:00
|
|
|
// Copyright (C) 2019 Storj Labs, Inc.
|
|
|
|
// See LICENSE for copying information.
|
|
|
|
|
|
|
|
<template>
|
2020-03-18 17:07:29 +00:00
|
|
|
<div class="dashboard-area">
|
|
|
|
<h1 class="dashboard-area__title">Dashboard</h1>
|
|
|
|
<div class="dashboard-area__top-area">
|
|
|
|
<ProjectDetails/>
|
|
|
|
<ProjectUsage/>
|
|
|
|
</div>
|
|
|
|
<BucketArea/>
|
2019-05-15 16:01:41 +01:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2019-09-09 11:33:39 +01:00
|
|
|
import { Component, Vue } from 'vue-property-decorator';
|
2019-07-18 14:39:39 +01:00
|
|
|
|
2020-03-18 17:07:29 +00:00
|
|
|
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
|
|
|
|
2020-03-18 17:07:29 +00:00
|
|
|
import { SegmentEvent } from '@/utils/constants/analyticsEventNames';
|
2019-09-09 11:33:39 +01:00
|
|
|
|
|
|
|
@Component({
|
|
|
|
components: {
|
2020-03-18 17:07:29 +00:00
|
|
|
BucketArea,
|
|
|
|
ProjectDetails,
|
|
|
|
ProjectUsage,
|
2019-09-13 15:58:18 +01:00
|
|
|
},
|
2019-09-09 11:33:39 +01:00
|
|
|
})
|
2020-03-16 12:08:38 +00:00
|
|
|
export default class ProjectDashboard extends Vue {
|
2020-02-28 16:33:11 +00:00
|
|
|
/**
|
2020-03-18 17:07:29 +00:00
|
|
|
* Lifecycle hook after initial render.
|
|
|
|
* Segment tracking is processed.
|
2020-02-28 16:33:11 +00:00
|
|
|
*/
|
2020-03-18 17:07:29 +00:00
|
|
|
public mounted(): void {
|
|
|
|
this.$segment.track(SegmentEvent.PROJECT_VIEWED, {
|
|
|
|
project_id: this.$store.getters.selectedProject.id,
|
|
|
|
});
|
2019-09-09 11:33:39 +01:00
|
|
|
}
|
|
|
|
}
|
2019-05-15 16:01:41 +01:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped lang="scss">
|
2020-03-18 17:07:29 +00:00
|
|
|
.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;
|
2019-05-15 16:01:41 +01:00
|
|
|
}
|
2019-09-20 11:21:22 +01:00
|
|
|
|
2020-03-18 17:07:29 +00:00
|
|
|
&__top-area {
|
|
|
|
display: flex;
|
|
|
|
align-items: flex-start;
|
|
|
|
justify-content: space-between;
|
2019-09-20 11:21:22 +01:00
|
|
|
}
|
|
|
|
}
|
2019-05-15 16:01:41 +01:00
|
|
|
</style>
|