discourse-data-explorer/assets/javascripts/discourse/models/query.js.es6

94 lines
1.8 KiB
Plaintext
Raw Normal View History

import {
default as computed,
on,
observes
} from "ember-addons/ember-computed-decorators";
2018-10-10 07:56:23 -04:00
import RestModel from "discourse/models/rest";
2015-07-02 12:19:30 -04:00
const Query = RestModel.extend({
2015-06-30 13:20:22 -04:00
dirty: false,
2015-06-30 18:12:12 -04:00
params: {},
results: null,
2015-06-30 18:12:12 -04:00
@on("init")
_init() {
this._super(...arguments);
2018-10-10 07:56:23 -04:00
this.set("dirty", false);
},
2015-06-30 22:51:38 -04:00
@on("init")
@observes("param_info")
_initParams() {
2015-06-30 18:12:12 -04:00
this.resetParams();
},
2015-06-30 22:51:38 -04:00
@observes("name", "description", "sql", "group_ids")
markDirty() {
2018-10-10 07:56:23 -04:00
this.set("dirty", true);
},
2015-06-30 13:20:22 -04:00
markNotDirty() {
2018-10-10 07:56:23 -04:00
this.set("dirty", false);
2015-06-30 13:20:22 -04:00
},
hasParams: Ember.computed.reads("param_info.length"),
2015-07-14 19:01:38 -04:00
2015-06-30 18:12:12 -04:00
resetParams() {
2015-07-02 12:19:30 -04:00
const newParams = {};
const oldParams = this.params;
const paramInfo = this.param_info || [];
paramInfo.forEach(pinfo => {
2015-07-14 19:01:38 -04:00
const name = pinfo.identifier;
if (oldParams[pinfo.identifier]) {
2015-07-02 12:19:30 -04:00
newParams[name] = oldParams[name];
2018-10-10 07:56:23 -04:00
} else if (pinfo["default"] !== null) {
newParams[name] = pinfo["default"];
} else if (pinfo["type"] === "boolean") {
newParams[name] = "false";
2015-06-30 18:12:12 -04:00
} else {
2018-10-10 07:56:23 -04:00
newParams[name] = "";
2015-06-30 18:12:12 -04:00
}
});
2018-10-10 07:56:23 -04:00
this.set("params", newParams);
2015-06-30 18:12:12 -04:00
},
@computed("id")
downloadUrl(id) {
2015-06-30 15:52:17 -04:00
// TODO - can we change this to use the store/adapter?
2018-10-10 07:56:23 -04:00
return Discourse.getURL(
`/admin/plugins/explorer/queries/${id}.json?export=1`
2018-10-10 07:56:23 -04:00
);
},
2015-06-30 15:52:17 -04:00
createProperties() {
if (this.sql) {
2015-06-30 15:52:17 -04:00
// Importing
return this.updateProperties();
}
return this.getProperties("name");
},
updateProperties() {
const props = this.getProperties(Query.updatePropertyNames);
if (this.destroyed) {
props.id = this.id;
2015-06-30 15:52:17 -04:00
}
return props;
}
});
2015-06-30 13:20:22 -04:00
Query.reopenClass({
2019-06-14 13:27:41 -04:00
updatePropertyNames: [
"name",
"description",
"sql",
"created_by",
"created_at",
"group_ids",
2019-06-14 13:27:41 -04:00
"last_run_at"
]
2015-06-30 13:20:22 -04:00
});
export default Query;