Page for displaying caches

This commit is contained in:
Piotr Sarnacki 2014-08-05 17:51:43 +02:00
parent a5dae4acf3
commit a58688b451
17 changed files with 231 additions and 5 deletions

View File

@ -0,0 +1,26 @@
<svg id="loading" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="32" height="32" fill="white">
<path opacity=".1" d="M14 0 H18 V8 H14 z" transform="rotate(0 16 16)">
<animate attributeName="opacity" from="1" to=".1" dur="1s" repeatCount="indefinite" begin="0"/>
</path>
<path opacity=".1" d="M14 0 H18 V8 H14 z" transform="rotate(45 16 16)">
<animate attributeName="opacity" from="1" to=".1" dur="1s" repeatCount="indefinite" begin="0.125s"/>
</path>
<path opacity=".1" d="M14 0 H18 V8 H14 z" transform="rotate(90 16 16)">
<animate attributeName="opacity" from="1" to=".1" dur="1s" repeatCount="indefinite" begin="0.25s"/>
</path>
<path opacity=".1" d="M14 0 H18 V8 H14 z" transform="rotate(135 16 16)">
<animate attributeName="opacity" from="1" to=".1" dur="1s" repeatCount="indefinite" begin="0.375s"/>
</path>
<path opacity=".1" d="M14 0 H18 V8 H14 z" transform="rotate(180 16 16)">
<animate attributeName="opacity" from="1" to=".1" dur="1s" repeatCount="indefinite" begin="0.5s"/>
</path>
<path opacity=".1" d="M14 0 H18 V8 H14 z" transform="rotate(225 16 16)">
<animate attributeName="opacity" from="1" to=".1" dur="1s" repeatCount="indefinite" begin="0.675s"/>
</path>
<path opacity=".1" d="M14 0 H18 V8 H14 z" transform="rotate(270 16 16)">
<animate attributeName="opacity" from="1" to=".1" dur="1s" repeatCount="indefinite" begin="0.75s"/>
</path>
<path opacity=".1" d="M14 0 H18 V8 H14 z" transform="rotate(315 16 16)">
<animate attributeName="opacity" from="1" to=".1" dur="1s" repeatCount="indefinite" begin="0.875s"/>
</path>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -86,3 +86,4 @@ require 'controllers/stats'
require 'controllers/current_user'
require 'controllers/request'
require 'controllers/requests'
require 'controllers/caches'

View File

@ -0,0 +1,61 @@
Travis.CachesController = Ember.ArrayController.extend
isDeleting: false
needs: ['repo']
repo: Ember.computed.alias('controllers.repo.repo')
actions:
deleteRepoCache: ->
return if @get('isDeleting')
if confirm('Are you sure?')
@set('isDeleting', true)
deletingDone = => @set('isDeleting', false)
repo = @get('repo')
Travis.ajax.ajax("/repos/#{repo.get('id')}/caches", "DELETE").then(deletingDone, deletingDone).then =>
@clear()
Travis.CachesByBranchController = Ember.ObjectController.extend
isDeleting: false
needs: ['repo', 'caches']
repo: Ember.computed.alias('controllers.repo.repo')
actions:
delete: ->
return if @get('isDeleting')
if confirm('Are you sure?')
@set('isDeleting', true)
data = { branch: @get('branch') }
deletingDone = => @set('isDeleting', false)
repo = @get('repo')
Travis.ajax.ajax("/repos/#{repo.get('id')}/caches", "DELETE", data: data).then(deletingDone, deletingDone).then =>
model = @get('model')
@get('controllers.caches').removeObject(model)
Travis.CacheItemController = Ember.ObjectController.extend
isDeleting: false
needs: ['repo', 'caches']
repo: Ember.computed.alias('controllers.repo.repo')
actions:
delete: ->
return if @get('isDeleting')
if confirm('Are you sure?')
@set('isDeleting', true)
data = { branch: @get('branch'), slug: @get('slug') }
deletingDone = => @set('isDeleting', false)
repo = @get('repo')
Travis.ajax.ajax("/repos/#{repo.get('id')}/caches", "DELETE", data: data).then(deletingDone, deletingDone).then =>
model = @get('model')
@get('parent.caches').removeObject(model)
if @get('parent.caches.length') == 0
@get('controllers.caches').removeObject(@get('parent'))

View File

@ -53,6 +53,9 @@ Travis.RepoController = Travis.Controller.extend
viewRequests: ->
@connectTab('requests')
viewCaches: ->
@connectTab('caches')
viewRequest: ->
@connectTab('request')

View File

@ -3,6 +3,11 @@ require 'ext/ember/bound_helper'
safe = (string) ->
new Handlebars.SafeString(string)
Ember.Handlebars.helper('mb', (size) ->
if size
(size / 1024 / 1024).toFixed(2)
, 'size')
Travis.Tab = Ember.Object.extend
show: ->
@get('tabs').forEach( (t) -> t.hide() )

View File

@ -59,6 +59,7 @@ Travis.Router.map ->
@resource 'pullRequests', path: '/pull_requests'
@resource 'branches', path: '/branches'
@resource 'requests', path: '/requests'
@resource 'caches', path: '/caches' if Travis.config.caches_enabled
@resource 'request', path: '/requests/:request_id'
# this can't be nested in repo, because we want a set of different
@ -85,6 +86,31 @@ Travis.RequestsRoute = Travis.Route.extend
model: ->
Travis.Request.fetch repository_id: @modelFor('repo').get('id')
Travis.CachesRoute = Travis.Route.extend
setupController: ->
@_super.apply this, arguments
@controllerFor('repo').activate('caches')
model: ->
repo = @modelFor('repo')
Travis.ajax.get("/repos/#{repo.get('id')}/caches").then( (data) ->
groups = {}
data["caches"].forEach (cacheData) ->
branch = cacheData["branch"]
group = groups[branch]
unless group
group = groups[branch] = Ember.Object.create(branch: branch, caches: [])
cache = Ember.Object.create(cacheData)
cache.set('parent', group)
group.get('caches').pushObject(cache)
result = []
for branch, caches of groups
result.push caches
result
)
Travis.RequestRoute = Travis.Route.extend
setupController: ->
@_super.apply this, arguments

View File

