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

209 lines
5.6 KiB
Plaintext
Raw Normal View History

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