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
|
2015-06-25 17:53:03 -04:00
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|