mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 00:43:24 +08:00
947495e70d
`/search_logs/term?term` is alittle weird looking but unless we add proper slug support to term, we're going to have to live with this first.
51 lines
1.5 KiB
JavaScript
51 lines
1.5 KiB
JavaScript
import { ajax } from "discourse/lib/ajax";
|
|
import { fillMissingDates } from "discourse/lib/utilities";
|
|
import { translateResults } from "discourse/lib/search";
|
|
|
|
export default Discourse.Route.extend({
|
|
queryParams: {
|
|
term: { refreshModel: true },
|
|
period: { refreshModel: true },
|
|
searchType: { refreshModel: true }
|
|
},
|
|
|
|
model(params) {
|
|
this._params = params;
|
|
|
|
return ajax(`/admin/logs/search_logs/term.json`, {
|
|
data: {
|
|
period: params.period,
|
|
search_type: params.searchType,
|
|
term: params.term
|
|
}
|
|
}).then(json => {
|
|
// Add zero values for missing dates
|
|
if (json.term.data.length > 0) {
|
|
const startDate =
|
|
json.term.period === "all"
|
|
? moment(json.term.data[0].x).format("YYYY-MM-DD")
|
|
: moment(json.term.start_date).format("YYYY-MM-DD");
|
|
const endDate = moment(json.term.end_date).format("YYYY-MM-DD");
|
|
json.term.data = fillMissingDates(json.term.data, startDate, endDate);
|
|
}
|
|
if (json.term.search_result) {
|
|
json.term.search_result = translateResults(json.term.search_result);
|
|
}
|
|
|
|
const model = Ember.Object.create({ type: "search_log_term" });
|
|
model.setProperties(json.term);
|
|
return model;
|
|
});
|
|
},
|
|
|
|
setupController(controller, model) {
|
|
const params = this._params;
|
|
controller.setProperties({
|
|
model,
|
|
term: params.term,
|
|
period: params.period,
|
|
searchType: params.searchType
|
|
});
|
|
}
|
|
});
|