Skip to content

Commit 4249cb1

Browse files
danielbayerleinchrishelgert
authored andcommitted
Improve Jenkins build status (#25)
* Complete JenkinsBadge and add loading indicator * Fix wrong indentation * Improve legibility
1 parent b58af16 commit 4249cb1

File tree

4 files changed

+27
-11
lines changed

4 files changed

+27
-11
lines changed

components/loading-indicator.js

+11-7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import styled, { keyframes } from 'styled-components'
2-
import { size } from 'polished'
32

43
const rotation = keyframes`
54
0% {
@@ -28,8 +27,9 @@ const turn = keyframes`
2827
`
2928

3029
const Svg = styled.svg`
31-
${size('5em')}
3230
animation: ${rotation} 1.4s linear infinite;
31+
height: ${props => props.size};
32+
width: ${props => props.size};
3333
`
3434

3535
const Circle = styled.circle`
@@ -43,8 +43,12 @@ const Circle = styled.circle`
4343
transform-origin: center;
4444
`
4545

46-
export default () => (
47-
<Svg viewBox='0 0 66 66'>
48-
<Circle cx='33' cy='33' r='30' />
49-
</Svg>
50-
)
46+
export default ({ size = 'medium' }) => {
47+
const svgSize = size === 'small' ? '1.75em' : '5em'
48+
49+
return (
50+
<Svg viewBox='0 0 66 66' size={svgSize}>
51+
<Circle cx='33' cy='33' r='30' />
52+
</Svg>
53+
)
54+
}

components/widgets/jenkins/index.js

+10-2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import styled from 'styled-components'
44
import Widget from '../../widget'
55
import Table, { Th, Td } from '../../table'
66
import Badge from '../../badge'
7+
import LoadingIndicator from '../../loading-indicator'
78

89
const JenkinsBadge = styled(Badge)`
910
background-color: ${props => {
@@ -14,7 +15,10 @@ const JenkinsBadge = styled(Badge)`
1415
return props.theme.palette.warnColor
1516
case 'SUCCESS':
1617
return props.theme.palette.successColor
17-
default:
18+
case 'ABORTED':
19+
case 'NOT_BUILT':
20+
return props.theme.palette.disabledColor
21+
default: // null = 'In Progress'
1822
return 'transparent'
1923
}
2024
}}
@@ -77,7 +81,11 @@ export default class Jenkins extends Component {
7781
<Th>{build.name}</Th>
7882
<Td>
7983
<a href={build.url} title={build.result}>
80-
<JenkinsBadge status={build.result} />
84+
{
85+
build.result
86+
? <JenkinsBadge status={build.result} />
87+
: <LoadingIndicator size='small' />
88+
}
8189
</a>
8290
</Td>
8391
</tr>

styles/dark-theme.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
const colors = {
2+
grey400: '#bdbdbd',
23
grey700: '#616161',
34
grey800: '#424242',
45
grey: '#303030',
@@ -25,6 +26,7 @@ export default {
2526
warnColor: colors.amber500,
2627
warnSecondaryColor: colors.orange500,
2728
successColor: colors.green500,
28-
successSecondaryColor: colors.lime500
29+
successSecondaryColor: colors.lime500,
30+
disabledColor: colors.grey400
2931
}
3032
}

styles/light-theme.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
const colors = {
22
grey50: '#fafafa',
33
grey200: '#eeeeee',
4+
grey400: '#bdbdbd',
45
grey900: '#212121',
56
white: '#ffffff',
67
cyan500: '#00bcd4',
@@ -25,6 +26,7 @@ export default {
2526
warnColor: colors.amberA700,
2627
warnSecondaryColor: colors.orangeA700,
2728
successColor: colors.greenA700,
28-
successSecondaryColor: colors.lightGreenA700
29+
successSecondaryColor: colors.lightGreenA700,
30+
disabledColor: colors.grey400
2931
}
3032
}

0 commit comments

Comments
 (0)