This repository has been archived on 2021-07-29. You can view files and clone it, but cannot push or open issues or pull requests.
find_coach/src/pages/coaches/CoachesList.vue

127 lines
3.0 KiB
Vue

<template>
<div>
<base-dialog
:show="!!error"
title="An error has occured!"
@close="handleError"
>
<p>{{ error }}</p>
</base-dialog>
<section>
<coach-filter @change-filter="setFilter"></coach-filter>
</section>
<base-card>
<section>
<div class="controls">
<base-button mode="outline" @click="loadCoaches(true)"
>Refresh</base-button
>
<base-button link to="/auth" v-if="!isLogggedIn">Login</base-button>
<base-button
v-if="isLogggedIn && !isCoach && !isLoading"
link
to="/register"
>Register as Coach</base-button
>
</div>
<div v-if="isLoading">
<base-spinner></base-spinner>
</div>
<ul v-else-if="hasCoaches">
<coach-item
v-for="coach in filteredCoaches"
:key="coach.id"
:id="coach.id"
:firstName="coach.firstName"
:lastName="coach.lastName"
:areas="coach.areas"
:rate="coach.hourlyRate"
></coach-item>
</ul>
<h3 v-else>No coaches found.</h3>
</section>
</base-card>
</div>
</template>
<script>
import CoachFilter from '../../components/coaches/CoachFilter.vue';
import CoachItem from '../../components/coaches/CoachItem.vue';
export default {
components: { CoachItem, CoachFilter },
data() {
return {
isLoading: false,
error: null,
activeFilters: {
backend: true,
frontend: true,
career: true
}
};
},
computed: {
isLogggedIn() {
return this.$store.getters.isAuthenticated;
},
isCoach() {
return this.$store.getters['coaches/isCoach'];
},
filteredCoaches() {
const coaches = this.$store.getters['coaches/coaches'];
return coaches.filter(coach => {
if (this.activeFilters.backend && coach.areas.includes('backend')) {
return true;
}
if (this.activeFilters.frontend && coach.areas.includes('frontend')) {
return true;
}
if (this.activeFilters.career && coach.areas.includes('career')) {
return true;
}
return false;
});
},
hasCoaches() {
return !this.isLoading && this.$store.getters['coaches/hasCoaches'];
}
},
created() {
this.loadCoaches();
},
methods: {
setFilter(updatedFilters) {
this.activeFilters = updatedFilters;
},
async loadCoaches(refresh = false) {
this.isLoading = true;
try {
await this.$store.dispatch('coaches/loadCoaches', {
forceRefresh: refresh
});
} catch (error) {
this.error = error || 'Something went wrong!';
}
this.isLoading = false;
},
handleError() {
this.error = null;
}
}
};
</script>
<style scoped>
ul {
list-style: none;
margin: 0;
padding: 0;
}
.controls {
display: flex;
justify-content: space-between;
}
</style>