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 | 124x 28x 28x 28x 28x 28x 1x 1x | <template>
<v-tooltip
location="bottom"
open-delay="1000"
>
<template #activator="{ props }">
<v-btn
v-bind="mergeProps($attrs, props)"
data-testid="visibility"
:icon="true"
size="24"
variant="text"
@click.stop="toggle"
color="rgba(146, 147, 158, 1)"
>
<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 { DataOverlayMcad } from '@3cr/viewer-types-ts';
interface Props {
mcad: DataOverlayMcad;
}
const props = defineProps<Props>();
const { t } = useI18n();
const viewer3cr = useViewer3cr();
const icon = computed(() => {
return props.mcad.Visibility ? 'visibility' : 'visibility_off';
});
async function toggle(): Promise<void> {
const message: ObjectVisibility = {
Version: '0.0.0',
Id: props.mcad.Id,
Visibility: !props.mcad.Visibility,
};
await viewer3cr.setMcadObjectVisibility({ message });
}
defineOptions({ inheritAttrs: false });
</script>
|