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