mirror of
https://github.com/discourse/discourse.git
synced 2025-02-11 07:21:45 +08:00
55 lines
1.9 KiB
JavaScript
55 lines
1.9 KiB
JavaScript
import ModalFunctionality from 'discourse/mixins/modal-functionality';
|
|
import ObjectController from 'discourse/controllers/object';
|
|
|
|
// Modal related to auto closing of topics
|
|
export default ObjectController.extend(ModalFunctionality, {
|
|
auto_close_valid: true,
|
|
auto_close_invalid: Em.computed.not('auto_close_valid'),
|
|
|
|
setAutoCloseTime: function() {
|
|
var autoCloseTime = null;
|
|
|
|
if (this.get("model.details.auto_close_based_on_last_post")) {
|
|
autoCloseTime = this.get("model.details.auto_close_hours");
|
|
} else if (this.get("model.details.auto_close_at")) {
|
|
var closeTime = new Date(this.get("model.details.auto_close_at"));
|
|
if (closeTime > new Date()) {
|
|
autoCloseTime = moment(closeTime).format("YYYY-MM-DD HH:mm");
|
|
}
|
|
}
|
|
|
|
this.set("model.auto_close_time", autoCloseTime);
|
|
}.observes("model.details.{auto_close_at,auto_close_hours}"),
|
|
|
|
actions: {
|
|
saveAutoClose: function() { this.setAutoClose(this.get("model.auto_close_time")); },
|
|
removeAutoClose: function() { this.setAutoClose(null); }
|
|
},
|
|
|
|
setAutoClose: function(time) {
|
|
var self = this;
|
|
this.send('hideModal');
|
|
Discourse.ajax({
|
|
url: '/t/' + this.get('model.id') + '/autoclose',
|
|
type: 'PUT',
|
|
dataType: 'json',
|
|
data: {
|
|
auto_close_time: time,
|
|
auto_close_based_on_last_post: this.get("model.details.auto_close_based_on_last_post"),
|
|
timezone_offset: (new Date().getTimezoneOffset())
|
|
}
|
|
}).then(function(result){
|
|
if (result.success) {
|
|
self.send('closeModal');
|
|
self.set('model.details.auto_close_at', result.auto_close_at);
|
|
self.set('model.details.auto_close_hours', result.auto_close_hours);
|
|
} else {
|
|
bootbox.alert(I18n.t('composer.auto_close.error'), function() { self.send('reopenModal'); } );
|
|
}
|
|
}, function () {
|
|
bootbox.alert(I18n.t('composer.auto_close.error'), function() { self.send('reopenModal'); } );
|
|
});
|
|
}
|
|
|
|
});
|