mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-14 17:26:22 +01:00
110 lines
3.4 KiB
TypeScript
110 lines
3.4 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 } from "react";
|
|
import styled from "styled-components";
|
|
// @ts-ignore we have no typings for react-diff-view
|
|
import { Diff, useTokenizeWorker } from "react-diff-view";
|
|
import { File } from "./DiffTypes";
|
|
|
|
// styling for the diff tokens
|
|
// this must be aligned with th style, which is used in the SyntaxHighlighter component
|
|
// eslint-disable-next-line no-restricted-imports
|
|
import "../syntax-highlighting.css";
|
|
|
|
const DiffView = styled(Diff)`
|
|
/* align line numbers */
|
|
& .diff-gutter {
|
|
text-align: right;
|
|
}
|
|
/* column sizing */
|
|
> colgroup .diff-gutter-col {
|
|
width: 3.25rem;
|
|
}
|
|
/* prevent following content from moving down */
|
|
> .diff-gutter:empty:hover::after {
|
|
font-size: 0.7rem;
|
|
}
|
|
/* smaller font size for code and
|
|
ensure same monospace font throughout whole scmm */
|
|
& .diff-line {
|
|
font-size: 0.75rem;
|
|
font-family: "Courier New", Monaco, Menlo, "Ubuntu Mono", "source-code-pro", monospace;
|
|
}
|
|
/* comment padding for sidebyside view */
|
|
&.split .diff-widget-content .is-indented-line {
|
|
padding-left: 3.25rem;
|
|
}
|
|
/* comment padding for combined view */
|
|
&.unified .diff-widget-content .is-indented-line {
|
|
padding-left: 6.5rem;
|
|
}
|
|
|
|
/* conflict between prism and bulma number class */
|
|
.number {
|
|
align-items: inherit;
|
|
background-color: inherit;
|
|
border-radius: inherit;
|
|
display: initial;
|
|
font-size: inherit;
|
|
height: inherit;
|
|
justify-content: inherit;
|
|
margin-right: inherit;
|
|
margin-left: 0;
|
|
min-width: inherit;
|
|
padding: 0;
|
|
text-align: inherit;
|
|
}
|
|
`;
|
|
|
|
// WebWorker which creates tokens for syntax highlighting
|
|
const tokenize = new Worker("./Tokenize.worker.ts", { name: "tokenizer", type: "module" });
|
|
|
|
type Props = {
|
|
file: File;
|
|
viewType: "split" | "unified";
|
|
className?: string;
|
|
};
|
|
|
|
const determineLanguage = (file: File) => {
|
|
if (file.language) {
|
|
return file.language.toLowerCase();
|
|
}
|
|
return "text";
|
|
};
|
|
|
|
const TokenizedDiffView: FC<Props> = ({ file, viewType, className, children }) => {
|
|
const { tokens } = useTokenizeWorker(tokenize, {
|
|
hunks: file.hunks,
|
|
language: determineLanguage(file)
|
|
});
|
|
|
|
return (
|
|
<DiffView className={className} viewType={viewType} tokens={tokens} hunks={file.hunks} diffType={file.type}>
|
|
{children}
|
|
</DiffView>
|
|
);
|
|
};
|
|
|
|
export default TokenizedDiffView;
|