Handle validation error messages better

This commit is contained in:
Piotr Sarnacki 2014-08-25 13:15:54 +02:00
parent 0df22b4c3b
commit ecd1b7292c

View File

@ -2,12 +2,16 @@ get = Ember.get
Error = Ember.Object.extend
message: (->
switch @get('code')
switch code = @get('code')
when 'blank' then "can't be blank"
when 'not_a_private_key' then "the key is not a valid private key"
else "unknown error"
when 'key_with_a_passphrase' then 'we can\'t use key with a passphrase'
else @humanize(code)
).property('code')
humanize: (str) ->
str.replace(/_id$/, '').replace(/_/g, ' ').replace(/^\w/g, (s) -> s.toUpperCase())
FieldErrors = Ember.ArrayProxy.extend
add: (error) ->
@get('content').pushObject(error)