218 lines
6.0 KiB
JavaScript
218 lines
6.0 KiB
JavaScript
/*global Mousetrap:true*/
|
|
import Application from "@ember/application";
|
|
import { computed } from "@ember/object";
|
|
import { buildResolver } from "discourse-common/resolver";
|
|
import { bind } from "@ember/runloop";
|
|
import discourseComputed, { observes } from "discourse-common/utils/decorators";
|
|
|
|
const _pluginCallbacks = [];
|
|
|
|
const Discourse = Application.extend({
|
|
rootElement: "#main",
|
|
_docTitle: document.title,
|
|
__widget_helpers: {},
|
|
hasFocus: null,
|
|
_boundFocusChange: null,
|
|
|
|
customEvents: {
|
|
paste: "paste"
|
|
},
|
|
|
|
reset() {
|
|
this._super(...arguments);
|
|
Mousetrap.reset();
|
|
|
|
document.removeEventListener("visibilitychange", this._boundFocusChange);
|
|
document.removeEventListener("resume", this._boundFocusChange);
|
|
document.removeEventListener("freeze", this._boundFocusChange);
|
|
|
|
this._boundFocusChange = null;
|
|
},
|
|
|
|
ready() {
|
|
this._super(...arguments);
|
|
this._boundFocusChange = bind(this, this._focusChanged);
|
|
|
|
// Default to true
|
|
this.set("hasFocus", true);
|
|
|
|
document.addEventListener("visibilitychange", this._boundFocusChange);
|
|
document.addEventListener("resume", this._boundFocusChange);
|
|
document.addEventListener("freeze", this._boundFocusChange);
|
|
},
|
|
|
|
getURL(url) {
|
|
if (!url) return url;
|
|
|
|
// if it's a non relative URL, return it.
|
|
if (url !== "/" && !/^\/[^\/]/.test(url)) return url;
|
|
|
|
if (url[0] !== "/") url = "/" + url;
|
|
if (url.startsWith(this.BaseUri)) return url;
|
|
|
|
return this.BaseUri + url;
|
|
},
|
|
|
|
getURLWithCDN(url) {
|
|
url = this.getURL(url);
|
|
// only relative urls
|
|
if (this.CDN && /^\/[^\/]/.test(url)) {
|
|
url = this.CDN + url;
|
|
} else if (this.S3CDN) {
|
|
url = url.replace(this.S3BaseUrl, this.S3CDN);
|
|
}
|
|
return url;
|
|
},
|
|
|
|
Resolver: buildResolver("discourse"),
|
|
|
|
@observes("_docTitle", "hasFocus", "contextCount", "notificationCount")
|
|
_titleChanged() {
|
|
let title = this._docTitle || this.SiteSettings.title;
|
|
|
|
let displayCount = this.displayCount;
|
|
let dynamicFavicon = this.currentUser && this.currentUser.dynamic_favicon;
|
|
if (displayCount > 0 && !dynamicFavicon) {
|
|
title = `(${displayCount}) ${title}`;
|
|
}
|
|
|
|
document.title = title;
|
|
},
|
|
|
|
@discourseComputed("contextCount", "notificationCount")
|
|
displayCount() {
|
|
return this.currentUser &&
|
|
this.currentUser.get("title_count_mode") === "notifications"
|
|
? this.notificationCount
|
|
: this.contextCount;
|
|
},
|
|
|
|
@observes("contextCount", "notificationCount")
|
|
faviconChanged() {
|
|
if (this.currentUser && this.currentUser.get("dynamic_favicon")) {
|
|
let url = this.SiteSettings.site_favicon_url;
|
|
|
|
// Since the favicon is cached on the browser for a really long time, we
|
|
// append the favicon_url as query params to the path so that the cache
|
|
// is not used when the favicon changes.
|
|
if (/^http/.test(url)) {
|
|
url = this.getURL("/favicon/proxied?" + encodeURIComponent(url));
|
|
}
|
|
|
|
var displayCount = this.displayCount;
|
|
|
|
new window.Favcount(url).set(displayCount);
|
|
}
|
|
},
|
|
|
|
updateContextCount(count) {
|
|
this.set("contextCount", count);
|
|
},
|
|
|
|
updateNotificationCount(count) {
|
|
if (!this.hasFocus) {
|
|
this.set("notificationCount", count);
|
|
}
|
|
},
|
|
|
|
incrementBackgroundContextCount() {
|
|
if (!this.hasFocus) {
|
|
this.set("backgroundNotify", true);
|
|
this.set("contextCount", (this.contextCount || 0) + 1);
|
|
}
|
|
},
|
|
|
|
@observes("hasFocus")
|
|
resetCounts() {
|
|
if (this.hasFocus && this.backgroundNotify) {
|
|
this.set("contextCount", 0);
|
|
}
|
|
this.set("backgroundNotify", false);
|
|
|
|
if (this.hasFocus) {
|
|
this.set("notificationCount", 0);
|
|
}
|
|
},
|
|
|
|
authenticationComplete(options) {
|
|
// TODO, how to dispatch this to the controller without the container?
|
|
const loginController = this.__container__.lookup("controller:login");
|
|
return loginController.authenticationComplete(options);
|
|
},
|
|
|
|
_prepareInitializer(moduleName) {
|
|
const module = requirejs(moduleName, null, null, true);
|
|
if (!module) {
|
|
throw new Error(moduleName + " must export an initializer.");
|
|
}
|
|
|
|
const init = module.default;
|
|
const oldInitialize = init.initialize;
|
|
init.initialize = () => oldInitialize.call(init, this.__container__, this);
|
|
return init;
|
|
},
|
|
|
|
// Start up the Discourse application by running all the initializers we've defined.
|
|
start() {
|
|
$("noscript").remove();
|
|
|
|
Object.keys(requirejs._eak_seen).forEach(key => {
|
|
if (/\/pre\-initializers\//.test(key)) {
|
|
this.initializer(this._prepareInitializer(key));
|
|
} else if (/\/initializers\//.test(key)) {
|
|
this.instanceInitializer(this._prepareInitializer(key));
|
|
}
|
|
});
|
|
|
|
// Plugins that are registered via `<script>` tags.
|
|
const withPluginApi = requirejs("discourse/lib/plugin-api").withPluginApi;
|
|
let initCount = 0;
|
|
_pluginCallbacks.forEach(cb => {
|
|
this.instanceInitializer({
|
|
name: `_discourse_plugin_${++initCount}`,
|
|
after: "inject-objects",
|
|
initialize: () => withPluginApi(cb.version, cb.code)
|
|
});
|
|
});
|
|
},
|
|
|
|
@discourseComputed("currentAssetVersion", "desiredAssetVersion")
|
|
requiresRefresh(currentAssetVersion, desiredAssetVersion) {
|
|
return desiredAssetVersion && currentAssetVersion !== desiredAssetVersion;
|
|
},
|
|
|
|
_registerPluginCode(version, code) {
|
|
_pluginCallbacks.push({ version, code });
|
|
},
|
|
|
|
assetVersion: computed({
|
|
get() {
|
|
return this.currentAssetVersion;
|
|
},
|
|
set(key, val) {
|
|
if (val) {
|
|
if (this.currentAssetVersion) {
|
|
this.set("desiredAssetVersion", val);
|
|
} else {
|
|
this.set("currentAssetVersion", val);
|
|
}
|
|
}
|
|
return this.currentAssetVersion;
|
|
}
|
|
}),
|
|
|
|
_focusChanged() {
|
|
if (document.visibilityState === "hidden") {
|
|
if (this.hasFocus) {
|
|
this.set("hasFocus", false);
|
|
this.appEvents.trigger("discourse:focus-changed", false);
|
|
}
|
|
} else if (!this.hasFocus) {
|
|
this.set("hasFocus", true);
|
|
this.appEvents.trigger("discourse:focus-changed", true);
|
|
}
|
|
}
|
|
});
|
|
|
|
export default Discourse;
|