<script lang="ts" setup>
|
import type { DocAlertProps } from './types';
|
|
import { ref } from 'vue';
|
|
import { isDocAlertEnable } from '..\..\..\..\hooks\src';
|
|
import { VbenIcon } from '..\..\..\..\..\@core\ui-kit\shadcn-ui\src';
|
import { openWindow } from '..\..\..\..\..\@core\base\shared\src\utils';
|
|
defineOptions({
|
name: 'DocAlert',
|
});
|
|
const props = defineProps<DocAlertProps>();
|
|
/** 控制组件显示状态 */
|
const isVisible = ref(true);
|
|
function goToUrl() {
|
openWindow(props.url);
|
}
|
|
function close() {
|
isVisible.value = false;
|
}
|
</script>
|
<template>
|
<div
|
role="alert"
|
v-if="isDocAlertEnable() && isVisible"
|
class="border-primary bg-primary/10 relative m-3 my-2 flex h-8 items-center gap-2 rounded-md border p-2"
|
>
|
<span class="grid shrink-0 place-items-center">
|
<VbenIcon icon="mdi:information-outline" class="text-primary size-5" />
|
</span>
|
<div class="text-primary min-w-0 flex-1 font-sans text-sm leading-none">
|
<span class="inline-block">【{{ title }}】</span>
|
<a
|
class="hover:text-success cursor-pointer break-all"
|
@click="goToUrl"
|
:title="url"
|
>
|
文档地址:{{ url }}
|
</a>
|
</div>
|
<span class="grid shrink-0 cursor-pointer place-items-center">
|
<VbenIcon
|
icon="mdi:close"
|
class="text-primary size-5 hover:text-red-500"
|
@click="close"
|
/>
|
</span>
|
</div>
|
</template>
|