Co-authored-by: Isha Gupta <40794215+IshaGupta18@users.noreply.github.com> Co-authored-by: Liyas Thomas <liyascthomas@gmail.com> Co-authored-by: Osheen Sachdev <45964755+oshhh@users.noreply.github.com> Co-authored-by: Rohan Rajpal <rohan46000@gmail.com> Co-authored-by: Raghav Gupta <raghav.gupta0307@gmail.com>
437 lines
12 KiB
Vue
437 lines
12 KiB
Vue
<template>
|
|
<SmartModal v-if="show" @close="hideModal">
|
|
<div slot="header">
|
|
<ul>
|
|
<li>
|
|
<div class="row-wrapper">
|
|
<h3 class="title">{{ $t("edit_team") }}</h3>
|
|
<div>
|
|
<button class="icon" @click="hideModal">
|
|
<i class="material-icons">close</i>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
<div slot="body">
|
|
<ul>
|
|
<li>
|
|
<input
|
|
type="text"
|
|
v-model="name"
|
|
:placeholder="editingTeam.name"
|
|
@keyup.enter="saveTeam"
|
|
/>
|
|
</li>
|
|
</ul>
|
|
<ul>
|
|
<li>
|
|
<div class="row-wrapper">
|
|
<label for="memberList">{{ $t("team_member_list") }}</label>
|
|
<div></div>
|
|
</div>
|
|
</li>
|
|
</ul>
|
|
<ul v-for="(member, index) in teamMembers" :key="`new-${index}`">
|
|
<li>
|
|
<input
|
|
:placeholder="$t('email')"
|
|
:name="'param' + index"
|
|
:value="member.user.email"
|
|
readonly
|
|
/>
|
|
</li>
|
|
<li>
|
|
<span class="select-wrapper">
|
|
<v-popover>
|
|
<input
|
|
:placeholder="$t('permissions')"
|
|
:name="'value' + index"
|
|
:value="typeof member.role === 'string' ? member.role : JSON.stringify(member.role)"
|
|
readonly
|
|
/>
|
|
<template slot="popover">
|
|
<div>
|
|
<button class="icon" v-close-popover @click="member.role = 'OWNER'">OWNER</button>
|
|
</div>
|
|
<div>
|
|
<button class="icon" v-close-popover @click="member.role = 'EDITOR'">
|
|
EDITOR
|
|
</button>
|
|
</div>
|
|
<div>
|
|
<button class="icon" v-close-popover @click="member.role = 'VIEWER'">
|
|
VIEWER
|
|
</button>
|
|
</div>
|
|
</template>
|
|
</v-popover>
|
|
</span>
|
|
</li>
|
|
<div>
|
|
<li>
|
|
<button
|
|
class="icon"
|
|
@click="removeExistingTeamMember(member.user.uid)"
|
|
v-tooltip.bottom="$t('delete')"
|
|
id="member"
|
|
>
|
|
<i class="material-icons">delete</i>
|
|
</button>
|
|
</li>
|
|
</div>
|
|
</ul>
|
|
<ul v-for="(member, index) in members" :key="index">
|
|
<li>
|
|
<input
|
|
:placeholder="$t('email')"
|
|
:name="'param' + index"
|
|
v-model="member.key"
|
|
autofocus
|
|
/>
|
|
</li>
|
|
<li>
|
|
<span class="select-wrapper">
|
|
<v-popover>
|
|
<input
|
|
:placeholder="$t('permissions')"
|
|
:name="'value' + index"
|
|
:value="
|
|
typeof member.value === 'string' ? member.value : JSON.stringify(member.value)
|
|
"
|
|
readonly
|
|
/>
|
|
<template slot="popover">
|
|
<div>
|
|
<button class="icon" v-close-popover @click="member.value = 'OWNER'">
|
|
OWNER
|
|
</button>
|
|
</div>
|
|
<div>
|
|
<button class="icon" v-close-popover @click="member.value = 'EDITOR'">
|
|
EDITOR
|
|
</button>
|
|
</div>
|
|
<div>
|
|
<button class="icon" v-close-popover @click="member.value = 'VIEWER'">
|
|
VIEWER
|
|
</button>
|
|
</div>
|
|
</template>
|
|
</v-popover>
|
|
</span>
|
|
</li>
|
|
<div>
|
|
<li>
|
|
<button
|
|
class="icon"
|
|
@click="removeTeamMember(index)"
|
|
v-tooltip.bottom="$t('delete')"
|
|
id="member"
|
|
>
|
|
<i class="material-icons">delete</i>
|
|
</button>
|
|
</li>
|
|
</div>
|
|
</ul>
|
|
<ul>
|
|
<li>
|
|
<button class="icon" @click="addTeamMember">
|
|
<i class="material-icons">add</i>
|
|
<span>{{ $t("add_new") }}</span>
|
|
</button>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
<div slot="footer">
|
|
<div class="row-wrapper">
|
|
<span></span>
|
|
<span>
|
|
<button class="icon" @click="hideModal">
|
|
{{ $t("cancel") }}
|
|
</button>
|
|
<button class="icon primary" @click="saveTeam">
|
|
{{ $t("save") }}
|
|
</button>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</SmartModal>
|
|
</template>
|
|
|
|
<script>
|
|
import team_utils from "~/helpers/teams/utils"
|
|
import gql from "graphql-tag"
|
|
|
|
export default {
|
|
apollo: {
|
|
teamMembers: {
|
|
query: gql`
|
|
query GetMyTeams {
|
|
myTeams {
|
|
id
|
|
members {
|
|
user {
|
|
displayName
|
|
email
|
|
uid
|
|
}
|
|
role
|
|
}
|
|
}
|
|
}
|
|
`,
|
|
subscribeToMore: [
|
|
{
|
|
document: gql`
|
|
subscription teamMemberAdded($teamID: String!) {
|
|
teamMemberAdded(teamID: $teamID) {
|
|
role
|
|
user {
|
|
displayName
|
|
email
|
|
uid
|
|
}
|
|
}
|
|
}
|
|
`,
|
|
variables() {
|
|
return { teamID: this.$props.editingteamID }
|
|
},
|
|
skip() {
|
|
return this.$props.editingteamID === ""
|
|
},
|
|
updateQuery(previousResult, { subscriptionData }) {
|
|
const teamIdx = previousResult.myTeams.findIndex(
|
|
(x) => x.id === this.$props.editingteamID
|
|
)
|
|
previousResult.myTeams[teamIdx].members.push(subscriptionData.data.teamMemberAdded)
|
|
return previousResult
|
|
},
|
|
},
|
|
{
|
|
document: gql`
|
|
subscription teamMemberUpdated($teamID: String!) {
|
|
teamMemberUpdated(teamID: $teamID) {
|
|
role
|
|
user {
|
|
displayName
|
|
email
|
|
uid
|
|
}
|
|
}
|
|
}
|
|
`,
|
|
variables() {
|
|
return { teamID: this.$props.editingteamID }
|
|
},
|
|
skip() {
|
|
return this.$props.editingteamID === ""
|
|
},
|
|
updateQuery(previousResult, { subscriptionData }) {
|
|
const teamIdx = previousResult.myTeams.findIndex(
|
|
(x) => x.id === this.$props.editingteamID
|
|
)
|
|
const memberIdx = previousResult.myTeams[teamIdx].members.findIndex(
|
|
(x) => x.user.uid === subscriptionData.data.teamMemberUpdated.user.uid
|
|
)
|
|
previousResult.myTeams[teamIdx].members[memberIdx].user =
|
|
subscriptionData.data.teamMemberUpdated.user
|
|
previousResult.myTeams[teamIdx].members[memberIdx].role =
|
|
subscriptionData.data.teamMemberUpdated.role
|
|
|
|
return previousResult
|
|
},
|
|
},
|
|
{
|
|
document: gql`
|
|
subscription teamMemberRemoved($teamID: String!) {
|
|
teamMemberRemoved(teamID: $teamID)
|
|
}
|
|
`,
|
|
variables() {
|
|
return { teamID: this.$props.editingteamID }
|
|
},
|
|
skip() {
|
|
return this.$props.editingteamID === ""
|
|
},
|
|
updateQuery(previousResult, { subscriptionData }) {
|
|
const teamIdx = previousResult.myTeams.findIndex(
|
|
(x) => x.id === this.$props.editingteamID
|
|
)
|
|
const memberIdx = previousResult.myTeams[teamIdx].members.findIndex(
|
|
(x) => x.user.id === subscriptionData.data.teamMemberRemoved.id
|
|
)
|
|
if (memberIdx !== -1) previousResult.myTeams[teamIdx].members.splice(memberIdx, 1)
|
|
|
|
return previousResult
|
|
},
|
|
},
|
|
],
|
|
update(response) {
|
|
const teamIdx = response.myTeams.findIndex((x) => x.id === this.$props.editingteamID)
|
|
return response.myTeams[teamIdx].members
|
|
},
|
|
skip() {
|
|
return this.$props.editingteamID === ""
|
|
},
|
|
},
|
|
},
|
|
props: {
|
|
show: Boolean,
|
|
editingTeam: Object,
|
|
editingteamID: String,
|
|
},
|
|
data() {
|
|
return {
|
|
rename: null,
|
|
doneButton: '<i class="material-icons">done</i>',
|
|
members: [],
|
|
}
|
|
},
|
|
computed: {
|
|
editingTeamCopy() {
|
|
return this.editingTeam
|
|
},
|
|
name: {
|
|
get() {
|
|
return this.editingTeam.name
|
|
},
|
|
set(name) {
|
|
this.rename = name
|
|
},
|
|
},
|
|
},
|
|
methods: {
|
|
addTeamMember() {
|
|
let value = { key: "", value: "" }
|
|
this.members.push(value)
|
|
console.log("addTeamMember")
|
|
},
|
|
removeExistingTeamMember(userID) {
|
|
team_utils
|
|
.removeTeamMember(this.$apollo, userID, this.editingteamID)
|
|
.then((data) => {
|
|
// Result
|
|
this.$toast.success(this.$t("user_removed"), {
|
|
icon: "done",
|
|
})
|
|
this.hideModal()
|
|
})
|
|
.catch((error) => {
|
|
// Error
|
|
this.$toast.error(this.$t("error_occurred"), {
|
|
icon: "done",
|
|
})
|
|
console.error(error)
|
|
})
|
|
},
|
|
removeTeamMember(index) {
|
|
this.members.splice(index, 1)
|
|
console.log("removeTeamMember")
|
|
},
|
|
validateEmail(emailID) {
|
|
if (/^[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-zA-Z0-9-]+(?:\.[a-zA-Z0-9-]+)*$/.test(emailID)) {
|
|
return true
|
|
}
|
|
return false
|
|
},
|
|
saveTeam() {
|
|
if (this.$data.rename !== null && this.$data.rename.replace(/\s/g, "").length < 6) {
|
|
this.$toast.error(this.$t("string_length_insufficient"), {
|
|
icon: "error",
|
|
})
|
|
console.log("String length less than 6")
|
|
return
|
|
}
|
|
console.log("saveTeam", this.members)
|
|
this.$data.members.forEach((element) => {
|
|
if (!this.validateEmail(element.key)) {
|
|
this.$toast.error(this.$t("invalid_emailID_format"), {
|
|
icon: "error",
|
|
})
|
|
console.log("Email id format invalid")
|
|
return
|
|
}
|
|
})
|
|
this.$data.members.forEach((element) => {
|
|
// Call to the graphql mutation
|
|
team_utils
|
|
.addTeamMemberByEmail(this.$apollo, element.value, element.key, this.editingteamID)
|
|
.then((data) => {
|
|
// Result
|
|
this.$toast.success(this.$t("team_saved"), {
|
|
icon: "done",
|
|
})
|
|
this.hideModal()
|
|
})
|
|
.catch((error) => {
|
|
// Error
|
|
this.$toast.error(this.$t("error_occurred"), {
|
|
icon: "done",
|
|
})
|
|
console.error(error)
|
|
})
|
|
})
|
|
let messageShown = true
|
|
this.teamMembers.forEach((element) => {
|
|
team_utils
|
|
.updateTeamMemberRole(this.$apollo, element.user.uid, element.role, this.editingteamID)
|
|
.then((data) => {
|
|
// Result
|
|
if (messageShown) {
|
|
this.$toast.success(this.$t("role_updated"), {
|
|
icon: "done",
|
|
})
|
|
messageShown = false
|
|
}
|
|
this.hideModal()
|
|
})
|
|
.catch((error) => {
|
|
// Error
|
|
if (messageShown) {
|
|
this.$toast.error(this.$t("error_occurred"), {
|
|
icon: "done",
|
|
})
|
|
messageShown = false
|
|
}
|
|
console.error(error)
|
|
})
|
|
})
|
|
if (this.$data.rename !== null) {
|
|
const newName = this.name === this.$data.rename ? this.name : this.$data.rename
|
|
if (!/\S/.test(newName))
|
|
return this.$toast.error(this.$t("team_name_empty"), {
|
|
icon: "error",
|
|
})
|
|
// Call to the graphql mutation
|
|
if (this.name !== this.rename)
|
|
team_utils
|
|
.renameTeam(this.$apollo, newName, this.editingteamID)
|
|
.then((data) => {
|
|
// Result
|
|
this.$toast.success(this.$t("team_saved"), {
|
|
icon: "done",
|
|
})
|
|
this.hideModal()
|
|
})
|
|
.catch((error) => {
|
|
// Error
|
|
this.$toast.error(this.$t("error_occurred"), {
|
|
icon: "done",
|
|
})
|
|
console.error(error)
|
|
})
|
|
}
|
|
this.hideModal()
|
|
this.members = []
|
|
},
|
|
hideModal() {
|
|
this.$emit("hide-modal")
|
|
this.$data.name = undefined
|
|
},
|
|
},
|
|
}
|
|
</script>
|