2013-08-18 19:52:13 +08:00
|
|
|
/*global Favcount:true*/
|
2014-08-07 23:47:45 +08:00
|
|
|
var DiscourseResolver = require('discourse/ember/resolver').default;
|
|
|
|
|
2015-05-12 01:16:44 +08:00
|
|
|
// Allow us to import Ember
|
|
|
|
define('ember', ['exports'], function(__exports__) {
|
2015-08-12 05:34:02 +08:00
|
|
|
__exports__.default = Ember;
|
2015-05-12 01:16:44 +08:00
|
|
|
});
|
|
|
|
|
2013-12-31 01:42:05 +08:00
|
|
|
window.Discourse = Ember.Application.createWithMixins(Discourse.Ajax, {
|
2013-02-23 04:41:12 +08:00
|
|
|
rootElement: '#main',
|
2015-02-13 01:27:51 +08:00
|
|
|
_docTitle: document.title,
|
2013-02-21 02:15:50 +08:00
|
|
|
|
2013-03-14 20:01:52 +08:00
|
|
|
getURL: function(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.
|
|
|
|
if (!/^\/[^\/]/.test(url)) return url;
|
2013-05-08 01:30:12 +08:00
|
|
|
|
2015-08-12 05:34:02 +08:00
|
|
|
var u = Discourse.BaseUri === undefined ? "/" : Discourse.BaseUri;
|
2015-03-09 08:45:36 +08:00
|
|
|
|
2015-07-16 05:00:11 +08:00
|
|
|
if (u[u.length-1] === '/') u = u.substring(0, u.length-1);
|
|
|
|
if (url.indexOf(u) !== -1) return url;
|
|
|
|
if (u.length > 0 && url[0] !== "/") url = "/" + url;
|
2015-03-09 08:45:36 +08:00
|
|
|
|
2013-03-14 20:01:52 +08:00
|
|
|
return u + url;
|
|
|
|
},
|
|
|
|
|
2015-01-30 05:53:48 +08:00
|
|
|
getURLWithCDN: function(url) {
|
|
|
|
url = this.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;
|
|
|
|
} else if (Discourse.S3CDN) {
|
|
|
|
url = url.replace(Discourse.S3BaseUrl, Discourse.S3CDN);
|
|
|
|
}
|
2015-01-30 05:53:48 +08:00
|
|
|
return url;
|
|
|
|
},
|
|
|
|
|
2014-08-07 23:47:45 +08:00
|
|
|
Resolver: DiscourseResolver,
|
2013-06-04 04:12:24 +08:00
|
|
|
|
2014-10-10 02:37:23 +08:00
|
|
|
_titleChanged: function() {
|
|
|
|
var 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.
|
|
|
|
if($('title').text() !== title) {
|
|
|
|
$('title').text(title);
|
|
|
|
}
|
2013-06-03 08:38:57 +08:00
|
|
|
|
|
|
|
var notifyCount = this.get('notifyCount');
|
2013-08-09 00:42:08 +08:00
|
|
|
if (notifyCount > 0 && !Discourse.User.currentProp('dynamic_favicon')) {
|
2013-06-03 08:38:57 +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;
|
2014-10-10 02:37:23 +08:00
|
|
|
}.observes('_docTitle', 'hasFocus', 'notifyCount'),
|
2013-02-21 02:15:50 +08:00
|
|
|
|
2013-06-08 08:15:49 +08:00
|
|
|
faviconChanged: function() {
|
2013-08-09 00:42:08 +08:00
|
|
|
if(Discourse.User.currentProp('dynamic_favicon')) {
|
2013-08-19 02:26:03 +08:00
|
|
|
new Favcount(Discourse.SiteSettings.favicon_url).set(
|
|
|
|
this.get('notifyCount')
|
2013-06-08 08:15:49 +08:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}.observes('notifyCount'),
|
|
|
|
|
2013-02-27 03:54:43 +08:00
|
|
|
// The classes of buttons to show on a post
|
|
|
|
postButtons: function() {
|
|
|
|
return Discourse.SiteSettings.post_menu.split("|").map(function(i) {
|
2015-08-12 05:34:02 +08:00
|
|
|
return i.replace(/\+/, '').capitalize();
|
2013-02-27 03:54:43 +08:00
|
|
|
});
|
2014-02-13 12:02:34 +08:00
|
|
|
}.property(),
|
2013-02-27 03:54:43 +08:00
|
|
|
|
2013-06-03 08:38:57 +08:00
|
|
|
notifyTitle: function(count) {
|
|
|
|
this.set('notifyCount', count);
|
2013-02-23 04:41:12 +08:00
|
|
|
},
|
2013-02-21 02:15:50 +08:00
|
|
|
|
2013-02-27 03:54:43 +08:00
|
|
|
/**
|
|
|
|
Log the current user out of Discourse
|
|
|
|
|
|
|
|
@method logout
|
|
|
|
**/
|
2013-02-23 04:41:12 +08:00
|
|
|
logout: function() {
|
2013-05-28 23:08:32 +08:00
|
|
|
Discourse.User.logout().then(function() {
|
2013-04-04 04:06:55 +08:00
|
|
|
// Reloading will refresh unbound properties
|
2013-05-28 23:08:32 +08:00
|
|
|
Discourse.KeyValueStore.abandonLocal();
|
2014-08-15 10:57:29 +08:00
|
|
|
|
|
|
|
var redirect = Discourse.SiteSettings.logout_redirect;
|
|
|
|
if(redirect.length === 0){
|
|
|
|
window.location.pathname = Discourse.getURL('/');
|
|
|
|
} else {
|
|
|
|
window.location.href = redirect;
|
|
|
|
}
|
|
|
|
|
2013-06-22 02:06:20 +08:00
|
|
|
});
|
2013-02-23 04:41:12 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
authenticationComplete: function(options) {
|
2013-05-31 02:12:33 +08:00
|
|
|
// TODO, how to dispatch this to the controller without the container?
|
|
|
|
var loginController = Discourse.__container__.lookup('controller:login');
|
|
|
|
return loginController.authenticationComplete(options);
|
2013-02-23 04:41:12 +08:00
|
|
|
},
|
2013-02-27 03:54:43 +08:00
|
|
|
|
2013-04-02 04:28:26 +08:00
|
|
|
/**
|
2013-12-04 03:22:32 +08:00
|
|
|
Start up the Discourse application by running all the initializers we've defined.
|
2013-04-02 04:28:26 +08:00
|
|
|
|
|
|
|
@method start
|
|
|
|
**/
|
2013-02-23 04:41:12 +08:00
|
|
|
start: function() {
|
2014-05-16 05:01:01 +08:00
|
|
|
|
2014-06-17 09:01:48 +08:00
|
|
|
$('noscript').remove();
|
|
|
|
|
2014-05-29 03:32:42 +08:00
|
|
|
Ember.keys(requirejs._eak_seen).forEach(function(key) {
|
2015-08-12 05:34:02 +08:00
|
|
|
if (/\/pre\-initializers\//.test(key)) {
|
2014-05-29 03:32:42 +08:00
|
|
|
var module = require(key, null, null, true);
|
|
|
|
if (!module) { throw new Error(key + ' must export an initializer.'); }
|
|
|
|
Discourse.initializer(module.default);
|
|
|
|
}
|
2014-05-16 05:01:01 +08:00
|
|
|
});
|
|
|
|
|
2015-08-12 05:34:02 +08:00
|
|
|
Ember.keys(requirejs._eak_seen).forEach(function(key) {
|
|
|
|
if (/\/initializers\//.test(key)) {
|
|
|
|
var module = require(key, null, null, true);
|
|
|
|
if (!module) { throw new Error(key + ' must export an initializer.'); }
|
|
|
|
|
|
|
|
var init = module.default;
|
|
|
|
var oldInitialize = init.initialize;
|
|
|
|
init.initialize = function(app) {
|
2015-08-18 23:10:50 +08:00
|
|
|
oldInitialize.call(this, app.container, Discourse);
|
2015-08-12 05:34:02 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
Discourse.instanceInitializer(init);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2014-01-14 13:59:08 +08:00
|
|
|
},
|
|
|
|
|
2014-01-15 09:07:42 +08:00
|
|
|
requiresRefresh: function(){
|
|
|
|
var desired = Discourse.get("desiredAssetVersion");
|
|
|
|
return desired && Discourse.get("currentAssetVersion") !== desired;
|
|
|
|
}.property("currentAssetVersion", "desiredAssetVersion"),
|
|
|
|
|
2015-08-12 05:34:02 +08:00
|
|
|
|
|
|
|
assetVersion: Ember.computed({
|
|
|
|
get: function() {
|
|
|
|
return this.get("currentAssetVersion");
|
|
|
|
},
|
|
|
|
set: function(key, val) {
|
|
|
|
if(val) {
|
|
|
|
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
|
|
|
})
|
2013-02-23 04:41:12 +08:00
|
|
|
});
|
2015-02-27 04:54:39 +08:00
|
|
|
|
|
|
|
// TODO: Remove this, it is in for backwards compatibiltiy with plugins
|
|
|
|
Discourse.HasCurrentUser = {};
|
2015-08-12 02:07:08 +08:00
|
|
|
|
|
|
|
function proxyDep(propName, moduleFunc, msg) {
|
|
|
|
if (Discourse.hasOwnProperty(propName)) { return; }
|
|
|
|
Object.defineProperty(Discourse, propName, {
|
|
|
|
get: function() {
|
|
|
|
msg = msg || "import the module";
|
|
|
|
Ember.warn("DEPRECATION: `Discourse." + propName + "` is deprecated, " + msg + ".");
|
|
|
|
return moduleFunc();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
proxyDep('computed', function() { return require('discourse/lib/computed') });
|
|
|
|
proxyDep('Formatter', function() { return require('discourse/lib/formatter') });
|
|
|
|
proxyDep('PageTracker', function() { return require('discourse/lib/page-tracker').default });
|
2015-08-12 00:27:07 +08:00
|
|
|
proxyDep('URL', function() { return require('discourse/lib/url').default });
|
|
|
|
proxyDep('Quote', function() { return require('discourse/lib/quote').default });
|
|
|
|
proxyDep('debounce', function() { return require('discourse/lib/debounce').default });
|
|
|
|
proxyDep('View', function() { return Ember.View }, "Use `Ember.View` instead");
|