Client - improve dashboard display on mobile
This commit is contained in:
parent
808ce05c27
commit
98aa80788b
@ -26,6 +26,9 @@
|
|||||||
--nav-bar-link-active: #485b6e;
|
--nav-bar-link-active: #485b6e;
|
||||||
--nav-border-color: #c5ccdb;
|
--nav-border-color: #c5ccdb;
|
||||||
|
|
||||||
|
--mobile-menu-selected-color: #FFFFFF;
|
||||||
|
--mobile-menu-selected-bgcolor: #9da3af;
|
||||||
|
|
||||||
--footer-background-color: #FFFFFF;
|
--footer-background-color: #FFFFFF;
|
||||||
--footer-border-color: #ebeef3;
|
--footer-border-color: #ebeef3;
|
||||||
--footer-color: #8b8c8c;
|
--footer-color: #8b8c8c;
|
||||||
|
@ -1,24 +1,82 @@
|
|||||||
<template>
|
<template>
|
||||||
<div id="dashboard" v-if="authUser.username && sports.length > 0">
|
<div id="dashboard" v-if="authUser.username && sports.length > 0">
|
||||||
|
<div class="container mobile-menu">
|
||||||
|
<Card>
|
||||||
|
<template #content>
|
||||||
|
<button
|
||||||
|
class="mobile-menu-item"
|
||||||
|
:class="{ 'is-selected': isSelected === 'chart' }"
|
||||||
|
@click="updateDisplayColumn('chart')"
|
||||||
|
>
|
||||||
|
<i class="fa fa-bar-chart" aria-hidden="true" />
|
||||||
|
</button>
|
||||||
|
<button
|
||||||
|
class="mobile-menu-item"
|
||||||
|
:class="{ 'is-selected': isSelected === 'calendar' }"
|
||||||
|
@click="updateDisplayColumn('calendar')"
|
||||||
|
>
|
||||||
|
<i class="fa fa-calendar" aria-hidden="true" />
|
||||||
|
</button>
|
||||||
|
<button
|
||||||
|
class="mobile-menu-item"
|
||||||
|
:class="{ 'is-selected': isSelected === 'timeline' }"
|
||||||
|
@click="updateDisplayColumn('timeline')"
|
||||||
|
>
|
||||||
|
<i class="fa fa-map-o" aria-hidden="true" />
|
||||||
|
</button>
|
||||||
|
<button
|
||||||
|
class="mobile-menu-item"
|
||||||
|
:class="{ 'is-selected': isSelected === 'records' }"
|
||||||
|
@click="updateDisplayColumn('records')"
|
||||||
|
>
|
||||||
|
<i class="fa fa-trophy" aria-hidden="true" />
|
||||||
|
</button>
|
||||||
|
</template>
|
||||||
|
</Card>
|
||||||
|
</div>
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<UserStatsCards :user="authUser" />
|
<UserStatsCards :user="authUser" />
|
||||||
</div>
|
</div>
|
||||||
<div class="container dashboard-container">
|
<div class="container dashboard-container">
|
||||||
<div class="left-container dashboard-sub-container">
|
<div class="left-container dashboard-sub-container">
|
||||||
<UserMonthStats :sports="sports" :user="authUser" />
|
<UserMonthStats
|
||||||
<UserRecords :sports="sports" :user="authUser" />
|
:sports="sports"
|
||||||
|
:user="authUser"
|
||||||
|
:class="{ 'is-hidden': !(isSelected === 'chart') }"
|
||||||
|
/>
|
||||||
|
<UserRecords
|
||||||
|
:sports="sports"
|
||||||
|
:user="authUser"
|
||||||
|
:class="{ 'is-hidden': !(isSelected === 'records') }"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div class="right-container dashboard-sub-container">
|
<div class="right-container dashboard-sub-container">
|
||||||
<UserCalendar :sports="sports" :user="authUser" />
|
<UserCalendar
|
||||||
<Timeline :sports="sports" :user="authUser" />
|
:sports="sports"
|
||||||
|
:user="authUser"
|
||||||
|
:class="{ 'is-hidden': !(isSelected === 'calendar') }"
|
||||||
|
/>
|
||||||
|
<Timeline
|
||||||
|
:sports="sports"
|
||||||
|
:user="authUser"
|
||||||
|
:class="{ 'is-hidden': !(isSelected === 'timeline') }"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { computed, ComputedRef, defineComponent, onUnmounted } from 'vue'
|
import {
|
||||||
|
ComputedRef,
|
||||||
|
Ref,
|
||||||
|
computed,
|
||||||
|
defineComponent,
|
||||||
|
ref,
|
||||||
|
onUnmounted,
|
||||||
|
} from 'vue'
|
||||||
|
|
||||||
|
import Card from '@/components/Common/Card.vue'
|
||||||
import Timeline from '@/components/Dashboard/Timeline/index.vue'
|
import Timeline from '@/components/Dashboard/Timeline/index.vue'
|
||||||
import UserCalendar from '@/components/Dashboard/UserCalendar/index.vue'
|
import UserCalendar from '@/components/Dashboard/UserCalendar/index.vue'
|
||||||
import UserMonthStats from '@/components/Dashboard/UserMonthStats.vue'
|
import UserMonthStats from '@/components/Dashboard/UserMonthStats.vue'
|
||||||
@ -32,6 +90,7 @@
|
|||||||
export default defineComponent({
|
export default defineComponent({
|
||||||
name: 'Dashboard',
|
name: 'Dashboard',
|
||||||
components: {
|
components: {
|
||||||
|
Card,
|
||||||
Timeline,
|
Timeline,
|
||||||
UserCalendar,
|
UserCalendar,
|
||||||
UserMonthStats,
|
UserMonthStats,
|
||||||
@ -46,41 +105,91 @@
|
|||||||
const sports: ComputedRef<ISport[]> = computed(
|
const sports: ComputedRef<ISport[]> = computed(
|
||||||
() => store.getters[SPORTS_STORE.GETTERS.SPORTS]
|
() => store.getters[SPORTS_STORE.GETTERS.SPORTS]
|
||||||
)
|
)
|
||||||
|
const isSelected: Ref<string> = ref('chart')
|
||||||
onUnmounted(() => {
|
onUnmounted(() => {
|
||||||
store.commit(WORKOUTS_STORE.MUTATIONS.EMPTY_WORKOUTS)
|
store.commit(WORKOUTS_STORE.MUTATIONS.EMPTY_WORKOUTS)
|
||||||
})
|
})
|
||||||
return { authUser, sports }
|
|
||||||
|
function updateDisplayColumn(target: string) {
|
||||||
|
isSelected.value = target
|
||||||
|
}
|
||||||
|
|
||||||
|
return { authUser, sports, isSelected, updateDisplayColumn }
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
@import '~@/scss/base';
|
@import '~@/scss/base';
|
||||||
|
#dashboard {
|
||||||
.dashboard-container {
|
.dashboard-container {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
padding-bottom: 30px;
|
padding-bottom: 30px;
|
||||||
|
|
||||||
.dashboard-sub-container {
|
.dashboard-sub-container {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
}
|
}
|
||||||
|
|
||||||
.left-container {
|
.left-container {
|
||||||
width: 32%;
|
width: 32%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.right-container {
|
.right-container {
|
||||||
width: 68%;
|
width: 68%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.mobile-menu {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
@media screen and (max-width: $small-limit) {
|
@media screen and (max-width: $small-limit) {
|
||||||
.dashboard-container {
|
.dashboard-container {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
|
||||||
.left-container {
|
.left-container {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.right-container {
|
.right-container {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.mobile-menu {
|
||||||
|
display: flex;
|
||||||
|
::v-deep(.card) {
|
||||||
|
width: 100%;
|
||||||
|
.card-content {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
padding: 0;
|
||||||
|
.mobile-menu-item {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-around;
|
||||||
|
border: none;
|
||||||
|
box-shadow: none;
|
||||||
|
padding: $default-padding;
|
||||||
|
width: 25%;
|
||||||
|
|
||||||
|
.fa-trophy {
|
||||||
|
color: var(--app-color);
|
||||||
|
}
|
||||||
|
&.is-selected {
|
||||||
|
.fa-trophy {
|
||||||
|
color: var(--mobile-menu-selected-color);
|
||||||
|
}
|
||||||
|
color: var(--mobile-menu-selected-color);
|
||||||
|
background-color: var(--mobile-menu-selected-bgcolor);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.is-hidden {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
Loading…
Reference in New Issue
Block a user