@ -0,0 +1,33 @@
{{#if length}}
<a href="#" {{action "deleteRepoCache"}} {{bind-attr class="isDeleting:deleting :delete-repo-caches"}}>
Delete repo cache
</a>
<ul id="caches">
{{#each controller itemController="cachesByBranch"}}
<li class="caches-group">
<span class="branch">Branch: {{branch}}</span>
<a href="#" {{action "delete"}} {{bind-attr class="isDeleting:deleting :delete-by-branch :delete"}}>
(delete)
</a>
<ul class="caches-list">
{{#each cache in caches itemController="cacheItem"}}
<li class="cache-info">
<span class="label">Slug:</span> {{cache.slug}},
<span class="label">Last modified:</span> {{cache.last_modified}},
<span class="label">Size:</span> {{mb cache.size}}MB
<a href="#" {{action "delete"}} {{bind-attr class="isDeleting:deleting :delete-by-slug :delete"}}>
(delete)
</a>
</li>
{{/each}}
</ul>
</li>
{{/each}}
</ul>
{{else}}
There are no caches for this repository.
{{/if}}

View File

@ -0,0 +1 @@
<div class="loading"><span>Loading</span></div>

View File

@ -66,6 +66,16 @@
{{/if}}
</h5>
</li>
<li id="tab_caches" {{bind-attr class="view.classCaches"}}>
<h5>
{{#if repo.slug}}
{{#link-to "caches" repo}}
Caches
{{/link-to}}
{{/if}}
</h5>
</li>
<li id="tab_request" {{bind-attr class="view.classRequest"}}>
<h5>
{{#if request.id}}

View File

@ -19,6 +19,11 @@
<li>
{{#link-to "requests" view.repo}}Requests{{/link-to}}
</li>
{{#if Travis.config.caches_enabled}}
<li>
{{#link-to "caches" view.repo}}Caches{{/link-to}}
</li>
{{/if}}
</ul>
<a href="#" id="status-image-popup" name="status-images" class="open-popup" {{action "statusImages" target="view"}}>

View File

@ -75,6 +75,10 @@ Travis.reopen
'active display-inline' if @get('tab') == 'requests'
).property('tab')
classCaches: (->
'active display-inline' if @get('tab') == 'caches'
).property('tab')
classRequest: (->
'active display-inline' if @get('tab') == 'request'
).property('tab')

View File

@ -2,6 +2,7 @@ jQuery.support.cors = true
Travis.ajax = Em.Object.create
publicEndpoints: [/\/repos\/?.*/, /\/builds\/?.*/, /\/jobs\/?.*/]
privateEndpoints: [/\/repos\/\d+\/caches/]
DEFAULT_OPTIONS:
accepts:
@ -17,10 +18,13 @@ Travis.ajax = Em.Object.create
return true if Travis.ajax.pro
return true if method != 'GET'
result = @publicEndpoints.find (pattern) ->
publicEndpoint = @publicEndpoints.find (pattern) ->
url.match(pattern)
!result
privateEndpoint = @privateEndpoints.find (pattern) ->
url.match(pattern)
!publicEndpoint || privateEndpoint
ajax: (url, method, options) ->
method = method || "GET"

View File

@ -82,6 +82,7 @@ $.extend Travis,
ga_code: $('meta[name="travis.ga_code"]').attr('value')
code_climate: $('meta[name="travis.code_climate"]').attr('value')
code_climate_url: $('meta[name="travis.code_climate_url"]').attr('value')
caches_enabled: $('meta[name="travis.caches_enabled"]').attr('value') == 'true'
show_repos_hint: 'private'
avatar_default_url: 'https://travis-ci.org/images/mailer/mascot-avatar-40px.png'

43
assets/styles/caches.sass Normal file
View File

@ -0,0 +1,43 @@
.delete-repo-caches.deleting
background-color: #bbb
background-image: inline-image('ui/round-spinner.svg')
background-repeat: no-repeat
background-position: center
background-size: 20px
text-indent: -9999px
.delete-repo-caches
display: inline-block
margin: 6px 0 15px 0
color: #ffffff
background-color: #932828
border-radius: 4px
padding: 4px 15px 4px 15px
font-size: 13px
cursor: pointer
#caches
.delete
color: #EA0000
.delete.deleting:after
content: ""
background-image: inline-image('ui/spinner.svg')
background-repeat: no-repeat
background-position: center
background-size: 13px
width: 13px
height: 10px
display: inline-block
.caches-group
padding-bottom: 5px
.branch
font-size: 14px
font-weight: bold
.caches-group .label
font-weight: bold
.caches-list
padding-top: 5px
padding-left: 14px

View File

@ -52,7 +52,7 @@
h5
line-height: 25px
#tab_new.display
display: inline-block
@ -70,6 +70,7 @@
#tab_build,
#tab_job,
#tab_request,
#tab_caches,
#tab_requests
display: none
@ -97,6 +98,6 @@
h5
min-width: 0px
a
padding: 0px 2px
padding: 0px 2px
#tab_branches
display: none

View File

@ -31,5 +31,6 @@ run Travis::Web::App.build(
pusher_key: ENV['PUSHER_KEY'],
ga_code: ENV['GA_CODE'],
root: File.expand_path('../public', __FILE__),
server_start: Time.now
server_start: Time.now,
caches_enabled: ENV['CACHES_ENABLED']
)

View File

@ -6,6 +6,7 @@
<meta rel="travis.api_endpoint" href="https://api.travis-ci.org">
<meta name="travis.pusher_key" value="5df8ac576dcccf4fd076">
<meta name="travis.ga_code" value="UA-24868285-1">
<meta name="travis.caches_enabled" value="false">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Travis CI - Free Hosted Continuous Integration Platform for the Open Source Community</title>
<link rel="dns-prefetch" href="//api.travis-ci.org">