Fix remove-log popup

This commit is contained in:
Piotr Sarnacki 2015-03-13 10:30:05 +01:00
parent d9cb754879
commit b763a00bac
9 changed files with 56 additions and 36 deletions

View File

@ -0,0 +1,10 @@
`import Ember from 'ember'`
Component = Ember.Component.extend(
actions:
close: ->
$('.popup').removeClass('display')
return false
)
`export default Component`

View File

@ -0,0 +1,23 @@
`import Ember from 'ember'`
Component = Ember.Component.extend(
actions:
close: ->
$('.popup').removeClass('display')
return false
removeLog: ->
$('.popup').removeClass('display')
job = @get('job')
job.removeLog().then ->
Travis.flash(success: 'Log has been successfully removed.')
, (xhr) ->
if xhr.status == 409
Travis.flash(error: 'Log can\'t be removed')
else if xhr.status == 401
Travis.flash(error: 'You don\'t have sufficient access to remove the log')
else
Travis.flash(error: 'An error occured when removing the log')
)
`export default Component`

View File

@ -1,6 +1,6 @@
<div id="code-climate" class="popup">
<img src="/images/icons/code-climate-logo.svg" id="code-climate-logo"/>
<a href="#" class="close" {{action "popupClose" target=view}}></a>
<a href="#" class="close" {{action "close"}}></a>
<p>
<b>Want test coverage for your tests?</b>
</p>

View File

@ -0,0 +1,10 @@
<div id="remove-log-popup" class="popup">
<a href="#" class="close" {{action "close"}}></a>
<p><strong>This action will remove the log permanently!</strong></p>
<p>Do you want to continue?</p>
<p>
<a class="sync_now button" {{action "removeLog"}}>Yes, please!</a>
<span class="or">or</span>
<a href="#" class="cancel" {{action "close"}}>Cancel</a>
</p>
</div>

View File

@ -18,16 +18,4 @@
</div>
<div id="remove-log-popup" class="popup">
<a href="#" class="close" {{action "popupClose" target=view}}></a>
<p><strong>This action will remove the log permanently!</strong></p>
<p>Do you want to continue?</p>
<p>
<a class="sync_now button" {{action "removeLog" target="view"}}>Yes, please!</a>
<span class="or">or</span>
<a href="#" class="cancel" {{action "popupClose" target=view}}>Cancel</a>
</p>
</div>
{{code-climate-popup}}

View File

@ -1,3 +1,5 @@
{{remove-log-popup job=view.job}}
<section id="log-container" class="log">
{{#if view.job.notStarted}}
<div class="log-notice">Hang tight, the log cannot be shown until the build has started.</div>

View File

@ -1,8 +0,0 @@
<a href="#" class="close" {{action "close" target=view}}></a>
<p><strong>This action will remove the log permanently!</strong></p>
<p>Do you want to continue?</p>
<p>
<a class="sync_now button">Yes, please!</a>
<span class="or">or</span>
<a href="#" class="cancel">Cancel</a>
</p>

View File

@ -121,23 +121,8 @@ View = BasicView.extend
@engine.autoCloseFold = !Travis.tailing.isActive()
event.preventDefault()
removeLog: ->
@popupCloseAll()
if @get('canRemoveLog')
job = @get('_job') || @get('build.jobs.firstObject')
job.removeLog().then ->
Travis.flash(success: 'Log has been successfully removed.')
, (xhr) ->
if xhr.status == 409
Travis.flash(error: 'Log can\'t be removed')
else if xhr.status == 401
Travis.flash(error: 'You don\'t have sufficient access to remove the log')
else
Travis.flash(error: 'An error occured when removing the log')
removeLogPopup: ->
if @get('canRemoveLog')
@set('active', true)
@popup('remove-log-popup')
return false

10
remove-log-popup.coffee Normal file
View File

@ -0,0 +1,10 @@
<div id="remove-log-popup" class="popup">
<a href="#" class="close" {{action "close"}}></a>
<p><strong>This action will remove the log permanently!</strong></p>
<p>Do you want to continue?</p>
<p>
<a class="sync_now button" {{action "removeLog"}}>Yes, please!</a>
<span class="or">or</span>
<a href="#" class="cancel" {{action "close"}}>Cancel</a>
</p>
</div>