change states that animate
This commit is contained in:
parent
dd319b343e
commit
e2be355054
|
@ -7,9 +7,13 @@ JobsItemComponent = Ember.Component.extend
|
|||
classNameBindings: ['job.state']
|
||||
classNames: ['tile', 'tile--jobs', 'row']
|
||||
|
||||
isBooting: (->
|
||||
if @get('job.state') == 'received'
|
||||
return true
|
||||
isAnimating: (->
|
||||
state = @get('job.state')
|
||||
animationStates = ['received', 'queued', 'started', 'booting']
|
||||
|
||||
unless animationStates.indexOf(state) == -1
|
||||
true
|
||||
|
||||
).property('job.state')
|
||||
|
||||
languages: (->
|
||||
|
|
|
@ -121,21 +121,15 @@
|
|||
|
||||
.icon--env
|
||||
background-image: inline-image('svg/icon-environment-dark2.svg')
|
||||
.icon--cross-red,
|
||||
.icon--job.failed,
|
||||
.icon--job.rejected
|
||||
background-image: inline-image('svg/icon-job-failed.svg')
|
||||
.icon--check-green,
|
||||
.icon--job.passed,
|
||||
.icon--job.accepted
|
||||
background-image: inline-image('svg/icon-job-passed.svg')
|
||||
.icon--error-grey,
|
||||
.icon--job.errored
|
||||
background-image: inline-image('svg/icon-job-errored.svg')
|
||||
.icon--job.started,
|
||||
.icon--job.created,
|
||||
.icon--job.queued,
|
||||
.icon--started-yellow
|
||||
.icon--job.created
|
||||
background-image: inline-image('svg/icon-job-started.svg')
|
||||
.icon--job.canceled
|
||||
background-image: inline-image('svg/icon-job-canceled.svg')
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{{#link-to "job" repo job}}
|
||||
<div class="tile-status tile-status--job">
|
||||
{{#if isBooting}}
|
||||
{{#if isAnimating}}
|
||||
<svg class="svg-booting" version="1.1" width="30" height="12" viewBox="0 0 10 10" preserveAspectRatio="xMinYMid meet">
|
||||
<g>
|
||||
<circle class="bubble" fill="#CDBC2C" cx="7.686" cy="7.369" r="2"/>
|
||||
|
|
Loading…
Reference in New Issue
Block a user