Convert switches in profile to components

This commit is contained in:
Piotr Sarnacki 2014-01-21 17:57:35 +01:00
parent d7bef2b94e
commit 8e5111da88
6 changed files with 49 additions and 42 deletions

View File

@ -0,0 +1,9 @@
Travis.TravisSwitchComponent = Ember.Component.extend
tagName: 'a'
classNames: ['travis-switch']
classNameBindings: ['active']
activeBinding: 'target.active'
click: ->
@sendAction('action', @get('target'))

View File

@ -0,0 +1,5 @@
{{#if active}}
ON
{{else}}
OFF
{{/if}}

View File

@ -24,13 +24,7 @@
<div class="controls">
<a {{bind-attr href="hook.urlGithubAdmin"}} class="github-admin tool-tip" title="Github service hooks admin page"></a>
<a {{action "toggle" hook}} class="switch">
{{#if hook.active}}
ON
{{else}}
OFF
{{/if}}
</a>
{{travis-switch action="toggle" target=hook}}
</div>
</li>
{{else}}

View File

@ -167,6 +167,7 @@ require 'slider'
require 'tailing'
require 'templates'
require 'views'
require 'components'
require 'config/locales'

View File

@ -0,0 +1,33 @@
.travis-switch
position: relative
display: block
width: 60px
height: 18px
margin: 0 10px 0 15px
padding: 0 10px 0 0
border: 1px solid #bdbdbd
line-height: 21px
font-size: 11px
color: #999
cursor: pointer
text-align: right
&:before
content: ""
position: absolute
top: -1px
left: -1px
width: 28px
height: 18px
background: #e9e9e7
border: 1px solid #bdbdbd
.travis-switch.active
width: 56px
padding: 0 0 0 14px
background: #40454f
border: 1px solid #bdbdbd
color: #fff
text-align: left
&:before
left: auto
right: -1px

View File

@ -66,41 +66,6 @@
padding-right: 0
background: inline-image('ui/github-admin.png') no-repeat 3px 4px
.switch
position: relative
display: block
width: 60px
height: 18px
margin: 0 10px 0 15px
padding: 0 10px 0 0
border: 1px solid #bdbdbd
line-height: 21px
font-size: 11px
color: #999
cursor: pointer
text-align: right
&:before
content: ""
position: absolute
top: -1px
left: -1px
width: 28px
height: 18px
background: #e9e9e7
border: 1px solid #bdbdbd
&.active .switch
width: 56px
padding: 0 0 0 14px
background: #40454f
border: 1px solid #bdbdbd
color: #fff
text-align: left
&:before
left: auto
right: -1px
&:hover
> a
color: $color-link-highlight