@conorheffron/ironoc-frontend 7.1.1 → 7.1.3
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/LoadingSpinner.js
CHANGED
|
@@ -2,15 +2,17 @@ import React, { Component } from 'react';
|
|
|
2
2
|
import Button from 'react-bootstrap/Button';
|
|
3
3
|
import Spinner from 'react-bootstrap/Spinner';
|
|
4
4
|
import { Container } from 'reactstrap';
|
|
5
|
-
import AppNavbar from './AppNavbar';
|
|
6
5
|
|
|
7
6
|
class LoadingSpinner extends Component {
|
|
8
7
|
render() {
|
|
9
8
|
return (
|
|
10
9
|
<Container fluid>
|
|
11
10
|
<Button variant="primary" disabled>
|
|
12
|
-
|
|
13
|
-
|
|
11
|
+
<Spinner animation="border" variant="secondary" />
|
|
12
|
+
<Spinner animation="border" variant="dark" />
|
|
13
|
+
<Spinner animation="border" variant="danger" />
|
|
14
|
+
<Spinner animation="border" variant="warning" />
|
|
15
|
+
<h1>Loading...</h1>
|
|
14
16
|
</Button>
|
|
15
17
|
</Container>
|
|
16
18
|
);
|
package/src/components/About.js
CHANGED
|
@@ -42,7 +42,7 @@ class About extends Component {
|
|
|
42
42
|
Let's connect and explore exciting
|
|
43
43
|
opportunities together! See above & beyond for contact details and further information.
|
|
44
44
|
</p><br />
|
|
45
|
-
<a className="strava-badge" href={stravaLink} target="_blank">
|
|
45
|
+
<a className="strava-badge" href={stravaLink} target="_blank" rel="noreferrer" >
|
|
46
46
|
Follow me on
|
|
47
47
|
<img className="strava-badge-img" src={stravaImgSrc} alt={stravaImgAlt} />
|
|
48
48
|
</a><br />
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React, { Component } from 'react';
|
|
2
|
-
import {
|
|
2
|
+
import { Container } from 'reactstrap';
|
|
3
3
|
import axios from 'axios';
|
|
4
4
|
import AppNavbar from '.././AppNavbar';
|
|
5
5
|
import CoffeeCarousel from './CoffeeCarousel';
|
package/src/components/Donate.js
CHANGED
|
@@ -38,17 +38,16 @@ const donateItems = [
|
|
|
38
38
|
img: red,
|
|
39
39
|
alt: "red3",
|
|
40
40
|
name: "Temple Street Children’s University Hospital",
|
|
41
|
-
overview: `Temple Street
|
|
42
|
-
neonatal
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
950 other full-time and part-time HSCPs (Health and Social Care Professionals) and other staff deliver care and services.`,
|
|
41
|
+
overview: `Temple Street, is an acute national paediatric hospital. Seven major specialties at Temple Street today include
|
|
42
|
+
neonatal & paediatric surgery, neurology, neurosurgery, nephrology, orthopaedics, ENT & plastic surgery.
|
|
43
|
+
Temple Street cares for 145,000 children per year including 45,000 who attend the Emergency Department (ED) every year.
|
|
44
|
+
A staff of 85 Consultants& over 950 other full-time & part-time HSCPs (Health & Social
|
|
45
|
+
Care Professionals) % other staff deliver care & services.`,
|
|
47
46
|
founded: 1872,
|
|
48
|
-
phone:
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
47
|
+
phone: `<br/><b>Temple Street:</b> +353 01 878 4200,
|
|
48
|
+
<b>Tallaght:</b> +353 01 693 7500,<br />
|
|
49
|
+
<b>Crumlin:</b> +353 01 409 6100,
|
|
50
|
+
<b>Connolly:</b> +353 01 640 7500`
|
|
52
51
|
},
|
|
53
52
|
{
|
|
54
53
|
donate: "https://donors.cancer.ie/page/FUNMTNWKDWV",
|
|
@@ -104,9 +103,9 @@ class Donate extends Component {
|
|
|
104
103
|
<a href={item.donate} target="_blank" rel="noreferrer">
|
|
105
104
|
<img className="d-block w-100" src={item.img} alt={item.alt} />
|
|
106
105
|
<Carousel.Caption>
|
|
107
|
-
<
|
|
108
|
-
<
|
|
109
|
-
</
|
|
106
|
+
<h1>
|
|
107
|
+
<u>{item.name}</u>
|
|
108
|
+
</h1><br />
|
|
110
109
|
<h8>
|
|
111
110
|
<b>Contact & Help by Phone: </b><span dangerouslySetInnerHTML={{ __html: item.phone }} />
|
|
112
111
|
</h8><br />
|