Convert switches in profile to components
This commit is contained in:
parent
d7bef2b94e
commit
8e5111da88
9
assets/scripts/app/components.coffee
Normal file
9
assets/scripts/app/components.coffee
Normal 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'))
|
|
@ -0,0 +1,5 @@
|
||||||
|
{{#if active}}
|
||||||
|
ON
|
||||||
|
{{else}}
|
||||||
|
OFF
|
||||||
|
{{/if}}
|
|
@ -24,13 +24,7 @@
|
||||||
|
|
||||||
<div class="controls">
|
<div class="controls">
|
||||||
<a {{bind-attr href="hook.urlGithubAdmin"}} class="github-admin tool-tip" title="Github service hooks admin page"></a>
|
<a {{bind-attr href="hook.urlGithubAdmin"}} class="github-admin tool-tip" title="Github service hooks admin page"></a>
|
||||||
<a {{action "toggle" hook}} class="switch">
|
{{travis-switch action="toggle" target=hook}}
|
||||||
{{#if hook.active}}
|
|
||||||
ON
|
|
||||||
{{else}}
|
|
||||||
OFF
|
|
||||||
{{/if}}
|
|
||||||
</a>
|
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
{{else}}
|
{{else}}
|
||||||
|
|
|
@ -167,6 +167,7 @@ require 'slider'
|
||||||
require 'tailing'
|
require 'tailing'
|
||||||
require 'templates'
|
require 'templates'
|
||||||
require 'views'
|
require 'views'
|
||||||
|
require 'components'
|
||||||
|
|
||||||
require 'config/locales'
|
require 'config/locales'
|
||||||
|
|
||||||
|
|
33
assets/styles/components/travis-switch.sass
Normal file
33
assets/styles/components/travis-switch.sass
Normal 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
|
|
@ -66,41 +66,6 @@
|
||||||
padding-right: 0
|
padding-right: 0
|
||||||
background: inline-image('ui/github-admin.png') no-repeat 3px 4px
|
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
|
&:hover
|
||||||
> a
|
> a
|
||||||
color: $color-link-highlight
|
color: $color-link-highlight
|
||||||
|
|
Loading…
Reference in New Issue
Block a user