addon/components/ui-checkbox-group.js

  1. import UiCheckboxGroupBase from '../mixins/ui-checkbox-group-base';
  2. import layout from '../templates/components/ui-checkbox-group';
  3. import Component from '@ember/component';
  4. import { isArray } from '@ember/array'
  5.  
  6. /**
  7. ui-checkbox-group component see {{#crossLink "mixins.UiCheckboxGroupBase"}}{{/crossLink}}
  8.  
  9. @module components
  10. @namespace components
  11. @class UiCheckboxGroup
  12. @constructor
  13. */
  14. export default Component.extend(UiCheckboxGroupBase, {
  15. layout: layout,
  16. /**
  17. value is checked or not
  18. @method isOptionChecked
  19. @return {Boolean}
  20. */
  21. isOptionChecked(optionValue){
  22. if(isArray(this.value)){
  23. return this.value.includes(optionValue);
  24. }
  25. return false;
  26. },
  27. actions: {
  28. childChange(checked, value){
  29. if(checked && !this.value.includes(value)){
  30. this.value.pushObject(value);
  31. }
  32. if(!checked && this.value.includes(value)){
  33. this.value.removeObject(value);
  34. }
  35. }
  36. }
  37. });