discourse-data-explorer/assets/javascripts/discourse/controllers/import-query.js.es6

43 lines
1.1 KiB
Plaintext
Raw Normal View History

2018-10-10 07:56:23 -04:00
import ModalFunctionality from "discourse/mixins/modal-functionality";
import { popupAjaxError } from "discourse/lib/ajax-error";
2015-06-25 16:26:31 -04:00
export default Ember.Controller.extend(ModalFunctionality, {
2018-10-10 07:56:23 -04:00
notReady: Em.computed.not("ready"),
2015-06-25 16:26:31 -04:00
2017-04-04 04:37:07 -04:00
adminPluginsExplorer: Ember.inject.controller(),
2015-06-25 16:26:31 -04:00
ready: function() {
let parsed;
try {
2018-10-10 07:56:23 -04:00
parsed = JSON.parse(this.get("queryFile"));
2015-06-25 16:26:31 -04:00
} catch (e) {
return false;
}
return !!parsed["query"];
2018-10-10 07:56:23 -04:00
}.property("queryFile"),
2015-06-25 16:26:31 -04:00
actions: {
doImport: function() {
const self = this;
2018-10-10 07:56:23 -04:00
const object = JSON.parse(this.get("queryFile")).query;
2015-06-25 16:26:31 -04:00
// Slight fixup before creating object
object.id = 0; // 0 means no Id yet
2015-06-25 16:26:31 -04:00
2018-10-10 07:56:23 -04:00
this.set("loading", true);
this.store
.createRecord("query", object)
.save()
.then(function(query) {
self.send("closeModal");
self.set("loading", false);
const parentController = self.get("adminPluginsExplorer");
parentController.addCreatedRecord(query.target);
})
.catch(popupAjaxError);
2015-06-25 16:26:31 -04:00
}
}
});