commit
e210db7bd9
|
@ -156,6 +156,46 @@ export function PreCode(props: { children: any }) {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function CustomCode(props: { children: any }) {
|
||||||
|
const ref = useRef<HTMLPreElement>(null);
|
||||||
|
const [collapsed, setCollapsed] = useState(true);
|
||||||
|
const [showToggle, setShowToggle] = useState(false);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (ref.current) {
|
||||||
|
const codeHeight = ref.current.scrollHeight;
|
||||||
|
setShowToggle(codeHeight > 400);
|
||||||
|
ref.current.scrollTop = ref.current.scrollHeight;
|
||||||
|
}
|
||||||
|
}, [props.children]);
|
||||||
|
|
||||||
|
const toggleCollapsed = () => {
|
||||||
|
setCollapsed((collapsed) => !collapsed);
|
||||||
|
};
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<code
|
||||||
|
ref={ref}
|
||||||
|
style={{
|
||||||
|
maxHeight: collapsed ? "400px" : "none",
|
||||||
|
overflowY: "hidden",
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
{props.children}
|
||||||
|
{showToggle && collapsed && (
|
||||||
|
<div
|
||||||
|
className={`show-hide-button ${
|
||||||
|
collapsed ? "collapsed" : "expanded"
|
||||||
|
}`}
|
||||||
|
>
|
||||||
|
<button onClick={toggleCollapsed}>查看全部</button>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</code>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
function escapeDollarNumber(text: string) {
|
function escapeDollarNumber(text: string) {
|
||||||
let escapedText = "";
|
let escapedText = "";
|
||||||
|
|
||||||
|
@ -211,6 +251,7 @@ function _MarkDownContent(props: { content: string }) {
|
||||||
]}
|
]}
|
||||||
components={{
|
components={{
|
||||||
pre: PreCode,
|
pre: PreCode,
|
||||||
|
code: CustomCode,
|
||||||
p: (pProps) => <p {...pProps} dir="auto" />,
|
p: (pProps) => <p {...pProps} dir="auto" />,
|
||||||
a: (aProps) => {
|
a: (aProps) => {
|
||||||
const href = aProps.href || "";
|
const href = aProps.href || "";
|
||||||
|
|
|
@ -304,6 +304,37 @@ pre {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
code{
|
||||||
|
.show-hide-button {
|
||||||
|
border-radius: 10px;
|
||||||
|
position: absolute;
|
||||||
|
inset: 0 0 auto 0;
|
||||||
|
width: 100%;
|
||||||
|
margin: auto;
|
||||||
|
height: fit-content;
|
||||||
|
display: inline-flex;
|
||||||
|
justify-content: center;
|
||||||
|
button{
|
||||||
|
margin-top: 3em;
|
||||||
|
margin-bottom: 4em;
|
||||||
|
padding: 5px 16px;
|
||||||
|
border: 0;
|
||||||
|
cursor: pointer;
|
||||||
|
border-radius: 14px;
|
||||||
|
text-align: center;
|
||||||
|
color: white;
|
||||||
|
background: #464e4e;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.expanded {
|
||||||
|
background-image: none;
|
||||||
|
}
|
||||||
|
.collapsed {
|
||||||
|
background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.06));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.clickable {
|
.clickable {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue