2019-10-24 01:06:54 +08:00
|
|
|
import Controller from "@ember/controller";
|
2021-01-19 01:53:45 +08:00
|
|
|
import discourseComputed from "discourse-common/utils/decorators";
|
2020-12-18 21:18:52 +08:00
|
|
|
import discourseDebounce from "discourse-common/lib/debounce";
|
2016-04-14 03:16:37 +08:00
|
|
|
let lastSearch;
|
|
|
|
|
2019-10-24 01:06:54 +08:00
|
|
|
export default Controller.extend({
|
2015-11-24 05:45:05 +08:00
|
|
|
searching: false,
|
|
|
|
siteTexts: null,
|
|
|
|
preferred: false,
|
2021-01-19 01:53:45 +08:00
|
|
|
queryParams: ["q", "overridden", "locale"],
|
|
|
|
locale: null,
|
2015-11-24 05:45:05 +08:00
|
|
|
|
2016-11-03 04:22:52 +08:00
|
|
|
q: null,
|
2019-02-21 22:54:54 +08:00
|
|
|
overridden: false,
|
2015-11-24 05:45:05 +08:00
|
|
|
|
2021-01-19 01:53:45 +08:00
|
|
|
init() {
|
|
|
|
this._super(...arguments);
|
|
|
|
|
|
|
|
this.set("locale", this.siteSettings.default_locale);
|
|
|
|
},
|
|
|
|
|
2015-11-24 05:45:05 +08:00
|
|
|
_performSearch() {
|
2015-12-01 04:22:58 +08:00
|
|
|
this.store
|
2021-01-19 01:53:45 +08:00
|
|
|
.find("site-text", this.getProperties("q", "overridden", "locale"))
|
2015-12-01 04:22:58 +08:00
|
|
|
.then((results) => {
|
2015-11-24 05:45:05 +08:00
|
|
|
this.set("siteTexts", results);
|
|
|
|
})
|
|
|
|
.finally(() => this.set("searching", false));
|
|
|
|
},
|
|
|
|
|
2021-01-19 01:53:45 +08:00
|
|
|
@discourseComputed()
|
|
|
|
availableLocales() {
|
|
|
|
return JSON.parse(this.siteSettings.available_locales);
|
|
|
|
},
|
|
|
|
|
|
|
|
@discourseComputed("locale")
|
|
|
|
fallbackLocaleFullName() {
|
|
|
|
if (this.siteTexts.extras.fallback_locale) {
|
|
|
|
return this.availableLocales.find((l) => {
|
|
|
|
return l.value === this.siteTexts.extras.fallback_locale;
|
|
|
|
}).name;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2021-01-21 05:08:02 +08:00
|
|
|
@discourseComputed("locale")
|
|
|
|
showFallbackLocaleWarning() {
|
|
|
|
return (
|
2021-01-22 00:09:32 +08:00
|
|
|
this.siteSettings.allow_user_locale &&
|
|
|
|
this.siteSettings.set_locale_from_accept_language_header &&
|
2021-01-21 05:08:02 +08:00
|
|
|
this.fallbackLocaleFullName
|
|
|
|
);
|
|
|
|
},
|
|
|
|
|
2015-11-24 05:45:05 +08:00
|
|
|
actions: {
|
|
|
|
edit(siteText) {
|
2021-01-19 01:53:45 +08:00
|
|
|
this.transitionToRoute("adminSiteText.edit", siteText.get("id"), {
|
|
|
|
queryParams: {
|
|
|
|
locale: this.locale,
|
|
|
|
localeFullName: this.availableLocales[this.locale],
|
|
|
|
},
|
|
|
|
});
|
2015-11-24 05:45:05 +08:00
|
|
|
},
|
|
|
|
|
2019-02-21 22:54:54 +08:00
|
|
|
toggleOverridden() {
|
|
|
|
this.toggleProperty("overridden");
|
|
|
|
this.set("searching", true);
|
2020-12-18 21:18:52 +08:00
|
|
|
discourseDebounce(this, this._performSearch, 400);
|
2019-02-21 22:54:54 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
search() {
|
2019-05-27 16:15:39 +08:00
|
|
|
const q = this.q;
|
2019-02-21 22:54:54 +08:00
|
|
|
if (q !== lastSearch) {
|
2016-04-14 03:16:37 +08:00
|
|
|
this.set("searching", true);
|
2020-12-18 21:18:52 +08:00
|
|
|
discourseDebounce(this, this._performSearch, 400);
|
2016-04-14 03:16:37 +08:00
|
|
|
lastSearch = q;
|
|
|
|
}
|
2015-11-24 05:45:05 +08:00
|
|
|
},
|
2021-01-19 01:53:45 +08:00
|
|
|
|
|
|
|
updateLocale(value) {
|
|
|
|
this.setProperties({
|
|
|
|
searching: true,
|
|
|
|
locale: value,
|
|
|
|
});
|
|
|
|
|
|
|
|
discourseDebounce(this, this._performSearch, 400);
|
|
|
|
},
|
2015-11-24 05:45:05 +08:00
|
|
|
},
|
|
|
|
});
|