-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
198 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
'@primer/primitives': minor | ||
--- | ||
|
||
Adding diffBlob tokens |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
:root { | ||
--line-number-cell-width: 40px; | ||
--diff-line-minimum-height: 24px; | ||
--diff-line-height: 24px; | ||
--diff-action-bar-position: 0; | ||
} | ||
* { | ||
box-sizing: border-box; | ||
} | ||
.diff-line { | ||
--diff-num-bg: var(--diffBlob-hunk-bgColor-num-rest); | ||
--diff-num-fg: var(--diffBlob-hunk-fgColor-num-rest); | ||
--diff-line-bg: var(--diffBlob-hunk-bgColor-line); | ||
--diff-line-fg: var(--diffBlob-hunk-fgColor-text); | ||
&.type-addition { | ||
--diff-num-bg: var(--diffBlob-addition-bgColor-num); | ||
--diff-num-fg: var(--diffBlob-addition-fgColor-num); | ||
--diff-line-bg: var(--diffBlob-addition-bgColor-line); | ||
--diff-line-fg: var(--diffBlob-addition-fgColor-text); | ||
} | ||
&.type-deletion { | ||
--diff-num-bg: var(--diffBlob-deletion-bgColor-num); | ||
--diff-num-fg: var(--diffBlob-deletion-fgColor-num); | ||
--diff-line-bg: var(--diffBlob-deletion-bgColor-line); | ||
--diff-line-fg: var(--diffBlob-deletion-fgColor-text); | ||
} | ||
border-spacing: 0; | ||
border-collapse: collapse; | ||
.diff-line-number { | ||
width: 1%; | ||
min-width: 50px; | ||
line-height: 100%; | ||
padding-right: var(--base-size-8, 8px) !important; | ||
text-align: right; | ||
cursor: pointer; | ||
-webkit-user-select: none; | ||
user-select: none; | ||
background-color: var(--diff-num-bg); | ||
color: var(--diffBlob-hunk-fgColor-num-rest); | ||
code { | ||
line-height: var(--diff-line-height); | ||
} | ||
} | ||
&.type-hunk { | ||
.diff-line-number { | ||
&:hover { | ||
background-color: var(--diffBlob-hunk-bgColor-num-hover); | ||
color: var(--diffBlob-hunk-fgColor-num-hover); | ||
} | ||
} | ||
} | ||
.diff-text-cell { | ||
position: relative; | ||
padding-right: var(--diff-line-height); | ||
padding-left: var(--diff-line-height); | ||
background-color: var(--diff-line-bg); | ||
code { | ||
span { | ||
color: var(--diff-line-fg); | ||
overflow: hidden; | ||
word-wrap: break-word; | ||
white-space: pre-wrap; | ||
} | ||
} | ||
} | ||
code { | ||
font-family: var(--fontStack-monospace, ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace); | ||
font-size: 12px; | ||
background-color: transparent; | ||
padding: 0; | ||
vertical-align: middle; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
import React from 'react' | ||
import './Diff.css' | ||
import {Box} from '@primer/react' | ||
|
||
export default { | ||
title: 'Testing/Diff', | ||
parameters: { | ||
controls: {hideNoControlsWarning: true}, | ||
options: { | ||
showPanel: false, | ||
}, | ||
}, | ||
} | ||
|
||
type DiffLineType = 'hunk' | 'addition' | 'deletion' | ||
|
||
const DiffLine = ({ | ||
lineNumber = 11, | ||
text = '// TODO: 1234 example line', | ||
type = 'hunk', | ||
}: { | ||
lineNumber?: number | ||
text?: string | ||
type?: DiffLineType | ||
}) => { | ||
return ( | ||
<table width="100%" className={`diff-line type-${type}`}> | ||
<tbody> | ||
<tr> | ||
<td aria-label={`Line ${lineNumber}`} data-line-number="true" className="diff-line-number" colSpan={1}> | ||
<code>{lineNumber}</code> | ||
</td> | ||
<td className="diff-text-cell"> | ||
<code> | ||
<span>{text}</span> | ||
</code> | ||
</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
) | ||
} | ||
|
||
export const Diff = () => { | ||
return ( | ||
<Box> | ||
<DiffLine /> | ||
<DiffLine type="addition" /> | ||
<DiffLine type="deletion" /> | ||
</Box> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters