2

我需要用省略号显示评论。我使用了 antd 的 Paragraph Typography。我的问题是评论也可以包含 html 属性(链接到标记的用户),所以我还需要在组件中设置dangerouslySetInnerHTML。如何在 Typography 组件中设置它?

<Paragraph ellipsis={{ rows: 2, expandable: true, symbol: "more" }}>
      {comment}
</Paragraph>

预览: 在此处输入图像描述

我尝试在 Paragraph 中使用 span 来使用dangerouslySetInnerHTML,但随后省略号开始为所有长评论显示“...更多”,而没有在评论中显示任何初始字符来填充宽度。在使用<Paragraph></Paragragh>字符串以外的任何 HTML 元素时也会收到警告

<Paragraph ellipsis={{ rows: 2, expandable: true, symbol: "more" }}>
      <span dangerouslySetInnerHTML={{ __html: comment.comment }} />
</Paragraph>

预览: 在此处输入图像描述

警告: 在此处输入图像描述

实现这一目标的任何解决方法?

4

1 回答 1

1

首先,我也喜欢 antd Typography 的这个功能,但目前情况并非如此,所以在此期间,这里有一些解决方法。

import React, { useState } from "react";
import Button from "antd/es/button";

import ChopLines from "chop-lines";
import insane from "insane";

const Sanitized = ({ html }) => (
    <div
        className={styles.sanitizedBody}
        dangerouslySetInnerHTML={{
            __html: insane(html, {
                allowedTags: [
                    "p",
                    "strong",
                    "em",
                    "a",
                    "b",
                    "i",
                    "span",
                    "div",
                    "br",
                    "u",
                    "img",
                ],
            }),
        }}
    />
);

const Ellipsis = ({ expand }) => (
    <Button
        size="small"
        shape="round"
        type="primary"
        onClick={expand}
    >
        ...see more
    </Button>
);

const Post = ({content}) => {
    const [expanded, setExpanded] = useState(false);

    render (
        <div>
            {expanded ? (
                <Sanitized html={content} />
            ) : (
                <ChopLines
                    maxHeight={90}
                    ellipsis={
                        <Ellipsis expand={expand}>
                            <span>Read More</span>
                        </Ellipsis>
                    }
                >
                    <Sanitized html={content} />
                </ChopLines>
            )}
        </div>
    );
};
于 2021-03-10T17:08:53.387 回答