mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-15 09:46:16 +01:00
116 lines
3.2 KiB
TypeScript
116 lines
3.2 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 { storiesOf } from "@storybook/react";
|
|
import * as React from "react";
|
|
import styled from "styled-components";
|
|
import Annotate, { AnnotatedSource } from "./Annotate";
|
|
import { MemoryRouter } from "react-router-dom";
|
|
import repository from "./__resources__/repository";
|
|
|
|
const Wrapper = styled.div`
|
|
margin: 2rem;
|
|
`;
|
|
|
|
const commitCreateNewApp = {
|
|
revision: "0d8c1d328f4599b363755671afe667c7ace52bae",
|
|
author: {
|
|
name: "Arthur Dent",
|
|
mail: "arthur.dent@hitchhiker.com"
|
|
},
|
|
description: "create new app",
|
|
when: new Date("2020-04-09T13:07:42Z")
|
|
};
|
|
|
|
const commitFixedMissingImport = {
|
|
revision: "fab38559ce3ab8c388e067712b4bd7ab94b9fa9b",
|
|
author: {
|
|
name: "Tricia Marie McMillan",
|
|
mail: "trillian@hitchhiker.com"
|
|
},
|
|
description: "fixed missing import",
|
|
when: new Date("2020-05-10T09:18:42Z")
|
|
};
|
|
|
|
const commitImplementMain = {
|
|
revision: "5203292ab2bc0c020dd22adc4d3897da4930e43f",
|
|
author: {
|
|
name: "Ford Prefect",
|
|
mail: "ford.prefect@hitchhiker.com"
|
|
},
|
|
description: "implemented main function",
|
|
when: new Date("2020-04-12T16:29:42Z")
|
|
};
|
|
|
|
const source: AnnotatedSource = {
|
|
language: "go",
|
|
lines: [
|
|
{
|
|
lineNumber: 1,
|
|
code: "package main",
|
|
...commitCreateNewApp
|
|
},
|
|
{
|
|
lineNumber: 2,
|
|
code: "",
|
|
...commitCreateNewApp
|
|
},
|
|
{
|
|
lineNumber: 3,
|
|
code: 'import "fmt"',
|
|
...commitFixedMissingImport
|
|
},
|
|
{
|
|
lineNumber: 4,
|
|
code: "",
|
|
...commitFixedMissingImport
|
|
},
|
|
{
|
|
lineNumber: 5,
|
|
code: "func main() {",
|
|
...commitCreateNewApp
|
|
},
|
|
{
|
|
lineNumber: 6,
|
|
code: ' fmt.Println("Hello World")',
|
|
...commitImplementMain
|
|
},
|
|
{
|
|
lineNumber: 7,
|
|
code: "}",
|
|
...commitCreateNewApp
|
|
},
|
|
{
|
|
lineNumber: 8,
|
|
code: "",
|
|
...commitCreateNewApp
|
|
}
|
|
]
|
|
};
|
|
|
|
storiesOf("Annotate", module)
|
|
.addDecorator(storyFn => <MemoryRouter initialEntries={["/"]}>{storyFn()}</MemoryRouter>)
|
|
.addDecorator(storyFn => <Wrapper className="box">{storyFn()}</Wrapper>)
|
|
.add("Default", () => <Annotate source={source} repository={repository} />);
|