mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-16 22:27:26 +01:00
* Footer style fixes * Limited string display * Fixed background reload * Began adding more avatar items * Fixed challenge updated cats and official to be seen by admins * Fixed min prize * Fixed required fields * Added my challenges and find challenges to menu * Removed nav to party page when have no party * Updated user and notifications icon * Added accept, reject and messages * Added selfcare * Underline links * Added forgot password * Fixed task adding * Disabled habit options that should be * Added markdown to tags * Added confirm to delete * Fixed cancel/delete style * Fixed rounding * Added gold icon * Fixed task icon styles * Fixed margin botton * Fixed some repeat styles * Fixed custom reward style * Hide like count 0 * Added new tavern images * Redirect to party page after create * Hid leader options from non leaders * Removed manager options from non group plan * Fixed some nav styles * Fixed overlay color * Prevented edit data from being transfered to create * Added hover state for spells * Add performance fixes for chat avatars * Fixed merge conflicts * Updated fron navigation * Fixed reg gryphon logo * Began adding gem modal functionality * Added purchase gems with gold * Fixed restore * Replaced description with summary * Spells that target tasks fix * Added initial challenge task load * Fixed lint issue
145 lines
3.7 KiB
Vue
145 lines
3.7 KiB
Vue
<template lang="pug">
|
|
.row
|
|
sidebar(v-on:search="updateSearch", v-on:filter="updateFilters")
|
|
|
|
.no-guilds.standard-page(v-if='filteredGuilds.length === 0')
|
|
.no-guilds-wrapper
|
|
.svg-icon(v-html='icons.greyBadge')
|
|
h2 {{$t('noGuildsTitle')}}
|
|
p {{$t('noGuildsParagraph1')}}
|
|
p {{$t('noGuildsParagraph2')}}
|
|
span(v-if='loading') {{ $t('loading') }}
|
|
|
|
.standard-page(v-if='filteredGuilds.length > 0')
|
|
.row
|
|
.col-md-8
|
|
h1.page-header.float-left(v-once) {{ $t('myGuilds') }}
|
|
.col-4
|
|
button.btn.btn-secondary.create-group-button.float-right(@click='createGroup()')
|
|
.svg-icon.positive-icon(v-html="icons.positiveIcon")
|
|
span(v-once) {{$t('create')}}
|
|
// @TODO: Add when we implement recent activity .float-right
|
|
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}}
|
|
.row
|
|
.col-md-12
|
|
public-guild-item(v-for="guild in filteredGuilds", :key='guild._id', :guild="guild", :display-gem-bank='true')
|
|
</template>
|
|
|
|
<style lang="scss" scoped>
|
|
@import '~client/assets/scss/colors.scss';
|
|
.sort-select {
|
|
margin: 2em;
|
|
}
|
|
|
|
.positive-icon {
|
|
color: $green-10;
|
|
width: 10px;
|
|
display: inline-block;
|
|
margin-right: .5em;
|
|
}
|
|
|
|
.no-guilds {
|
|
text-align: center;
|
|
color: $gray-200;
|
|
margin-top: 15em;
|
|
|
|
p {
|
|
font-size: 14px;
|
|
line-height: 1.43;
|
|
}
|
|
|
|
.no-guilds-wrapper {
|
|
width: 400px;
|
|
margin: 0 auto;
|
|
|
|
.svg-icon {
|
|
width: 60px;
|
|
margin: 0 auto;
|
|
}
|
|
}
|
|
}
|
|
</style>
|
|
|
|
<script>
|
|
import { mapState } from 'client/libs/store';
|
|
import groupUtilities from 'client/mixins/groupsUtilities';
|
|
|
|
import MugenScroll from 'vue-mugen-scroll';
|
|
import bFormSelect from 'bootstrap-vue/lib/components/form-select';
|
|
import bDropdown from 'bootstrap-vue/lib/components/dropdown';
|
|
import bDropdownItem from 'bootstrap-vue/lib/components/dropdown-item';
|
|
|
|
import PublicGuildItem from './publicGuildItem';
|
|
import Sidebar from './sidebar';
|
|
|
|
import greyBadgeIcon from 'assets/svg/grey-badge.svg';
|
|
import positiveIcon from 'assets/svg/positive.svg';
|
|
|
|
export default {
|
|
mixins: [groupUtilities],
|
|
components: { PublicGuildItem, MugenScroll, Sidebar, bFormSelect, bDropdown, bDropdownItem },
|
|
data () {
|
|
return {
|
|
icons: Object.freeze({
|
|
greyBadge: greyBadgeIcon,
|
|
positiveIcon,
|
|
}),
|
|
loading: false,
|
|
search: '',
|
|
filters: {},
|
|
sort: 'none',
|
|
sortOptions: [
|
|
{
|
|
text: this.$t('none'),
|
|
value: 'none',
|
|
},
|
|
{
|
|
text: this.$t('memberCount'),
|
|
value: 'member_count',
|
|
},
|
|
{
|
|
text: this.$t('recentActivity'),
|
|
value: 'recent_activity',
|
|
},
|
|
],
|
|
};
|
|
},
|
|
created () {
|
|
this.fetchGuilds();
|
|
},
|
|
computed: {
|
|
...mapState({
|
|
guilds: 'myGuilds',
|
|
}),
|
|
filteredGuilds () {
|
|
let search = this.search;
|
|
let filters = this.filters;
|
|
let user = this.$store.state.user.data;
|
|
let filterGuild = this.filterGuild;
|
|
return this.guilds.filter((guild) => {
|
|
return filterGuild(guild, filters, search, user);
|
|
});
|
|
},
|
|
},
|
|
methods: {
|
|
updateSearch (eventData) {
|
|
this.search = eventData.searchTerm;
|
|
},
|
|
updateFilters (eventData) {
|
|
this.filters = eventData;
|
|
},
|
|
async fetchGuilds () {
|
|
this.loading = true;
|
|
await this.$store.dispatch('guilds:getMyGuilds');
|
|
this.loading = false;
|
|
},
|
|
createGroup () {
|
|
this.$store.state.editingGroup = {};
|
|
this.$root.$emit('show::modal', 'guild-form');
|
|
},
|
|
},
|
|
};
|
|
</script>
|