check for lastBuildId and only display not-active if it is false

This commit is contained in:
Lisa P 2015-08-14 16:58:06 +02:00
parent 110c17d2c4
commit 75ce90fc03
6 changed files with 38 additions and 16 deletions

View File

@ -31,6 +31,16 @@ Controller = Ember.ArrayController.extend
false
).property('tab', 'repo.builds', 'repo.pullRequests')
displayBranches: (->
if @get('tab') == 'branches'
if Ember.isEmpty(@get('repo.branches.content.content'))
true
else
false
else
false
).property('tab', 'repo.builds', 'repo.branches')
things: (->
return {
repo: @get('repo'),

View File

@ -1,9 +1,14 @@
.missing-notice
text-align: center
a
p a
color: $grey-dark
text-decoration: underline
a.button
font-size: 14px
.page-title
color: #434343
font-size: 36px

View File

@ -3,7 +3,7 @@
{{#each controller as |build|}}
{{builds-item build=build}}
{{else}}
{{no-builds repo=things isPR=displayPullRequests}}
{{no-builds repo=things isPR=displayPullRequests isBranch=displayBranches}}
{{/each}}
{{#if displayShowMoreButton}}
<p>

View File

@ -62,17 +62,20 @@
</svg>
</figure>
{{#unless isPR}}
<h2 class="page-title">No builds for this repository</h2>
<p class="page-notice">Want to start testing this project on Travis CI?</p>
<a href="http://docs.travis-ci.com/user/getting-started/" class="button button--green">Read the Docs on Getting Started</a>
{{!-- {{#if isLoading}}
{{loading-indicator}}
{{else}}
<a href="#" class="button button--green" {{action "triggerBuild"}}>Trigger the first build</a>
{{/if}} --}}
{{#if isPR}}
<h2 class="page-title">No pull request builds for this repositiory</h2>
{{else}}
<h2 class="page-title">No Pull Request builds for this repositiory</h2>
{{/unless}}
{{#if isBranch}}
<h2 class="page-title">No other branches for this repositiory</h2>
{{else}}
<h2 class="page-title">No builds for this repository</h2>
<p class="page-notice">Want to start testing this project on Travis CI?</p>
<a href="http://docs.travis-ci.com/user/getting-started/" class="button button--green">Read the Docs on Getting Started</a>
{{!-- {{#if isLoading}}
{{loading-indicator}}
{{else}}
<a href="#" class="button button--green" {{action "triggerBuild"}}>Trigger the first build</a>
{{/if}} --}}
{{/if}}
{{/if}}
</div>

View File

@ -63,5 +63,5 @@
<h2 class="page-title">This is not an active repository</h2>
<p class="page-notice">Want to start testing this project on Travis CI?</p>
<a href="http://docs.travis-ci.com/user/getting-started/" class="button button--green">Read the Docs on Getting Started</a>
<p>If this repository is already in active use, <br> make sure its activated on {{#link-to "profile"}}your profile{{/link-to}}.</p>
</div>

View File

@ -26,7 +26,11 @@
{{#if repo.active}}
{{outlet}}
{{else}}
{{not-active}}
{{#if repo.lastBuildId}}
{{outlet}}
{{else}}
{{not-active}}
{{/if}}
{{/if}}
</div>
</div>