File tree 4 files changed +27
-11
lines changed
4 files changed +27
-11
lines changed Original file line number Diff line number Diff line change 1
1
import styled , { keyframes } from 'styled-components'
2
- import { size } from 'polished'
3
2
4
3
const rotation = keyframes `
5
4
0% {
@@ -28,8 +27,9 @@ const turn = keyframes`
28
27
`
29
28
30
29
const Svg = styled . svg `
31
- ${ size ( '5em' ) }
32
30
animation: ${ rotation } 1.4s linear infinite;
31
+ height: ${ props => props . size } ;
32
+ width: ${ props => props . size } ;
33
33
`
34
34
35
35
const Circle = styled . circle `
@@ -43,8 +43,12 @@ const Circle = styled.circle`
43
43
transform-origin: center;
44
44
`
45
45
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
+ }
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ import styled from 'styled-components'
4
4
import Widget from '../../widget'
5
5
import Table , { Th , Td } from '../../table'
6
6
import Badge from '../../badge'
7
+ import LoadingIndicator from '../../loading-indicator'
7
8
8
9
const JenkinsBadge = styled ( Badge ) `
9
10
background-color: ${ props => {
@@ -14,7 +15,10 @@ const JenkinsBadge = styled(Badge)`
14
15
return props . theme . palette . warnColor
15
16
case 'SUCCESS' :
16
17
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'
18
22
return 'transparent'
19
23
}
20
24
} }
@@ -77,7 +81,11 @@ export default class Jenkins extends Component {
77
81
< Th > { build . name } </ Th >
78
82
< Td >
79
83
< 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
+ }
81
89
</ a >
82
90
</ Td >
83
91
</ tr >
Original file line number Diff line number Diff line change 1
1
const colors = {
2
+ grey400 : '#bdbdbd' ,
2
3
grey700 : '#616161' ,
3
4
grey800 : '#424242' ,
4
5
grey : '#303030' ,
@@ -25,6 +26,7 @@ export default {
25
26
warnColor : colors . amber500 ,
26
27
warnSecondaryColor : colors . orange500 ,
27
28
successColor : colors . green500 ,
28
- successSecondaryColor : colors . lime500
29
+ successSecondaryColor : colors . lime500 ,
30
+ disabledColor : colors . grey400
29
31
}
30
32
}
Original file line number Diff line number Diff line change 1
1
const colors = {
2
2
grey50 : '#fafafa' ,
3
3
grey200 : '#eeeeee' ,
4
+ grey400 : '#bdbdbd' ,
4
5
grey900 : '#212121' ,
5
6
white : '#ffffff' ,
6
7
cyan500 : '#00bcd4' ,
@@ -25,6 +26,7 @@ export default {
25
26
warnColor : colors . amberA700 ,
26
27
warnSecondaryColor : colors . orangeA700 ,
27
28
successColor : colors . greenA700 ,
28
- successSecondaryColor : colors . lightGreenA700
29
+ successSecondaryColor : colors . lightGreenA700 ,
30
+ disabledColor : colors . grey400
29
31
}
30
32
}
You can’t perform that action at this time.
0 commit comments