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 64 65 66 67 68 69 | 122x 27x 27x 27x 27x 27x 27x 27x 2x 1x 1x 1x 1x 1x 1x | <template>
<v-tooltip
location="bottom"
open-delay="1000"
>
<template #activator="{ props }">
<v-btn
v-bind="mergeProps($attrs, props)"
data-testid="lock"
: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>{{ text }}</span>
</v-tooltip>
</template>
<script setup lang="ts">
import { computed, mergeProps } from 'vue';
import { useViewer3cr } from '@/composables/useViewer3cr';
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.Locked ? 'lock' : 'lock_open';
});
const text = computed(() => {
return props.mcad.Locked ? t('labels.unlock') : t('labels.lock');
});
async function toggle(): Promise<void> {
if (props.mcad.Locked) {
await unlockMcad();
} else {
await lockMcad();
}
}
async function lockMcad(): Promise<void> {
const message = { Version: '0.0.0', Id: props.mcad.Id, Value: true };
await viewer3cr.lockMcad({ message });
}
async function unlockMcad(): Promise<void> {
const message = { Version: '0.0.0', Id: props.mcad.Id, Value: false };
await viewer3cr.lockMcad({ message });
}
defineOptions({ inheritAttrs: false });
</script>
|