[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

@@ -28,7 +28,7 @@ const InboxConversationPage = () => import(/* webpackChunkName: "inbox" */ './co
// Guilds
const GuildIndex = () => import(/* webpackChunkName: "guilds" */ './components/guilds/index');
const TavernPage = () => import(/* webpackChunkName: "guilds" */ './components/guilds/tavern');
// const TavernPage = () => import(/* webpackChunkName: "guilds" */ './components/guilds/tavern');
const MyGuilds = () => import(/* webpackChunkName: "guilds" */ './components/guilds/myGuilds');
const GuildsDiscoveryPage = () => import(/* webpackChunkName: "guilds" */ './components/guilds/discovery');
const GuildPage = () => import(/* webpackChunkName: "guilds" */ './components/guilds/guild');
@@ -56,11 +56,12 @@ export default new VueRouter({
],
},
{ name: 'shops', path: '/shops', component: Page },
{ name: 'party', path: '/party', component: GuildPage },
{
path: '/guilds',
component: GuildIndex,
children: [
{ name: 'tavern', path: 'tavern', component: TavernPage },
{ name: 'tavern', path: 'tavern', component: GuildPage },
{
name: 'myGuilds',
path: 'myGuilds',
@@ -80,7 +81,6 @@ export default new VueRouter({
],
},
{ name: 'challenges', path: 'challenges', component: Page },
{ name: 'party', path: 'party', component: Page },
{
path: '/user',
component: ParentPage,