Skip to content

Commit d477ec2

Browse files
committed
Add hide button
1 parent 6ccc8cb commit d477ec2

File tree

4 files changed

+59
-19
lines changed

4 files changed

+59
-19
lines changed

.babelrc

-3
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,6 @@
55
],
66
"plugins": ["transform-object-rest-spread"],
77
"env": {
8-
"development": {
9-
"presets":["react-hmre"]
10-
},
118
"test": {
129
"presets": ["es2017"]
1310
}

src/js/components/tree.jsx

+38-10
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,42 @@
11
import React from 'react'
22
import Branch from './branch.jsx'
33

4-
export default ({ root }) => {
5-
return (
6-
<div>
7-
{root.list.map(node => (
8-
<span key={node.nodeLabel}>
9-
<Branch {...node} />
10-
</span>
11-
))}
12-
</div>
13-
)
4+
class Tree extends React.Component {
5+
constructor (props) {
6+
super(props)
7+
8+
this.onClose = this.onClose.bind(this)
9+
10+
this.state = {
11+
show: true
12+
}
13+
}
14+
15+
onClose () {
16+
const show = false
17+
this.setState({ show })
18+
document.body.classList.toggle('enable_better_github_pr', show)
19+
}
20+
21+
render () {
22+
const { root } = this.props
23+
const { show } = this.state
24+
25+
if (!show) {
26+
return null
27+
}
28+
29+
return (
30+
<div>
31+
<button onClick={this.onClose} className='close_button'></button>
32+
{root.list.map(node => (
33+
<span key={node.nodeLabel}>
34+
<Branch {...node} />
35+
</span>
36+
))}
37+
</div>
38+
)
39+
}
1440
}
41+
42+
export default Tree

src/js/lib.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ export const createRootElement = () => {
44
return
55
}
66
const rootId = '__better_github_pr'
7-
let element = document.getElementById(rootId)
7+
let element = document.querySelector('.' + rootId)
88
if (!element) {
99
element = document.createElement('div')
10-
element.id = rootId
10+
element.className = rootId
1111
injectionElement.appendChild(element)
1212
}
1313
return element

src/js/style.css

+19-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,13 @@
33

44
/* Extension specific */
55

6-
#__better_github_pr {
6+
.__better_github_pr {
7+
display: none;
8+
}
9+
10+
.enable_better_github_pr .__better_github_pr {
11+
display: block;
12+
position: relative;
713
margin-top: 20px;
814
padding: 10px;
915
width: 240px;
@@ -15,10 +21,19 @@
1521
border-radius: 3px;
1622
}
1723

18-
#__better_github_pr > div {
24+
.__better_github_pr > div {
1925
display: inline-block;
2026
}
2127

28+
.__better_github_pr .close_button {
29+
background: none;
30+
border: none;
31+
position: absolute;
32+
top: 0;
33+
right: 0;
34+
padding: 5px 2px;
35+
}
36+
2237
/* GitHub page changes */
2338

2439
.enable_better_github_pr .diff-view,
@@ -52,7 +67,7 @@
5267
}
5368

5469
.tree-view_arrow:before {
55-
content: url("data:image/svg+xml;uff8,<svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.1' x='0px' y='0px' viewBox='0 0 100 125' enable-background='new 0 0 100 100' xml:space='preserve'><polygon stroke='#adadad' fill='#ffffff' stroke-width='6' stroke-linecap='round' stroke-linejoin='round' stroke-miterlimit='10' points=' 82.626,50 17.374,87.674 17.374,12.326 82.626,50 17.374,87.674 17.374,12.326 '/></svg>");
70+
content: url("data:image/svg+xml;uff8,<svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.1' x='0px' y='0px' viewBox='0 0 100 125' enable-background='new 0 0 100 100' xml:space='preserve'><polygon stroke='%23adadad' fill='%23ffffff' stroke-width='6' stroke-linecap='round' stroke-linejoin='round' stroke-miterlimit='10' points=' 82.626,50 17.374,87.674 17.374,12.326 82.626,50 17.374,87.674 17.374,12.326 '/></svg>");
5671
display: inline-block;
5772
height: 13px;
5873
width: 13px;
@@ -66,7 +81,7 @@
6681
}
6782

6883
.tree-view_arrow:after {
69-
content: url('data:image/svg+xml;uff8,<svg xmlns="http://www.w3.org/2000/svg" class="octicon octicon-file-directory" height="16" version="1.1" viewBox="0 0 14 16" width="14"><path fill="#8197B0" fill-rule="evenodd" d="M13 4H7V3c0-.66-.31-1-1-1H1c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zM6 4H1V3h5v1z"></path></svg>');
84+
content: url('data:image/svg+xml;uff8,<svg xmlns="http://www.w3.org/2000/svg" class="octicon octicon-file-directory" height="16" version="1.1" viewBox="0 0 14 16" width="14"><path fill="%238197B0" fill-rule="evenodd" d="M13 4H7V3c0-.66-.31-1-1-1H1c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zM6 4H1V3h5v1z"></path></svg>');
7085
height: 17px;
7186
width: 17px;
7287
display: inline-block;

0 commit comments

Comments
 (0)