Files
SCM-Manager/scm-ui/ui-components/src/repos/Diff.stories.tsx

125 lines
4.4 KiB
TypeScript
Raw Normal View History

/*
* 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.
*/
2019-12-19 09:51:44 +01:00
import React, { useEffect, useState } from "react";
import { storiesOf } from "@storybook/react";
import Diff from "./Diff";
// @ts-ignore
import parser from "gitdiff-parser";
import simpleDiff from "../__resources__/Diff.simple";
2020-01-08 09:57:57 +01:00
import hunksDiff from "../__resources__/Diff.hunks";
2020-01-09 16:31:28 +01:00
import binaryDiff from "../__resources__/Diff.binary";
2020-01-22 12:08:28 +01:00
import { DiffEventContext, File } from "./DiffTypes";
2019-12-19 09:51:44 +01:00
import Toast from "../toast/Toast";
2020-01-22 12:08:28 +01:00
import { getPath } from "./diffs";
import DiffButton from "./DiffButton";
import styled from "styled-components";
2019-12-19 09:51:44 +01:00
const diffFiles = parser.parse(simpleDiff);
const Container = styled.div`
padding: 2rem 6rem;
`;
2019-12-19 09:51:44 +01:00
storiesOf("Diff", module)
.addDecorator(storyFn => <Container>{storyFn()}</Container>)
2019-12-19 09:51:44 +01:00
.add("Default", () => <Diff diff={diffFiles} />)
.add("Side-By-Side", () => <Diff diff={diffFiles} sideBySide={true} />)
.add("Collapsed", () => <Diff diff={diffFiles} defaultCollapse={true} />)
.add("File Controls", () => (
<Diff
diff={diffFiles}
fileControlFactory={() => (
<DiffButton
tooltip="A skull and crossbones or death's head is a symbol consisting of a human skull and two long bones crossed together under or behind the skull. The design originates in the Late Middle Ages as a symbol of death and especially as a memento mori on tombstones."
icon="skull-crossbones"
onClick={() => alert("Arrrgggghhhh ...")}
/>
)}
/>
))
2019-12-19 09:51:44 +01:00
.add("File Annotation", () => (
2020-01-06 14:48:32 +01:00
<Diff
diff={diffFiles}
fileAnnotationFactory={file => [<p key={file.newPath}>Custom File annotation for {file.newPath}</p>]}
/>
2019-12-19 09:51:44 +01:00
))
.add("Line Annotation", () => (
<Diff
diff={diffFiles}
annotationFactory={ctx => {
return {
2020-01-06 14:48:32 +01:00
N2: <p key="N2">Line Annotation</p>
2019-12-19 09:51:44 +01:00
};
}}
/>
))
.add("OnClick", () => {
const OnClickDemo = () => {
2019-12-19 09:51:44 +01:00
const [changeId, setChangeId] = useState();
useEffect(() => {
const interval = setInterval(() => setChangeId(undefined), 2000);
return () => clearInterval(interval);
});
// @ts-ignore
2019-12-19 09:51:44 +01:00
const onClick = (context: DiffEventContext) => setChangeId(context.changeId);
return (
<>
{changeId && <Toast type="info" title={"Change " + changeId} />}
<Diff diff={diffFiles} onClick={onClick} />
</>
);
};
return <OnClickDemo />;
2020-01-08 09:57:57 +01:00
})
.add("Hunks", () => {
const hunkDiffFiles = parser.parse(hunksDiff);
return <Diff diff={hunkDiffFiles} />;
2020-01-09 16:31:28 +01:00
})
.add("Binaries", () => {
const binaryDiffFiles = parser.parse(binaryDiff);
return <Diff diff={binaryDiffFiles} />;
2020-01-22 12:08:28 +01:00
})
.add("SyntaxHighlighting", () => {
const filesWithLanguage = diffFiles.map((file: File) => {
const ext = getPath(file).split(".")[1];
if (ext === "tsx") {
file.language = "typescript";
} else {
file.language = ext;
}
return file;
});
return <Diff diff={filesWithLanguage} />;
})
.add("CollapsingWithFunction", () => (
<Diff diff={diffFiles} defaultCollapse={(oldPath, newPath) => oldPath.endsWith(".java")} />
2020-06-10 13:32:06 +02:00
))
.add("Expandable", () => {
const filesWithLanguage = diffFiles.map((file: File) => {
file._links = { lines: { href: "http://example.com/" } };
return file;
});
return <Diff diff={filesWithLanguage} />;
});