车间能级提升-智能设备管理系统
朱桂飞
2025-01-09 3e8f7f239bedae0b4f04a1ac6bd443ba6298f73c
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<script setup lang="ts">
import { computed } from 'vue';
 
import { cn } from '@vben-core/shared/utils';
 
import {
  DialogContent,
  type DialogContentEmits,
  type DialogContentProps,
  DialogPortal,
  useForwardPropsEmits,
} from 'radix-vue';
 
import { type SheetVariants, sheetVariants } from './sheet';
import SheetOverlay from './SheetOverlay.vue';
 
interface SheetContentProps extends DialogContentProps {
  appendTo?: HTMLElement | string;
  class?: any;
  modal?: boolean;
  open?: boolean;
  side?: SheetVariants['side'];
  zIndex?: number;
}
 
defineOptions({
  inheritAttrs: false,
});
 
const props = withDefaults(defineProps<SheetContentProps>(), {
  appendTo: 'body',
  zIndex: 1000,
});
 
const emits = defineEmits<DialogContentEmits>();
 
const delegatedProps = computed(() => {
  const {
    class: _,
    modal: _modal,
    open: _open,
    side: _side,
    ...delegated
  } = props;
 
  return delegated;
});
 
function isAppendToBody() {
  return (
    props.appendTo === 'body' ||
    props.appendTo === document.body ||
    !props.appendTo
  );
}
 
const position = computed(() => {
  return isAppendToBody() ? 'fixed' : 'absolute';
});
 
const forwarded = useForwardPropsEmits(delegatedProps, emits);
</script>
 
<template>
  <DialogPortal :to="appendTo">
    <Transition name="fade">
      <SheetOverlay v-if="open && modal" :style="{ zIndex, position }" />
    </Transition>
    <DialogContent
      :class="cn(sheetVariants({ side }), props.class)"
      :style="{ zIndex, position }"
      v-bind="{ ...forwarded, ...$attrs }"
    >
      <slot></slot>
 
      <!-- <DialogClose
        class="data-[state=open]:bg-secondary absolute right-4 top-4 rounded-sm opacity-70 transition-opacity hover:opacity-100 focus:outline-none disabled:pointer-events-none"
      >
        <Cross2Icon class="h-5 w-" />
      </DialogClose> -->
    </DialogContent>
  </DialogPortal>
</template>