gaoluyang
2026-06-24 c0cb161bb52ce0fbdce5c66ec391d107c75e2452
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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
<script setup lang="ts">
import type { Recordable } from '..\..\..\..\..\base\typings\src';
 
import type { CollapsibleParamSchema } from './type';
 
import { computed, nextTick, ref, useTemplateRef, watch } from 'vue';
 
import { useNamespace } from '..\..\..\..\..\composables\src';
 
import { ChevronsDown } from '@lucide/vue';
import {
  CollapsibleContent,
  CollapsibleRoot,
  CollapsibleTrigger,
} from 'reka-ui';
 
import CollapsibleParamsItem from './collapsible-params-item.vue';
 
interface Props {
  defaultOpen?: boolean;
  maxHeight?: number | string;
  params: CollapsibleParamSchema[];
  visibleCount?: number;
}
 
const props = withDefaults(defineProps<Props>(), {
  visibleCount: 3,
  defaultOpen: false,
  maxHeight: undefined,
});
 
const emits = defineEmits<{ 'update:value': [any, string] }>();
 
const modelValue = defineModel('value', {
  default: {} as Recordable<CollapsibleParamSchema['defaultValue']>,
});
 
const visibleRefs = useTemplateRef('visibleRefs');
const collapsibleRefs = useTemplateRef('collapsibleRefs');
 
const { b } = useNamespace('collapsible-params');
 
const open = ref(props.defaultOpen);
 
// 最小可见为1
const finalVisibleCount = computed(() =>
  Math.max(1, Math.floor(props.visibleCount)),
);
 
const visibleRows = computed(() => {
  return props.params.slice(0, finalVisibleCount.value);
});
 
const collapsibleRows = computed(() => {
  return props.params.slice(finalVisibleCount.value);
});
 
const bodyStyle = computed(() => {
  if (!open.value || props.maxHeight == null) {
    return undefined;
  }
 
  return {
    maxHeight:
      typeof props.maxHeight === 'number'
        ? `${props.maxHeight}px`
        : props.maxHeight,
  };
});
 
function init(force = false) {
  const nextValue: Recordable<CollapsibleParamSchema['defaultValue']> = {
    ...modelValue.value,
  };
 
  for (const param of props.params) {
    if (force || nextValue[param.key] === undefined) {
      nextValue[param.key] = param.defaultValue ?? undefined;
    }
  }
 
  modelValue.value = nextValue;
}
 
function toggleCollapsed() {
  open.value = !open.value;
}
 
async function onParamValueChange(_: any, key: string) {
  await nextTick();
  emits('update:value', modelValue.value, key);
}
 
function resetValues() {
  if (visibleRefs.value)
    for (const rowRef of visibleRefs.value) {
      rowRef?.reset();
    }
 
  if (collapsibleRefs.value)
    for (const rowRef of collapsibleRefs.value) {
      rowRef?.reset();
    }
 
  init(true);
}
 
function updateValues(
  values: Recordable<CollapsibleParamSchema['defaultValue']>,
) {
  const allowedKeys = new Set(props.params.map((param) => param.key));
  const patch = {} as Recordable<CollapsibleParamSchema['defaultValue']>;
 
  for (const key in values) {
    if (!Object.hasOwn(values, key)) continue;
    if (!allowedKeys.has(key)) continue;
 
    patch[key] = values[key];
  }
 
  modelValue.value = { ...modelValue.value, ...patch };
}
 
watch(
  () => props.params,
  () => init(),
  { immediate: true, deep: true },
);
 
defineExpose({
  toggleCollapsed,
  resetValues,
  updateValues,
});
</script>
 
<template>
  <CollapsibleRoot
    v-model:open="open"
    class="border rounded-[0.5rem] flex flex-col w-full overflow-hidden"
    :class="[b()]"
    :unmount-on-hide="false"
  >
    <div class="wrapper w-full relative flex flex-col overflow-x-auto">
      <div class="w-full min-w-fit">
        <div
          class="header bg-accent w-full flex-none flex items-center rounded-t-[0.5rem] border-b"
        >
          <div
            class="header-cell pt-2 pb-2 px-5 leading-[1.5rem] flex items-center flex-nowrap"
          >
            Name
          </div>
          <div
            class="header-cell pt-2 pb-2 px-5 leading-[1.5rem] flex items-center flex-nowrap"
          >
            Value
          </div>
          <div
            class="header-cell pt-2 pb-2 px-5 leading-[1.5rem] flex items-center flex-nowrap"
          >
            Description
          </div>
        </div>
 
        <div
          class="body w-full flex-none flex flex-col overflow-x-hidden"
          :class="[
            open && !!props.maxHeight ? 'overflow-y-auto' : 'overflow-y-hidden',
          ]"
          :style="bodyStyle"
        >
          <CollapsibleParamsItem
            :data="row"
            v-for="row in visibleRows"
            :key="row.key"
            ref="visibleRefs"
            v-model:value="modelValue[row.key]"
            @update:value="(v) => onParamValueChange(v, row.key)"
          />
          <CollapsibleContent
            class="data-[state=open]:animate-collapsible-down data-[state=closed]:animate-collapsible-up"
          >
            <CollapsibleParamsItem
              :data="row"
              v-for="row in collapsibleRows"
              :key="row.key"
              ref="collapsibleRefs"
              v-model:value="modelValue[row.key]"
              @update:value="(v) => onParamValueChange(v, row.key)"
            />
          </CollapsibleContent>
        </div>
      </div>
    </div>
    <div
      class="gutter h-[1.5rem]"
      v-if="!open && collapsibleRows.length > 0"
    ></div>
    <div
      class="trigger-bar flex min-h-[2rem] border-t px-5 pt-1 pb-1 rounded-b-[0.5rem] z-1"
      :class="{
        'collapsed absolute bottom-[1px] left-[1px] right-[1px] border-t-0 pt-6':
          !open,
      }"
      v-if="collapsibleRows.length > 0"
    >
      <CollapsibleTrigger
        class="cursor-pointer h-[2rem] flex items-center gap-2"
      >
        <ChevronsDown
          class="transition-transform"
          :size="16"
          :class="{
            'rotate-180': open,
          }"
        />
        {{ open ? 'Fold' : 'Unfold' }}
      </CollapsibleTrigger>
    </div>
  </CollapsibleRoot>
</template>
<style>
.vben-collapsible-params {
  .wrapper {
    --column1: 11.25rem;
    --column2: 18.25rem;
    --column3: 27.5rem;
 
    .header-cell,
    .body-cell {
      &:nth-of-type(1) {
        flex: 0 0 var(--column1);
 
        /* min-width: var(--column1); */
      }
 
      &:nth-of-type(2) {
        flex: 0 0 var(--column2);
 
        /* min-width: var(--column2); */
      }
 
      &:nth-of-type(3) {
        flex: 1 1 var(--column3);
        min-width: var(--column3);
      }
    }
  }
 
  .trigger-bar {
    &.collapsed {
      background-image: linear-gradient(
        hsl(var(--foreground) / 0%) 0%,
        hsl(var(--foreground) / 12%) 31.76%,
        var(--color-border) 31.76%,
        var(--color-border) 33.43%,
        var(--color-background) 31.76%
      );
    }
  }
}
</style>