2019-05-20 04:45:31 -04:00
|
|
|
/*global Mousetrap:true*/
|
2018-06-15 11:03:24 -04:00
|
|
|
import { buildResolver } from "discourse-common/resolver";
|
|
|
|
import {
|
2019-11-07 16:38:28 -05:00
|
|
|
default as discourseComputed,
|
2018-06-15 11:03:24 -04:00
|
|
|
observes
|
2019-11-07 16:38:28 -05:00
|
|
|
} from "discourse-common/utils/decorators";
|
2019-11-13 11:57:42 -05:00
|
|
|
import { computed } from "@ember/object";
|
2019-05-20 07:48:03 -04:00
|
|
|
import FocusEvent from "discourse-common/mixins/focus-event";
|
2019-11-08 14:13:35 -05:00
|
|
|
import EmberObject from "@ember/object";
|
|
|
|
import deprecated from "discourse-common/lib/deprecated";
|
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
|
|
|
|
2019-05-20 07:48:03 -04:00
|
|
|
const Discourse = Ember.Application.extend(FocusEvent, {
|
2018-06-15 11:03:24 -04:00
|
|
|
rootElement: "#main",
|
2015-02-12 12:27:51 -05:00
|
|
|
_docTitle: document.title,
|
2016-12-19 11:19:10 -05:00
|
|
|
RAW_TEMPLATES: {},
|
2017-09-01 11:20:14 -04:00
|
|
|
__widget_helpers: {},
|
2017-12-01 14:20:45 -05:00
|
|
|
customEvents: {
|
2018-06-15 11:03:24 -04:00
|
|
|
paste: "paste"
|
2017-12-01 14:20:45 -05:00
|
|
|
},
|
2013-02-20 13:15:50 -05:00
|
|
|
|
2019-05-20 04:45:31 -04:00
|
|
|
reset() {
|
|
|
|
this._super(...arguments);
|
|
|
|
|
|
|
|
Mousetrap.reset();
|
|
|
|
},
|
|
|
|
|
2016-07-03 13:33:05 -04:00
|
|
|
getURL(url) {
|
2015-07-15 17:00:11 -04:00
|
|
|
if (!url) return url;
|
2015-02-18 12:30:41 -05:00
|
|
|
|
2015-07-15 17:00:11 -04:00
|
|
|
// if it's a non relative URL, return it.
|
2018-06-15 11:03:24 -04:00
|
|
|
if (url !== "/" && !/^\/[^\/]/.test(url)) return url;
|
2013-05-07 13:30:12 -04:00
|
|
|
|
2015-09-06 23:20:59 -04:00
|
|
|
if (url.indexOf(Discourse.BaseUri) !== -1) return url;
|
|
|
|
if (url[0] !== "/") url = "/" + url;
|
2015-03-08 20:45:36 -04:00
|
|
|
|
2015-09-06 23:20:59 -04:00
|
|
|
return Discourse.BaseUri + url;
|
2013-03-14 08:01:52 -04:00
|
|
|
},
|
|
|
|
|
2016-07-03 13:33:05 -04:00
|
|
|
getURLWithCDN(url) {
|
2016-06-14 14:31:51 -04:00
|
|
|
url = Discourse.getURL(url);
|
2015-07-15 17:00:11 -04:00
|
|
|
// only relative urls
|
2015-07-15 13:24:23 -04:00
|
|
|
if (Discourse.CDN && /^\/[^\/]/.test(url)) {
|
2015-05-26 22:59:51 -04:00
|
|
|
url = Discourse.CDN + url;
|
2018-07-06 03:46:41 -04:00
|
|
|
} else if (Discourse.S3CDN) {
|
|
|
|
url = url.replace(Discourse.S3BaseUrl, Discourse.S3CDN);
|
2015-05-26 22:59:51 -04:00
|
|
|
}
|
2015-01-29 16:53:48 -05:00
|
|
|
return url;
|
|
|
|
},
|
|
|
|
|
2018-06-15 11:03:24 -04:00
|
|
|
Resolver: buildResolver("discourse"),
|
2013-06-03 16:12:24 -04:00
|
|
|
|
2019-03-18 08:59:47 -04:00
|
|
|
@observes("_docTitle", "hasFocus", "contextCount", "notificationCount")
|
2016-07-03 13:33:05 -04:00
|
|
|
_titleChanged() {
|
2019-05-27 04:15:39 -04:00
|
|
|
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
|
|
|
}
|
2013-06-02 20:38:57 -04:00
|
|
|
|
2019-11-13 12:59:01 -05:00
|
|
|
let displayCount = this.displayCount;
|
|
|
|
let dynamicFavicon = this.currentUser && this.currentUser.dynamic_favicon;
|
|
|
|
if (displayCount > 0 && !dynamicFavicon) {
|
2019-03-18 08:59:47 -04:00
|
|
|
title = `(${displayCount}) ${title}`;
|
2013-02-22 15:41:12 -05:00
|
|
|
}
|
2014-01-08 18:26:53 -05:00
|
|
|
|
2015-02-12 12:27:51 -05:00
|
|
|
document.title = title;
|
2016-07-03 13:33:05 -04:00
|
|
|
},
|
2013-02-20 13:15:50 -05:00
|
|
|
|
2019-11-07 16:38:28 -05:00
|
|
|
@discourseComputed("contextCount", "notificationCount")
|
2019-04-11 20:04:11 -04:00
|
|
|
displayCount() {
|
2019-11-13 09:17:06 -05:00
|
|
|
return this.currentUser &&
|
|
|
|
this.currentUser.get("title_count_mode") === "notifications"
|
2019-05-27 04:15:39 -04:00
|
|
|
? this.notificationCount
|
|
|
|
: this.contextCount;
|
2019-04-11 20:04:11 -04:00
|
|
|
},
|
|
|
|
|
2019-03-18 08:59:47 -04:00
|
|
|
@observes("contextCount", "notificationCount")
|
2016-07-03 13:33:05 -04:00
|
|
|
faviconChanged() {
|
2019-11-13 09:17:06 -05:00
|
|
|
if (this.currentUser && this.currentUser.get("dynamic_favicon")) {
|
2019-03-14 03:36:12 -04: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-05-27 04:15:39 -04:00
|
|
|
var displayCount = this.displayCount;
|
2019-03-18 08:59:47 -04:00
|
|
|
|
|
|
|
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
|
|
|
|
2019-03-18 08:59:47 -04:00
|
|
|
updateContextCount(count) {
|
|
|
|
this.set("contextCount", count);
|
|
|
|
},
|
|
|
|
|
|
|
|
updateNotificationCount(count) {
|
2019-05-27 04:15:39 -04:00
|
|
|
if (!this.hasFocus) {
|
2019-03-18 08:59:47 -04:00
|
|
|
this.set("notificationCount", count);
|
|
|
|
}
|
2013-02-22 15:41:12 -05:00
|
|
|
},
|
2013-02-20 13:15:50 -05:00
|
|
|
|
2019-03-18 08:59:47 -04:00
|
|
|
incrementBackgroundContextCount() {
|
2019-05-27 04:15:39 -04:00
|
|
|
if (!this.hasFocus) {
|
2018-06-15 11:03:24 -04:00
|
|
|
this.set("backgroundNotify", true);
|
2019-05-27 04:15:39 -04:00
|
|
|
this.set("contextCount", (this.contextCount || 0) + 1);
|
2015-09-20 18:28:45 -04:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2018-06-15 11:03:24 -04:00
|
|
|
@observes("hasFocus")
|
2019-03-18 08:59:47 -04:00
|
|
|
resetCounts() {
|
2019-05-27 04:15:39 -04:00
|
|
|
if (this.hasFocus && this.backgroundNotify) {
|
2019-03-18 08:59:47 -04:00
|
|
|
this.set("contextCount", 0);
|
2015-09-20 18:28:45 -04:00
|
|
|
}
|
2018-06-15 11:03:24 -04:00
|
|
|
this.set("backgroundNotify", false);
|
2019-03-18 08:59:47 -04:00
|
|
|
|
2019-05-27 04:15:39 -04:00
|
|
|
if (this.hasFocus) {
|
2019-03-18 08:59:47 -04:00
|
|
|
this.set("notificationCount", 0);
|
|
|
|
}
|
2016-07-03 13:33:05 -04:00
|
|
|
},
|
2015-09-20 18:28:45 -04:00
|
|
|
|
2016-07-03 13:33:05 -04:00
|
|
|
authenticationComplete(options) {
|
2013-05-30 14:12:33 -04:00
|
|
|
// 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");
|
2013-05-30 14:12:33 -04:00
|
|
|
return loginController.authenticationComplete(options);
|
2013-02-22 15:41:12 -05:00
|
|
|
},
|
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
|
|
|
|
2016-04-28 16:37:20 -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.");
|
|
|
|
}
|
2016-11-03 14:52:14 -04:00
|
|
|
|
|
|
|
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
|
|
|
}
|
2014-05-15 17:01:01 -04:00
|
|
|
});
|
|
|
|
|
2016-04-28 16:37:20 -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;
|
2016-11-03 14:52:14 -04:00
|
|
|
init.initialize = function() {
|
|
|
|
oldInitialize.call(this, Discourse.__container__, Discourse);
|
2015-08-11 17:34:02 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
Discourse.instanceInitializer(init);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2016-03-18 14:41:27 -04:00
|
|
|
// 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;
|
2016-03-18 14:41:27 -04:00
|
|
|
_pluginCallbacks.forEach(function(cb) {
|
|
|
|
Discourse.instanceInitializer({
|
2018-06-15 11:03:24 -04:00
|
|
|
name: "_discourse_plugin_" + ++initCount,
|
|
|
|
after: "inject-objects",
|
2016-12-27 11:57:46 -05:00
|
|
|
initialize() {
|
2016-03-18 14:41:27 -04:00
|
|
|
withPluginApi(cb.version, cb.code);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
2014-01-14 00:59:08 -05:00
|
|
|
},
|
|
|
|
|
2019-11-07 16:38:28 -05:00
|
|
|
@discourseComputed("currentAssetVersion", "desiredAssetVersion")
|
2016-07-03 13:33:05 -04:00
|
|
|
requiresRefresh(currentAssetVersion, desiredAssetVersion) {
|
|
|
|
return desiredAssetVersion && currentAssetVersion !== desiredAssetVersion;
|
|
|
|
},
|
2014-01-14 20:07:42 -05:00
|
|
|
|
2016-07-03 13:33:05 -04:00
|
|
|
_registerPluginCode(version, code) {
|
|
|
|
_pluginCallbacks.push({ version, code });
|
2016-03-18 14:41:27 -04:00
|
|
|
},
|
2015-08-11 17:34:02 -04:00
|
|
|
|
2019-11-08 13:28:11 -05:00
|
|
|
assetVersion: computed({
|
2016-07-03 13:33:05 -04:00
|
|
|
get() {
|
2019-05-27 04:15:39 -04:00
|
|
|
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) {
|
2019-05-27 04:15:39 -04:00
|
|
|
if (this.currentAssetVersion) {
|
2015-08-11 17:34:02 -04:00
|
|
|
this.set("desiredAssetVersion", val);
|
|
|
|
} else {
|
|
|
|
this.set("currentAssetVersion", val);
|
|
|
|
}
|
2014-01-14 00:59:08 -05:00
|
|
|
}
|
2019-05-27 04:15:39 -04:00
|
|
|
return this.currentAssetVersion;
|
2014-01-14 00:59:08 -05:00
|
|
|
}
|
2015-08-11 17:34:02 -04:00
|
|
|
})
|
2016-04-29 16:50:52 -04:00
|
|
|
}).create();
|
2015-02-26 15:54:39 -05:00
|
|
|
|
2019-11-08 14:13:35 -05: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-03 13:33:05 -04:00
|
|
|
export default Discourse;
|