[WIP] Began adding tavern and party (#8814)

* Began adding tavern and party

* Fixed routing conflicts and tavern constant

* Updated button styles

* Added not on quest block

* Added no challenge block

* Began adding quest details

* Began updating group create modal to have party info

* Added create party modal

* Added share userid menu

* Began adding toggle

* Finished toggle styles

* Added start quest modal

* Ported over party ctrl code

* Finished porting over party ctrl code

* Added more quest actions

* Added own quests modal and quest modal details

* Fixed member modal styles and icons

* Added many random style updates

* Small text align fix

* Removed extra update

* Removed config and extra key

* Removed client string extras
This commit is contained in:
Keith Holliday
2017-06-27 14:02:55 -06:00
committed by GitHub
parent 6e1bbd05bc
commit aee21edd5f
25 changed files with 1197 additions and 254 deletions

View File

@@ -59,15 +59,30 @@
.no-party {
.small-text {
color: $header-color;
flex-wrap: nowrap;
}
h3 {
color: $white;
margin-bottom: 4px;
.no-party, .party-members {
flex-grow: 1;
}
button {
margin-top: 16px;
.party-members {
overflow-x: auto;
}
.no-party {
.small-text {
color: $header-color;
}
h3 {
color: $white;
margin-bottom: 4px;
}
button {
margin-top: 16px;
}
}
}
</style>
@@ -75,10 +90,12 @@
<script>
import { mapGetters, mapActions } from 'client/libs/store';
import MemberDetails from './memberDetails';
import createPartyModal from './guilds/createPartyModal';
export default {
components: {
MemberDetails,
createPartyModal,
},
data () {
return {
@@ -102,6 +119,9 @@ export default {
this.expandedMember = memberId;
}
},
launchPartyModal () {
this.$root.$emit('show::modal', 'create-party-modal');
},
},
created () {
this.getPartyMembers();