89 lines
2.6 KiB
Vue
89 lines
2.6 KiB
Vue
<template>
|
|
<WorkspacePlanLimitReachedDialog v-model:open="dialogOpen" :buttons="buttons">
|
|
<template #header>Plan limit reached</template>
|
|
<div class="mb-2">
|
|
The workspace
|
|
<span class="font-bold">{{ workspaceName }}</span>
|
|
is on a {{ formatName(plan) }} plan with a limit of
|
|
{{ planConfig?.limits.projectCount }}
|
|
{{ planConfig?.limits.projectCount === 1 ? 'project' : 'projects' }} and
|
|
{{ planConfig?.limits.modelCount }}
|
|
{{ planConfig?.limits.modelCount === 1 ? 'model' : 'models' }}. Upgrade the
|
|
workspace to add more.
|
|
</div>
|
|
</WorkspacePlanLimitReachedDialog>
|
|
</template>
|
|
<script setup lang="ts">
|
|
import {
|
|
Roles,
|
|
type WorkspacePlans,
|
|
WorkspacePlanConfigs,
|
|
type MaybeNullOrUndefined
|
|
} from '@speckle/shared'
|
|
import type { LayoutDialogButton } from '@speckle/ui-components'
|
|
import { settingsWorkspaceRoutes } from '~/lib/common/helpers/route'
|
|
import { formatName } from '~/lib/billing/helpers/plan'
|
|
import { useMixpanel } from '~/lib/core/composables/mp'
|
|
import { useNavigation } from '~/lib/navigation/composables/navigation'
|
|
|
|
const props = defineProps<{
|
|
workspaceSlug: string
|
|
workspaceName?: string
|
|
workspaceRole?: MaybeNullOrUndefined<string>
|
|
plan?: WorkspacePlans
|
|
type?: 'project' | 'model'
|
|
location: string
|
|
}>()
|
|
|
|
const mixpanel = useMixpanel()
|
|
|
|
const { mutateActiveWorkspaceSlug } = useNavigation()
|
|
|
|
const dialogOpen = defineModel<boolean>('open', {
|
|
required: true
|
|
})
|
|
|
|
const planConfig = computed(() => {
|
|
if (!props.plan) return null
|
|
return WorkspacePlanConfigs[props.plan]
|
|
})
|
|
|
|
const explorePlansButton: LayoutDialogButton = {
|
|
text: 'Explore plans',
|
|
disabled: props.workspaceRole === Roles.Workspace.Guest,
|
|
disabledMessage: 'As a Guest you cannot access plans and billing',
|
|
onClick: () => {
|
|
mixpanel.track('Limit Reached Dialog Upgrade Button Clicked', {
|
|
type: props.type,
|
|
location: props.location,
|
|
// eslint-disable-next-line camelcase
|
|
workspace_id: props.workspaceSlug
|
|
})
|
|
mutateActiveWorkspaceSlug(props.workspaceSlug)
|
|
return navigateTo(settingsWorkspaceRoutes.billing.route(props.workspaceSlug))
|
|
}
|
|
}
|
|
|
|
const cancelButton: LayoutDialogButton = {
|
|
text: 'Cancel',
|
|
props: {
|
|
color: 'subtle'
|
|
},
|
|
onClick: () => (dialogOpen.value = false)
|
|
}
|
|
|
|
const buttons = computed((): LayoutDialogButton[] => [cancelButton, explorePlansButton])
|
|
|
|
watch(dialogOpen, (value) => {
|
|
if (value) {
|
|
mixpanel.track('Limit Reached Dialog Viewed', {
|
|
type: props.type,
|
|
location: props.location,
|
|
// eslint-disable-next-line camelcase
|
|
workspace_id: props.workspaceSlug,
|
|
limitType: props.type || 'project/model'
|
|
})
|
|
}
|
|
})
|
|
</script>
|