Transfer 穿梭框
双栏穿梭选择框。
何时使用
- 需要在多个可选项中进行多选时。
- 比起 Select 和 TreeSelect,穿梭框占据更大的空间,可以展示可选项的更多信息。
代码演示
最基本的用法,展示了 dataSource
、targetKeys
、每行的渲染函数 render
以及回调函数 change
selectChange
scroll
的用法。
<template>
<div>
<a-transfer
:data-source="mockData"
:titles="['Source', 'Target']"
:target-keys="targetKeys"
:selected-keys="selectedKeys"
:render="item => item.title"
:disabled="disabled"
@change="handleChange"
@selectChange="handleSelectChange"
@scroll="handleScroll"
/>
<a-switch
un-checked-children="enabled"
checked-children="disabled"
v-model:checked="disabled"
style="margin-top: 16px"
/>
</div>
</template>
<script lang="ts">
import { defineComponent, ref } from 'vue';
interface MockData {
key: string;
title: string;
description: string;
disabled: boolean;
}
const mockData: MockData[] = [];
for (let i = 0; i < 20; i++) {
mockData.push({
key: i.toString(),
title: `content${i + 1}`,
description: `description of content${i + 1}`,
disabled: i % 3 < 1,
});
}
const oriTargetKeys = mockData.filter(item => +item.key % 3 > 1).map(item => item.key);
export default defineComponent({
data() {
const disabled = ref<boolean>(false);
const targetKeys = ref<string[]>(oriTargetKeys);
const selectedKeys = ref<string[]>(['1', '4']);
const handleChange = (nextTargetKeys: string[], direction: string, moveKeys: string[]) => {
targetKeys.value = nextTargetKeys;
console.log('targetKeys: ', nextTargetKeys);
console.log('direction: ', direction);
console.log('moveKeys: ', moveKeys);
};
const handleSelectChange = (sourceSelectedKeys: string[], targetSelectedKeys: string[]) => {
selectedKeys.value = [...sourceSelectedKeys, ...targetSelectedKeys];
console.log('sourceSelectedKeys: ', sourceSelectedKeys);
console.log('targetSelectedKeys: ', targetSelectedKeys);
};
const handleScroll = (direction: string, e: Event) => {
console.log('direction:', direction);
console.log('target:', e.target);
};
return {
mockData,
targetKeys,
selectedKeys,
disabled,
handleChange,
handleSelectChange,
handleScroll,
};
},
});
</script>
带搜索框的穿梭框,可以自定义搜索函数。
<template>
<a-transfer
:data-source="mockData"
show-search
:filter-option="filterOption"
:target-keys="targetKeys"
:render="item => item.title"
@change="handleChange"
@search="handleSearch"
/>
</template>
<script lang="ts">
import { defineComponent, onMounted, ref } from 'vue';
interface MockData {
key: string;
title: string;
description: string;
chosen: boolean;
}
export default defineComponent({
setup() {
const mockData = ref<MockData[]>([]);
const targetKeys = ref<string[]>([]);
onMounted(() => {
getMock();
});
const getMock = () => {
const keys = [];
const mData = [];
for (let i = 0; i < 20; i++) {
const data = {
key: i.toString(),
title: `content${i + 1}`,
description: `description of content${i + 1}`,
chosen: Math.random() * 2 > 1,
};
if (data.chosen) {
keys.push(data.key);
}
mData.push(data);
}
mockData.value = mData;
targetKeys.value = keys;
};
const filterOption = (inputValue: string, option: MockData) => {
return option.description.indexOf(inputValue) > -1;
};
const handleChange = (keys: string[], direction: string, moveKeys: string[]) => {
console.log(keys, direction, moveKeys);
targetKeys.value = keys;
};
const handleSearch = (dir: string, value: string) => {
console.log('search:', dir, value);
};
return {
mockData,
targetKeys,
filterOption,
handleChange,
handleSearch,
};
},
});
</script>
穿梭框高级用法,可配置操作文案,可定制宽高,可对底部进行自定义渲染。
<template>
<a-transfer
:data-source="mockData"
show-search
:list-style="{
width: '250px',
height: '300px',
}"
:operations="['to right', 'to left']"
:target-keys="targetKeys"
:render="item => `${item.title}-${item.description}`"
@change="handleChange"
>
<template #footer>
<a-button size="small" style="float: right; margin: 5px" @click="getMock">reload</a-button>
</template>
<template #notFoundContent>
<span>没数据</span>
</template>
</a-transfer>
</template>
<script lang="ts">
import { defineComponent, ref, onMounted } from 'vue';
interface MockData {
key: string;
title: string;
description: string;
chosen: boolean;
}
export default defineComponent({
setup() {
const mockData = ref<MockData[]>([]);
const targetKeys = ref<string[]>([]);
onMounted(() => {
getMock();
});
const getMock = () => {
const keys = [];
const mData = [];
for (let i = 0; i < 20; i++) {
const data = {
key: i.toString(),
title: `content${i + 1}`,
description: `description of content${i + 1}`,
chosen: Math.random() * 2 > 1,
};
if (data.chosen) {
keys.push(data.key);
}
mData.push(data);
}
mockData.value = mData;
targetKeys.value = keys;
};
const handleChange = (keys: string[], direction: string, moveKeys: string[]) => {
targetKeys.value = keys;
console.log(keys, direction, moveKeys);
};
return {
mockData,
targetKeys,
handleChange,
getMock,
};
},
});
</script>
自定义渲染每一个 Transfer Item,可用于渲染复杂数据。
<template>
<a-transfer
:data-source="mockData"
:list-style="{
width: '300px',
height: '300px',
}"
:target-keys="targetKeys"
@change="handleChange"
>
<template #render="item">
<span class="custom-item" style="color: red">{{ item.title }} - {{ item.description }}</span>
</template>
</a-transfer>
</template>
<script lang="ts">
import { defineComponent, ref, onMounted } from 'vue';
interface MockData {
key: string;
title: string;
description: string;
chosen: boolean;
}
export default defineComponent({
setup() {
const mockData = ref<MockData[]>([]);
const targetKeys = ref<string[]>([]);
onMounted(() => {
getMock();
});
const getMock = () => {
const keys = [];
const mData = [];
for (let i = 0; i < 20; i++) {
const data = {
key: i.toString(),
title: `content${i + 1}`,
description: `description of content${i + 1}`,
chosen: Math.random() * 2 > 1,
};
if (data.chosen) {
keys.push(data.key);
}
mData.push(data);
}
mockData.value = mData;
targetKeys.value = keys;
};
const handleChange = (keys: string[], direction: string, moveKeys: string[]) => {
targetKeys.value = keys;
console.log(keys, direction, moveKeys);
};
return {
mockData,
targetKeys,
handleChange,
getMock,
};
},
});
</script>
使用 Table 组件作为自定义渲染列表。
<template>
<div>
<a-transfer
:data-source="mockData"
:target-keys="targetKeys"
:disabled="disabled"
:show-search="showSearch"
:filter-option="(inputValue, item) => item.title.indexOf(inputValue) !== -1"
:show-select-all="false"
@change="onChange"
>
<template
#children="{
direction,
filteredItems,
selectedKeys,
disabled: listDisabled,
onItemSelectAll,
onItemSelect,
}"
>
<a-table
:row-selection="
getRowSelection({
disabled: listDisabled,
selectedKeys,
onItemSelectAll,
onItemSelect,
})
"
:columns="direction === 'left' ? leftColumns : rightColumns"
:data-source="filteredItems"
size="small"
:style="{ pointerEvents: listDisabled ? 'none' : null }"
:custom-row="
({ key, disabled: itemDisabled }) => ({
onClick: () => {
if (itemDisabled || listDisabled) return;
onItemSelect(key, !selectedKeys.includes(key));
},
})
"
/>
</template>
</a-transfer>
<a-switch
un-checked-children="disabled"
checked-children="disabled"
v-model:checked="disabled"
style="margin-top: 16px"
/>
<a-switch
un-checked-children="showSearch"
checked-children="showSearch"
v-model:checked="showSearch"
style="margin-top: 16px"
/>
</div>
</template>
<script lang="ts">
import { difference } from 'lodash-es';
import { defineComponent, ref } from 'vue';
interface MockData {
key: string;
title: string;
description: string;
disabled: boolean;
}
type tableColumn = Record<string, string>;
const mockData: MockData[] = [];
for (let i = 0; i < 20; i++) {
mockData.push({
key: i.toString(),
title: `content${i + 1}`,
description: `description of content${i + 1}`,
disabled: i % 4 === 0,
});
}
const originTargetKeys = mockData.filter(item => +item.key % 3 > 1).map(item => item.key);
const leftTableColumns = [
{
dataIndex: 'title',
title: 'Name',
},
{
dataIndex: 'description',
title: 'Description',
},
];
const rightTableColumns = [
{
dataIndex: 'title',
title: 'Name',
},
];
export default defineComponent({
setup() {
const targetKeys = ref<string[]>(originTargetKeys);
const disabled = ref<boolean>(false);
const showSearch = ref<boolean>(false);
const leftColumns = ref<tableColumn[]>(leftTableColumns);
const rightColumns = ref<tableColumn[]>(rightTableColumns);
const onChange = (nextTargetKeys: string[]) => {
targetKeys.value = nextTargetKeys;
};
const getRowSelection = ({
disabled,
selectedKeys,
onItemSelectAll,
onItemSelect,
}: Record<string, any>) => {
return {
getCheckboxProps: (item: Record<string, string | boolean>) => ({
disabled: disabled || item.disabled,
}),
onSelectAll(selected: boolean, selectedRows: Record<string, string | boolean>[]) {
const treeSelectedKeys = selectedRows
.filter(item => !item.disabled)
.map(({ key }) => key);
const diffKeys = selected
? difference(treeSelectedKeys, selectedKeys)
: difference(selectedKeys, treeSelectedKeys);
onItemSelectAll(diffKeys, selected);
},
onSelect({ key }: Record<string, string>, selected: boolean) {
onItemSelect(key, selected);
},
selectedRowKeys: selectedKeys,
};
};
return {
mockData,
targetKeys,
disabled,
showSearch,
leftColumns,
rightColumns,
onChange,
getRowSelection,
};
},
});
</script>
使用 Tree 组件作为自定义渲染列表。
<template>
<div>
<a-transfer
class="tree-transfer"
:data-source="dataSource"
:target-keys="targetKeys"
:render="item => item.title"
:show-select-all="false"
@change="onChange"
>
<template #children="{ direction, selectedKeys, onItemSelect }">
<a-tree
v-if="direction === 'left'"
blockNode
checkable
checkStrictly
defaultExpandAll
:checkedKeys="[...selectedKeys, ...targetKeys]"
:treeData="treeData"
@check="
(_, props) => {
onChecked(_, props, [...selectedKeys, ...targetKeys], onItemSelect);
}
"
@select="
(_, props) => {
onChecked(_, props, [...selectedKeys, ...targetKeys], onItemSelect);
}
"
/>
</template>
</a-transfer>
</div>
</template>
<script lang="ts">
import { CheckEvent } from 'ant-design-vue/es/tree/Tree';
import { computed, defineComponent, ref } from 'vue';
interface TreeDataItem {
key: string;
title: string;
disabled?: boolean;
children?: TreeDataItem[];
}
const tData: TreeDataItem[] = [
{ key: '0-0', title: '0-0' },
{
key: '0-1',
title: '0-1',
children: [
{ key: '0-1-0', title: '0-1-0' },
{ key: '0-1-1', title: '0-1-1' },
],
},
{ key: '0-2', title: '0-3' },
];
const transferDataSource: TreeDataItem[] = [];
function flatten(list: TreeDataItem[] = []) {
list.forEach(item => {
transferDataSource.push(item);
flatten(item.children);
});
}
flatten(JSON.parse(JSON.stringify(tData)));
function isChecked(selectedKeys: string[], eventKey: string) {
return selectedKeys.indexOf(eventKey) !== -1;
}
function handleTreeData(data: TreeDataItem[], targetKeys: string[] = []): TreeDataItem[] {
data.forEach(item => {
item['disabled'] = targetKeys.includes(item.key);
if (item.children) {
handleTreeData(item.children, targetKeys);
}
});
return data;
}
export default defineComponent({
setup() {
const targetKeys = ref<string[]>([]);
const dataSource = ref<TreeDataItem[]>(transferDataSource);
const treeData = computed<TreeDataItem[]>(() => {
return handleTreeData(tData, targetKeys.value);
});
const onChange = (keys: string[]) => {
targetKeys.value = keys;
};
const onChecked = (
_: Record<string, string[]>,
e: CheckEvent,
checkedKeys: string[],
onItemSelect: (n: any, c: boolean) => void,
) => {
const { eventKey } = e.node;
onItemSelect(eventKey, !isChecked(checkedKeys, eventKey));
};
return {
targetKeys,
dataSource,
treeData,
onChange,
onChecked,
};
},
});
</script>
<style scoped>
.tree-transfer .ant-transfer-list:first-child {
width: 50%;
flex: none;
}
</style>
API
参数 | 说明 | 类型 | 默认值 | 版本 |
---|---|---|---|---|
dataSource | 数据源,其中的数据将会被渲染到左边一栏中,targetKeys 中指定的除外。 | [{key: string.isRequired,title: string.isRequired,description: string,disabled: bool}][] | [] | |
disabled | 是否禁用 | boolean | false | |
filterOption | 接收 inputValue option 两个参数,当 option 符合筛选条件时,应返回 true ,反之则返回 false 。 | (inputValue, option): boolean | ||
footer | 可以设置为一个 作用域插槽 | slot=”footer” slot-scope=”props” | ||
lazy | Transfer 使用了 [vc-lazy-load]优化性能,这里可以设置相关参数。设为 false 可以关闭懒加载。 | object|boolean | { height: 32, offset: 32 } | |
listStyle | 两个穿梭框的自定义样式 | object | ||
locale | 各种语言 | object | { itemUnit: ‘项’, itemsUnit: ‘项’, notFoundContent: ‘列表为空’, searchPlaceholder: ‘请输入搜索内容’ } | |
operations | 操作文案集合,顺序从上至下 | string[] | [‘>’, ‘<’] | |
render | 每行数据渲染函数,该函数的入参为 dataSource 中的项,返回值为 element。或者返回一个普通对象,其中 label 字段为 element,value 字段为 title | Function(record)| slot | ||
selectedKeys | 设置哪些项应该被选中 | string[] | [] | |
showSearch | 是否显示搜索框 | boolean | false | |
showSelectAll | 是否展示全选勾选框 | boolean | true | |
targetKeys | 显示在右侧框数据的 key 集合 | string[] | [] | |
titles | 标题集合,顺序从左至右 | string[] | [‘’, ‘’] |
事件
事件名称 | 说明 | 回调参数 | 版本 |
---|---|---|---|
change | 选项在两栏之间转移时的回调函数 | (targetKeys, direction, moveKeys): void | |
scroll | 选项列表滚动时的回调函数 | (direction, event): void | |
search | 搜索框内容时改变时的回调函数 | (direction: ‘left’|’right’, value: string): void | - |
selectChange | 选中项发生改变时的回调函数 | (sourceSelectedKeys, targetSelectedKeys): void |
Render Props
Transfer 支持接收 children
自定义渲染列表,并返回以下参数:
{
"direction": String,
"disabled": Boolean,
"filteredItems": Array,
"selectedKeys": Array,
"onItemSelect": Function,
"onItemSelectAll": Function
}
参数 | 说明 | 类型 | 版本 |
---|---|---|---|
direction | 渲染列表的方向 | ‘left’ | ‘right’ | |
disabled | 是否禁用列表 | boolean | |
filteredItems | 过滤后的数据 | TransferItem[] | |
selectedKeys | 选中的条目 | string[] | |
itemSelect | 勾选条目 | (key: string, selected: boolean) | |
itemSelectAll | 勾选一组条目 | (keys: string[], selected: boolean) |
参考示例
<a-transfer>
<template
#children="{
direction,
filteredItems,
selectedKeys,
disabled: listDisabled,
onItemSelectAll,
onItemSelect,
}"
>
<your-component />
<template>
</a-transfer>
注意
按照 Vue 最新的规范,所有的组件数组最好绑定 key。在 Transfer 中,dataSource
里的数据值需要指定 key
值。对于 dataSource
默认将每列数据的 key
属性作为唯一的标识。
如果你的数据没有这个属性,务必使用 rowKey
来指定数据列的主键。
// 比如你的数据主键是 uid
return <Transfer :rowKey="record => record.uid" />;