mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-05 05:29:01 +08:00
9e0df41a55
* chore: remove resize-observer-polyfill * refactor: align * refactor(v3/avatar): refactor using composition api (#4052) * refactor(avatar): refactor using composition api * refactor: update props define * fix: avatar src scale not update * refactor: resizeObserver * refactor: divider * refactor: localeProvider * refactor(v3/back-top): use composition api (#4060) * refactor: backtop * refactor: empty * refactor: transButton * feat(v3/avatar): add avatar group (#4062) * feat(avatar): add avatar group * refactor: update * refactor: update Co-authored-by: tangjinzhou <415800467@qq.com> * refactor: avatar * refactor: avatar * style: rename useProvide * refactor: menu (#4110) * fix: menu * refactor: menu * refactor: remove rc-menu * fix: menu rtl error * style: lint * refactor(Anchor): use composition api (#4054) * refactor: anchor * refactor: anchor * refactor: anchor * feat: update * fix: icon class lose * refactor(v3/badge): use composition api (#4076) * refactor: badge * fix: badge inheritAttrs * refactor: grid * refactor: layout * fix: menu not close * refactor: space * refactor: result * refactor: affix * refactor: comment * refactor: form * feat: spin add rtl * feat: export spin type * refactor: pageHeader * refactor: page-header * refactor: skeleton * refactor: typography * refactor(v3/rate): use composition api * fix: add useRef hook * refactor: form * fix: menu not update * refactor: form * refactor: form * fix: slide animate not work * fix: menu mode error * fix: menu icon * refactor: rate * perf: remove rate * feat: add vc-overflow * refactor: menu * fix: remove flex check (#4165) * fix: dist locale file lose #3684 * release 2.2.0-beta.1 * dcos: update changelog * chore: update type * docs: update changelog Co-authored-by: John <John60676@qq.com> Co-authored-by: 言肆 <18x@loacg.com> Co-authored-by: zkwolf <chenhao5866@gmail.com>
97 lines
3.1 KiB
Vue
97 lines
3.1 KiB
Vue
import { defineComponent, ExtractPropTypes } from 'vue';
|
|
import PropsTypes from '../_util/vue-types';
|
|
import { flattenChildren } from '../_util/props-util';
|
|
import { VueNode, withInstall } from '../_util/type';
|
|
import useConfigInject from '../_util/hooks/useConfigInject';
|
|
export const commentProps = {
|
|
actions: PropsTypes.array,
|
|
/** The element to display as the comment author. */
|
|
author: PropsTypes.VNodeChild,
|
|
/** The element to display as the comment avatar - generally an antd Avatar */
|
|
avatar: PropsTypes.VNodeChild,
|
|
/** The main content of the comment */
|
|
content: PropsTypes.VNodeChild,
|
|
/** Comment prefix defaults to '.ant-comment' */
|
|
prefixCls: PropsTypes.string,
|
|
/** A datetime element containing the time to be displayed */
|
|
datetime: PropsTypes.VNodeChild,
|
|
};
|
|
|
|
export type CommentProps = Partial<ExtractPropTypes<typeof commentProps>>;
|
|
|
|
const Comment = defineComponent({
|
|
name: 'AComment',
|
|
props: commentProps,
|
|
slots: ['actions', 'author', 'avatar', 'content', 'datetime'],
|
|
setup(props, { slots }) {
|
|
const { prefixCls, direction } = useConfigInject('comment', props);
|
|
const renderNested = (prefixCls: string, children: VueNode) => {
|
|
return <div class={`${prefixCls}-nested`}>{children}</div>;
|
|
};
|
|
const getAction = (actions: VueNode[]) => {
|
|
if (!actions || !actions.length) {
|
|
return null;
|
|
}
|
|
const actionList = actions.map((action, index) => <li key={`action-${index}`}>{action}</li>);
|
|
return actionList;
|
|
};
|
|
return () => {
|
|
const pre = prefixCls.value;
|
|
|
|
const actions = props.actions ?? slots.actions?.();
|
|
const author = props.author ?? slots.author?.();
|
|
const avatar = props.avatar ?? slots.avatar?.();
|
|
const content = props.content ?? slots.content?.();
|
|
const datetime = props.datetime ?? slots.datetime?.();
|
|
|
|
const avatarDom = (
|
|
<div class={`${pre}-avatar`}>
|
|
{typeof avatar === 'string' ? <img src={avatar} alt="comment-avatar" /> : avatar}
|
|
</div>
|
|
);
|
|
|
|
const actionDom = actions ? (
|
|
<ul class={`${pre}-actions`}>{getAction(Array.isArray(actions) ? actions : [actions])}</ul>
|
|
) : null;
|
|
|
|
const authorContent = (
|
|
<div class={`${pre}-content-author`}>
|
|
{author && <span class={`${pre}-content-author-name`}>{author}</span>}
|
|
{datetime && <span class={`${pre}-content-author-time`}>{datetime}</span>}
|
|
</div>
|
|
);
|
|
|
|
const contentDom = (
|
|
<div class={`${pre}-content`}>
|
|
{authorContent}
|
|
<div class={`${pre}-content-detail`}>{content}</div>
|
|
{actionDom}
|
|
</div>
|
|
);
|
|
|
|
const comment = (
|
|
<div class={`${pre}-inner`}>
|
|
{avatarDom}
|
|
{contentDom}
|
|
</div>
|
|
);
|
|
const children = flattenChildren(slots.default?.());
|
|
return (
|
|
<div
|
|
class={[
|
|
pre,
|
|
{
|
|
[`${pre}-rtl`]: direction.value === 'rtl',
|
|
},
|
|
]}
|
|
>
|
|
{comment}
|
|
{children && children.length ? renderNested(pre, children) : null}
|
|
</div>
|
|
);
|
|
};
|
|
},
|
|
});
|
|
|
|
export default withInstall(Comment);
|