@conorheffron/ironoc-frontend 8.0.1 → 8.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
package/src/AppNavbar.js
CHANGED
|
@@ -40,12 +40,12 @@ class AppNavBar extends Component {
|
|
|
40
40
|
return (
|
|
41
41
|
<div>
|
|
42
42
|
<Navbar color={color} light={light} dark={dark} fixed={fixed} container={container} expand={expand} className={className}>
|
|
43
|
-
<NavbarBrand href="/">
|
|
44
|
-
<img alt="" src={logo} width="30" height="30" className="d-inline-block align-top"/>
|
|
45
|
-
</NavbarBrand>
|
|
46
43
|
<Container>
|
|
47
44
|
<NavbarToggler onClick={this.toggleNavbar} /> {/* Toggle button */}
|
|
48
45
|
<Collapse isOpen={isOpen} navbar>
|
|
46
|
+
<NavbarBrand href="/">
|
|
47
|
+
<img alt="" src={logo} width="30" height="30" className="d-inline-block align-top"/>
|
|
48
|
+
</NavbarBrand>
|
|
49
49
|
<Nav className="me-auto" navbar>
|
|
50
50
|
<UncontrolledDropdown inNavbar nav>
|
|
51
51
|
<DropdownToggle caret nav>iRonoc</DropdownToggle>
|
package/src/components/Donate.js
CHANGED
package/src/components/Home.js
CHANGED
|
@@ -38,6 +38,12 @@ class Home extends Component {
|
|
|
38
38
|
rel="noopener noreferrer">link tree</a>, a <a href="/portfolio">carousel</a> that scrolls
|
|
39
39
|
through highlighted projects & the GitHub project manager (PM) tool which is built against the iRonoc API.
|
|
40
40
|
<br /><br />
|
|
41
|
+
If you like what you see, please sponsor my open source work.
|
|
42
|
+
<br /><br />
|
|
43
|
+
<iframe src="https://github.com/sponsors/conorheffron/card" title="Sponsor conorheffron"
|
|
44
|
+
height="180" width="300" >
|
|
45
|
+
</iframe>
|
|
46
|
+
<br /><br />
|
|
41
47
|
The GitHub PM tool allows you to view & navigate the backlog of issues & bugs for a given project
|
|
42
48
|
repository for the corresponding user or organisation account. There is an option to search by user ID
|
|
43
49
|
or to drill down to a specific repository name via search or 'List Issues' icon in the 'Actions' column
|
|
@@ -89,16 +89,22 @@ class RepoDetails extends Component {
|
|
|
89
89
|
<td>{repo.issueCount}</td>
|
|
90
90
|
)}
|
|
91
91
|
<td>
|
|
92
|
-
<ButtonGroup>
|
|
93
|
-
<Button size="sm" color="secondary"
|
|
92
|
+
<ButtonGroup vertical>
|
|
93
|
+
<Button size="sm" color="secondary"
|
|
94
|
+
tag={Link} to={`/issues/${gitUser}/${repo.name}`}>List Issues</Button>
|
|
95
|
+
<br />
|
|
96
|
+
<Button size="sm" color="secondary" tag={Link} target="_blank" rel="noreferrer"
|
|
97
|
+
to={`https://github.com/${gitUser}/${repo.name}/issues/new/choose`}>Create Issue</Button>
|
|
94
98
|
</ButtonGroup>
|
|
95
99
|
</td>
|
|
96
100
|
</tr>
|
|
97
101
|
));
|
|
98
102
|
|
|
99
103
|
return (
|
|
100
|
-
<div>
|
|
101
|
-
<AppNavbar
|
|
104
|
+
<div className="App">
|
|
105
|
+
<AppNavbar />
|
|
106
|
+
<br />
|
|
107
|
+
<br />
|
|
102
108
|
<Container fluid>
|
|
103
109
|
<br />
|
|
104
110
|
<InputGroup className="mb-3">
|
|
@@ -121,8 +127,8 @@ class RepoDetails extends Component {
|
|
|
121
127
|
<th width="9%">Repository</th>
|
|
122
128
|
<th width="15%">Description</th>
|
|
123
129
|
<th width="6%">App URL</th>
|
|
124
|
-
<th width="
|
|
125
|
-
<th width="
|
|
130
|
+
<th width="45%">Topics</th>
|
|
131
|
+
<th width="5%">Issues Count</th>
|
|
126
132
|
<th width="5%">Actions</th>
|
|
127
133
|
</>
|
|
128
134
|
) : (
|