overleaf/services/web/frontend/stories/history/document-diff-viewer.stories.tsx
Tim Down 6b78c3025a Merge pull request #12884 from overleaf/td-history-diff-line-highlights
History migration: Add line and gutter highlights for changes in diff viewer

GitOrigin-RevId: 11d637647d147210f63e5111305adfe1d285ba3e
2023-05-17 12:05:05 +00:00

157 lines
3.4 KiB
TypeScript

import { ScopeDecorator } from '../decorators/scope'
import DocumentDiffViewer from '../../js/features/history/components/diff-view/document-diff-viewer'
import React from 'react'
import { Highlight } from '../../js/features/history/services/types/doc'
const highlights: Highlight[] = [
{
type: 'addition',
range: { from: 3, to: 10 },
hue: 200,
label: 'Added by Wombat on Monday',
},
{
type: 'deletion',
range: { from: 15, to: 25 },
hue: 62,
label: 'Deleted by Duck on Monday',
},
{
type: 'addition',
range: { from: 100, to: 400 },
hue: 200,
label: 'Added by Wombat on Friday',
},
{
type: 'deletion',
range: { from: 564, to: 565 },
hue: 200,
label: 'Deleted by Wombat on Friday',
},
{
type: 'addition',
range: { from: 1770, to: 1780 },
hue: 200,
label: 'Added by Wombat on Tuesday',
},
]
const doc = `\\documentclass{article}
% Language setting
% Replace \`english' with e.g. \`spanish' to change the document language
\\usepackage[english]{babel}
% Set page size and margins
% Replace \`letterpaper' with \`a4paper' for UK/EU standard size
\\usepackage[letterpaper,top=2cm,bottom=2cm,left=3cm,right=3cm,marginparwidth=1.75cm]{geometry}
% Useful packages
\\usepackage{amsmath}
\\usepackage{graphicx}
\\usepackage[colorlinks=true, allcolors=blue]{hyperref}
\\title{Your Paper}
\\author{You}
\\begin{document}
\\maketitle
\\begin{abstract}
Your abstract.
\\end{abstract}
\\section{Introduction}
Your introduction goes here! Simply start writing your document and use the Recompile button to view the updated PDF preview. Examples of commonly used commands and features are listed below, to help you get started.
Once you're familiar with the editor, you can find various project settings in the Overleaf menu, accessed via the button in the very top left of the editor. To view tutorials, user guides, and further documentation, please visit our \\href{https://www.overleaf.com/learn}{help library}, or head to our plans page to \\href{https://www.overleaf.com/user/subscription/plans}{choose your plan}.
\\begin{enumerate}
\\item The labels consists of sequential numbers
\\begin{itemize}
\\item The individual entries are indicated with a black dot, a so-called bullet
\\item The text in the entries may be of any length
\\begin{description}
\\item[Note:] I would like to describe something here
\\item[Caveat!] And give a warning
\\end{description}
\\end{itemize}
\\item The numbers starts at 1 with each use of the \\text{enumerate} environment
\\end{enumerate}
\\bibliographystyle{alpha}
\\bibliography{sample}
\\end{document}`
export default {
title: 'History / Document Diff Viewer',
component: DocumentDiffViewer,
args: { doc, highlights },
argTypes: {
doc: {
table: { disable: true },
},
highlights: {
table: { disable: true },
},
},
decorators: [
ScopeDecorator,
(Story: React.ComponentType) => (
<div style={{ height: '90vh' }}>
<Story />
</div>
),
],
}
export const Highlights = (
args: React.ComponentProps<typeof DocumentDiffViewer>
) => {
return <DocumentDiffViewer {...args} />
}
export const ScrollToFirstHighlight = (
args: React.ComponentProps<typeof DocumentDiffViewer>
) => {
const lastHighlightOnly = args.highlights.slice(-1)
return <DocumentDiffViewer {...args} highlights={lastHighlightOnly} />
}