@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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@conorheffron/ironoc-frontend",
3
- "version": "8.0.1",
3
+ "version": "8.0.4",
4
4
  "private": false,
5
5
  "license": "GPL-3.0-or-later",
6
6
  "dependencies": {
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>
@@ -53,7 +53,7 @@ class ControlledCarousel extends Component {
53
53
  };
54
54
 
55
55
  return (
56
- <div>
56
+ <div className="App">
57
57
  <AppNavbar />
58
58
  <Container>
59
59
  <Carousel className="App-header">
@@ -79,7 +79,7 @@ class Donate extends Component {
79
79
  }
80
80
 
81
81
  return (
82
- <div>
82
+ <div className="App">
83
83
  <AppNavbar />
84
84
  <Container>
85
85
  <Carousel className="App-header">
@@ -38,6 +38,12 @@ class Home extends Component {
38
38
  rel="noopener noreferrer">link tree</a>, a <a href="/portfolio">carousel</a>&nbsp;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" tag={Link} to={`/issues/${gitUser}/${repo.name}`}>List Issues</Button>
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 /><br /><br />
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="35%">Topics</th>
125
- <th width="10%">Issues Count</th>
130
+ <th width="45%">Topics</th>
131
+ <th width="5%">Issues Count</th>
126
132
  <th width="5%">Actions</th>
127
133
  </>
128
134
  ) : (
@@ -170,7 +170,7 @@ const RepoIssues = () => {
170
170
  }
171
171
 
172
172
  return (
173
- <div>
173
+ <div className="App">
174
174
  <AppNavbar />
175
175
  <br />
176
176
  <br />