addon/mixins/ui-button-base.js

  1. import Mixin from '@ember/object/mixin';
  2.  
  3. /**
  4. ui-button-base mixinx
  5.  
  6. @module mixins
  7. @class UiButtonBase
  8. @namespace mixins
  9. @constructor
  10. */
  11. export default Mixin.create({
  12. /**
  13. * The root component element
  14. *
  15. * @property tagName
  16. * @type {String}
  17. * @default "button"
  18. */
  19. tagName: 'button',
  20.  
  21. /**
  22. * Alert external code about the click
  23. *
  24. * @method click
  25. * @return {void}
  26. */
  27. click: function() {
  28. if(typeof this.attrs.action === 'function'){
  29. this.attrs.action();
  30. }else {
  31. this.sendAction('action', this.param);
  32. }
  33. },
  34. /**
  35. * Class names to apply to the button
  36. *
  37. * @property classNames
  38. * @type {Array}
  39. */
  40. classNameBindings: ['_uiClass', 'disabled:disabled:', 'loading:loading:', 'active:active:', '_theme', 'theme', '_componentClass'],
  41. _uiClass: 'ui',
  42. _componentClass:'button',
  43. /**
  44. * private variable, Class names to apply to the button
  45. * @private
  46. * @property _theme
  47. * @type {String}
  48. */
  49. _theme: '',
  50. /**
  51. * Class name to apply to the button
  52. *
  53. * @property theme
  54. * @type {String}
  55. */
  56. theme: '',
  57. /**
  58. * the button loading status
  59. *
  60. * @property loading
  61. * @type {boolean}
  62. * @default false
  63. */
  64. loading:false,
  65. /**
  66. * the button disabled status
  67. *
  68. * @property disabled
  69. * @type {boolean}
  70. * @default false
  71. */
  72. disabled:false,
  73. /**
  74. * the button active status
  75. *
  76. * @property active
  77. * @type {boolean}
  78. * @default false
  79. */
  80. active:false
  81. });
  82.