Files
speckle-server/packages/frontend-2/components/project/CardImportFileArea.vue
T
michalspeckle 3c7a652e98 feat(fe): improvements to empty states (#4696)
* feat(fe): render different CardImportFileArea variants based on context

* feat(fe): remove default emptyStateVariant

* refactor(fe): use container classes

* feat(fe): remove click from full card upload area. Only on buttons

* chore(fe): updates to empty states, clean up.

* feat(fe): new empty state illustrations refactor

* chore(fe): removing nested selectors and clean up

* chore(fe): removed default variant

* feat(fe): empty state illustration slot added and styling changes

* feat(fe): new empty state illustrations and styling changes

* chore(fe): copy change

* chore(fe): refactor

---------

Co-authored-by: andrewwallacespeckle <andrew@speckle.systems>
2025-05-15 09:49:36 +02:00

192 lines
5.6 KiB
Vue

<!-- eslint-disable vuejs-accessibility/no-static-element-interactions -->
<!-- eslint-disable vuejs-accessibility/click-events-have-key-events -->
<template>
<FormFileUploadZone
ref="uploadZone"
v-slot="{ isDraggingFiles, openFilePicker }"
:disabled="isUploading || disabled"
:size-limit="maxSizeInBytes"
:accept="accept"
class="flex items-center h-full"
@files-selected="onFilesSelected"
>
<div
class="w-full h-full border-dashed border rounded-md p-4 flex items-center justify-center text-sm"
:class="[getDashedBorderClasses(isDraggingFiles)]"
>
<div
v-if="fileUpload"
class="max-w-sm p-2 flex flex-col justify-center space-y-1 text-foreground-2"
>
<span class="text-center">
{{ fileUpload.file.name }}
</span>
<span
v-if="errorMessage"
class="text-danger inline-flex space-x-1 items-center text-center"
>
<ExclamationTriangleIcon class="h-4 w-4 shrink-0" />
<span>{{ errorMessage }}</span>
</span>
<div
v-if="fileUpload.progress > 0"
:class="[' w-full mt-2', progressBarClasses]"
:style="progressBarStyle"
/>
</div>
<div v-else :class="containerClasses">
<div :class="illustrationClasses">
<IllustrationEmptystateProject v-if="emptyStateVariant === 'modelsSection'" />
<IllustrationEmptystateProjectTab v-else />
</div>
<div>
<p v-if="showEmptyState" class="text-foreground-2 text-heading-sm p-0 m-0">
{{
emptyStateVariant === 'modelsSection'
? 'The project has no models, yet.'
: 'No models, yet.'
}}
</p>
<p :class="paragraphClasses">
Use
<NuxtLink :to="connectorsRoute" class="font-medium">
<span class="underline">connectors</span>
</NuxtLink>
to publish a {{ modelName ? '' : 'new model' }} version to
{{ modelName ? 'this model' : 'this project' }}, or drag and drop a
IFC/OBJ/STL file here.
</p>
<div v-if="showEmptyState" :class="buttonsClasses">
<FormButton :to="connectorsRoute" size="sm" color="outline">
Install connectors
</FormButton>
<FormButton size="sm" color="outline" @click="openFilePicker">
Upload a file
</FormButton>
</div>
</div>
</div>
</div>
</FormFileUploadZone>
</template>
<script setup lang="ts">
import { useFileImport } from '~~/lib/core/composables/fileImport'
import { useFileUploadProgressCore } from '~~/lib/form/composables/fileUpload'
import { ExclamationTriangleIcon } from '@heroicons/vue/24/solid'
import { connectorsRoute } from '~/lib/common/helpers/route'
import type { Nullable } from '@speckle/shared'
type EmptyStateVariants = 'modelGrid' | 'modelList' | 'modelsSection'
const props = defineProps<{
projectId: string
modelName?: string
disabled?: boolean
emptyStateVariant?: EmptyStateVariants
}>()
const {
maxSizeInBytes,
onFilesSelected,
accept,
upload: fileUpload,
isUploading
} = useFileImport(toRefs(props))
const { errorMessage, progressBarClasses, progressBarStyle } =
useFileUploadProgressCore({
item: fileUpload
})
const uploadZone = ref(
null as Nullable<{
triggerPicker: () => void
}>
)
const showEmptyState = computed(
() =>
props.emptyStateVariant !== 'modelGrid' && props.emptyStateVariant !== 'modelList'
)
const containerClasses = computed(() => {
const classParts = ['w-full flex justify-center items-center']
if (props.emptyStateVariant === 'modelGrid') {
classParts.push('p-4 gap-4')
} else if (props.emptyStateVariant === 'modelList') {
classParts.push('p-4 gap-4 text-center')
} else if (props.emptyStateVariant === 'modelsSection') {
classParts.push('p-4 gap-4 text-balance')
} else {
classParts.push('p-20 gap-8 text-balance flex-col text-center')
}
return classParts.join(' ')
})
const illustrationClasses = computed(() => {
const classParts = ['max-w-lg']
if (props.emptyStateVariant === 'modelGrid') {
classParts.push('hidden')
} else if (props.emptyStateVariant === 'modelList') {
classParts.push('hidden')
} else if (props.emptyStateVariant === 'modelsSection') {
classParts.push('hidden min-[1350px]:block')
} else {
classParts.push('')
}
return classParts.join(' ')
})
const paragraphClasses = computed(() => {
const classParts = ['text-body-xs text-foreground-2 mt-2 p-0']
if (props.emptyStateVariant === 'modelGrid') {
classParts.push('')
} else if (props.emptyStateVariant === 'modelList') {
classParts.push('')
} else if (props.emptyStateVariant === 'modelsSection') {
classParts.push('max-w-sm')
} else {
classParts.push('max-w-sm')
}
return classParts.join(' ')
})
const buttonsClasses = computed(() => {
const classParts = ['w-full flex flex-row gap-2 flex-wrap']
if (props.emptyStateVariant === 'modelGrid') {
classParts.push('mt-3')
} else if (props.emptyStateVariant === 'modelList') {
classParts.push('mt-3')
} else if (props.emptyStateVariant === 'modelsSection') {
classParts.push('mt-3')
} else {
classParts.push('justify-center mt-6')
}
return classParts.join(' ')
})
const getDashedBorderClasses = (isDraggingFiles: boolean) => {
if (isDraggingFiles) return 'border-primary'
if (errorMessage.value) return 'border-danger'
return 'border-outline-2'
}
const triggerPicker = () => {
uploadZone.value?.triggerPicker()
}
defineExpose({
triggerPicker
})
</script>