mirror of
https://github.com/scm-manager/scm-manager.git
synced 2026-02-09 16:16:58 +01:00
There is an open bug in Firefox which causes extra line breaks to appear when copying if the selection contains a `span` with the `user-select: none;` styles. This workaround removes this style and displays the line number in a `::before` instead. This has the same effect of the user not being able to select it and it also doesn't show up in multi-line selections but prevents Firefox from interpreting it incorrectly. Committed-by: Eduard Heimbuch <eduard.heimbuch@cloudogu.com>
156 lines
4.7 KiB
TypeScript
156 lines
4.7 KiB
TypeScript
/*
|
|
* MIT License
|
|
*
|
|
* Copyright (c) 2020-present Cloudogu GmbH and Contributors
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
* in the Software without restriction, including without limitation the rights
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in all
|
|
* copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
* SOFTWARE.
|
|
*/
|
|
|
|
import React, { FC, useEffect, useState } from "react";
|
|
import Icon from "./Icon";
|
|
import Tooltip from "./Tooltip";
|
|
import styled from "styled-components";
|
|
import copyToClipboard from "./CopyToClipboard";
|
|
import { useTranslation } from "react-i18next";
|
|
import { useHistory, useLocation } from "react-router-dom";
|
|
|
|
const RowContainer = styled.div`
|
|
span.linenumber + span > span.linenumber {
|
|
display: none !important;
|
|
}
|
|
&.focused > span.linenumber {
|
|
box-shadow: inset -3px 0 0 var(--scm-sh-focus-line-contrast);
|
|
}
|
|
&.focused,
|
|
&.focused > span:last-child {
|
|
background: var(--scm-sh-focus-line-background);
|
|
}
|
|
i {
|
|
visibility: hidden;
|
|
}
|
|
i:hover {
|
|
cursor: pointer;
|
|
}
|
|
&:hover i {
|
|
visibility: visible;
|
|
}
|
|
// override bulma default styling of .section
|
|
.section {
|
|
padding: 0;
|
|
}
|
|
& > span:last-child {
|
|
margin-left: 0.75em;
|
|
}
|
|
`;
|
|
|
|
const LineNumber = styled.span<{ value: number }>`
|
|
display: inline-block;
|
|
min-width: 3em;
|
|
padding-right: 0.75em;
|
|
text-align: right;
|
|
color: var(--scm-secondary-text);
|
|
&:hover {
|
|
cursor: pointer;
|
|
}
|
|
&::before {
|
|
content: "${({ value }) => `${value}`}";
|
|
}
|
|
`;
|
|
|
|
type CreateLinePermaLinkFn = (lineNumber: number) => string;
|
|
|
|
type ExternalProps = {
|
|
createLinePermaLink: CreateLinePermaLinkFn;
|
|
showLineNumbers: boolean;
|
|
};
|
|
|
|
type BaseProps = {
|
|
children: React.ReactChild[];
|
|
};
|
|
|
|
type Props = ExternalProps & BaseProps;
|
|
|
|
const SyntaxHighlighterRenderer: FC<Props> = ({ children: rows, createLinePermaLink, showLineNumbers = true }) => {
|
|
const location = useLocation();
|
|
const history = useHistory();
|
|
const [focusedLine, setLineToFocus] = useState<number | undefined>(undefined);
|
|
const [copying, setCopying] = useState(false);
|
|
const [t] = useTranslation("repos");
|
|
|
|
useEffect(() => {
|
|
const match = location.hash.match(/^#line-(.*)$/);
|
|
if (match) {
|
|
const lineNumber = match[1];
|
|
setLineToFocus(Number(lineNumber));
|
|
}
|
|
}, [location.hash]);
|
|
|
|
const lineNumberClick = (lineNumber: number) => {
|
|
history.push(location.pathname + "#line-" + lineNumber);
|
|
setCopying(true);
|
|
copyToClipboard(createLinePermaLink(lineNumber)).finally(() => setCopying(false));
|
|
};
|
|
|
|
return (
|
|
<>
|
|
{rows.map((line: React.ReactNode, i: number) => {
|
|
const lineNumber = i + 1;
|
|
return (
|
|
<RowContainer
|
|
id={`line-${lineNumber}`}
|
|
className={(focusedLine === lineNumber && "focused") || undefined}
|
|
key={`line-${lineNumber}`}
|
|
>
|
|
{showLineNumbers && (
|
|
<>
|
|
{copying ? (
|
|
<Icon name="spinner fa-spin" alt={t("sources.content.loading")} />
|
|
) : (
|
|
<Tooltip message={t("sources.content.copyPermalink")}>
|
|
<Icon
|
|
name="link"
|
|
onClick={() => lineNumberClick(lineNumber)}
|
|
alt={t("sources.content.copyPermalink")}
|
|
/>
|
|
</Tooltip>
|
|
)}
|
|
<LineNumber
|
|
onClick={() => history.push(location.pathname + "#line-" + lineNumber)}
|
|
className="linenumber react-syntax-highlighter-line-number"
|
|
value={lineNumber}
|
|
/>
|
|
</>
|
|
)}
|
|
{line}
|
|
</RowContainer>
|
|
);
|
|
})}
|
|
</>
|
|
);
|
|
};
|
|
|
|
//
|
|
export const create = (createLinePermaLink: CreateLinePermaLinkFn, showLineNumbers = false): FC<BaseProps> => {
|
|
return (props) => (
|
|
<SyntaxHighlighterRenderer {...props} createLinePermaLink={createLinePermaLink} showLineNumbers={showLineNumbers} />
|
|
);
|
|
};
|
|
|
|
export default create;
|