use pushState

This commit is contained in:
Sven Fuchs 2012-07-22 15:10:34 +02:00
parent 0e52977417
commit 2015481329
25 changed files with 186 additions and 115 deletions

View File

@ -1,21 +1,21 @@
@Travis.Urls =
repository: (slug) ->
"#!/#{slug}"
"/#{slug}"
builds: (slug) ->
"#!/#{slug}/builds"
"/#{slug}/builds"
pullRequests: (slug) ->
"#!/#{slug}/pull_requests"
"/#{slug}/pull_requests"
branches: (slug) ->
"#!/#{slug}/branches"
"/#{slug}/branches"
build: (slug, id) ->
"#!/#{slug}/builds/#{id}"
"/#{slug}/builds/#{id}"
job: (slug, id) ->
"#!/#{slug}/jobs/#{id}"
"/#{slug}/jobs/#{id}"
githubCommit: (slug, sha) ->
"http://github.com/#{slug}/commit/#{sha}"

View File

@ -6,7 +6,7 @@ require 'travis/model'
link: DS.attr('string')
image: (->
"images/sponsors/#{@get('data.image')}"
"/images/sponsors/#{@get('data.image')}"
).property('data.image')
Travis.Sponsor.reopenClass

View File

@ -1,25 +1,34 @@
Travis.Routes = Em.Object.extend
BASE_URI: 'http://localhost:9292'
ROUTES:
'!/profile': ['profile', 'show']
'!/stats': ['stats', 'show']
'!/:owner/:name/jobs/:id/:line': ['home', 'job']
'!/:owner/:name/jobs/:id': ['home', 'job']
'!/:owner/:name/builds/:id': ['home', 'build']
'!/:owner/:name/builds': ['home', 'builds']
'!/:owner/:name/pull_requests': ['home', 'pullRequests']
'!/:owner/:name/branches': ['home', 'branches']
'!/:owner/:name': ['home', 'current']
'': ['home', 'index']
'profile': ['profile', 'show']
'stats': ['stats', 'show']
':owner/:name/jobs/:id/:line': ['home', 'job']
':owner/:name/jobs/:id': ['home', 'job']
':owner/:name/builds/:id': ['home', 'build']
':owner/:name/builds': ['home', 'builds']
':owner/:name/pull_requests': ['home', 'pullRequests']
':owner/:name/branches': ['home', 'branches']
':owner/:name': ['home', 'current']
'': ['home', 'index']
start: ->
unless @started
@started = true
@route(route, target[0], target[1]) for route, target of @ROUTES
Em.routes.set('usesHistory', true)
Em.routes.set('wantsHistory', true)
Em.routes.set('baseURI', @BASE_URI)
route: (route, layout, action) ->
@started = true
@add(route, target[0], target[1]) for route, target of @ROUTES
add: (route, layout, action) ->
Em.routes.add route, (params) =>
@action(layout, action, params)
route: (event) ->
Em.routes.set('location', event.target.href.replace("#{@BASE_URI}/", ''))
action: (name, action, params) ->
# this needs to be a global reference because Em.routes is global
layout = Travis.app.connectLayout(name)

View File

