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