frontend/src/components/teams/NewTeam.vue

77 lines
1.8 KiB
Vue
Raw Normal View History

2018-09-14 17:19:50 +00:00
<template>
2018-12-25 15:03:51 +00:00
<div class="fullpage">
<a class="close" @click="back()">
<icon :icon="['far', 'times-circle']">
</icon>
</a>
2018-09-14 17:19:50 +00:00
<h3>Create a new team</h3>
2018-12-25 15:03:51 +00:00
<form @submit.prevent="newTeam" @keyup.esc="back()">
2018-09-14 17:19:50 +00:00
<div class="field is-grouped">
2018-12-25 15:03:51 +00:00
<p class="control is-expanded" v-bind:class="{ 'is-loading': loading}">
<input v-focus class="input" v-bind:class="{ 'disabled': loading}" v-model="team.name" type="text" placeholder="The team's name goes here...">
2018-09-14 17:19:50 +00:00
</p>
<p class="control">
2018-12-25 15:03:51 +00:00
<button type="submit" class="button is-success noshadow">
2018-09-14 17:19:50 +00:00
<span class="icon is-small">
<icon icon="plus"/>
</span>
Add
</button>
</p>
</div>
</form>
</div>
</template>
<script>
import auth from '../../auth'
import router from '../../router'
import {HTTP} from '../../http-common'
import message from '../../message'
export default {
name: "NewTeam",
data() {
return {
team: {title: ''},
error: '',
loading: false
}
},
beforeMount() {
// Check if the user is already logged in, if so, redirect him to the homepage
if (!auth.user.authenticated) {
router.push({name: 'home'})
}
},
2018-12-25 15:03:51 +00:00
created() {
this.$parent.setFullPage();
},
2018-09-14 17:19:50 +00:00
methods: {
newTeam() {
2018-11-27 10:23:50 +00:00
const cancel = message.setLoading(this)
2018-09-14 17:19:50 +00:00
HTTP.put(`teams`, this.team, {headers: {'Authorization': 'Bearer ' + localStorage.getItem('token')}})
.then(response => {
router.push({name:'editTeam', params:{id: response.data.id}})
this.handleSuccess({message: 'The team was successfully created.'})
2018-11-27 10:23:50 +00:00
cancel()
2018-09-14 17:19:50 +00:00
})
.catch(e => {
2018-11-27 10:23:50 +00:00
cancel()
2018-09-14 17:19:50 +00:00
this.handleError(e)
})
},
2018-12-25 15:03:51 +00:00
back() {
router.go(-1)
},
2018-09-14 17:19:50 +00:00
handleError(e) {
message.error(e, this)
},
handleSuccess(e) {
message.success(e, this)
}
}
}
</script>