155 lines
4.0 KiB
Vue
155 lines
4.0 KiB
Vue
<template>
|
|
<AppSection label="teams">
|
|
<div class="space-y-4 p-4">
|
|
<ButtonSecondary
|
|
:label="`${$t('team.create_new')}`"
|
|
outline
|
|
@click.native="displayModalAdd(true)"
|
|
/>
|
|
<div
|
|
v-if="myTeams.loading"
|
|
class="flex flex-col items-center justify-center"
|
|
>
|
|
<SmartSpinner class="mb-4" />
|
|
<span class="text-secondaryLight">{{ $t("state.loading") }}</span>
|
|
</div>
|
|
<div
|
|
v-if="
|
|
!myTeams.loading &&
|
|
E.isRight(myTeams.data) &&
|
|
myTeams.data.right.myTeams.length === 0
|
|
"
|
|
class="
|
|
flex flex-col
|
|
text-secondaryLight
|
|
p-4
|
|
items-center
|
|
justify-center
|
|
"
|
|
>
|
|
<i class="opacity-75 pb-2 material-icons">help_outline</i>
|
|
<span class="text-center">
|
|
{{ $t("empty.teams") }}
|
|
</span>
|
|
</div>
|
|
<div
|
|
v-else-if="!myTeams.loading && E.isRight(myTeams.data)"
|
|
class="grid gap-4"
|
|
:class="modal ? 'grid-cols-1' : 'sm:grid-cols-3 md:grid-cols-4'"
|
|
>
|
|
<TeamsTeam
|
|
v-for="(team, index) in myTeams.data.right.myTeams"
|
|
:key="`team-${String(index)}`"
|
|
:team-i-d="team.id"
|
|
:team="team"
|
|
@edit-team="editTeam(team, team.id)"
|
|
@invite-team="inviteTeam(team, team.id)"
|
|
/>
|
|
</div>
|
|
<div
|
|
v-if="!myTeams.loading && E.isLeft(myTeams.data)"
|
|
class="flex items-center flex-col"
|
|
>
|
|
<i class="mb-4 material-icons">help_outline</i>
|
|
{{ $t("error.something_went_wrong") }}
|
|
</div>
|
|
</div>
|
|
<TeamsAdd :show="showModalAdd" @hide-modal="displayModalAdd(false)" />
|
|
<!-- ¯\_(ツ)_/¯ -->
|
|
<TeamsEdit
|
|
v-if="
|
|
!myTeams.loading &&
|
|
E.isRight(myTeams.data) &&
|
|
myTeams.data.right.myTeams.length > 0
|
|
"
|
|
:team="myTeams.data.right.myTeams[0]"
|
|
:show="showModalEdit"
|
|
:editing-team="editingTeam"
|
|
:editingteam-i-d="editingTeamID"
|
|
@hide-modal="displayModalEdit(false)"
|
|
@invite-team="inviteTeam(editingTeam, editingTeamID)"
|
|
/>
|
|
<TeamsInvite
|
|
v-if="
|
|
!myTeams.loading &&
|
|
E.isRight(myTeams.data) &&
|
|
myTeams.data.right.myTeams.length > 0
|
|
"
|
|
:team="myTeams.data.right.myTeams[0]"
|
|
:show="showModalInvite"
|
|
:editing-team="editingTeam"
|
|
:editingteam-i-d="editingTeamID"
|
|
@hide-modal="displayModalInvite(false)"
|
|
/>
|
|
</AppSection>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { ref, watchEffect } from "@nuxtjs/composition-api"
|
|
import * as E from "fp-ts/Either"
|
|
import { useGQLQuery } from "~/helpers/backend/GQLClient"
|
|
import {
|
|
MyTeamsDocument,
|
|
MyTeamsQuery,
|
|
MyTeamsQueryVariables,
|
|
} from "~/helpers/backend/graphql"
|
|
import { MyTeamsQueryError } from "~/helpers/backend/QueryErrors"
|
|
|
|
defineProps<{
|
|
modal: boolean
|
|
}>()
|
|
|
|
defineProps<{
|
|
modal: boolean
|
|
}>()
|
|
|
|
const showModalAdd = ref(false)
|
|
const showModalEdit = ref(false)
|
|
const showModalInvite = ref(false)
|
|
const editingTeam = ref<any>({}) // TODO: Check this out
|
|
const editingTeamID = ref<any>("")
|
|
|
|
const myTeams = useGQLQuery<
|
|
MyTeamsQuery,
|
|
MyTeamsQueryVariables,
|
|
MyTeamsQueryError
|
|
>(MyTeamsDocument)
|
|
|
|
watchEffect(() => {
|
|
console.log(myTeams)
|
|
})
|
|
|
|
const displayModalAdd = (shouldDisplay: boolean) => {
|
|
showModalAdd.value = shouldDisplay
|
|
}
|
|
|
|
const displayModalEdit = (shouldDisplay: boolean) => {
|
|
showModalEdit.value = shouldDisplay
|
|
|
|
if (!shouldDisplay) resetSelectedData()
|
|
}
|
|
|
|
const displayModalInvite = (shouldDisplay: boolean) => {
|
|
showModalInvite.value = shouldDisplay
|
|
|
|
if (!shouldDisplay) resetSelectedData()
|
|
}
|
|
|
|
const editTeam = (team: any, teamID: any) => {
|
|
editingTeam.value = team
|
|
editingTeamID.value = teamID
|
|
displayModalEdit(true)
|
|
}
|
|
|
|
const inviteTeam = (team: any, teamID: any) => {
|
|
editingTeam.value = team
|
|
editingTeamID.value = teamID
|
|
displayModalInvite(true)
|
|
}
|
|
|
|
const resetSelectedData = () => {
|
|
editingTeam.value = undefined
|
|
editingTeamID.value = undefined
|
|
}
|
|
</script>
|