feat:【ele】【mall】将 draggable 迁移到 mall/promotion/components 中,聚焦一点

This commit is contained in:
YunaiV
2025-10-25 16:31:59 +08:00
parent 1af1a9b2d4
commit ae345d6fb2
11 changed files with 28 additions and 25 deletions

View File

@@ -0,0 +1,100 @@
<script setup lang="ts">
// TODO @芋艿:后续合并到 diy-editor 里,并不是通用的;
import { IconifyIcon } from '@vben/icons';
import { cloneDeep } from '@vben/utils';
import { useVModel } from '@vueuse/core';
import VueDraggable from 'vuedraggable';
/** 拖拽组件封装 */
defineOptions({ name: 'Draggable' });
/** 定义属性 */
const props = defineProps({
modelValue: {
type: Array,
default: () => [],
}, // 绑定值
emptyItem: {
type: Object,
default: () => ({}),
}, // 空的元素:点击添加按钮时,创建元素并添加到列表;默认为空对象
limit: {
type: Number,
default: Number.MAX_VALUE,
}, // 数量限制:默认为 0表示不限制
min: {
type: Number,
default: 1,
}, // 最小数量默认为1
});
const emit = defineEmits(['update:modelValue']);
const formData = useVModel(props, 'modelValue', emit);
/** 处理添加 */
function handleAdd() {
return formData.value.push(cloneDeep(props.emptyItem || {}));
}
/** 处理删除 */
const handleDelete = function (index: number) {
return formData.value.splice(index, 1);
};
</script>
<template>
<el-text type="info" size="small"> 拖动左上角的小圆点可对其排序 </el-text>
<VueDraggable
:list="formData"
:force-fallback="true"
:animation="200"
handle=".drag-icon"
class="mt-2"
item-key="index"
>
<template #item="{ element, index }">
<div class="mb-1 flex flex-col gap-1 rounded border border-gray-200 p-2">
<!-- 操作按钮区 -->
<!-- TODO @AI是不是用错了看看项目里有没替代的 -->
<div
class="-m-2 mb-1 flex flex-row items-center justify-between p-2"
style="background-color: var(--app-content-bg-color)"
>
<el-tooltip content="拖动排序">
<IconifyIcon
icon="ic:round-drag-indicator"
class="drag-icon cursor-move"
style="color: #8a909c"
/>
</el-tooltip>
<el-tooltip content="删除">
<IconifyIcon
icon="ep:delete"
class="cursor-pointer text-red-500"
v-if="formData.length > min"
@click="handleDelete(index)"
/>
</el-tooltip>
</div>
<!-- 内容区 -->
<slot :element="element" :index="index"></slot>
</div>
</template>
</VueDraggable>
<el-tooltip :disabled="limit < 1" :content="`最多添加${limit}个`">
<el-button
type="primary"
plain
class="mt-1 w-full"
:disabled="limit > 0 && formData.length >= limit"
@click="handleAdd"
>
<IconifyIcon icon="ep:plus" /><span>添加</span>
</el-button>
</el-tooltip>
</template>
<style scoped lang="scss"></style>

View File

@@ -1,5 +1,6 @@
export { default as AppLinkInput } from './app-link-input/index.vue';
export { default as ColorInput } from './color-input/index.vue';
export { default as Draggable } from './draggable/index.vue';
export { default as InputWithColor } from './input-with-color/index.vue';
export { default as MagicCubeEditor } from './magic-cube-editor/index.vue';
export { default as VerticalButtonGroup } from './vertical-button-group/index.vue';