Add footer to landing page and main layout

This commit also plugs statuspage.io status check to the footer's status
section.
This commit is contained in:
Piotr Sarnacki 2015-03-31 14:17:09 +02:00
parent c716752945
commit 9d46fc6712
10 changed files with 76 additions and 10 deletions

View File

@ -0,0 +1,22 @@
`import Ember from 'ember'`
`import Ajax from 'travis/utils/ajax'`
`import config from 'travis/config/environment'`
TravisStatusComponent = Ember.Component.extend
status: null
statusPageStatusUrl: (->
config.statusPageStatusUrl
).property()
didInsertElement: ->
if url = @get('statusPageStatusUrl')
self = this
@getStatus(url).then (response) ->
if response.status and response.status.indicator
self.set('status', response.status.indicator)
getStatus: (url) ->
$.ajax(url)
`export default TravisStatusComponent`

View File

@ -13,7 +13,7 @@
background-color: #eff0ec
#landing
margin: 0 auto
margin: 0 auto 170px auto
max-width: 1200px
font-weight: 300

View File

@ -52,6 +52,9 @@
margin-bottom: -99999px
padding-bottom: 100034px
#left
z-index: -1
@media #{$large-up}
#left, #right, .wrapper-main

View File

@ -62,7 +62,6 @@ footer a:active
text-decoration : underline
.status-circle
background : $pass-color
display : inline-block
height : 11px
width : 11px
@ -72,3 +71,15 @@ footer a:active
-webkit-border-radius : 100px
-moz-border-radius : 100px
vertical-align: middle
.status-circle.none
background: #2fcc66
.status-circle.degraded
background: #f1c40f
.status-circle.minor
background: #e67e22
.status-circle.major
background: #e74c3c

View File

@ -0,0 +1,8 @@
{{#if statusPageStatusUrl}}
<h3>Travis CI Status</h3>
<ul>
<li><div {{bind-attr class=":status-circle status"}}>Status:</div>
<a href="http://www.traviscistatus.com/">Travis CI Status</a>
</li>
</ul>
{{/if}}

View File

@ -31,11 +31,6 @@
</div>
{{/if}}
<div class="small-6 medium-2 large-2 columns">
<h3>Travis CI Status</h3>
<ul>
<li><div class="status-circle">Status:</div>
<a href="http://www.traviscistatus.com/">Travis CI Status</a>
</li>
</ul>
{{travis-status}}
</div>
</div>

View File

@ -15,5 +15,8 @@
<aside id="left" {{bind-attr class="auth.signedIn::hidden"}}>
{{outlet "left"}}
</aside>
</div>
<footer>
{{render "footer"}}
</footer>

View File

@ -5,3 +5,7 @@
{{render "flash"}}
{{yield}}
<footer>
{{render "footer"}}
</footer>

View File

@ -29,7 +29,8 @@ module.exports = function(environment) {
pro: false,
enterprise: false,
endpoints: {},
intervals: { updateTimes: 1000 }
intervals: { updateTimes: 1000 },
statusPageStatusUrl: 'https://pnpcptp8xh9k.statuspage.io/api/v2/status.json'
};
if (typeof process !== 'undefined') {

View File

@ -0,0 +1,19 @@
`import { test, moduleForComponent } from 'ember-qunit'`
server = null
moduleForComponent 'travis-status', 'TravisStatusComponent', {}
test 'adds incident class to .status-circle', ->
expect 3
# creates the component instance
component = @subject()
component.getStatus = ->
new Ember.RSVP.Promise (resolve, reject) ->
resolve({ status: { indicator: 'major' } })
ok !component.get('status'), 'status is initially not set'
@append()
equal component.get('status'), 'major', 'status is updated from the API'
ok component.$('.status-circle').hasClass('major'), 'status class is set on .status-circle'