types(ContactCard): use tsx (#8112)

This commit is contained in:
neverland
2021-02-09 20:49:40 +08:00
committed by GitHub
parent 865f72bd5b
commit c9abb07a7a
+58
View File
@@ -0,0 +1,58 @@
import { PropType } from 'vue';
import { createNamespace } from '../utils';
import Cell from '../cell';
const [createComponent, bem, t] = createNamespace('contact-card');
export type ContactCardType = 'add' | 'edit';
export default createComponent({
props: {
tel: String,
name: String,
addText: String,
editable: {
type: Boolean,
default: true,
},
type: {
type: String as PropType<ContactCardType>,
default: 'add',
},
},
emits: ['click'],
setup(props, { emit }) {
const onClick = (event: MouseEvent) => {
if (props.editable) {
emit('click', event);
}
};
const renderContent = () => {
if (props.type === 'add') {
return props.addText || t('addText');
}
return [
<div>{`${t('name')}${props.name}`}</div>,
<div>{`${t('tel')}${props.tel}`}</div>,
];
};
return () => (
<Cell
center
icon={props.type === 'edit' ? 'contact' : 'add-square'}
class={bem([props.type])}
border={false}
isLink={props.editable}
valueClass={bem('value')}
onClick={onClick}
>
{renderContent()}
</Cell>
);
},
});