2018-09-14 19:19:50 +02:00
|
|
|
<template>
|
2018-12-25 16:03:51 +01:00
|
|
|
<div class="fullpage">
|
|
|
|
<a class="close" @click="back()">
|
|
|
|
<icon :icon="['far', 'times-circle']">
|
|
|
|
</icon>
|
|
|
|
</a>
|
2018-09-14 19:19:50 +02:00
|
|
|
<h3>Create a new team</h3>
|
2018-12-25 16:03:51 +01:00
|
|
|
<form @submit.prevent="newTeam" @keyup.esc="back()">
|
2018-09-14 19:19:50 +02:00
|
|
|
<div class="field is-grouped">
|
2019-03-02 11:25:10 +01:00
|
|
|
<p class="control is-expanded" v-bind:class="{ 'is-loading': teamService.loading}">
|
|
|
|
<input v-focus class="input" v-bind:class="{ 'disabled': teamService.loading}" v-model="team.name" type="text" placeholder="The team's name goes here...">
|
2018-09-14 19:19:50 +02:00
|
|
|
</p>
|
|
|
|
<p class="control">
|
2018-12-25 16:03:51 +01:00
|
|
|
<button type="submit" class="button is-success noshadow">
|
2018-09-14 19:19:50 +02: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'
|
2019-03-02 11:25:10 +01:00
|
|
|
import TeamModel from '../../models/team'
|
|
|
|
import TeamService from '../../services/team'
|
2018-09-14 19:19:50 +02:00
|
|
|
|
|
|
|
export default {
|
|
|
|
name: "NewTeam",
|
|
|
|
data() {
|
|
|
|
return {
|
2019-03-02 11:25:10 +01:00
|
|
|
teamService: TeamService,
|
|
|
|
team: TeamModel,
|
2018-09-14 19:19:50 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
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 16:03:51 +01:00
|
|
|
created() {
|
2019-03-02 11:25:10 +01:00
|
|
|
this.teamService = new TeamService()
|
2019-10-26 14:19:56 +02:00
|
|
|
this.team = new TeamModel()
|
2018-12-25 16:03:51 +01:00
|
|
|
this.$parent.setFullPage();
|
|
|
|
},
|
2018-09-14 19:19:50 +02:00
|
|
|
methods: {
|
|
|
|
newTeam() {
|
2019-03-02 11:25:10 +01:00
|
|
|
this.teamService.create(this.team)
|
2018-09-14 19:19:50 +02:00
|
|
|
.then(response => {
|
2019-03-02 11:25:10 +01:00
|
|
|
router.push({name:'editTeam', params:{id: response.id}})
|
2020-01-30 22:47:08 +01:00
|
|
|
this.success({message: 'The team was successfully created.'}, this)
|
2018-09-14 19:19:50 +02:00
|
|
|
})
|
|
|
|
.catch(e => {
|
2020-01-30 22:47:08 +01:00
|
|
|
this.error(e, this)
|
2018-09-14 19:19:50 +02:00
|
|
|
})
|
|
|
|
},
|
2018-12-25 16:03:51 +01:00
|
|
|
back() {
|
|
|
|
router.go(-1)
|
|
|
|
},
|
2018-09-14 19:19:50 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|