2018-09-14 07:38:33 +02:00
< template >
2018-11-06 16:53:32 +01:00
< div class = "loader-container" v -bind : class = "{ 'is-loading': loading}" >
2018-09-14 07:38:33 +02:00
< div class = "card" v-if = "userIsAdmin" >
< header class = "card-header" >
< p class = "card-header-title" >
Edit Team
< / p >
< / header >
< div class = "card-content" >
< div class = "content" >
< form @submit.prevent ="submit()" >
< div class = "field" >
< label class = "label" for = "teamtext" > Team Name < / label >
< div class = "control" >
2018-12-25 16:03:51 +01:00
< input v -focus : class = "{ 'disabled': loading}" :disabled = "loading" class = "input" type = "text" id = "teamtext" placeholder = "The team text is here..." v-model = "team.name" >
2018-09-14 07:38:33 +02:00
< / div >
< / div >
< div class = "field" >
< label class = "label" for = "teamdescription" > Description < / label >
< div class = "control" >
< textarea : class = "{ 'disabled': loading}" :disabled = "loading" class = "textarea" placeholder = "The teams description goes here..." id = "teamdescription" v-model = "team.description" > < / textarea >
< / div >
< / div >
< / form >
< div class = "columns bigbuttons" >
< div class = "column" >
< button @click ="submit()" class = "button is-success is-fullwidth" : class = "{ 'is-loading': loading}" >
Save
< / button >
< / div >
< div class = "column is-1" >
< button @ click = "showDeleteModal = true" class = "button is-danger is-fullwidth" : class = "{ 'is-loading': loading}" >
< span class = "icon is-small" >
< icon icon = "trash-alt" / >
< / span >
< / button >
< / div >
< / div >
< / div >
< / div >
< / div >
< div class = "card" >
< header class = "card-header" >
< p class = "card-header-title" >
Team Members
< / p >
< / header >
2018-09-14 08:29:09 +02:00
< div class = "card-content content team-members" >
2018-09-17 08:28:43 +02:00
< form @submit.prevent ="addUser()" class = "add-member-form" v-if = "userIsAdmin" >
2018-09-14 08:41:28 +02:00
< div class = "field is-grouped" >
< p class = "control has-icons-left is-expanded" v -bind : class = "{ 'is-loading': loading}" >
< input class = "input" v -bind : class = "{ 'disabled': loading}" v -model .number = " newUser.id " type = "text" placeholder = "Add a new user..." >
< span class = "icon is-small is-left" >
< icon icon = "user" / >
< / span >
< / p >
< p class = "control" >
< button type = "submit" class = "button is-success" >
< span class = "icon is-small" >
< icon icon = "plus" / >
< / span >
Add
< / button >
< / p >
< / div >
< / form >
2018-09-14 08:29:09 +02:00
< table class = "table is-striped is-hoverable is-fullwidth" >
< tbody >
< tr v-for = "m in team.members" :key="m.id" >
< td > { { m . username } } < / td >
< td >
< template v-if = "m.id === user.infos.id" >
< b class = "is-success" > You < / b >
< / template >
< / td >
< td class = "type" >
< template v-if = "m.admin" >
< span class = "icon is-small" >
< icon icon = "lock" / >
< / span >
Admin
< / template >
< template v-else >
< span class = "icon is-small" >
< icon icon = "user" / >
< / span >
Member
< / template >
< / td >
< td class = "actions" v-if = "userIsAdmin" >
< button @ click = "toggleUserType(m.id, m.admin)" class = "button buttonright is-primary" v-if = "m.id !== user.infos.id" >
Make
< template v-if = "!m.admin" >
Admin
< / template >
< template v-else >
Member
< / template >
< / button >
2018-09-14 08:41:28 +02:00
< button @ click = "userToDelete = m.id; showUserDeleteModal = true" class = "button is-danger" v-if = "m.id !== user.infos.id" >
2018-09-14 08:29:09 +02:00
< span class = "icon is-small" >
< icon icon = "trash-alt" / >
< / span >
< / button >
< / td >
< / tr >
< / tbody >
2018-09-14 07:38:33 +02:00
< / table >
< / div >
< / div >
2018-09-14 08:29:09 +02:00
<!-- Team delete modal -- >
2018-09-14 07:38:33 +02:00
< modal
v - if = "showDeleteModal"
@ close = "showDeleteModal = false"
v - on : submit = "deleteTeam()" >
< span slot = "header" > Delete the team < / span >
< p slot = "text" > Are you sure you want to delete this team and all of its members ? < br / >
All team members will loose access to lists and namespaces shared with this team . < br / >
< b > This CANNOT BE UNDONE ! < / b > < / p >
< / modal >
2018-09-14 08:29:09 +02:00
<!-- User delete modal -- >
< modal
v - if = "showUserDeleteModal"
@ close = "showUserDeleteModal = false"
2018-09-14 08:41:28 +02:00
v - on : submit = "deleteUser()" >
2018-09-14 08:29:09 +02:00
< span slot = "header" > Remove a user from the team < / span >
< p slot = "text" > Are you sure you want to remove this user from the team ? < br / >
He will loose access to all lists and namespaces this team has access to . < br / >
< b > This CANNOT BE UNDONE ! < / b > < / p >
< / modal >
2018-09-14 07:38:33 +02:00
< / div >
< / template >
< script >
import auth from '../../auth'
import router from '../../router'
import { HTTP } from '../../http-common'
import message from '../../message'
export default {
name : "EditTeam" ,
data ( ) {
return {
team : { title : '' , description : '' } ,
error : '' ,
loading : false ,
showDeleteModal : false ,
2018-09-14 08:29:09 +02:00
showUserDeleteModal : false ,
2018-09-14 07:38:33 +02:00
user : auth . user ,
userIsAdmin : false ,
2018-09-14 08:29:09 +02:00
userToDelete : 0 ,
2018-09-14 08:41:28 +02:00
newUser : { id : 0 } ,
2018-09-14 07:38:33 +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' } )
}
} ,
created ( ) {
this . loadTeam ( )
} ,
watch : {
// call again the method if the route changes
'$route' : 'loadTeam'
} ,
methods : {
loadTeam ( ) {
2018-11-27 11:23:50 +01:00
const cancel = message . setLoading ( this )
2018-09-14 07:38:33 +02:00
HTTP . get ( ` teams/ ` + this . $route . params . id , { headers : { 'Authorization' : 'Bearer ' + localStorage . getItem ( 'token' ) } } )
. then ( response => {
this . $set ( this , 'team' , response . data )
let members = response . data . members
for ( const m in members ) {
2018-09-14 07:39:54 +02:00
if ( members [ m ] . id === this . user . infos . id && members [ m ] . admin ) {
this . userIsAdmin = true
2018-09-14 07:38:33 +02:00
}
}
2018-11-27 11:23:50 +01:00
cancel ( )
2018-09-14 07:38:33 +02:00
} )
. catch ( e => {
this . handleError ( e )
} )
} ,
submit ( ) {
2018-11-27 11:23:50 +01:00
const cancel = message . setLoading ( this )
2018-09-14 07:38:33 +02:00
HTTP . post ( ` teams/ ` + this . $route . params . id , this . team , { headers : { 'Authorization' : 'Bearer ' + localStorage . getItem ( 'token' ) } } )
. then ( response => {
// Update the team in the parent
for ( const n in this . $parent . teams ) {
if ( this . $parent . teams [ n ] . id === response . data . id ) {
response . data . lists = this . $parent . teams [ n ] . lists
this . $set ( this . $parent . teams , n , response . data )
}
}
this . handleSuccess ( { message : 'The team was successfully updated.' } )
2018-11-27 11:23:50 +01:00
cancel ( )
2018-09-14 07:38:33 +02:00
} )
. catch ( e => {
2018-11-28 10:11:26 +01:00
cancel ( )
this . handleError ( e )
2018-09-14 07:38:33 +02:00
} )
} ,
deleteTeam ( ) {
2018-11-27 11:23:50 +01:00
const cancel = message . setLoading ( this )
2018-09-14 07:38:33 +02:00
HTTP . delete ( ` teams/ ` + this . $route . params . id , { headers : { 'Authorization' : 'Bearer ' + localStorage . getItem ( 'token' ) } } )
. then ( ( ) => {
this . handleSuccess ( { message : 'The team was successfully deleted.' } )
2018-11-27 11:23:50 +01:00
cancel ( )
2018-09-14 07:38:33 +02:00
router . push ( { name : 'home' } )
} )
. catch ( e => {
2018-11-27 11:23:50 +01:00
cancel ( )
2018-09-14 07:38:33 +02:00
this . handleError ( e )
} )
} ,
2018-09-14 08:29:09 +02:00
deleteUser ( ) {
2018-11-27 11:23:50 +01:00
const cancel = message . setLoading ( this )
2018-09-14 08:29:09 +02:00
HTTP . delete ( ` teams/ ` + this . $route . params . id + ` /members/ ` + this . userToDelete , { headers : { 'Authorization' : 'Bearer ' + localStorage . getItem ( 'token' ) } } )
. then ( ( ) => {
2018-09-14 08:41:28 +02:00
this . showUserDeleteModal = false ;
2018-09-14 08:29:09 +02:00
this . handleSuccess ( { message : 'The user was successfully deleted from the team.' } )
this . loadTeam ( )
2018-11-27 11:23:50 +01:00
cancel ( )
2018-09-14 08:29:09 +02:00
} )
. catch ( e => {
2018-11-27 11:23:50 +01:00
cancel ( )
2018-09-14 08:29:09 +02:00
this . handleError ( e )
} )
} ,
2018-09-14 08:41:28 +02:00
addUser ( admin ) {
2018-11-27 11:23:50 +01:00
const cancel = message . setLoading ( this )
2018-09-14 08:29:09 +02:00
if ( admin === null ) {
admin = false
}
2018-09-14 08:41:28 +02:00
HTTP . put ( ` teams/ ` + this . $route . params . id + ` /members ` , { admin : admin , user _id : this . newUser . id } , { headers : { 'Authorization' : 'Bearer ' + localStorage . getItem ( 'token' ) } } )
2018-09-14 08:29:09 +02:00
. then ( ( ) => {
2018-09-14 08:41:28 +02:00
this . loadTeam ( )
this . handleSuccess ( { message : 'The team member was successfully added.' } )
2018-11-27 11:23:50 +01:00
cancel ( )
2018-09-14 08:29:09 +02:00
} )
. catch ( e => {
2018-11-27 11:23:50 +01:00
cancel ( )
2018-11-28 10:11:26 +01:00
this . handleError ( e )
2018-09-14 08:29:09 +02:00
} )
} ,
toggleUserType ( userid , current ) {
this . userToDelete = userid
2018-09-14 08:41:28 +02:00
this . newUser . id = userid
2018-09-14 08:29:09 +02:00
this . deleteUser ( )
2018-09-14 08:41:28 +02:00
this . addUser ( ! current )
2018-09-14 08:29:09 +02:00
} ,
2018-09-14 07:38:33 +02:00
handleError ( e ) {
message . error ( e , this )
} ,
handleSuccess ( e ) {
message . success ( e , this )
}
}
}
< / script >
2018-09-14 08:29:09 +02:00
< style lang = "scss" scoped >
2018-09-14 07:38:33 +02:00
. card {
margin - bottom : 1 rem ;
2018-09-14 08:29:09 +02:00
2018-09-14 08:41:28 +02:00
. add - member - form {
margin : 1 rem ;
}
2018-09-14 08:29:09 +02:00
. table {
2018-09-14 08:41:28 +02:00
border - top : 1 px solid darken ( # fff , 15 % ) ;
2018-12-25 16:03:51 +01:00
border - radius : 4 px ;
overflow : hidden ;
2018-09-14 08:41:28 +02:00
2018-09-14 08:29:09 +02:00
td {
vertical - align : middle ;
}
td . type , td . actions {
width : 200 px ;
}
td . actions {
text - align : right ;
}
}
}
. team - members {
padding : 0 ;
2018-09-14 07:38:33 +02:00
}
< / style >