[pro-merge] Update views and templates with travis-pro specific code

This commit is contained in:
Piotr Sarnacki 2014-12-29 17:53:39 +01:00
parent e9cbd98713
commit 88ce89d34c
14 changed files with 267 additions and 23 deletions

View File

@ -0,0 +1,17 @@
<h4>Running Jobs ({{controller.length}})</h4>
<ul class="jobs">
{{#if controller.length}}
{{#each job in controller}}
<li {{bind-attr title="job.slug"}}">
{{#if job.repo.slug}}
{{#link-to "job" job.repo job}}
{{job.repo.slug}} #{{job.number}}
{{/link-to}}
{{/if}}
</li>
{{/each}}
{{else}}
There are no jobs
{{/if}}
</ul>

View File

@ -10,3 +10,9 @@
{{render "flash"}}
{{yield}}
</div>
{{#if Travis.config.pro}}
<div id="right">
{{outlet right}}
</div>
{{/if}}

View File

@ -0,0 +1,19 @@
<div id="slider" {{action toggle target="Travis.slider"}}>
<div class='icon'></div>&nbsp;
</div>
{{#if tip}}
<div class="tip box">
<h4>Tip:</h4>
<p>{{{tip}}}</p>
</div>
{{/if}}
{{#if Travis.config.pages_endpoint}}
{{view templateName="layouts/support"}}
{{/if}}
{{render "runningJobs"}}
{{view Travis.QueueView}}

View File

@ -0,0 +1,12 @@
<div id="about" class="box">
<h4>How can we help?</h4>
<ul>
{{#if Travis.config.billing_endpoint}}
<li><a href="#" {{action displayCharm target="Travis"}}>Support Ticket</a></li>
{{/if}}
<li><a href="http://chat.travis-ci.com">Live Chat</a></li>
<li><a href="mailto:support@travis-ci.com">E-Mail us</a></li>
<li><a href="http://docs.travis-ci.com/user/travis-pro">Documentation</a></li>
</ul>
</div>

View File

@ -14,24 +14,56 @@
<li>
<a href="http://traviscistatus.com">Status</a>
</li>
<li class="menu community">
<p class="handle">
<a href="#">Help</a>
</p>
<ul>
<li><a href="http://docs.travis-ci.com">Docs</a></li>
<li><a href="http://stackoverflow.com/questions/ask?tags=travis-ci">Ask a Question</a></li>
<li><a href="irc://irc.freenode.net/#travis">IRC</a></li>
<li><a href="mailto:support@travis-ci.com">E-Mail us</a></li>
<li><a href="http://docs.travis-ci.com/imprint.html" alt="Imprint">Imprint</a></li>
</ul>
</li>
{{#unless Travis.config.pro}}
<li class="menu community">
<p class="handle">
<a href="#">Help</a>
</p>
<ul>
<li><a href="http://docs.travis-ci.com">Docs</a></li>
<li><a href="http://stackoverflow.com/questions/ask?tags=travis-ci">Ask a Question</a></li>
<li><a href="irc://irc.freenode.net/#travis">IRC</a></li>
<li><a href="mailto:support@travis-ci.com">E-Mail us</a></li>
<li><a href="http://docs.travis-ci.com/imprint.html" alt="Imprint">Imprint</a></li>
</ul>
</li>
{{/unless}}
{{#if Travis.config.pages_endpoint}}
<li>
<a href="http://traviscistatus.com">Status</a>
</li>
<li class="menu legal">
<p class="handle">
<a {{bind-attr href="Travis.config.url_legal"}}>Legal</a>
</p>
<ul>
<li>
<a {{bind-attr href="Travis.config.url_imprint"}}>Imprint</a>
</li>
<li>
<a {{bind-attr href="Travis.config.url_security"}}>Security</a>
</li>
<li>
<a {{bind-attr href="Travis.config.url_terms"}}>Terms</a>
</li>
</ul>
</li>
{{/if}}
<!-- hiding for now
<li>
<a href="https://travisci.workable.com" class="werehiring" target="_blank">We're Hiring!</a>
</li>
<li class="traviscicom">
<a href="http://travis-ci.com">Travis CI for Private Repositories</a>
</li>
hiding for now -->
{{#unless Travis.config.pro}}
<li class="traviscicom">
<a href="http://travis-ci.com">Travis CI for Private Repositories</a>
</li>
{{/unless}}
<li {{bind-attr class="view.classProfile"}}>
<p class="handle">
{{#if auth.signedOut}}

View File

@ -0,0 +1,77 @@
<div id="getting-started">
<h3>Welcome to Travis CI!</h3>
<h2>Hey, it looks like you're new around here and have yet to set up your first<br>repository on Travis CI. We're here to help you get started, it's easy!</h2>
<div class="getting-started-row">
<div class="column">
<img src="/images/getting-started/project-switch.png">
</div>
<div class="column-right">
<span class="steps">Step 1: &nbsp; Enabling your projects</span>
<p>
Start by going to your {{#link-to "profile.index"}}profile{{/link-to}} and enable one of your projects. We've been
synchronizing all repositories you have administrative access to. Pick one and flip the switch next to it.
</p>
</div>
</div>
<div class="getting-started-row">
<div class="column">
<img src="/images/getting-started/first-build.png">
</div>
<div class="column-right">
<span class="steps">Step 2: &nbsp; Adding Travis</span>
<p>
Once you've enabled one of your projects, add a <a
href="http://about.travis-ci.org/docs/user/build-configuration/#.travis.yml-file%3A-what-it-is-and-how-it-is-used"><code>.travis.yml</code></a> to your project, push some code, and we'll start processing your builds. Wait a
whee while and reload the page, and your newly setup and built project will show up on the right.
</p>
</div>
</div>
<div class="getting-started-row">
<div class="column">
<img src="/images/getting-started/build-email.png">
</div>
<div class="column-right">
<span class="steps">Step 3: &nbsp; Wait for your build to finish</span>
<p>
We'll be sending you an email once the build has finished. Then, it's up to you to do the happy dance.
</p>
</div>
</div>
<div class="getting-started-row">
<span class="after-steps steps">Build Configuration</span>
<p>
We use sensible defaults for <a href="http://about.travis-ci.org/docs/">most languages</a>, but you can customize
both the <a href="http://about.travis-ci.org/docs/user/build-configuration/">build process</a> and the <a
href="http://about.travis-ci.org/docs/user/build-configuration/">build
environment</a> to fit your project's needs.
</p>
<span class="steps">Notifications</span>
<p>
You can also configure how you want to be notified of build results. Email is only one channel you can use. We
support <a href="http://about.travis-ci.org/docs/user/notifications/#Campfire-notification">Campfire</a>, <a
href="http://about.travis-ci.org/docs/user/notifications/#HipChat-notification">HipChat</a>, <a
href="http://about.travis-ci.org/docs/user/notifications/#Flowdock-notification">Flowdock</a>, <a
href="http://about.travis-ci.org/docs/user/notifications/#IRC-notification">IRC</a>, and <a
href="http://about.travis-ci.org/docs/user/notifications/#Webhook-notification">webhooks</a>. To avoid
exposing any private credentials, you can shield them from the public using <a
href="http://about.travis-ci.org/docs/user/build-configuration/#Secure-environment-variables">encrypted
configuration settings</a>.
</p>
<span class="steps">Questions</span>
<p>
Should you have any questions or issues, have a look at <a href="http://about.travis-ci.org/docs/" location="_top">our
documentation</a>, <a href="https://github.com/travis-ci/travis-ci/issues/new" location="_top">open an issue</a> or
<a href="mailto:support@travis-ci.com">send us an email</a>.
</p>
</div>
</div>

View File

@ -0,0 +1,17 @@
<div id="empty">
<h2>Welcome to Travis CI!</h2>
<p>It looks like you're new around here. Let's get you started, shall we?</p>
<p>You're only two steps away from using Travis:</p>
<ul>
<li> Hook up {{#link-to "profile.index" class="signed-in"}}one or more of your GitHub repositories{{/link-to}} with Travis.</li>
<li> Push some code!</li>
</ul>
<p>
If you have any questions or issues, hop on our <a href="https://travisci.campfirenow.com/10e50">Campfire support room</a> or
contact <a href="mailto:support@travis-ci.com">support</a> directly.
<p>
</div>

View File

@ -1,8 +1,25 @@
<h3>{{view.name}}</h3>
{{#if Travis.config.billing_endpoint}}
{{#if view.subscribed}}
<a class="button activated" {{bind-attr href="billingUrl"}}>
Subscription active!
</a>
{{else}}
{{#if view.education}}
<a class="button activated" {{bind-attr href="billingUrl"}}>
Educational account!
</a>
{{else}}
<a class="button activate" {{bind-attr href="billingUrl"}}>
Sign up this account!
</a>
{{/if}}
{{/if}}
{{/if}}
{{view Travis.ProfileTabsView}}
<div class="tab">
{{outlet}}
</div>

View File

@ -11,4 +11,11 @@
</h5>
</li>
{{/if}}
{{#if Travis.config.billing_endpoint}}
<li id="tab_billing" class="right">
<h5>
<a {{bind-attr href="billingUrl"}}>Billing</a>
</h5>
</li>
{{/if}}
</ul>

View File

@ -0,0 +1,23 @@
<ul id="queues">
<li class="queue">
<h4>Queue ({{controller.length}})</h4>
<ul>
{{#if controller.length}}
{{#each job in controller}}
{{#view Travis.QueueItemView jobBinding="job"}}
{{#if job.repo.slug}}
{{#link-to "job" job.repo job}}
<span class="slug" {{bind-attr title="job.slug"}}>
{{job.repo.slug}}
</span>
#{{job.number}}
{{/link-to}}
{{/if}}
{{/view}}
{{/each}}
{{else}}
There are no jobs
{{/if}}
</ul>
</li>
</ul>

View File

@ -3,9 +3,11 @@
<h5>{{#link-to "index.my_repositories"}}My Repositories{{/link-to}}</h5>
</li>
<li id="tab_recent" {{bind-attr class="view.classRecent"}}>
<h5>{{#link-to "index.recent"}}Recent{{/link-to}}</h5>
</li>
{{#unless Travis.config.pro}}
<li id="tab_recent" {{bind-attr class="view.classRecent"}}>
<h5>{{#link-to "index.recent"}}Recent{{/link-to}}</h5>
</li>
{{/unless}}
<li id="tab_search" {{bind-attr class="view.classSearch"}}>
<h5>Search</h5>

View File

@ -29,8 +29,16 @@ Travis.IndexView = Travis.View.extend
layoutName: 'layouts/home'
classNames: ['application']
@Travis.NoOwnedReposView = Ember.View.extend
templateName: 'pro/no_owned_repos'
Travis.GettingStartedView = Travis.View.extend
templateName: 'no_owned_repos'
templateName: (->
if Travis.config.pro
'pro/no_owned_repos'
else
'no_owned_repos'
).property()
Travis.InsufficientOauthPermissionsView = Travis.View.extend
layoutName: 'layouts/simple'
@ -61,7 +69,7 @@ Travis.FirstSyncView = Travis.View.extend
Travis.SidebarView = Travis.View.extend
templateName: 'pro/layouts/sidebar'
templateName: 'layouts/sidebar'
didInsertElement: ->
@_super.apply this, arguments
@ -86,7 +94,7 @@ Travis.RunningJobsView = Em.View.extend
elementId: 'running-jobs'
Travis.QueueView = Em.View.extend
templateName: 'pro/queues/show'
templateName: 'queues/show'
init: ->
@_super.apply this, arguments
@set 'controller', @get('controller').container.lookup('controller:queues')

View File

@ -4,6 +4,8 @@ Travis.reopen
layoutName: 'layouts/profile'
classNames: ['application']
accountBinding: 'controller.account'
subscribedBinding: 'account.subscribed'
educationBinding: 'account.education'
name: (->
@get('account.name') || @get('account.login')

View File

@ -26,7 +26,12 @@ Travis.reopen
).property('controller.repo.slug')
ReposEmptyView: Travis.View.extend
template: ''
template: (->
if Travis.config.pro
'pro/repos/show/empty'
else
''
).property()
RepoShowTabsView: Travis.View.extend
templateName: 'repos/show/tabs'