车间能级提升-智能设备管理系统
朱桂飞
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<script setup lang="ts">
import type { MenuRecordRaw } from '@vben-core/typings';
 
import type { NormalMenuProps } from './normal-menu';
 
import { useNamespace } from '@vben-core/composables';
import { VbenIcon } from '@vben-core/shadcn-ui';
 
interface Props extends NormalMenuProps {}
 
defineOptions({
  name: 'NormalMenu',
});
 
const props = withDefaults(defineProps<Props>(), {
  activePath: '',
  collapse: false,
  menus: () => [],
  theme: 'dark',
});
 
const emit = defineEmits<{
  enter: [MenuRecordRaw];
  select: [MenuRecordRaw];
}>();
 
const { b, e, is } = useNamespace('normal-menu');
 
function menuIcon(menu: MenuRecordRaw) {
  return props.activePath === menu.path
    ? menu.activeIcon || menu.icon
    : menu.icon;
}
</script>
 
<template>
  <ul
    :class="[
      theme,
      b(),
      is('collapse', collapse),
      is(theme, true),
      is('rounded', rounded),
    ]"
    class="relative"
  >
    <template v-for="menu in menus" :key="menu.path">
      <li
        :class="[e('item'), is('active', activePath === menu.path)]"
        @click="() => emit('select', menu)"
        @mouseenter="() => emit('enter', menu)"
      >
        <VbenIcon :class="e('icon')" :icon="menuIcon(menu)" fallback />
 
        <span :class="e('name')" class="truncate"> {{ menu.name }}</span>
      </li>
    </template>
  </ul>
</template>
<style lang="scss" scoped>
$namespace: vben;
 
.#{$namespace}-normal-menu {
  --menu-item-margin-y: 4px;
  --menu-item-margin-x: 0px;
  --menu-item-padding-y: 9px;
  --menu-item-padding-x: 0px;
  --menu-item-radius: 0px;
 
  height: calc(100% - 4px);
 
  &.is-rounded {
    --menu-item-radius: 6px;
    --menu-item-margin-x: 8px;
  }
 
  &.is-dark {
    .#{$namespace}-normal-menu__item {
      @apply text-foreground/80;
      // color: hsl(var(--foreground) / 80%);
 
      &:not(.is-active):hover {
        @apply text-foreground;
      }
 
      &.is-active {
        .#{$namespace}-normal-menu__name,
        .#{$namespace}-normal-menu__icon {
          @apply text-foreground;
        }
      }
    }
  }
 
  &.is-collapse {
    .#{$namespace}-normal-menu__name {
      width: 0;
      height: 0;
      margin-top: 0;
      overflow: hidden;
      opacity: 0;
    }
 
    .#{$namespace}-normal-menu__icon {
      font-size: 20px;
    }
  }
 
  &__item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    // max-width: 64px;
    // max-height: 64px;
    padding: var(--menu-item-padding-y) var(--menu-item-padding-x);
    margin: var(--menu-item-margin-y) var(--menu-item-margin-x);
    color: hsl(var(--foreground) / 90%);
    cursor: pointer;
    border-radius: var(--menu-item-radius);
    transition:
      background 0.15s ease,
      padding 0.15s ease,
      border-color 0.15s ease;
 
    &.is-active {
      @apply text-primary bg-primary dark:bg-accent;
 
      .#{$namespace}-normal-menu__name,
      .#{$namespace}-normal-menu__icon {
        @apply text-primary-foreground font-semibold;
      }
    }
 
    &:not(.is-active):hover {
      @apply dark:bg-accent text-primary bg-heavy dark:text-foreground;
    }
 
    &:hover {
      .#{$namespace}-normal-menu__icon {
        transform: scale(1.2);
      }
    }
  }
 
  &__icon {
    max-height: 20px;
    font-size: 20px;
    transition: all 0.25s ease;
  }
 
  &__name {
    margin-top: 8px;
    margin-bottom: 0;
    font-size: 12px;
    font-weight: 400;
    transition: all 0.25s ease;
  }
}
</style>