@ -13,11 +13,25 @@
{{#each build in builds}}
{{#view Travis.BuildsItemView contextBinding="build"}}
<tr {{bindAttr class="view.color"}}>
<td class="number"><a {{bindAttr href="view.urlBuild"}}>{{number}}</a></td>
<td class="commit"><a {{bindAttr href="view.urlGithubCommit"}}>{{formatCommit commit}}</a></td>
<td class="message">{{{formatMessage commit.message short="true"}}}</td>
<td class="duration" {{bindAttr title="started_at"}}>{{formatDuration duration}}</td>
<td class="finished_at timeago" {{bindAttr title="finished_at"}}>{{formatTime finishedAt}}</td>
<td class="number">
<a {{bindAttr href="view.urlBuild"}} {{action route}}>
{{number}}
</a>
</td>
<td class="commit">
<a {{bindAttr href="view.urlGithubCommit"}}>
{{formatCommit commit}}
</a>
</td>
<td class="message">
{{{formatMessage commit.message short="true"}}}
</td>
<td class="duration" {{bindAttr title="started_at"}}>
{{formatDuration duration}}
</td>
<td class="finished_at timeago" {{bindAttr title="finished_at"}}>
{{formatTime finishedAt}}
</td>
</tr>
{{/view}}
{{/each}}

View File

@ -4,7 +4,7 @@
<dl id="summary">
<div class="left">
<dt>{{t builds.name}}</dt>
<dd class="number"><a {{bindAttr href="urlBuild"}}>{{build.number}}</a></dd>
<dd class="number"><a {{bindAttr href="urlBuild"}} {{action route}}>{{build.number}}</a></dd>
<dt class="finished_at_label">{{t builds.finished_at}}</dt>
<dd class="finished_at timeago" {{bindAttr title="finished_at"}}>{{formatTime build.finishedAt}}</dd>
<dt>{{t builds.duration}}</dt>

View File

@ -22,7 +22,7 @@
{{#each job in view.jobs}}
{{#view Travis.JobsItemView contextBinding="job"}}
<tr {{bindAttr class="view.color"}}>
<td class="number"><a {{bindAttr href="view.urlJob"}}>{{number}}</a></td>
<td class="number"><a {{bindAttr href="view.urlJob"}} {{action route}}>{{number}}</a></td>
<td class="duration" {{bindAttr title="started_at"}}>{{formatDuration duration}}</td>
<td class="finished_at timeago" {{bindAttr title="finishedAt"}}>{{formatTime finishedAt}}</td>
{{#each value in configValues}}

View File

@ -4,7 +4,7 @@
<dl id="summary">
<div class="left">
<dt>Job</dt>
<dd class="number"><a {{bindAttr href="view.urlJob"}}>{{job.number}}</a></dd>
<dd class="number"><a {{bindAttr href="view.urlJob"}} {{action route}}>{{job.number}}</a></dd>
<dt class="finished_at_label">{{t jobs.finished_at}}</dt>
<dd class="finished_at timeago" {{bindAttr title="finished_at"}}>{{formatTime job.finishedAt}}</dd>
<dt>{{t jobs.duration}}</dt>

View File

@ -1,13 +1,13 @@
<a href="#">
<a href="#" {{action route}}>
<h1>Travis</h1>
</a>
<ul id="navigation">
<li {{bindAttr class="view.classHome"}}>
<a href="#">Home</a>
<a href="/" {{action route}}>Home</a>
</li>
<li {{bindAttr class="view.classStats"}}>
<a href="#!/stats">Stats</a>
<a href="/stats" {{action route}}>Stats</a>
</li>
<li>
<a href="http://about.travis-ci.org/blog">Blog</a>
@ -17,13 +17,13 @@
</li>
{{#if user}}
<li {{bindAttr class="view.classProfile"}} {{action hideProfile on="mouseLeave"}}>
<a href="#!/profile" class="name" {{action showProfile on="mouseEnter"}}>
<a href="#" class="name" {{action showProfile on="mouseEnter"}}>
<img {{bindAttr src="view.gravatarUrl"}}>
{{user.name}}
</a>
<ul>
<li>
<a href="#!/profile">{{t layouts.top.profile}}</a>
<a href="/profile" {{action route}}>{{t layouts.top.profile}}</a>
</li>
<li>
<a {{action signOut}}>{{t layouts.top.sign_out}}</a>

View File

@ -4,13 +4,13 @@
<ul class="tabs">
<li id="tab_recent" {{bindAttr class="view.classRecent"}}>
<h5><a href="#">{{t layouts.application.recent}}</a></h5>
<h5><a href="/" {{action route}}>{{t layouts.application.recent}}</a></h5>
</li>
<li id="tab_owned" {{bindAttr class="view.classOwned"}}>
<h5><a href="#">{{t layouts.application.my_repositories}}</a></h5>
<h5><a href="/" {{action route}}>{{t layouts.application.my_repositories}}</a></h5>
</li>
<li id="tab_search" {{bindAttr class="view.classSearch"}}>
<h5><a href="#">{{t layouts.application.search}}</a></h5>
<h5><a href="/" {{action route}}>{{t layouts.application.search}}</a></h5>
</li>
</ul>
@ -19,8 +19,8 @@
{{#each repository in controller.arrangedContent}}
{{#view Travis.RepositoriesItemView contextBinding="repository"}}
<li {{bindAttr class="view.classes"}}>
<a {{bindAttr href="view.urlRepository"}} class="current">{{slug}}</a>
<a {{bindAttr href="view.urlLastBuild"}} class="last_build">#{{lastBuildNumber}}</a>
<a {{bindAttr href="view.urlRepository"}} {{action route}} class="current">{{slug}}</a>
<a {{bindAttr href="view.urlLastBuild"}} {{action route}} class="last_build">#{{lastBuildNumber}}</a>
<p class="summary">
<span class="duration_label">{{t repositories.duration}}:</span>

View File

@ -0,0 +1,37 @@
<div id="repository" {{bindAttr class="view.class"}}>
{{#if view.repository.isLoaded}}
{{#with view.repository}}
<h3>
<a {{bindAttr href="view.urlGithub"}} {{action route}}>{{slug}}</a>
</h3>
<p class="description">{{description}}</p>
<ul class="github-stats">
<li class="language">
{{lastBuildLanguage}}
</li>
<li>
<a class="watchers" title="Watchers" {{bindAttr href="view.urlGithubWatchers"}} {{action route}}>
{{stats.watchers}}
</a>
</li>
<li>
<a class="forks" title="Forks" {{bindAttr href="view.urlGithubNetwork"}} {{action route}}>
{{stats.forks}}
</a>
</li>
</ul>
{{view Travis.TabsView}}
{{/with}}
{{else}}
<span>Loading</span>
{{/if}}
<div class="tab">
{{outlet pane}}
</div>
</div>

View File

@ -1,21 +1,45 @@
<ul class="tabs">
<li id="tab_current" {{bindAttr class="view.classCurrent"}}>
<h5><a {{bindAttr href="view.urlRepository"}}>{{t repositories.tabs.current}}</a></h5>
<h5>
<a {{bindAttr href="view.urlRepository"}} {{action route}}>
{{t repositories.tabs.current}}
</a>
</h5>
</li>
<li id="tab_builds" {{bindAttr class="view.classBuilds"}}>
<h5><a {{bindAttr href="view.urlBuilds"}}>{{t repositories.tabs.build_history}}</a></h5>
<h5>
<a {{bindAttr href="view.urlBuilds"}} {{action route}}>
{{t repositories.tabs.build_history}}
</a>
</h5>
</li>
<li id="tab_pull_requests" {{bindAttr class="view.classPullRequests"}}>
<h5><a {{bindAttr href="view.urlPullRequests"}}>{{t repositories.tabs.pull_requests}}</a></h5>
<h5>
<a {{bindAttr href="view.urlPullRequests"}} {{action route}}>
{{t repositories.tabs.pull_requests}}
</a>
</h5>
</li>
<li id="tab_branches" {{bindAttr class="view.classBranches"}}>
<h5><a {{bindAttr href="view.urlBranches"}}>{{t repositories.tabs.branches}}</a></h5>
<h5>
<a {{bindAttr href="view.urlBranches"}} {{action route}}>
{{t repositories.tabs.branches}}
</a>
</h5>
</li>
<li id="tab_build" {{bindAttr class="view.classBuild"}}>
<h5><a {{bindAttr href="view.urlBuild"}}>{{t repositories.tabs.build}} #{{view.build.number}}</a></h5>
<h5>
<a {{bindAttr href="view.urlBuild"}} {{action route}}>
{{t repositories.tabs.build}} #{{view.build.number}}
</a>
</h5>
</li>
<li id="tab_job" {{bindAttr class="view.classJob"}}>
<h5><a {{bindAttr href="view.urlJob"}}>{{t repositories.tabs.job}} #{{view.job.number}}</a></h5>
<h5>
<a {{bindAttr href="view.urlJob"}} {{action route}}>
{{t repositories.tabs.job}} #{{view.job.number}}
</a>
</h5>
</li>
</ul>

View File

@ -1,26 +0,0 @@
<div id="repository" {{bindAttr class="view.class"}}>
{{#if view.repository.isLoaded}}
{{#with view.repository}}
<h3>
<a {{bindAttr href="view.urlGithub"}}>{{slug}}</a>
</h3>
<p class="description">{{description}}</p>
<ul class="github-stats">
<li class="language">{{lastBuildLanguage}}</li>
<li><a class="watchers" title="Watches" {{bindAttr href="view.urlGithubWatchers"}}>{{stats.watchers}}</a></li>
<li><a class="forks" title="Forks" {{bindAttr href="view.urlGithubNetwork"}}>{{stats.forks}}</a></li>
</ul>
{{view Travis.TabsView}}
{{/with}}
{{else}}
<span>Loading</span>
{{/if}}
<div class="tab">
{{outlet pane}}
</div>
</div>

View File

@ -10,7 +10,7 @@
{{#each worker in group}}
<li class="worker">
<div class="icon"></div>
<a {{bindAttr href="worker.urlJob"}} {{bindAttr title="worker.lastSeenAt"}}>{{worker.display}}</a>
<a {{bindAttr href="worker.urlJob"}} {{bindAttr title="worker.lastSeenAt"}} {{action route}}>{{worker.display}}</a>
</li>
{{/each}}
</ul>

View File

@ -1,29 +1,21 @@
require 'ext/ember/namespace'
@Travis.reopen
HomeLayout: Em.View.extend(templateName: 'layouts/home')
ProfileLayout: Em.View.extend(templateName: 'layouts/simple')
StatsLayout: Em.View.extend(templateName: 'layouts/simple')
View: Em.View.extend
route: (event) ->
Travis.app.routes.route(event)
StatsView: Em.View.extend(templateName: 'stats/show')
SidebarView: Em.View.extend
templateName: 'layouts/sidebar'
toggleSidebar: ->
$('body').toggleClass('maximized')
element = $('<span></span>') # TODO gotta force redraw here :/
$('#repository').append(element)
Em.run.later (-> element.remove()), 10
WorkersView: Em.View.extend
toggle: (event) ->
$(event.target).closest('li').toggleClass('open')
@Travis.reopen
HomeLayout: Travis.View.extend(templateName: 'layouts/home')
ProfileLayout: Travis.View.extend(templateName: 'layouts/simple')
StatsLayout: Travis.View.extend(templateName: 'layouts/simple')
StatsView: Travis.View.extend(templateName: 'stats/show')
require 'views/build'
require 'views/job'
require 'views/repo'
require 'views/profile'
require 'views/sidebar'
require 'views/tabs'
require 'views/top'

View File

@ -1,9 +1,9 @@
@Travis.reopen
BuildsView: Em.View.extend
BuildsView: Travis.View.extend
templateName: 'builds/list'
buildsBinding: 'controller'
BuildsItemView: Em.View.extend
BuildsItemView: Travis.View.extend
repositoryBinding: 'controller.repository'
buildBinding: 'context'
commitBinding: 'build.commit'
@ -20,7 +20,7 @@
Travis.Urls.githubCommit(@get('repository.slug'), @get('commit.sha'))
).property('repository.slug', 'commit.sha')
BuildView: Em.View.extend
BuildView: Travis.View.extend
templateName: 'builds/show'
repositoryBinding: 'controller.repository'

View File

@ -1,12 +1,12 @@
@Travis.reopen
JobsView: Em.View.extend
JobsView: Travis.View.extend
templateName: 'jobs/list'
buildBinding: 'controller.build'
toggleHelp: ->
$.facebox(div: '#allow_failure_help')
JobsItemView: Em.View.extend
JobsItemView: Travis.View.extend
repositoryBinding: 'context.repository'
jobBinding: 'context'
@ -18,7 +18,7 @@
Travis.Urls.job(@get('repository.slug'), @get('job.id'))
).property('repository.slug', 'job.id')
JobView: Em.View.extend
JobView: Travis.View.extend
templateName: 'jobs/show'
repositoryBinding: 'controller.repository'
@ -45,7 +45,7 @@
Travis.Urls.email(@get('commit.committerEmail'))
).property('commit.committerEmail')
LogView: Em.View.extend
LogView: Travis.View.extend
templateName: 'jobs/log'
click: (event) ->

View File

@ -1,5 +1,5 @@
@Travis.reopen
UserView: Em.View.extend
UserView: Travis.View.extend
templateName: 'profile/show'
userBinding: 'controller.user'
@ -8,7 +8,7 @@
"http://www.gravatar.com/avatar/#{@get('user.gravatar')}?s=48&d=mm"
).property('user.gravatar')
HooksView: Em.View.extend
HooksView: Travis.View.extend
templateName: 'profile/hooks'
urlGithubAdmin: (->

View File

@ -1,6 +1,6 @@
@Travis.reopen
RepositoriesView: Em.View.extend
templateName: 'repositories/list'
RepositoriesView: Travis.View.extend
templateName: 'repos/list'
tabBinding: 'controller.tab'
classRecent: (->
@ -18,7 +18,7 @@
'active' if @get('tab') == 'search'
).property('tab')
RepositoriesItemView: Em.View.extend
RepositoriesItemView: Travis.View.extend
repositoryBinding: 'context'
classes: (->
@ -41,8 +41,8 @@
Travis.Urls.build(@get('repository.slug'), @get('repository.lastBuildId'))
).property('repository.slug', 'repository.lastBuildId')
RepositoryView: Em.View.extend
templateName: 'repositories/show'
RepositoryView: Travis.View.extend
templateName: 'repos/show'
repositoryBinding: 'controller.repository'

View File

@ -0,0 +1,15 @@
@Travis.reopen
SidebarView: Travis.View.extend
templateName: 'layouts/sidebar'
toggleSidebar: ->
$('body').toggleClass('maximized')
element = $('<span></span>') # TODO gotta force redraw here :/
$('#repository').append(element)
Em.run.later (-> element.remove()), 10
WorkersView: Travis.View.extend
toggle: (event) ->
$(event.target).closest('li').toggleClass('open')

View File

@ -1,6 +1,6 @@
@Travis.reopen
TabsView: Em.View.extend
templateName: 'repositories/tabs'
TabsView: Travis.View.extend
templateName: 'repos/tabs'
repositoryBinding: 'controller.repository'
buildBinding: 'controller.build'

View File

@ -1,5 +1,5 @@
@Travis.reopen
TopView: Em.View.extend
TopView: Travis.View.extend
templateName: 'layouts/top'
tabBinding: 'controller.tab'

View File

@ -12,6 +12,12 @@ class App < Sinatra::Base
set :public_folder, lambda { "#{root}/public" }
set :static_cache_control, :public
provides :html
get '*' do
File.new('public/index.html').readlines
end
not_found do
'Not found.'
end

View File

@ -3,9 +3,9 @@
<head>
<meta charset="UTF-8">
<title>Travis CI - Distributed Continuous Integration Platform for the Open Source Community</title>
<link rel="stylesheet" href="stylesheets/application.css">
<script src="javascripts/vendor.js"></script>
<script src="javascripts/application.js"></script>
<link rel="stylesheet" href="/stylesheets/application.css">
<script src="/javascripts/vendor.js"></script>
<script src="/javascripts/application.js"></script>
<script>
// minispade.require('mocks')
minispade.require('app')

File diff suppressed because one or more lines are too long

View File

@ -3,13 +3,13 @@
<head>
<meta charset="UTF-8">
<title>Travis CI - Distributed Continuous Integration Platform for the Open Source Community</title>
<link rel="stylesheet" href="stylesheets/application.css">
<link rel="stylesheet" href="stylesheets/jasmine.css">
<link rel="stylesheet" href="/stylesheets/application.css">
<link rel="stylesheet" href="/stylesheets/jasmine.css">
<script src="javascripts/vendor.js"></script>
<script src="javascripts/application.js"></script>
<script src="javascripts/specs/vendor.js"></script>
<script src="javascripts/specs/specs.js"></script>
<script src="/javascripts/vendor.js"></script>
<script src="/javascripts/application.js"></script>
<script src="/javascripts/specs/vendor.js"></script>
<script src="/javascripts/specs/specs.js"></script>
</head>
<body>
<script>