import { use } from '../utils'; import { emit, inherit } from '../utils/functional'; import Button from '../button'; import RadioGroup from '../radio-group'; import AddressItem, { AddressItemData } from './Item'; // Types import { CreateElement, RenderContext } from 'vue/types'; import { ScopedSlot, DefaultSlots } from '../utils/use/sfc'; export type AddressListProps = { value?: string | number; switchable: boolean; disabledText?: string; addButtonText?: string; list: AddressItemData[]; disabledList: AddressItemData[]; }; export type AddressListSlots = DefaultSlots & { top?: ScopedSlot; }; const [sfc, bem, t] = use('address-list'); function AddressList( h: CreateElement, props: AddressListProps, slots: AddressListSlots, ctx: RenderContext ) { const getList = (list: AddressItemData[], disabled?: boolean) => list.map((item, index) => ( { emit(ctx, disabled ? 'select-disabled' : 'select', item, index); }} onEdit={() => { emit(ctx, disabled ? 'edit-disabled' : 'edit', item, index); }} /> )); const List = getList(props.list); const DisabledList = getList(props.disabledList, true); return (
{slots.top && slots.top()} { emit(ctx, 'input', event); }} > {List} {props.disabledText && (
{props.disabledText}
)} {DisabledList} {slots.default && slots.default()}
); } AddressList.props = { list: Array, disabledList: Array, disabledText: String, addButtonText: String, value: [String, Number], switchable: { type: Boolean, default: true } }; export default sfc(AddressList);