mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-16 06:07:21 +01:00
133 lines
3.3 KiB
Vue
133 lines
3.3 KiB
Vue
<template lang="pug">
|
|
.row
|
|
challenge-modal
|
|
sidebar(v-on:search="updateSearch", v-on:filter="updateFilters")
|
|
|
|
.col-10.standard-page
|
|
.row.header-row
|
|
.col-md-8.text-left
|
|
h1(v-once) {{$t('findChallenges')}}
|
|
.col-md-4
|
|
// @TODO: implement sorting span.dropdown-label {{ $t('sortBy') }}
|
|
b-dropdown(:text="$t('sort')", right=true)
|
|
b-dropdown-item(v-for='sortOption in sortOptions', :key="sortOption.value", @click='sort(sortOption.value)') {{sortOption.text}}
|
|
button.btn.btn-secondary.create-challenge-button(@click='createChallenge()')
|
|
.svg-icon.positive-icon(v-html="icons.positiveIcon")
|
|
span(v-once) {{$t('createChallenge')}}
|
|
.row
|
|
.col-6(v-for='challenge in filteredChallenges', v-if='!memberOf(challenge)')
|
|
challenge-item(:challenge='challenge')
|
|
</template>
|
|
|
|
<style lang='scss' scoped>
|
|
@import '~client/assets/scss/colors.scss';
|
|
|
|
.header-row {
|
|
h1 {
|
|
color: $purple-200;
|
|
}
|
|
|
|
.create-challenge-button {
|
|
margin-left: 1em;
|
|
}
|
|
|
|
.positive-icon {
|
|
color: $green-10;
|
|
width: 10px;
|
|
display: inline-block;
|
|
margin-right: .5em;
|
|
}
|
|
}
|
|
</style>
|
|
|
|
<script>
|
|
import { mapState } from 'client/libs/store';
|
|
|
|
import bDropdown from 'bootstrap-vue/lib/components/dropdown';
|
|
import bDropdownItem from 'bootstrap-vue/lib/components/dropdown-item';
|
|
import Sidebar from './sidebar';
|
|
import ChallengeItem from './challengeItem';
|
|
import challengeModal from './challengeModal';
|
|
import challengeUtilities from 'client/mixins/challengeUtilities';
|
|
|
|
import positiveIcon from 'assets/svg/positive.svg';
|
|
|
|
export default {
|
|
mixins: [challengeUtilities],
|
|
components: {
|
|
Sidebar,
|
|
ChallengeItem,
|
|
challengeModal,
|
|
bDropdown,
|
|
bDropdownItem,
|
|
},
|
|
data () {
|
|
return {
|
|
icons: Object.freeze({
|
|
positiveIcon,
|
|
}),
|
|
challenges: [],
|
|
sort: 'none',
|
|
sortOptions: [
|
|
{
|
|
text: this.$t('none'),
|
|
value: 'none',
|
|
},
|
|
{
|
|
text: this.$t('participants'),
|
|
value: 'participants',
|
|
},
|
|
{
|
|
text: this.$t('name'),
|
|
value: 'name',
|
|
},
|
|
{
|
|
text: this.$t('end_date'),
|
|
value: 'end_date',
|
|
},
|
|
{
|
|
text: this.$t('start_date'),
|
|
value: 'start_date',
|
|
},
|
|
],
|
|
search: '',
|
|
filters: {},
|
|
};
|
|
},
|
|
mounted () {
|
|
this.loadchallanges();
|
|
|
|
// @TODO: do we need to load groups for filters still?
|
|
},
|
|
computed: {
|
|
...mapState({user: 'user.data'}),
|
|
filteredChallenges () {
|
|
let search = this.search;
|
|
let filters = this.filters;
|
|
let user = this.$store.state.user.data;
|
|
// @TODO: Move this to the server
|
|
return this.challenges.filter((challenge) => {
|
|
return this.filterChallenge(challenge, filters, search, user);
|
|
});
|
|
},
|
|
},
|
|
methods: {
|
|
memberOf (challenge) {
|
|
return this.user.challenges.indexOf(challenge._id) !== -1;
|
|
},
|
|
updateSearch (eventData) {
|
|
this.search = eventData.searchTerm;
|
|
},
|
|
updateFilters (eventData) {
|
|
this.filters = eventData;
|
|
},
|
|
createChallenge () {
|
|
this.$root.$emit('show::modal', 'challenge-modal');
|
|
},
|
|
async loadchallanges () {
|
|
this.challenges = await this.$store.dispatch('challenges:getUserChallenges');
|
|
},
|
|
},
|
|
};
|
|
</script>
|