import * as React from "react"; import * as Constants from "~/common/constants"; import { css } from "@emotion/react"; import { useState } from "react"; const STYLES_VIEW_BUTTON = css` font-family: ${Constants.font.medium}; font-weight: 400; font-size: 14px; margin-top: 4px; color: ${Constants.system.grayDark2}; cursor: pointer; width: 120px; `; export const ViewAllButton = (props) => { const [isTruncated, setTruncated] = useState(true); const text = props.fullText || ""; const maxCharacter = props.maxCharacter; const displayText = isTruncated ? text.slice(0, maxCharacter) : text; const textCount = text.length; const noButton = props.noButton; return (
{displayText} {textCount > maxCharacter ? ( {isTruncated ? "..." : ""} {noButton ? null : (
setTruncated(!isTruncated)}> {isTruncated ? "+ Show more" : "- Show less"}
)}
) : ( "" )}
); }; export default ViewAllButton;