usercp/deckcp split
This commit is contained in:
parent
063893e3e8
commit
8d3bddfd5b
7 changed files with 92 additions and 34 deletions
|
@ -1,5 +1,9 @@
|
||||||
<template>
|
<template>
|
||||||
<Header>
|
<Header v-if="user">
|
||||||
|
<v-btn flat :to="{ name: 'deckcp' }">
|
||||||
|
<v-icon>view_carousel</v-icon> Decks
|
||||||
|
</v-btn>
|
||||||
|
|
||||||
<v-btn flat :to="{ name: 'usercp' }">
|
<v-btn flat :to="{ name: 'usercp' }">
|
||||||
<v-icon>person</v-icon> {{ user.login }}
|
<v-icon>person</v-icon> {{ user.login }}
|
||||||
</v-btn>
|
</v-btn>
|
||||||
|
@ -25,10 +29,7 @@
|
||||||
Cancel
|
Cancel
|
||||||
</v-btn>
|
</v-btn>
|
||||||
|
|
||||||
<v-btn
|
<v-btn color="success" @click.native="logout">
|
||||||
color="success"
|
|
||||||
@click.native="logout"
|
|
||||||
>
|
|
||||||
Confirm
|
Confirm
|
||||||
</v-btn>
|
</v-btn>
|
||||||
</v-card-actions>
|
</v-card-actions>
|
||||||
|
@ -92,12 +93,14 @@ export default {
|
||||||
.then(response => {
|
.then(response => {
|
||||||
if (response.data.success) {
|
if (response.data.success) {
|
||||||
this.$emit('input', this.session)
|
this.$emit('input', this.session)
|
||||||
|
this.$emit('user', response.data.user)
|
||||||
return response.data.user
|
return response.data.user
|
||||||
} else {
|
} else {
|
||||||
this.goHome()
|
this.goHome()
|
||||||
return null
|
return null
|
||||||
}
|
}
|
||||||
})},
|
})
|
||||||
|
},
|
||||||
default: {
|
default: {
|
||||||
user: 0,
|
user: 0,
|
||||||
login: '',
|
login: '',
|
||||||
|
|
16
frontend/src/components/UserInfo.vue
Normal file
16
frontend/src/components/UserInfo.vue
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
{{ user.login }}
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
name: 'UserInfo',
|
||||||
|
|
||||||
|
props: {
|
||||||
|
session: String,
|
||||||
|
user: Object
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
|
@ -64,7 +64,7 @@ export default {
|
||||||
let cookie_data = JSON.parse(response.data.message)
|
let cookie_data = JSON.parse(response.data.message)
|
||||||
Cookies.set('session', cookie_data.value, cookie_data.properties)
|
Cookies.set('session', cookie_data.value, cookie_data.properties)
|
||||||
this.$refs.main.showSnackbar('Login successful!', 'success')
|
this.$refs.main.showSnackbar('Login successful!', 'success')
|
||||||
this.$router.push('usercp')
|
this.$router.push('deckcp')
|
||||||
} else {
|
} else {
|
||||||
this.$refs.main.showSnackbar(response.data.message, 'error')
|
this.$refs.main.showSnackbar(response.data.message, 'error')
|
||||||
}
|
}
|
||||||
|
|
|
@ -22,6 +22,12 @@ export default new Router({
|
||||||
component: () =>
|
component: () =>
|
||||||
import(/* webpackChunkName: "usercp" */ './views/UserCP.vue')
|
import(/* webpackChunkName: "usercp" */ './views/UserCP.vue')
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
path: '/deckcp',
|
||||||
|
name: 'deckcp',
|
||||||
|
component: () =>
|
||||||
|
import(/* webpackChunkName: "deckcp" */ './views/DeckCP.vue')
|
||||||
|
},
|
||||||
{
|
{
|
||||||
path: '/game',
|
path: '/game',
|
||||||
name: 'game',
|
name: 'game',
|
||||||
|
|
29
frontend/src/views/DeckCP.vue
Normal file
29
frontend/src/views/DeckCP.vue
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
<template>
|
||||||
|
<v-content>
|
||||||
|
<HeaderIntern v-model="session" @user="user = $event" />
|
||||||
|
|
||||||
|
<v-container v-if="user">
|
||||||
|
<h2 class="headline">Your Decks</h2>
|
||||||
|
<DeckList :session="session" />
|
||||||
|
</v-container>
|
||||||
|
</v-content>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import HeaderIntern from '@/components/HeaderIntern.vue'
|
||||||
|
import DeckList from '@/components/DeckList.vue'
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: 'DeckCP',
|
||||||
|
|
||||||
|
components: {
|
||||||
|
HeaderIntern,
|
||||||
|
DeckList
|
||||||
|
},
|
||||||
|
|
||||||
|
data: () => ({
|
||||||
|
session: null,
|
||||||
|
user: null
|
||||||
|
})
|
||||||
|
}
|
||||||
|
</script>
|
|
@ -36,15 +36,17 @@ export default {
|
||||||
|
|
||||||
mounted() {
|
mounted() {
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
|
if (this.session) {
|
||||||
axios
|
axios
|
||||||
.post('/user/login', {
|
.post('/user/login', {
|
||||||
session: this.session
|
session: this.session
|
||||||
})
|
})
|
||||||
.then(response => {
|
.then(response => {
|
||||||
if (response.data.success) {
|
if (response.data.success) {
|
||||||
this.$router.push({ name: 'usercp' })
|
this.$router.push({ name: 'deckcp' })
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,27 +1,29 @@
|
||||||
<template>
|
<template>
|
||||||
<v-content>
|
<v-content>
|
||||||
<v-container>
|
<HeaderIntern v-model="session" @user="user = $event" />
|
||||||
<HeaderIntern v-model="session" />
|
|
||||||
|
|
||||||
<DeckList :session="session" />
|
<v-container v-if="user">
|
||||||
|
<h2 class="headline">User Info</h2>
|
||||||
|
<UserInfo :session="session" :user="user" />
|
||||||
</v-container>
|
</v-container>
|
||||||
</v-content>
|
</v-content>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import HeaderIntern from '@/components/HeaderIntern.vue'
|
import HeaderIntern from '@/components/HeaderIntern.vue'
|
||||||
import DeckList from '@/components/DeckList.vue'
|
import UserInfo from '@/components/UserInfo.vue'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'UserCP',
|
name: 'UserCP',
|
||||||
|
|
||||||
components: {
|
components: {
|
||||||
HeaderIntern,
|
HeaderIntern,
|
||||||
DeckList
|
UserInfo
|
||||||
},
|
},
|
||||||
|
|
||||||
data: () => ({
|
data: () => ({
|
||||||
session: ''
|
session: null,
|
||||||
|
user: null
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
Reference in a new issue