178 lines
5.0 KiB
JavaScript
178 lines
5.0 KiB
JavaScript
/*global Favcount:true*/
|
|
|
|
/**
|
|
The main Discourse Application
|
|
|
|
@class Discourse
|
|
@extends Ember.Application
|
|
**/
|
|
var DiscourseResolver = require('discourse/ember/resolver').default;
|
|
|
|
window.Discourse = Ember.Application.createWithMixins(Discourse.Ajax, {
|
|
rootElement: '#main',
|
|
|
|
getURL: function(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);
|
|
}
|
|
if (url.indexOf(u) !== -1) return url;
|
|
return u + url;
|
|
},
|
|
|
|
Resolver: DiscourseResolver,
|
|
|
|
titleChanged: function() {
|
|
var title = "";
|
|
|
|
if (this.get('title')) {
|
|
title += "" + (this.get('title')) + " - ";
|
|
}
|
|
title += Discourse.SiteSettings.title;
|
|
|
|
// 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;
|
|
}
|
|
|
|
if(title !== document.title) {
|
|
// chrome bug workaround see: http://stackoverflow.com/questions/2952384/changing-the-window-title-when-focussing-the-window-doesnt-work-in-chrome
|
|
window.setTimeout(function() {
|
|
document.title = ".";
|
|
document.title = title;
|
|
}, 200);
|
|
}
|
|
}.observes('title', 'hasFocus', 'notifyCount'),
|
|
|
|
faviconChanged: function() {
|
|
if(Discourse.User.currentProp('dynamic_favicon')) {
|
|
new Favcount(Discourse.SiteSettings.favicon_url).set(
|
|
this.get('notifyCount')
|
|
);
|
|
}
|
|
}.observes('notifyCount'),
|
|
|
|
// The classes of buttons to show on a post
|
|
postButtons: function() {
|
|
return Discourse.SiteSettings.post_menu.split("|").map(function(i) {
|
|
return (i.replace(/\+/, '').capitalize());
|
|
});
|
|
}.property(),
|
|
|
|
notifyTitle: function(count) {
|
|
this.set('notifyCount', count);
|
|
},
|
|
|
|
/**
|
|
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);
|
|
},
|
|
|
|
loginRequired: function() {
|
|
return Discourse.SiteSettings.login_required && !Discourse.User.current();
|
|
}.property().volatile(),
|
|
|
|
redirectIfLoginRequired: function(route) {
|
|
if(this.get('loginRequired')) { route.transitionTo('login'); }
|
|
},
|
|
|
|
/**
|
|
Start up the Discourse application by running all the initializers we've defined.
|
|
|
|
@method start
|
|
**/
|
|
start: function() {
|
|
|
|
$('noscript').remove();
|
|
|
|
// Load any ES6 initializers
|
|
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(),
|
|
|
|
globalNotice: function(){
|
|
var notices = [];
|
|
|
|
if(this.get("isReadOnly")){
|
|
notices.push(I18n.t("read_only_mode.enabled"));
|
|
}
|
|
|
|
if(Discourse.User.currentProp('admin') && Discourse.SiteSettings.show_create_topics_notice) {
|
|
var topic_count = 0,
|
|
post_count = 0;
|
|
_.each(Discourse.Site.currentProp('categories'), function(c) {
|
|
if (!c.get('read_restricted')) {
|
|
topic_count += c.get('topic_count');
|
|
post_count += c.get('post_count');
|
|
}
|
|
});
|
|
if (topic_count < 5 || post_count < Discourse.SiteSettings.basic_requires_read_posts) {
|
|
notices.push(I18n.t("too_few_topics_notice", {posts: Discourse.SiteSettings.basic_requires_read_posts}));
|
|
}
|
|
}
|
|
|
|
if(!_.isEmpty(Discourse.SiteSettings.global_notice)){
|
|
notices.push(Discourse.SiteSettings.global_notice);
|
|
}
|
|
|
|
if(notices.length > 0) {
|
|
return new Handlebars.SafeString(_.map(notices, function(text) {
|
|
return "<div class='row'><div class='alert alert-info'>" + text + "</div></div>";
|
|
}).join(""));
|
|
}
|
|
}.property("isReadOnly")
|
|
|
|
});
|