4dae1569cd
* list invites table * invites list works * update last reminded date on resend * fix FE * WIP invitedialog + updated debounced utility * invite create works * exclude users correctly * more adjustments * minor cleanup * using workspace invite server role * test fix * fixed multiple root eslint issues * minor adjustments
223 lines
6.4 KiB
Vue
223 lines
6.4 KiB
Vue
<template>
|
|
<ViewerCommentsPortalOrDiv v-if="shouldRenderSidebar" to="bottomPanel">
|
|
<ViewerSidebar :open="sidebarOpen" @close="onClose">
|
|
<template #title><div class="select-none">Selection info</div></template>
|
|
<template #actions>
|
|
<FormButton size="sm" text color="outline" @click.stop="hideOrShowSelection">
|
|
<div
|
|
v-if="!isHidden"
|
|
class="flex items-center gap-1 text-foreground hover:text-primary"
|
|
>
|
|
<EyeSlashIcon class="h-4 w-4" />
|
|
Hide
|
|
</div>
|
|
<div v-else class="flex items-center gap-1 text-primary">
|
|
<EyeSlashIcon class="h-4 w-4" />
|
|
Hidden
|
|
</div>
|
|
</FormButton>
|
|
<FormButton size="sm" text @click.stop="isolateOrUnisolateSelection">
|
|
<div class="flex items-center gap-1">
|
|
<div
|
|
v-if="!isIsolated"
|
|
class="flex items-center gap-1 text-foreground hover:text-primary"
|
|
>
|
|
<FunnelIconOutline class="h-4 w-4" />
|
|
Isolate
|
|
</div>
|
|
<div v-else class="flex items-center gap-1 text-primary">
|
|
<FunnelIcon class="h-4 w-4" />
|
|
Isolated
|
|
</div>
|
|
</div>
|
|
</FormButton>
|
|
<div class="flex justify-end w-full">
|
|
<div v-tippy="`Open selection in new window`" class="max-w-max">
|
|
<FormButton size="sm" text :to="selectionLink" target="_blank">
|
|
<span class="sr-only">Open selection in new window</span>
|
|
<ArrowTopRightOnSquareIcon
|
|
class="w-4 text-foreground hover:text-primary"
|
|
/>
|
|
</FormButton>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<div class="p-1 mb-2 sm:mb-0 sm:py-2">
|
|
<div class="space-y-2">
|
|
<ViewerSelectionObject
|
|
v-for="object in objectsLimited"
|
|
:key="(object.id as string)"
|
|
:object="object"
|
|
:root="true"
|
|
:unfold="objectsLimited.length === 1 && !isSmallerOrEqualSm"
|
|
/>
|
|
</div>
|
|
<div v-if="itemCount <= objects.length" class="mb-2">
|
|
<FormButton size="sm" text full-width @click="itemCount += 10">
|
|
View More ({{ objects.length - itemCount }})
|
|
</FormButton>
|
|
</div>
|
|
</div>
|
|
<template v-if="!isSmallerOrEqualSm" #footer>
|
|
<div class="text-foreground-2 text-body-2xs select-none">
|
|
Hold "shift" to select multiple objects
|
|
</div>
|
|
</template>
|
|
</ViewerSidebar>
|
|
</ViewerCommentsPortalOrDiv>
|
|
<div v-else />
|
|
</template>
|
|
<script setup lang="ts">
|
|
import {
|
|
EyeSlashIcon,
|
|
FunnelIcon,
|
|
ArrowTopRightOnSquareIcon
|
|
} from '@heroicons/vue/24/solid'
|
|
import { FunnelIcon as FunnelIconOutline } from '@heroicons/vue/24/outline'
|
|
|
|
import { onKeyStroke } from '@vueuse/core'
|
|
import { useInjectedViewerState } from '~~/lib/viewer/composables/setup'
|
|
import { getTargetObjectIds } from '~~/lib/object-sidebar/helpers'
|
|
import { containsAll } from '~~/lib/common/helpers/utils'
|
|
import { useFilterUtilities, useSelectionUtilities } from '~~/lib/viewer/composables/ui'
|
|
import { uniqWith } from 'lodash-es'
|
|
import { useMixpanel } from '~~/lib/core/composables/mp'
|
|
import { useIsSmallerOrEqualThanBreakpoint } from '~~/composables/browser'
|
|
import { modelRoute } from '~/lib/common/helpers/route'
|
|
|
|
const {
|
|
projectId,
|
|
viewer: {
|
|
metadata: { filteringState }
|
|
},
|
|
ui: { diff, measurement }
|
|
} = useInjectedViewerState()
|
|
const { objects, clearSelection } = useSelectionUtilities()
|
|
const { hideObjects, showObjects, isolateObjects, unIsolateObjects } =
|
|
useFilterUtilities()
|
|
|
|
const { isSmallerOrEqualSm } = useIsSmallerOrEqualThanBreakpoint()
|
|
|
|
const itemCount = ref(20)
|
|
const sidebarOpen = ref(false)
|
|
|
|
const objectsUniqueByAppId = computed(() => {
|
|
if (!diff.enabled.value) return objects.value
|
|
return uniqWith(objects.value, (a, b) => {
|
|
return a.applicationId === b.applicationId
|
|
})
|
|
})
|
|
|
|
const shouldRenderSidebar = computed(() => {
|
|
return (!isSmallerOrEqualSm.value || sidebarOpen.value) && !measurement.enabled.value
|
|
})
|
|
|
|
const objectsLimited = computed(() => {
|
|
return objectsUniqueByAppId.value.slice(0, itemCount.value)
|
|
})
|
|
|
|
const hiddenObjects = computed(() => filteringState.value?.hiddenObjects)
|
|
const isolatedObjects = computed(() => filteringState.value?.isolatedObjects)
|
|
|
|
const allTargetIds = computed(() => {
|
|
const ids = []
|
|
for (const obj of objects.value) {
|
|
ids.push(...getTargetObjectIds(obj))
|
|
}
|
|
|
|
return ids
|
|
})
|
|
|
|
const isHidden = computed(() => {
|
|
if (!hiddenObjects.value) return false
|
|
return containsAll(allTargetIds.value, hiddenObjects.value)
|
|
})
|
|
|
|
const isIsolated = computed(() => {
|
|
if (!isolatedObjects.value) return false
|
|
return containsAll(allTargetIds.value, isolatedObjects.value)
|
|
})
|
|
|
|
const mp = useMixpanel()
|
|
|
|
const selectionLink = computed(() => {
|
|
return modelRoute(projectId.value, allTargetIds.value.join(','))
|
|
})
|
|
|
|
const hideOrShowSelection = () => {
|
|
if (!isHidden.value) {
|
|
hideObjects(allTargetIds.value)
|
|
mp.track('Viewer Action', {
|
|
type: 'action',
|
|
name: 'selection',
|
|
action: 'hide'
|
|
})
|
|
return
|
|
}
|
|
|
|
showObjects(allTargetIds.value)
|
|
mp.track('Viewer Action', {
|
|
type: 'action',
|
|
name: 'selection',
|
|
action: 'show'
|
|
})
|
|
}
|
|
|
|
const isolateOrUnisolateSelection = () => {
|
|
if (isIsolated.value) {
|
|
unIsolateObjects(allTargetIds.value)
|
|
mp.track('Viewer Action', {
|
|
type: 'action',
|
|
name: 'selection',
|
|
action: 'unisolate'
|
|
})
|
|
} else {
|
|
isolateObjects(allTargetIds.value)
|
|
mp.track('Viewer Action', {
|
|
type: 'action',
|
|
name: 'selection',
|
|
action: 'isolate'
|
|
})
|
|
}
|
|
}
|
|
|
|
const trackAndClearSelection = () => {
|
|
clearSelection()
|
|
mp.track('Viewer Action', {
|
|
type: 'action',
|
|
name: 'selection',
|
|
action: 'clear',
|
|
source: 'sidebar-x-button'
|
|
})
|
|
}
|
|
|
|
const onClose = () => {
|
|
sidebarOpen.value = false
|
|
trackAndClearSelection()
|
|
}
|
|
|
|
onKeyStroke('Escape', () => {
|
|
// Cleareance of any vis/iso state coming from here should happen in clearSelection()
|
|
// Note: we're not using the trackAndClearSelection method beacuse
|
|
// we want to track whether people press buttons or keys
|
|
clearSelection()
|
|
mp.track('Viewer Action', {
|
|
type: 'action',
|
|
name: 'selection',
|
|
action: 'clear',
|
|
source: 'keypress-escape'
|
|
})
|
|
})
|
|
|
|
watch(
|
|
() => objects.value.length,
|
|
(newLength) => {
|
|
if (newLength !== 0) {
|
|
sidebarOpen.value = true
|
|
} else {
|
|
sidebarOpen.value = false
|
|
}
|
|
}
|
|
)
|
|
</script>
|