0.2.0 • Published 7 years ago

ember-enum v0.2.0

Weekly downloads
13
License
MIT
Repository
github
Last release
7 years ago

Ember Enum

Build Status Ember Observer Score

This addon provides a very simple abstraction to use enum attributes with ember data.

Installation

ember install ember-enum

Usage

You can define an enum attribute as follows:

import Model from 'ember-data/model';
import attr from 'ember-data/attr';

export default Model.extend({
  status: attr('enum', {
    options: [
      'started',
      'stopped'
    ],
    defaultValue: 'started'
  })
});

The value from the json response is expected to be a string. Now you can use the attribute in templates:

{{model.status.value}}

You can also use boolean methods to check if the enum has a certain value:

{{#if model.status.isStarted}}
  Started!
{{/if}}

You can use a select element like this:

<select value={{model.status.value}} onchange={{action (mut model.status.value) value="target.value"}}>
  {{#each model.status.options as |option|}}
    <option value={{option}}>{{option}}</option>
  {{/each}}
</select>

Limitations

This project only works with ember-data 2.5 and higher.

License

This project is released under the MIT License.

0.2.0

7 years ago

0.1.1

7 years ago

0.1.0

7 years ago

0.0.0

7 years ago