Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: omit prefix symbol automatically when copying shell code #1832

Merged
merged 4 commits into from
Aug 16, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions src/client/theme-default/builtins/SourceCode/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import classNames from 'classnames';
import { useSiteData } from 'dumi';
import Highlight, { defaultProps, type Language } from 'prism-react-renderer';
import 'prism-themes/themes/prism-one-light.css';
import React, { useRef, useState, type FC } from 'react';
import React, { useRef, useState, useEffect, type FC } from 'react';
import { CopyToClipboard } from 'react-copy-to-clipboard';
import './index.less';

Expand All @@ -26,12 +26,21 @@ const SourceCode: FC<SourceCodeProps> = (props) => {
const { children = '', lang, highlightLines = [] } = props;
const timer = useRef<number>();
const [isCopied, setIsCopied] = useState(false);
const [text, setText] = useState(children);
const { themeConfig } = useSiteData();

useEffect(() => {
const isShell = /shellscript|shell|bash|sh|zsh/.test(lang);
if (isShell) {
const text = children.replace(/^(\$|>)\s/gm, '');
setText(text);
}
}, [lang, children]);

return (
<div className="dumi-default-source-code">
<CopyToClipboard
text={children}
text={text}
onCopy={() => {
setIsCopied(true);
clearTimeout(timer.current);
Expand Down
Loading