mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 02:30:57 +08:00
5fc150e057
Properly sends the title of the page to google analytics
134 lines
3.7 KiB
JavaScript
134 lines
3.7 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',
|
|
_docTitle: null,
|
|
|
|
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 = this.get('_docTitle') || 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('_docTitle', '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);
|
|
},
|
|
|
|
/**
|
|
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()
|
|
|
|
});
|