discourse/app/assets/javascripts/discourse.js

148 lines
4.0 KiB
JavaScript
Raw Normal View History

/*global Favcount:true*/
2014-08-07 11:47:45 -04:00
var DiscourseResolver = require('discourse/ember/resolver').default;
2015-05-11 13:16:44 -04:00
// Allow us to import Ember
define('ember', ['exports'], function(__exports__) {
__exports__["default"] = Ember;
});
2013-12-30 12:42:05 -05:00
window.Discourse = Ember.Application.createWithMixins(Discourse.Ajax, {
rootElement: '#main',
_docTitle: document.title,
getURL: function(url) {
if (!url) { return url; }
// If it's a non relative URL, return it.
if (url.indexOf('http') === 0) return url;
var u = (Discourse.BaseUri === undefined ? "/" : Discourse.BaseUri);
if (u[u.length-1] === '/') {
u = u.substring(0, u.length-1);
}
2013-11-12 11:25:27 -05:00
if (url.indexOf(u) !== -1) return url;
if(u.length > 0 && url[0] !== "/") {
// we got to root this
url = "/" + url;
}
return u + url;
},
getURLWithCDN: function(url) {
url = this.getURL(url);
// https:// and http:// and // should be skipped, only /xyz is allowed here
if (Discourse.CDN && url[1] !== "/") {
url = Discourse.CDN + url;
} else if (Discourse.S3CDN) {
url = url.replace(Discourse.S3BaseUrl, Discourse.S3CDN);
}
return url;
},
2014-08-07 11:47:45 -04:00
Resolver: DiscourseResolver,
_titleChanged: function() {
var title = this.get('_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.
if($('title').text() !== title) {
$('title').text(title);
}
var notifyCount = this.get('notifyCount');
if (notifyCount > 0 && !Discourse.User.currentProp('dynamic_favicon')) {
title = "(" + notifyCount + ") " + title;
}
2014-01-08 18:26:53 -05:00
document.title = title;
}.observes('_docTitle', 'hasFocus', 'notifyCount'),
2013-06-07 20:15:49 -04:00
faviconChanged: function() {
if(Discourse.User.currentProp('dynamic_favicon')) {
new Favcount(Discourse.SiteSettings.favicon_url).set(
this.get('notifyCount')
2013-06-07 20:15:49 -04:00
);
}
}.observes('notifyCount'),
2013-02-26 14:54:43 -05:00
// The classes of buttons to show on a post
postButtons: function() {
return Discourse.SiteSettings.post_menu.split("|").map(function(i) {
return (i.replace(/\+/, '').capitalize());
});
2014-02-12 23:02:34 -05:00
}.property(),
2013-02-26 14:54:43 -05:00
notifyTitle: function(count) {
this.set('notifyCount', count);
},
2013-02-26 14:54:43 -05:00
/**
Log the current user out of Discourse
@method logout
**/
logout: function() {
Discourse.User.logout().then(function() {
// Reloading will refresh unbound properties
Discourse.KeyValueStore.abandonLocal();
var redirect = Discourse.SiteSettings.logout_redirect;
if(redirect.length === 0){
window.location.pathname = Discourse.getURL('/');
} else {
window.location.href = redirect;
}
});
},
authenticationComplete: function(options) {
// TODO, how to dispatch this to the controller without the container?
var loginController = Discourse.__container__.lookup('controller:login');
return loginController.authenticationComplete(options);
},
2013-02-26 14:54:43 -05:00
/**
Start up the Discourse application by running all the initializers we've defined.
@method start
**/
start: function() {
2014-06-16 21:01:48 -04:00
$('noscript').remove();
// Load any ES6 initializers
2014-05-28 15:32:42 -04: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.'); }
Discourse.initializer(module.default);
}
});
},
requiresRefresh: function(){
var desired = Discourse.get("desiredAssetVersion");
return desired && Discourse.get("currentAssetVersion") !== desired;
}.property("currentAssetVersion", "desiredAssetVersion"),
assetVersion: function(prop, val) {
if(val) {
if(this.get("currentAssetVersion")){
this.set("desiredAssetVersion", val);
} else {
this.set("currentAssetVersion", val);
}
}
return this.get("currentAssetVersion");
}.property()
});
// TODO: Remove this, it is in for backwards compatibiltiy with plugins
Discourse.HasCurrentUser = {};