Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 | <template>
<v-tooltip
location="bottom"
open-delay="1000"
>
<template #activator="{ props }">
<v-btn
v-bind="mergeProps($attrs, props)"
class="shark-400"
data-testid="visibility"
:icon="true"
size="24"
variant="text"
@click="toggle"
>
<v-icon
:icon="icon"
size="16"
/>
</v-btn>
</template>
<span>{{ t('labels.toggleVisibility') }}</span>
</v-tooltip>
</template>
<script setup lang="ts">
import { computed, mergeProps } from 'vue';
import { useViewer3cr } from '@/composables/useViewer3cr';
import { ObjectVisibility } from '@3cr/types-ts';
import { useI18n } from 'vue-i18n';
import { DataOverlayAnnotation } from '@3cr/viewer-types-ts';
interface Props {
annotation: DataOverlayAnnotation;
}
const props = defineProps<Props>();
const { t } = useI18n();
const viewer3cr = useViewer3cr();
const visibility = computed(() => {
const { Visibility2d, Visibility3d } = props.annotation;
return !!Visibility2d && !!Visibility3d;
});
const icon = computed(() => {
return visibility.value ? 'visibility' : 'visibility_off';
});
async function toggle(): Promise<void> {
const message: ObjectVisibility = {
Version: '0.0.0',
Id: props.annotation.Id,
Visibility: !visibility.value,
};
await viewer3cr.setAnnotation2dVisibility({ message });
await viewer3cr.setAnnotation3dVisibility({ message });
}
defineOptions({ inheritAttrs: false });
</script>
|