You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

166 lines
3.5 KiB

<template>
<v-card>
<v-card-title>
<v-btn
class="text-capitalize"
color="primary"
@click.stop="dialogCreate=true"
>
{{ $t('generic.add') }}
</v-btn>
<v-btn
class="text-capitalize ms-2"
:disabled="!canDelete"
outlined
@click.stop="dialogDelete=true"
>
{{ $t('generic.delete') }}
</v-btn>
<v-dialog v-model="dialogCreate">
<form-create
v-model="editedItem"
:error-message="errorMessage"
@cancel="close"
@save="save"
/>
</v-dialog>
<v-dialog v-model="dialogDelete">
<form-delete
:selected="selected"
@cancel="dialogDelete=false"
@remove="remove"
/>
</v-dialog>
</v-card-title>
<member-list
v-model="selected"
:items="items"
:is-loading="isLoading"
@edit="editItem"
/>
</v-card>
</template>
<script lang="ts">
import Vue from 'vue'
import MemberList from '@/components/member/MemberList.vue'
import FormDelete from '@/components/member/FormDelete.vue'
import FormCreate from '~/components/member/FormCreate.vue'
import { MemberDTO } from '~/services/application/member/memberData'
export default Vue.extend({
layout: 'project',
components: {
MemberList,
FormCreate,
FormDelete
},
async fetch() {
this.isLoading = true
try {
this.items = await this.$services.member.list(this.projectId)
} catch(e) {
this.$router.push(`/projects/${this.projectId}`)
} finally {
this.isLoading = false
}
},
data() {
return {
dialogCreate: false,
dialogDelete: false,
editedIndex: -1,
editedItem: {
user: -1,
role: -1,
username: '',
rolename: ''
} as MemberDTO,
defaultItem: {
user: -1,
role: -1,
username: '',
rolename: ''
} as MemberDTO,
items: [] as MemberDTO[],
selected: [] as MemberDTO[],
isLoading: false,
errorMessage: ''
}
},
computed: {
canDelete(): boolean {
return this.selected.length > 0
},
projectId(): string {
return this.$route.params.id
}
},
methods: {
async create() {
try {
await this.$services.member.create(this.projectId, this.editedItem)
this.close()
this.$fetch()
} catch(e) {
this.errorMessage = e.message
}
},
async update() {
try {
await this.$services.member.update(this.projectId, this.editedItem)
this.close()
this.$fetch()
} catch(e) {
this.errorMessage = e.message
}
},
save() {
if (this.editedIndex > -1) {
this.update()
} else {
this.create()
}
},
close() {
this.dialogCreate = false
this.errorMessage = ''
this.$nextTick(() => {
this.editedItem = Object.assign({}, this.defaultItem)
this.editedIndex = -1
})
},
async remove() {
await this.$services.member.bulkDelete(this.projectId, this.selected)
this.$fetch()
this.dialogDelete = false
this.selected = []
},
editItem(item: MemberDTO) {
this.editedIndex = this.items.indexOf(item)
this.editedItem = Object.assign({}, item)
this.dialogCreate = true
}
},
validate({ params }) {
return /^\d+$/.test(params.id)
}
})
</script>
<style scoped>
::v-deep .v-dialog {
width: 800px;
}
</style>