discourse/app/assets/javascripts/discourse.js.es6

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

220 lines
6.0 KiB
Plaintext
Raw Normal View History

/*global Mousetrap:true*/
import Application from "@ember/application";
import EmberObject, { computed } from "@ember/object";
import { buildResolver } from "discourse-common/resolver";
import discourseComputed, { observes } from "discourse-common/utils/decorators";
import FocusEvent from "discourse-common/mixins/focus-event";
2019-11-09 03:13:35 +08:00
import deprecated from "discourse-common/lib/deprecated";
2014-08-07 23:47:45 +08:00
2016-07-04 01:33:05 +08:00
const _pluginCallbacks = [];
2015-05-12 01:16:44 +08:00
const Discourse = Application.extend(FocusEvent, {
rootElement: "#main",
_docTitle: document.title,
RAW_TEMPLATES: {},
__widget_helpers: {},
customEvents: {
paste: "paste"
},
reset() {
this._super(...arguments);
Mousetrap.reset();
},
2016-07-04 01:33:05 +08:00
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(Discourse.BaseUri)) return url;
return Discourse.BaseUri + url;
},
2016-07-04 01:33:05 +08:00
getURLWithCDN(url) {
url = Discourse.getURL(url);
// only relative urls
2015-07-16 01:24:23 +08:00
if (Discourse.CDN && /^\/[^\/]/.test(url)) {
url = Discourse.CDN + url;
} else if (Discourse.S3CDN) {
url = url.replace(Discourse.S3BaseUrl, Discourse.S3CDN);
}
return url;
},
Resolver: buildResolver("discourse"),
@observes("_docTitle", "hasFocus", "contextCount", "notificationCount")
2016-07-04 01:33:05 +08:00
_titleChanged() {
let title = this._docTitle || Discourse.SiteSettings.title;
2014-06-17 09:32:59 +08:00
// if we change this we can trigger changes on document.title
// only set if changed.
2016-07-04 01:33:05 +08:00
if ($("title").text() !== title) {
2014-06-17 09:32:59 +08:00
$("title").text(title);
}
2019-11-14 01:59:01 +08:00
let displayCount = this.displayCount;
let dynamicFavicon = this.currentUser && this.currentUser.dynamic_favicon;
if (displayCount > 0 && !dynamicFavicon) {
title = `(${displayCount}) ${title}`;
}
2014-01-09 07:26:53 +08:00
document.title = title;
2016-07-04 01:33:05 +08:00
},
@discourseComputed("contextCount", "notificationCount")
displayCount() {
2019-11-13 22:17:06 +08:00
return this.currentUser &&
this.currentUser.get("title_count_mode") === "notifications"
? this.notificationCount
: this.contextCount;
},
@observes("contextCount", "notificationCount")
2016-07-04 01:33:05 +08:00
faviconChanged() {
2019-11-13 22:17:06 +08:00
if (this.currentUser && this.currentUser.get("dynamic_favicon")) {
let url = Discourse.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 = Discourse.getURL("/favicon/proxied?" + encodeURIComponent(url));
}
var displayCount = this.displayCount;
new window.Favcount(url).set(displayCount);
2013-06-08 08:15:49 +08:00
}
2016-07-04 01:33:05 +08:00
},
2013-06-08 08:15:49 +08:00
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);
}
},
2016-07-04 01:33:05 +08:00
@observes("hasFocus")
resetCounts() {
if (this.hasFocus && this.backgroundNotify) {
this.set("contextCount", 0);
}
this.set("backgroundNotify", false);
if (this.hasFocus) {
this.set("notificationCount", 0);
}
2016-07-04 01:33:05 +08:00
},
2016-07-04 01:33:05 +08:00
authenticationComplete(options) {
// TODO, how to dispatch this to the controller without the container?
2016-07-04 01:33:05 +08:00
const loginController = Discourse.__container__.lookup("controller:login");
return loginController.authenticationComplete(options);
},
2013-02-27 03:54:43 +08:00
2016-07-04 01:33:05 +08:00
// Start up the Discourse application by running all the initializers we've defined.
start() {
2014-06-17 09:01:48 +08:00
$("noscript").remove();
Object.keys(requirejs._eak_seen).forEach(function(key) {
2015-08-12 05:34:02 +08:00
if (/\/pre\-initializers\//.test(key)) {
2017-07-06 02:14:30 +08:00
const module = requirejs(key, null, null, true);
2014-05-29 03:32:42 +08:00
if (!module) {
throw new Error(key + " must export an initializer.");
}
const init = module.default;
const oldInitialize = init.initialize;
init.initialize = function() {
oldInitialize.call(this, Discourse.__container__, Discourse);
};
Discourse.initializer(init);
2014-05-29 03:32:42 +08:00
}
});
Object.keys(requirejs._eak_seen).forEach(function(key) {
2015-08-12 05:34:02 +08:00
if (/\/initializers\//.test(key)) {
2017-07-06 02:14:30 +08:00
const module = requirejs(key, null, null, true);
2015-08-12 05:34:02 +08:00
if (!module) {
throw new Error(key + " must export an initializer.");
}
2016-07-04 01:33:05 +08:00
const init = module.default;
const oldInitialize = init.initialize;
init.initialize = function() {
oldInitialize.call(this, Discourse.__container__, Discourse);
2015-08-12 05:34:02 +08:00
};
Discourse.instanceInitializer(init);
}
});
// Plugins that are registered via `<script>` tags.
2017-07-06 02:14:30 +08:00
const withPluginApi = requirejs("discourse/lib/plugin-api").withPluginApi;
2016-07-04 01:33:05 +08:00
let initCount = 0;
_pluginCallbacks.forEach(function(cb) {
Discourse.instanceInitializer({
name: "_discourse_plugin_" + ++initCount,
after: "inject-objects",
initialize() {
withPluginApi(cb.version, cb.code);
}
});
});
},
@discourseComputed("currentAssetVersion", "desiredAssetVersion")
2016-07-04 01:33:05 +08:00
requiresRefresh(currentAssetVersion, desiredAssetVersion) {
return desiredAssetVersion && currentAssetVersion !== desiredAssetVersion;
},
2016-07-04 01:33:05 +08:00
_registerPluginCode(version, code) {
_pluginCallbacks.push({ version, code });
},
2015-08-12 05:34:02 +08:00
assetVersion: computed({
2016-07-04 01:33:05 +08:00
get() {
return this.currentAssetVersion;
2015-08-12 05:34:02 +08:00
},
2016-07-04 01:33:05 +08:00
set(key, val) {
2015-08-12 05:34:02 +08:00
if (val) {
if (this.currentAssetVersion) {
2015-08-12 05:34:02 +08:00
this.set("desiredAssetVersion", val);
} else {
this.set("currentAssetVersion", val);
}
}
return this.currentAssetVersion;
}
2015-08-12 05:34:02 +08:00
})
2016-04-30 04:50:52 +08:00
}).create();
2019-11-09 03:13:35 +08:00
Object.defineProperty(Discourse, "Model", {
get() {
deprecated("Use an `@ember/object` instead of Discourse.Model", {
since: "2.4.0",
dropFrom: "2.5.0"
});
return EmberObject;
}
});
2016-07-04 01:33:05 +08:00
export default Discourse;