mirror of
https://github.com/vbenjs/vue-vben-admin.git
synced 2025-01-24 10:33:50 +08:00
parent
2e632e4d4d
commit
beed7f2e11
@ -22,6 +22,8 @@
|
|||||||
<UploadModal
|
<UploadModal
|
||||||
v-bind="bindValue"
|
v-bind="bindValue"
|
||||||
:previewFileList="fileList"
|
:previewFileList="fileList"
|
||||||
|
:fileListOpenDrag="fileListOpenDrag"
|
||||||
|
:fileListDragOptions="fileListDragOptions"
|
||||||
@register="registerUploadModal"
|
@register="registerUploadModal"
|
||||||
@change="handleChange"
|
@change="handleChange"
|
||||||
@delete="handleDelete"
|
@delete="handleDelete"
|
||||||
|
@ -1,14 +1,17 @@
|
|||||||
<script lang="tsx">
|
<script lang="tsx">
|
||||||
import { defineComponent, CSSProperties, watch, nextTick } from 'vue';
|
|
||||||
import { fileListProps } from './props';
|
import { fileListProps } from './props';
|
||||||
import { isFunction } from '/@/utils/is';
|
import { isFunction, isDef } from '/@/utils/is';
|
||||||
|
import { useSortable } from '/@/hooks/web/useSortable';
|
||||||
import { useModalContext } from '/@/components/Modal/src/hooks/useModalContext';
|
import { useModalContext } from '/@/components/Modal/src/hooks/useModalContext';
|
||||||
|
import { defineComponent, CSSProperties, watch, nextTick, ref, onMounted } from 'vue';
|
||||||
|
|
||||||
export default defineComponent({
|
export default defineComponent({
|
||||||
name: 'FileList',
|
name: 'FileList',
|
||||||
props: fileListProps,
|
props: fileListProps,
|
||||||
setup(props) {
|
setup(props, { emit }) {
|
||||||
const modalFn = useModalContext();
|
const modalFn = useModalContext();
|
||||||
|
const sortableContainer = ref<HTMLTableSectionElement>();
|
||||||
|
|
||||||
watch(
|
watch(
|
||||||
() => props.dataSource,
|
() => props.dataSource,
|
||||||
() => {
|
() => {
|
||||||
@ -17,6 +20,35 @@
|
|||||||
});
|
});
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
|
|
||||||
|
if (props.openDrag) {
|
||||||
|
onMounted(() =>
|
||||||
|
useSortable(sortableContainer, {
|
||||||
|
...props.dragOptions,
|
||||||
|
onEnd: ({ oldIndex, newIndex }) => {
|
||||||
|
// position unchanged
|
||||||
|
if (oldIndex === newIndex) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const { onAfterEnd } = props.dragOptions;
|
||||||
|
|
||||||
|
if (isDef(oldIndex) && isDef(newIndex)) {
|
||||||
|
const data = [...props.dataSource];
|
||||||
|
|
||||||
|
const [oldItem] = data.splice(oldIndex, 1);
|
||||||
|
data.splice(newIndex, 0, oldItem);
|
||||||
|
|
||||||
|
nextTick(() => {
|
||||||
|
emit('update:dataSource', data);
|
||||||
|
|
||||||
|
isFunction(onAfterEnd) && onAfterEnd(data);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
},
|
||||||
|
}).initSortable(),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
return () => {
|
return () => {
|
||||||
const { columns, actionColumn, dataSource } = props;
|
const { columns, actionColumn, dataSource } = props;
|
||||||
const columnList = [...columns, actionColumn];
|
const columnList = [...columns, actionColumn];
|
||||||
@ -46,7 +78,7 @@
|
|||||||
})}
|
})}
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody ref={sortableContainer}>
|
||||||
{dataSource.map((record = {}, index) => {
|
{dataSource.map((record = {}, index) => {
|
||||||
return (
|
return (
|
||||||
<tr class="file-table-tr" key={`${index + record.name || ''}`}>
|
<tr class="file-table-tr" key={`${index + record.name || ''}`}>
|
||||||
|
@ -39,7 +39,13 @@
|
|||||||
</a-button>
|
</a-button>
|
||||||
</Upload>
|
</Upload>
|
||||||
</div>
|
</div>
|
||||||
<FileList :dataSource="fileListRef" :columns="columns" :actionColumn="actionColumn" />
|
<FileList
|
||||||
|
v-model:dataSource="fileListRef"
|
||||||
|
:columns="columns"
|
||||||
|
:actionColumn="actionColumn"
|
||||||
|
:openDrag="fileListOpenDrag"
|
||||||
|
:dragOptions="fileListDragOptions"
|
||||||
|
/>
|
||||||
</BasicModal>
|
</BasicModal>
|
||||||
</template>
|
</template>
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
|
@ -1,6 +1,18 @@
|
|||||||
import type { PropType } from 'vue';
|
import type { PropType } from 'vue';
|
||||||
import { FileBasicColumn } from './typing';
|
import { FileBasicColumn } from './typing';
|
||||||
|
|
||||||
|
import type { Options } from 'sortablejs';
|
||||||
|
|
||||||
|
import { Merge } from '/@/utils/types';
|
||||||
|
|
||||||
|
type SortableOptions = Merge<
|
||||||
|
Omit<Options, 'onEnd'>,
|
||||||
|
{
|
||||||
|
onAfterEnd?: <T = any, R = any>(params: T) => R;
|
||||||
|
// ...可扩展
|
||||||
|
}
|
||||||
|
>;
|
||||||
|
|
||||||
export const basicProps = {
|
export const basicProps = {
|
||||||
helpText: {
|
helpText: {
|
||||||
type: String as PropType<string>,
|
type: String as PropType<string>,
|
||||||
@ -42,6 +54,15 @@ export const basicProps = {
|
|||||||
type: String as PropType<string>,
|
type: String as PropType<string>,
|
||||||
default: null,
|
default: null,
|
||||||
},
|
},
|
||||||
|
fileListOpenDrag: {
|
||||||
|
type: Boolean,
|
||||||
|
default: true,
|
||||||
|
},
|
||||||
|
|
||||||
|
fileListDragOptions: {
|
||||||
|
type: Object as PropType<SortableOptions>,
|
||||||
|
default: () => ({}),
|
||||||
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
export const uploadContainerProps = {
|
export const uploadContainerProps = {
|
||||||
@ -80,4 +101,12 @@ export const fileListProps = {
|
|||||||
type: Array as PropType<any[]>,
|
type: Array as PropType<any[]>,
|
||||||
default: null,
|
default: null,
|
||||||
},
|
},
|
||||||
|
openDrag: {
|
||||||
|
type: Boolean,
|
||||||
|
default: false,
|
||||||
|
},
|
||||||
|
dragOptions: {
|
||||||
|
type: Object as PropType<SortableOptions>,
|
||||||
|
default: () => ({}),
|
||||||
|
},
|
||||||
};
|
};
|
||||||
|
@ -2,14 +2,16 @@ import { nextTick, unref } from 'vue';
|
|||||||
import type { Ref } from 'vue';
|
import type { Ref } from 'vue';
|
||||||
import type { Options } from 'sortablejs';
|
import type { Options } from 'sortablejs';
|
||||||
|
|
||||||
export function useSortable(el: HTMLElement | Ref<HTMLElement>, options?: Options) {
|
export function useSortable(el?: HTMLElement | Ref<HTMLElement | undefined>, options?: Options) {
|
||||||
function initSortable() {
|
function initSortable() {
|
||||||
nextTick(async () => {
|
nextTick(async () => {
|
||||||
|
el = unref(el);
|
||||||
|
|
||||||
if (!el) return;
|
if (!el) return;
|
||||||
|
|
||||||
const Sortable = (await import('sortablejs')).default;
|
const Sortable = (await import('sortablejs')).default;
|
||||||
Sortable.create(unref(el), {
|
Sortable.create(el, {
|
||||||
animation: 500,
|
animation: 100,
|
||||||
delay: 400,
|
delay: 400,
|
||||||
delayOnTouchOnly: true,
|
delayOnTouchOnly: true,
|
||||||
...options,
|
...options,
|
||||||
|
@ -41,7 +41,7 @@ export type StyleValue = string | CSSProperties | Array<StyleValue>;
|
|||||||
|
|
||||||
export type Mutable<T> = { -readonly [P in keyof T]: T[P] };
|
export type Mutable<T> = { -readonly [P in keyof T]: T[P] };
|
||||||
|
|
||||||
type Merge<O extends object, T extends object> = {
|
export type Merge<O extends object, T extends object> = {
|
||||||
[K in keyof O | keyof T]: K extends keyof T ? T[K] : K extends keyof O ? O[K] : never;
|
[K in keyof O | keyof T]: K extends keyof T ? T[K] : K extends keyof O ? O[K] : never;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user