223 lines
7.1 KiB
Vue
223 lines
7.1 KiB
Vue
<template>
|
|
<div>
|
|
<Menu as="div" class="flex items-center">
|
|
<MenuButton :id="menuButtonId" v-slot="{ open: userOpen }" class="w-full">
|
|
<span class="sr-only">Open workspace menu</span>
|
|
<div class="flex items-center gap-2 p-0.5 pr-1.5 hover:bg-highlight-2 rounded">
|
|
<template v-if="activeWorkspaceSlug || isProjectsActive">
|
|
<div class="relative">
|
|
<WorkspaceAvatar
|
|
:size="isMobile ? 'sm' : 'base'"
|
|
:name="displayName || ''"
|
|
:logo="displayLogo"
|
|
/>
|
|
<div
|
|
v-if="hasDiscoverableWorkspaces"
|
|
class="absolute -top-[4px] -right-[4px] size-3 border-[2px] border-foundation-page bg-primary rounded-full"
|
|
/>
|
|
</div>
|
|
<p class="text-body-xs text-foreground truncate max-w-40">
|
|
{{ displayName }}
|
|
</p>
|
|
</template>
|
|
<HeaderLogoBlock v-else no-link />
|
|
<ChevronDownIcon
|
|
:class="userOpen ? 'rotate-180' : ''"
|
|
class="h-3 w-3 flex-shrink-0"
|
|
/>
|
|
</div>
|
|
</MenuButton>
|
|
<Transition
|
|
enter-active-class="transition ease-out duration-200"
|
|
enter-from-class="transform opacity-0 scale-95"
|
|
enter-to-class="transform opacity-100 scale-100"
|
|
leave-active-class="transition ease-in duration-75"
|
|
leave-from-class="transform opacity-100 scale-100"
|
|
leave-to-class="transform opacity-0 scale-95"
|
|
>
|
|
<MenuItems
|
|
class="absolute left-2 lg:left-3 top-12 lg:top-14 w-full lg:w-[17rem] origin-top-right bg-foundation outline outline-1 outline-primary-muted rounded-md shadow-lg overflow-hidden divide-y divide-outline-2"
|
|
>
|
|
<HeaderWorkspaceSwitcherHeaderSsoExpired
|
|
v-if="activeWorkspaceHasExpiredSsoSession"
|
|
:workspace="expiredSsoWorkspaceData"
|
|
/>
|
|
<HeaderWorkspaceSwitcherHeaderProjects v-else-if="isProjectsActive" />
|
|
<HeaderWorkspaceSwitcherHeaderWorkspace
|
|
v-else-if="!!activeWorkspace"
|
|
:workspace="activeWorkspace"
|
|
/>
|
|
<div
|
|
class="p-2 pt-1 max-h-[60vh] lg:max-h-96 overflow-y-auto simple-scrollbar"
|
|
>
|
|
<LayoutSidebarMenuGroup
|
|
title="Workspaces"
|
|
:icon-click="isGuest ? undefined : handlePlusClick"
|
|
icon-text="Create workspace"
|
|
>
|
|
<HeaderWorkspaceSwitcherItem
|
|
v-for="item in workspaces"
|
|
:key="`menu-item-${item.id}`"
|
|
:is-active="item.slug === activeWorkspaceSlug"
|
|
:name="item.name"
|
|
:logo="item.logo"
|
|
:tag="getWorkspaceTag(item)"
|
|
@on-click="onWorkspaceSelect(item.slug)"
|
|
/>
|
|
<HeaderWorkspaceSwitcherItem
|
|
:is-active="route.path === projectsRoute"
|
|
name="Personal projects"
|
|
tag="LEGACY"
|
|
@on-click="onProjectsSelect"
|
|
/>
|
|
</LayoutSidebarMenuGroup>
|
|
</div>
|
|
<MenuItem v-if="hasDiscoverableWorkspacesOrJoinRequests">
|
|
<div class="p-2">
|
|
<NuxtLink
|
|
class="flex justify-between items-center cursor-pointer hover:bg-highlight-1 py-1 px-2 rounded"
|
|
@click="showDiscoverableWorkspacesModal = true"
|
|
>
|
|
<p class="text-body-xs text-foreground">Join existing workspaces</p>
|
|
<CommonBadge v-if="hasDiscoverableWorkspaces" rounded>
|
|
{{ discoverableWorkspacesCount }}
|
|
</CommonBadge>
|
|
</NuxtLink>
|
|
</div>
|
|
</MenuItem>
|
|
</MenuItems>
|
|
</Transition>
|
|
</Menu>
|
|
|
|
<WorkspaceDiscoverableWorkspacesModal
|
|
v-model:open="showDiscoverableWorkspacesModal"
|
|
/>
|
|
</div>
|
|
</template>
|
|
<script setup lang="ts">
|
|
import { Menu, MenuButton, MenuItem, MenuItems } from '@headlessui/vue'
|
|
import { ChevronDownIcon } from '@heroicons/vue/24/outline'
|
|
import { useActiveUser } from '~~/lib/auth/composables/activeUser'
|
|
import {
|
|
workspaceCreateRoute,
|
|
workspaceRoute,
|
|
projectsRoute
|
|
} from '~/lib/common/helpers/route'
|
|
import { useMixpanel } from '~~/lib/core/composables/mp'
|
|
import { useDiscoverableWorkspaces } from '~/lib/workspaces/composables/discoverableWorkspaces'
|
|
import { graphql } from '~/lib/common/generated/gql'
|
|
import { useNavigation } from '~~/lib/navigation/composables/navigation'
|
|
import { Roles, WorkspacePlans } from '@speckle/shared'
|
|
import type { HeaderWorkspaceSwitcherWorkspaceList_WorkspaceFragment } from '~/lib/common/generated/gql/graphql'
|
|
import { TailwindBreakpoints } from '~~/lib/common/helpers/tailwind'
|
|
import { useBreakpoints } from '@vueuse/core'
|
|
|
|
graphql(`
|
|
fragment HeaderWorkspaceSwitcherActiveWorkspace_Workspace on Workspace {
|
|
id
|
|
name
|
|
logo
|
|
...HeaderWorkspaceSwitcherHeaderWorkspace_Workspace
|
|
}
|
|
`)
|
|
|
|
graphql(`
|
|
fragment HeaderWorkspaceSwitcherWorkspaceList_Workspace on Workspace {
|
|
id
|
|
name
|
|
logo
|
|
role
|
|
slug
|
|
creationState {
|
|
completed
|
|
}
|
|
plan {
|
|
name
|
|
}
|
|
}
|
|
`)
|
|
|
|
graphql(`
|
|
fragment HeaderWorkspaceSwitcherWorkspaceList_User on User {
|
|
id
|
|
expiredSsoSessions {
|
|
id
|
|
...HeaderWorkspaceSwitcherHeaderExpiredSso_LimitedWorkspace
|
|
}
|
|
workspaces {
|
|
items {
|
|
id
|
|
...HeaderWorkspaceSwitcherWorkspaceList_Workspace
|
|
}
|
|
}
|
|
}
|
|
`)
|
|
|
|
const { isGuest } = useActiveUser()
|
|
const menuButtonId = useId()
|
|
const mixpanel = useMixpanel()
|
|
const {
|
|
activeWorkspaceSlug,
|
|
isProjectsActive,
|
|
mutateActiveWorkspaceSlug,
|
|
mutateIsProjectsActive,
|
|
activeWorkspaceData,
|
|
workspaceList: workspaces,
|
|
activeWorkspaceHasExpiredSsoSession,
|
|
expiredSsoWorkspaceData
|
|
} = useNavigation()
|
|
const route = useRoute()
|
|
const {
|
|
hasDiscoverableWorkspaces,
|
|
discoverableWorkspacesCount,
|
|
hasDiscoverableWorkspacesOrJoinRequests
|
|
} = useDiscoverableWorkspaces()
|
|
const breakpoints = useBreakpoints(TailwindBreakpoints)
|
|
const isMobile = breakpoints.smaller('lg')
|
|
|
|
const showDiscoverableWorkspacesModal = ref(false)
|
|
|
|
const activeWorkspace = computed(() => {
|
|
return activeWorkspaceData.value
|
|
})
|
|
|
|
const displayName = computed(() =>
|
|
isProjectsActive.value
|
|
? 'Personal projects'
|
|
: activeWorkspaceHasExpiredSsoSession.value
|
|
? expiredSsoWorkspaceData.value?.name
|
|
: activeWorkspace.value?.name
|
|
)
|
|
|
|
const displayLogo = computed(() => {
|
|
if (isProjectsActive.value) return null
|
|
return activeWorkspaceHasExpiredSsoSession.value
|
|
? expiredSsoWorkspaceData.value?.logo
|
|
: activeWorkspace.value?.logo
|
|
})
|
|
|
|
const onWorkspaceSelect = (slug: string) => {
|
|
navigateTo(workspaceRoute(slug))
|
|
mutateActiveWorkspaceSlug(slug)
|
|
}
|
|
|
|
const onProjectsSelect = () => {
|
|
mutateIsProjectsActive(true)
|
|
navigateTo(projectsRoute)
|
|
}
|
|
|
|
const handlePlusClick = () => {
|
|
navigateTo(workspaceCreateRoute())
|
|
mixpanel.track('Create Workspace Button Clicked', {
|
|
source: 'navigation'
|
|
})
|
|
}
|
|
|
|
const getWorkspaceTag = (
|
|
workspace: HeaderWorkspaceSwitcherWorkspaceList_WorkspaceFragment
|
|
) => {
|
|
if (workspace.role === Roles.Workspace.Guest) return 'GUEST'
|
|
if (workspace.plan?.name === WorkspacePlans.Free) return 'FREE'
|
|
}
|
|
</script>
|