discourse/app/assets/javascripts/discourse.js

172 lines
4.9 KiB
JavaScript
Raw Normal View History

/*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, {
rootElement: '#main',
_docTitle: document.title,
getURL: function(url) {
if (!url) return url;
// if it's a non relative URL, return it.
if (url !== '/' && !/^\/[^\/]/.test(url)) return url;
if (url.indexOf(Discourse.BaseUri) !== -1) return url;
if (url[0] !== "/") url = "/" + url;
return Discourse.BaseUri + url;
},
getURLWithCDN: function(url) {
url = this.getURL(url);
// only relative urls
2015-07-16 01:24:23 +08:00
if (Discourse.CDN && /^\/[^\/]/.test(url)) {
url = Discourse.CDN + url;
} else if (Discourse.S3CDN) {
url = url.replace(Discourse.S3BaseUrl, Discourse.S3CDN);
}
return url;
},
2014-08-07 23:47:45 +08:00
Resolver: DiscourseResolver,
_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);
}
var notifyCount = this.get('notifyCount');
if (notifyCount > 0 && !Discourse.User.currentProp('dynamic_favicon')) {
title = "(" + notifyCount + ") " + title;
}
2014-01-09 07:26:53 +08:00
document.title = title;
}.observes('_docTitle', 'hasFocus', 'notifyCount'),
2013-06-08 08:15:49 +08:00
faviconChanged: function() {
if(Discourse.User.currentProp('dynamic_favicon')) {
var url = Discourse.SiteSettings.favicon_url;
if (/^http/.test(url)) {
url = Discourse.getURL("/favicon/proxied?" + encodeURIComponent(url));
}
new Favcount(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
notifyTitle: function(count) {
this.set('notifyCount', count);
},
notifyBackgroundCountIncrement: function() {
if (!this.get('hasFocus')) {
this.set('backgroundNotify', true);
this.set('notifyCount', (this.get('notifyCount') || 0) + 1);
}
},
resetBackgroundNotifyCount: function() {
if (this.get('hasFocus') && this.get('backgroundNotify')) {
this.set('notifyCount', 0);
}
this.set('backgroundNotify', false);
}.observes('hasFocus'),
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-27 03:54:43 +08:00
/**
Start up the Discourse application by running all the initializers we've defined.
@method start
**/
start: function() {
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);
}
});
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) {
oldInitialize.call(this, app.container, Discourse);
2015-08-12 05:34:02 +08:00
};
Discourse.instanceInitializer(init);
}
});
},
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);
}
}
2015-08-12 05:34:02 +08:00
return this.get("currentAssetVersion");
}
2015-08-12 05:34:02 +08:00
})
});
function RemovedObject(name) {
this._removedName = name;
}
function methodMissing() {
console.warn("The " + this._removedName + " object has been removed from Discourse " +
"and your plugin needs to be updated.");
};
2016-02-13 05:57:24 +08:00
Discourse.RemovedObject = RemovedObject;
['reopen', 'registerButton', 'on', 'off'].forEach(function(m) { RemovedObject.prototype[m] = methodMissing; });
['discourse/views/post', 'discourse/components/post-menu'].forEach(function(moduleName) {
define(moduleName, [], function() { return new RemovedObject(moduleName); });
});