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

67 lines
1.5 KiB
Vue
Raw Normal View History

// Copyright (C) 2019 Storj Labs, Inc.
// See LICENSE for copying information.
<template>
<div class="project-overview">
2019-06-03 13:19:48 +01:00
<TabNavigation
v-if="isProjectSelected"
class="project-overview__navigation"
:navigation="navigation"
/>
<router-view v-if="isProjectSelected"/>
</div>
</template>
<script lang="ts">
2019-09-09 11:33:39 +01:00
import { Component, Vue } from 'vue-property-decorator';
2019-09-09 11:33:39 +01:00
import TabNavigation from '@/components/navigation/TabNavigation.vue';
import { NavigationLink } from '@/types/navigation';
@Component({
components: {
TabNavigation,
},
2019-09-09 11:33:39 +01:00
})
export default class ProjectOverviewArea extends Vue {
// TODO: make type for project routes
public navigation: NavigationLink[] = [
new NavigationLink('/project-overview/details', 'Details'),
new NavigationLink('/project-overview/usage-report', 'Report'),
];
/**
* Indicates if project is selected.
*/
2019-09-09 11:33:39 +01:00
public get isProjectSelected(): boolean {
return this.$store.getters.selectedProject.id !== '';
}
}
</script>
<style scoped lang="scss">
.project-overview {
padding: 40px 65px 55px 65px;
position: relative;
&__navigation {
position: absolute;
right: 65px;
top: 44px;
2019-06-03 13:19:48 +01:00
z-index: 99;
}
}
@media screen and (max-width: 1024px) {
.project-overview {
padding: 44px 40px 55px 40px;
&__navigation {
right: 40px;
}
}
}
</style>