1f1300baaf
* Update move copy * Ensure version counter doesn't break onto 2 lines * Increase contrast in breadcrumb Darker '/' and only font-medium on the active item * Make it clearer to input new short ID and not current * Add ... to menu items * Change more "..." in menu items * Fix gap and border between invite banners And move the background to the individual banners
188 lines
5.7 KiB
Vue
188 lines
5.7 KiB
Vue
<template>
|
|
<div class="mt-2">
|
|
<div class="flex flex-col-reverse md:justify-between md:flex-row md:gap-x-4">
|
|
<div class="relative w-full md:max-w-md mt-6 md:mt-0">
|
|
<FormTextInput
|
|
name="search"
|
|
:custom-icon="MagnifyingGlassIcon"
|
|
color="foundation"
|
|
full-width
|
|
search
|
|
:show-clear="!!search"
|
|
placeholder="Search invitations"
|
|
class="rounded-md border border-outline-3"
|
|
v-bind="bind"
|
|
v-on="on"
|
|
/>
|
|
</div>
|
|
<FormButton @click="toggleInviteDialog">Invite</FormButton>
|
|
</div>
|
|
|
|
<LayoutTable
|
|
class="mt-6"
|
|
:columns="[
|
|
{ id: 'email', header: 'Email', classes: 'col-span-6 truncate' },
|
|
{ id: 'invitedBy', header: 'Invited by', classes: 'col-span-5' },
|
|
{ id: 'actions', header: '', classes: 'col-span-1 flex justify-end' }
|
|
]"
|
|
:items="invites"
|
|
>
|
|
<template #email="{ item }">
|
|
{{ isInvite(item) ? item.email : '' }}
|
|
</template>
|
|
|
|
<template #invitedBy="{ item }">
|
|
<div class="flex items-center gap-2">
|
|
<UserAvatar v-if="isInvite(item)" hide-tooltip :user="item.invitedBy" />
|
|
<span class="truncate">
|
|
{{ isInvite(item) ? item.invitedBy.name : '' }}
|
|
</span>
|
|
</div>
|
|
</template>
|
|
|
|
<template #actions="{ item }">
|
|
<LayoutMenu
|
|
v-model:open="showActionsMenu[item.id]"
|
|
:items="actionItems"
|
|
mount-menu-on-body
|
|
:menu-position="HorizontalDirection.Left"
|
|
@chosen="({ item: actionItem }) => onActionChosen(actionItem, item)"
|
|
>
|
|
<FormButton
|
|
:color="showActionsMenu[item.id] ? 'outline' : 'subtle'"
|
|
hide-text
|
|
:icon-right="showActionsMenu[item.id] ? XMarkIcon : EllipsisHorizontalIcon"
|
|
@click.stop="toggleMenu(item)"
|
|
/>
|
|
</LayoutMenu>
|
|
</template>
|
|
</LayoutTable>
|
|
|
|
<SettingsServerPendingInvitationsDeleteDialog
|
|
v-model:open="showDeleteInvitationDialog"
|
|
:invite="inviteToModify"
|
|
/>
|
|
|
|
<InfiniteLoading
|
|
v-if="invites?.length"
|
|
:settings="{ identifier }"
|
|
class="py-4"
|
|
@infinite="onInfiniteLoad"
|
|
/>
|
|
|
|
<SettingsServerUserInviteDialog v-model:open="showInviteDialog" />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { useMutation } from '@vue/apollo-composable'
|
|
import {
|
|
MagnifyingGlassIcon,
|
|
XMarkIcon,
|
|
EllipsisHorizontalIcon
|
|
} from '@heroicons/vue/24/outline'
|
|
import type { ItemType, InviteItem } from '~~/lib/server-management/helpers/types'
|
|
import { adminResendInviteMutation } from '~~/lib/server-management/graphql/mutations'
|
|
import { isInvite } from '~~/lib/server-management/helpers/utils'
|
|
import { useGlobalToast, ToastNotificationType } from '~~/lib/common/composables/toast'
|
|
import {
|
|
convertThrowIntoFetchResult,
|
|
getFirstErrorMessage
|
|
} from '~~/lib/common/helpers/graphql'
|
|
import { useDebouncedTextInput } from '@speckle/ui-components'
|
|
import { usePaginatedQuery } from '~/lib/common/composables/graphql'
|
|
import { getInvitesQuery } from '~~/lib/server-management/graphql/queries'
|
|
import { HorizontalDirection } from '~~/lib/common/composables/window'
|
|
import type { LayoutMenuItem } from '~~/lib/layout/helpers/components'
|
|
|
|
const { triggerNotification } = useGlobalToast()
|
|
const { mutate: resendInvitationMutation } = useMutation(adminResendInviteMutation)
|
|
const { on, bind, value: search } = useDebouncedTextInput()
|
|
|
|
const inviteToModify = ref<InviteItem | null>(null)
|
|
const showDeleteInvitationDialog = ref(false)
|
|
const successfullyResentInvites = ref<string[]>([])
|
|
const showInviteDialog = ref(false)
|
|
const showActionsMenu = ref<Record<string, boolean>>({})
|
|
|
|
const {
|
|
identifier,
|
|
onInfiniteLoad,
|
|
query: { result }
|
|
} = usePaginatedQuery({
|
|
query: getInvitesQuery,
|
|
baseVariables: computed(() => ({
|
|
query: search.value?.length ? search.value : null,
|
|
limit: 50
|
|
})),
|
|
resolveKey: (vars) => [vars.query || ''],
|
|
resolveCurrentResult: (res) => res?.admin.inviteList,
|
|
resolveNextPageVariables: (baseVars, cursor) => ({
|
|
...baseVars,
|
|
cursor
|
|
}),
|
|
resolveCursorFromVariables: (vars) => vars.cursor
|
|
})
|
|
|
|
const invites = computed(() => result.value?.admin.inviteList.items || [])
|
|
|
|
const actionItems: LayoutMenuItem[][] = [
|
|
[
|
|
{ title: 'Resend invitation', id: 'resend-invite' },
|
|
{ title: 'Delete invitation...', id: 'delete-invite' }
|
|
]
|
|
]
|
|
|
|
const onActionChosen = (actionItem: LayoutMenuItem, item: ItemType) => {
|
|
if (isInvite(item)) {
|
|
if (actionItem.id === 'resend-invite') {
|
|
resendInvitation(item)
|
|
} else if (actionItem.id === 'delete-invite') {
|
|
openDeleteInvitationDialog(item)
|
|
}
|
|
}
|
|
}
|
|
|
|
const toggleMenu = (item: ItemType) => {
|
|
if (isInvite(item)) {
|
|
showActionsMenu.value[item.id] = !showActionsMenu.value[item.id]
|
|
}
|
|
}
|
|
|
|
const openDeleteInvitationDialog = (item: ItemType) => {
|
|
if (isInvite(item)) {
|
|
inviteToModify.value = item
|
|
showDeleteInvitationDialog.value = true
|
|
}
|
|
}
|
|
|
|
const resendInvitation = async (item: InviteItem) => {
|
|
const inviteId = item.id
|
|
if (!inviteId) return
|
|
|
|
const result = await resendInvitationMutation({ inviteId }).catch(
|
|
convertThrowIntoFetchResult
|
|
)
|
|
|
|
if (result?.data?.inviteResend) {
|
|
successfullyResentInvites.value.push(inviteId)
|
|
triggerNotification({
|
|
type: ToastNotificationType.Success,
|
|
title: 'Invitation resent',
|
|
description: 'The invitation has been successfully resent'
|
|
})
|
|
} else {
|
|
const errorMessage = getFirstErrorMessage(result?.errors)
|
|
triggerNotification({
|
|
type: ToastNotificationType.Danger,
|
|
title: 'Failed to resend invitation',
|
|
description: errorMessage
|
|
})
|
|
}
|
|
}
|
|
|
|
const toggleInviteDialog = () => {
|
|
showInviteDialog.value = true
|
|
}
|
|
</script>
|