Better support for inline modals
This commit is contained in:
parent
a48abc6556
commit
75b2aa2edd
|
@ -1,10 +1,17 @@
|
||||||
export default Ember.Component.extend({
|
export default Ember.Component.extend({
|
||||||
classNames: ['modal-body'],
|
classNames: ['modal-body'],
|
||||||
|
fixed: false,
|
||||||
|
|
||||||
didInsertElement() {
|
didInsertElement() {
|
||||||
this._super();
|
this._super();
|
||||||
$('#modal-alert').hide();
|
$('#modal-alert').hide();
|
||||||
$('.d-modal.fixed-modal').modal('show');
|
|
||||||
|
let fixedParent = this.$().closest('.d-modal.fixed-modal');
|
||||||
|
if (fixedParent.length) {
|
||||||
|
this.set('fixed', true);
|
||||||
|
fixedParent.modal('show');
|
||||||
|
}
|
||||||
|
|
||||||
Ember.run.scheduleOnce('afterRender', this, this._afterFirstRender);
|
Ember.run.scheduleOnce('afterRender', this, this._afterFirstRender);
|
||||||
this.appEvents.on('modal-body:flash', msg => this._flash(msg));
|
this.appEvents.on('modal-body:flash', msg => this._flash(msg));
|
||||||
},
|
},
|
||||||
|
@ -28,7 +35,14 @@ export default Ember.Component.extend({
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
this.appEvents.trigger('modal:body-shown', this.getProperties('title', 'rawTitle'));
|
this.appEvents.trigger(
|
||||||
|
'modal:body-shown',
|
||||||
|
this.getProperties(
|
||||||
|
'title',
|
||||||
|
'rawTitle',
|
||||||
|
'fixed'
|
||||||
|
)
|
||||||
|
);
|
||||||
},
|
},
|
||||||
|
|
||||||
_flash(msg) {
|
_flash(msg) {
|
||||||
|
|
|
@ -27,7 +27,11 @@ export default Ember.Component.extend({
|
||||||
});
|
});
|
||||||
|
|
||||||
this.appEvents.on('modal:body-shown', data => {
|
this.appEvents.on('modal:body-shown', data => {
|
||||||
|
if (this.isDestroying || this.isDestroyed) { return; }
|
||||||
|
if (data.fixed) {
|
||||||
this.$().removeClass('hidden');
|
this.$().removeClass('hidden');
|
||||||
|
}
|
||||||
|
|
||||||
if (data.title) {
|
if (data.title) {
|
||||||
this.set('title', I18n.t(data.title));
|
this.set('title', I18n.t(data.title));
|
||||||
} else if (data.rawTitle) {
|
} else if (data.rawTitle) {
|
||||||
|
|
Loading…
Reference in New Issue