addon/components/ui-modal.js

  1. import Component from '@ember/component';
  2. import layout from '../templates/components/ui-modal';
  3. import { observer } from '@ember/object';
  4.  
  5. /**
  6.  
  7. ui-modal component
  8.  
  9. @module components
  10. @namespace components
  11. @class UiModal
  12. @constructor
  13. */
  14. export default Component.extend({
  15. layout: layout,
  16. actions: {
  17. /**
  18. when modal show, this action will be triggered
  19. @event onShow
  20. */
  21. onShow(){
  22. if(typeof this.attrs.onShow === 'function'){
  23. this.attrs.onShow();
  24. }else {
  25. this.sendAction('onShow');
  26. }
  27. },
  28. /**
  29. when modal hide, this action will be triggered
  30. @event onShow
  31. */
  32. onHide(){
  33. if(typeof this.attrs.onHide === 'function'){
  34. this.attrs.onHide();
  35. }else{
  36. this.sendAction('onHide');
  37. }
  38. }
  39. },
  40. tagName: 'div',
  41.  
  42. /**
  43. * modal status
  44. * @property {Boolean} show
  45. * @default false
  46. */
  47. show: false,
  48.  
  49. /**
  50. * Setting to false will not allow you to close the modal by clicking on the dimmer
  51. * @property {Boolean} closable
  52. * @default true
  53. */
  54. closable: true,
  55.  
  56. /**
  57. * transition
  58. * @property {String} transition
  59. * @default 'scale'
  60. */
  61. transition: 'scale',
  62.  
  63. classNameBindings: ['_uiClass', 'theme', 'class', '_componentClass'],
  64. _uiClass: 'ui',
  65. _componentClass: 'modal',
  66. /**
  67. * Class names to apply to the modal
  68. *
  69. * @property {String} class
  70. */
  71. class: '',
  72. /**
  73. * Class names to apply to the modal
  74. *
  75. * @property {String} theme
  76. */
  77. theme:'',
  78. /**
  79. * @method showModal
  80. * @observes "show" property
  81. * @returns {void}
  82. */
  83. showModal: observer('show', function(){
  84. if(this.get('show')){
  85. this.$().modal('setting', 'transition', this.transition);
  86. this.$().modal('setting', 'closable', this.closable);
  87. this.$().modal('show');
  88. }else{
  89. this.$().modal('hide');
  90. }
  91. }),
  92. didInsertElement() {
  93. let that = this,
  94. closable = this.get('closable');
  95.  
  96. this.$().modal({
  97. closable: closable,
  98. observeChanges: true,
  99. onHide(){
  100. if(that.get('show')){
  101. that.set('show', false);
  102. that.send('onHide');
  103. }
  104. },
  105. onShow(){
  106. that.send('onShow');
  107. },
  108. onApprove() {
  109. if(typeof that.attrs.onApprove === 'function'){
  110. return that.attrs.onApprove();
  111. }
  112. },
  113. onDeny(){
  114. if(typeof that.attrs.onDeny === 'function'){
  115. return that.attrs.onDeny();
  116. }
  117. }
  118. });
  119. }
  120. });
  121.