286 lines
8.1 KiB
Vue
286 lines
8.1 KiB
Vue
<template>
|
|
<div class="flex min-h-screen flex-col items-center justify-between">
|
|
<div
|
|
v-if="invalidLink"
|
|
class="flex flex-1 flex-col items-center justify-center"
|
|
>
|
|
<icon-lucide-alert-triangle class="svg-icons mb-2 opacity-75" />
|
|
<h1 class="heading text-center">
|
|
{{ t("team.invalid_invite_link") }}
|
|
</h1>
|
|
<p class="mt-2 text-center">
|
|
{{ t("team.invalid_invite_link_description") }}
|
|
</p>
|
|
</div>
|
|
<div
|
|
v-else-if="loadingCurrentUser"
|
|
class="flex flex-1 flex-col items-center justify-center p-4"
|
|
>
|
|
<HoppSmartSpinner />
|
|
</div>
|
|
<div
|
|
v-else-if="currentUser === null"
|
|
class="flex flex-1 flex-col items-center justify-center p-4"
|
|
>
|
|
<h1 class="heading">{{ t("team.login_to_continue") }}</h1>
|
|
<p class="mt-2">{{ t("team.login_to_continue_description") }}</p>
|
|
<HoppButtonPrimary
|
|
:label="t('auth.login_to_hoppscotch')"
|
|
class="mt-8"
|
|
@click="invokeAction('modals.login.toggle')"
|
|
/>
|
|
</div>
|
|
<div v-else class="flex flex-1 flex-col items-center justify-center p-4">
|
|
<div
|
|
v-if="inviteDetails.loading"
|
|
class="flex flex-1 flex-col items-center justify-center p-4"
|
|
>
|
|
<HoppSmartSpinner />
|
|
</div>
|
|
<div v-else>
|
|
<div
|
|
v-if="!inviteDetails.loading && E.isLeft(inviteDetails.data)"
|
|
class="flex flex-col items-center p-4"
|
|
>
|
|
<icon-lucide-alert-triangle class="svg-icons mb-4" />
|
|
<p>
|
|
{{ getErrorMessage(inviteDetails.data.left) }}
|
|
</p>
|
|
<p
|
|
class="mt-8 flex flex-col items-center rounded border border-dividerLight p-4"
|
|
>
|
|
<span class="mb-4">
|
|
{{ t("team.logout_and_try_again") }}
|
|
</span>
|
|
<span class="flex">
|
|
<FirebaseLogout
|
|
v-if="inviteDetails.data.left.type === 'gql_error'"
|
|
outline
|
|
/>
|
|
</span>
|
|
</p>
|
|
</div>
|
|
<div
|
|
v-if="
|
|
!inviteDetails.loading &&
|
|
E.isRight(inviteDetails.data) &&
|
|
!joinTeamSuccess
|
|
"
|
|
class="flex flex-1 flex-col items-center justify-center p-4"
|
|
>
|
|
<h1 class="heading">
|
|
{{
|
|
t("team.join_team", {
|
|
workspace: inviteDetails.data.right.teamInvitation.team.name,
|
|
})
|
|
}}
|
|
</h1>
|
|
<p class="mt-2 text-secondaryLight">
|
|
{{
|
|
t("team.invited_to_team", {
|
|
owner:
|
|
inviteDetails.data.right.teamInvitation.creator.displayName ??
|
|
inviteDetails.data.right.teamInvitation.creator.email,
|
|
workspace: inviteDetails.data.right.teamInvitation.team.name,
|
|
})
|
|
}}
|
|
</p>
|
|
<div class="mt-8">
|
|
<HoppButtonPrimary
|
|
:label="
|
|
t('team.join_team', {
|
|
workspace: inviteDetails.data.right.teamInvitation.team.name,
|
|
})
|
|
"
|
|
:loading="loading"
|
|
:disabled="revokedLink"
|
|
@click="joinTeam"
|
|
/>
|
|
</div>
|
|
</div>
|
|
<div
|
|
v-if="
|
|
!inviteDetails.loading &&
|
|
E.isRight(inviteDetails.data) &&
|
|
joinTeamSuccess
|
|
"
|
|
class="flex flex-1 flex-col items-center justify-center p-4"
|
|
>
|
|
<h1 class="heading">
|
|
{{
|
|
t("team.joined_team", {
|
|
workspace: inviteDetails.data.right.teamInvitation.team.name,
|
|
})
|
|
}}
|
|
</h1>
|
|
<p class="mt-2 text-secondaryLight">
|
|
{{
|
|
t("team.joined_team_description", {
|
|
workspace: inviteDetails.data.right.teamInvitation.team.name,
|
|
})
|
|
}}
|
|
</p>
|
|
<div class="mt-8">
|
|
<HoppButtonSecondary
|
|
to="/"
|
|
:icon="IconHome"
|
|
filled
|
|
:label="t('app.home')"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="p-4">
|
|
<HoppButtonSecondary
|
|
class="!font-bold tracking-wide !text-secondaryDark"
|
|
label="HOPPSCOTCH"
|
|
to="/"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { computed, defineComponent } from "vue"
|
|
import { useRoute } from "vue-router"
|
|
import * as E from "fp-ts/Either"
|
|
import * as TE from "fp-ts/TaskEither"
|
|
import { pipe } from "fp-ts/function"
|
|
import { GQLError } from "~/helpers/backend/GQLClient"
|
|
import { useGQLQuery } from "@composables/graphql"
|
|
import {
|
|
GetInviteDetailsDocument,
|
|
GetInviteDetailsQuery,
|
|
GetInviteDetailsQueryVariables,
|
|
} from "~/helpers/backend/graphql"
|
|
import { acceptTeamInvitation } from "~/helpers/backend/mutations/TeamInvitation"
|
|
import { initializeApp } from "~/helpers/app"
|
|
import { platform } from "~/platform"
|
|
import { onLoggedIn } from "@composables/auth"
|
|
import { useReadonlyStream } from "@composables/stream"
|
|
import { useToast } from "@composables/toast"
|
|
import { useI18n } from "~/composables/i18n"
|
|
import IconHome from "~icons/lucide/home"
|
|
import { invokeAction } from "~/helpers/actions"
|
|
|
|
type GetInviteDetailsError =
|
|
| "team_invite/not_valid_viewer"
|
|
| "team_invite/not_found"
|
|
| "team_invite/no_invite_found"
|
|
| "team_invite/email_do_not_match"
|
|
| "team_invite/already_member"
|
|
|
|
export default defineComponent({
|
|
layout: "empty",
|
|
|
|
setup() {
|
|
const route = useRoute()
|
|
|
|
const inviteDetails = useGQLQuery<
|
|
GetInviteDetailsQuery,
|
|
GetInviteDetailsQueryVariables,
|
|
GetInviteDetailsError
|
|
>({
|
|
query: GetInviteDetailsDocument,
|
|
variables: {
|
|
inviteID: route.query.id as string,
|
|
},
|
|
defer: true,
|
|
})
|
|
|
|
onLoggedIn(() => {
|
|
if (typeof route.query.id === "string") {
|
|
inviteDetails.execute({
|
|
inviteID: route.query.id,
|
|
})
|
|
}
|
|
})
|
|
|
|
const probableUser = useReadonlyStream(
|
|
platform.auth.getProbableUserStream(),
|
|
platform.auth.getProbableUser()
|
|
)
|
|
|
|
const currentUser = useReadonlyStream(
|
|
platform.auth.getCurrentUserStream(),
|
|
platform.auth.getCurrentUser()
|
|
)
|
|
|
|
const loadingCurrentUser = computed(() => {
|
|
if (!probableUser.value) return false
|
|
else if (!currentUser.value) return true
|
|
return false
|
|
})
|
|
|
|
return {
|
|
E,
|
|
inviteDetails,
|
|
loadingCurrentUser,
|
|
currentUser,
|
|
toast: useToast(),
|
|
t: useI18n(),
|
|
IconHome,
|
|
invokeAction,
|
|
}
|
|
},
|
|
data() {
|
|
return {
|
|
invalidLink: false,
|
|
loading: false,
|
|
revokedLink: false,
|
|
inviteID: "",
|
|
joinTeamSuccess: false,
|
|
}
|
|
},
|
|
beforeMount() {
|
|
initializeApp()
|
|
},
|
|
mounted() {
|
|
if (typeof this.$route.query.id === "string") {
|
|
this.inviteID = this.$route.query.id
|
|
}
|
|
this.invalidLink = !this.inviteID
|
|
// TODO: check revokeTeamInvitation
|
|
// TODO: check login user already a member
|
|
},
|
|
methods: {
|
|
joinTeam() {
|
|
this.loading = true
|
|
pipe(
|
|
acceptTeamInvitation(this.inviteID),
|
|
TE.matchW(
|
|
() => {
|
|
this.loading = false
|
|
this.toast.error(`${this.t("error.something_went_wrong")}`)
|
|
},
|
|
() => {
|
|
this.joinTeamSuccess = true
|
|
this.loading = false
|
|
}
|
|
)
|
|
)()
|
|
},
|
|
getErrorMessage(error: GQLError<GetInviteDetailsError>) {
|
|
if (error.type === "network_error") {
|
|
return this.t("error.network_error")
|
|
}
|
|
switch (error.error) {
|
|
case "team_invite/not_valid_viewer":
|
|
return this.t("team.not_valid_viewer")
|
|
case "team_invite/not_found":
|
|
return this.t("team.not_found")
|
|
case "team_invite/no_invite_found":
|
|
return this.t("team.no_invite_found")
|
|
case "team_invite/already_member":
|
|
return this.t("team.already_member")
|
|
case "team_invite/email_do_not_match":
|
|
return this.t("team.email_do_not_match")
|
|
default:
|
|
return this.t("error.something_went_wrong")
|
|
}
|
|
},
|
|
},
|
|
})
|
|
</script>
|