mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-02 08:13:34 +03:00
5ecc74e87a
Closes #2849 -wire up delete post action in ember admin -refactor ember modal dialog -override RESTAdapter.deleteRecord to workaround Ember expecting an empty response body on DELETEs
60 lines
1.6 KiB
JavaScript
60 lines
1.6 KiB
JavaScript
var ModalDialog = Ember.Component.extend({
|
|
didInsertElement: function () {
|
|
this.$('#modal-container').fadeIn(50);
|
|
|
|
this.$('.modal-background').show().fadeIn(10, function () {
|
|
$(this).addClass('in');
|
|
});
|
|
|
|
this.$('.js-modal').addClass('in');
|
|
},
|
|
|
|
willDestroyElement: function () {
|
|
|
|
this.$('.js-modal').removeClass('in');
|
|
|
|
this.$('.modal-background').removeClass('in');
|
|
|
|
return this._super();
|
|
},
|
|
|
|
confirmaccept: 'confirmAccept',
|
|
confirmreject: 'confirmReject',
|
|
|
|
actions: {
|
|
closeModal: function () {
|
|
this.sendAction();
|
|
},
|
|
confirm: function (type) {
|
|
this.sendAction('confirm' + type);
|
|
this.sendAction();
|
|
}
|
|
},
|
|
|
|
klass: function () {
|
|
var classNames = [];
|
|
|
|
classNames.push(this.get('type') ? 'modal-' + this.get('type') : 'modal');
|
|
|
|
if (this.get('style')) {
|
|
this.get('style').split(',').forEach(function (style) {
|
|
classNames.push('modal-style-' + style);
|
|
});
|
|
}
|
|
|
|
classNames.push(this.get('animation'));
|
|
|
|
return classNames.join(' ');
|
|
}.property('type', 'style', 'animation'),
|
|
|
|
acceptButtonClass: function () {
|
|
return this.get('confirm.accept.buttonClass') ? this.get('confirm.accept.buttonClass') : 'button-add';
|
|
}.property('confirm.accept.buttonClass'),
|
|
|
|
rejectButtonClass: function () {
|
|
return this.get('confirm.reject.buttonClass') ? this.get('confirm.reject.buttonClass') : 'button-delete';
|
|
}.property('confirm.reject.buttonClass')
|
|
});
|
|
|
|
export default ModalDialog;
|