add compontents for settings

This commit is contained in:
Lisa Passing 2015-07-01 17:09:05 +02:00
parent c4bc5a5f8b
commit 1072577ce0
9 changed files with 148 additions and 0 deletions

View File

@ -0,0 +1,55 @@
`import Ember from 'ember'`
EnvVarComponent = Ember.Component.extend
name: DS.attr()
value: DS.attr()
public: DS.attr('boolean')
repo: DS.belongsTo('repo', async: true)
isEditing: false
isDeleting: false
validates:
name: ['presence']
actionType: 'Save'
showValueField: Ember.computed.alias('public')
value: ( (key, value) ->
if arguments.length == 2
@get('model').set('value', value)
value
else if @get('public')
@get('model.value')
else
'••••••••••••••••'
).property('model.value', 'public')
actions:
delete: ->
return if @get('isDeleting')
@set('isDeleting', true)
@get('model').destroyRecord()
edit: ->
@set('isEditing', true)
cancel: ->
@set('isEditing', false)
@get('model').revert()
save: ->
return if @get('isSaving')
if @isValid()
env_var = @get('model')
# TODO: handle errors
env_var.save().then =>
@set('isEditing', false)
`export default EnvVarComponent`

View File

@ -0,0 +1,26 @@
`import Ember from 'ember'`
SettingsSwitchComponent = Ember.Component.extend
tagName: 'a'
classNames: ['settings-switch']
classNameBindings: ['_active:active']
# TODO: how to handle overriding properties to
# avoid naming it _action?
_active: (->
@get('target.active') || @get('active')
).property('target.active', 'active')
click: ->
target = @get('target')
if @get('toggleAutomatically') != 'false'
if target
@set('target.active', !@get('target.active'))
else
@set('active', !@get('active'))
# allow for bindings to propagate
Ember.run.next this, ->
@sendAction('action', target)
`export default SettingsSwitchComponent`

View File

@ -0,0 +1,5 @@
`import Ember from 'ember'`
SshKeyComponent = Ember.Component.extend()
`export default SshKeyComponent`

View File

@ -0,0 +1 @@
<p>this is an env-var</p>

View File

@ -0,0 +1,9 @@
<div>
<span class="on">
ON
</span>
<span class="off">
OFF
</span>
</div>
<span class="label">Some label text</span>

View File

@ -0,0 +1 @@
<p>This is an ssh key</p>

View File

@ -0,0 +1,17 @@
`import { test, moduleForComponent } from 'ember-qunit'`
moduleForComponent 'env-var', {
# specify the other units that are required for this test
# needs: ['component:foo', 'helper:bar']
}
test 'it renders', (assert) ->
assert.expect 2
# creates the component instance
component = @subject()
assert.equal component._state, 'preRender'
# renders the component to the page
@render()
assert.equal component._state, 'inDOM'

View File

@ -0,0 +1,17 @@
`import { test, moduleForComponent } from 'ember-qunit'`
moduleForComponent 'settings-switch', {
# specify the other units that are required for this test
# needs: ['component:foo', 'helper:bar']
}
test 'it renders', (assert) ->
assert.expect 2
# creates the component instance
component = @subject()
assert.equal component._state, 'preRender'
# renders the component to the page
@render()
assert.equal component._state, 'inDOM'

View File

@ -0,0 +1,17 @@
`import { test, moduleForComponent } from 'ember-qunit'`
moduleForComponent 'ssh-key', {
# specify the other units that are required for this test
# needs: ['component:foo', 'helper:bar']
}
test 'it renders', (assert) ->
assert.expect 2
# creates the component instance
component = @subject()
assert.equal component._state, 'preRender'
# renders the component to the page
@render()
assert.equal component._state, 'inDOM'