2012-07-12 01:31:19 +00:00
|
|
|
// This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
// License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
|
2013-03-26 23:15:59 +00:00
|
|
|
// the "exported" symbols
|
|
|
|
let SocialUI,
|
|
|
|
SocialChatBar,
|
|
|
|
SocialFlyout,
|
2013-09-06 17:56:01 +00:00
|
|
|
SocialMarks,
|
2013-05-07 06:02:58 +00:00
|
|
|
SocialShare,
|
2013-09-09 21:37:04 +00:00
|
|
|
SocialSidebar,
|
|
|
|
SocialStatus;
|
2013-03-26 23:15:59 +00:00
|
|
|
|
|
|
|
(function() {
|
|
|
|
|
2012-10-05 03:32:38 +00:00
|
|
|
// The minimum sizes for the auto-resize panel code.
|
2012-10-08 06:14:55 +00:00
|
|
|
const PANEL_MIN_HEIGHT = 100;
|
2012-10-05 03:32:38 +00:00
|
|
|
const PANEL_MIN_WIDTH = 330;
|
|
|
|
|
2012-12-07 07:38:46 +00:00
|
|
|
XPCOMUtils.defineLazyModuleGetter(this, "SharedFrame",
|
|
|
|
"resource:///modules/SharedFrame.jsm");
|
|
|
|
|
2013-05-07 06:02:58 +00:00
|
|
|
XPCOMUtils.defineLazyGetter(this, "OpenGraphBuilder", function() {
|
|
|
|
let tmp = {};
|
|
|
|
Cu.import("resource:///modules/Social.jsm", tmp);
|
|
|
|
return tmp.OpenGraphBuilder;
|
|
|
|
});
|
|
|
|
|
2013-09-06 17:56:01 +00:00
|
|
|
XPCOMUtils.defineLazyGetter(this, "DynamicResizeWatcher", function() {
|
|
|
|
let tmp = {};
|
|
|
|
Cu.import("resource:///modules/Social.jsm", tmp);
|
|
|
|
return tmp.DynamicResizeWatcher;
|
|
|
|
});
|
|
|
|
|
|
|
|
XPCOMUtils.defineLazyGetter(this, "sizeSocialPanelToContent", function() {
|
|
|
|
let tmp = {};
|
|
|
|
Cu.import("resource:///modules/Social.jsm", tmp);
|
|
|
|
return tmp.sizeSocialPanelToContent;
|
|
|
|
});
|
|
|
|
|
2013-12-17 05:21:17 +00:00
|
|
|
XPCOMUtils.defineLazyGetter(this, "CreateSocialStatusWidget", function() {
|
|
|
|
let tmp = {};
|
|
|
|
Cu.import("resource:///modules/Social.jsm", tmp);
|
|
|
|
return tmp.CreateSocialStatusWidget;
|
|
|
|
});
|
|
|
|
|
|
|
|
XPCOMUtils.defineLazyGetter(this, "CreateSocialMarkWidget", function() {
|
|
|
|
let tmp = {};
|
|
|
|
Cu.import("resource:///modules/Social.jsm", tmp);
|
|
|
|
return tmp.CreateSocialMarkWidget;
|
|
|
|
});
|
|
|
|
|
2013-03-26 23:15:59 +00:00
|
|
|
SocialUI = {
|
2012-12-08 04:13:27 +00:00
|
|
|
// Called on delayed startup to initialize the UI
|
2012-07-12 01:31:19 +00:00
|
|
|
init: function SocialUI_init() {
|
2012-07-15 23:12:13 +00:00
|
|
|
Services.obs.addObserver(this, "social:ambient-notification-changed", false);
|
|
|
|
Services.obs.addObserver(this, "social:profile-changed", false);
|
2012-10-30 20:10:04 +00:00
|
|
|
Services.obs.addObserver(this, "social:frameworker-error", false);
|
2012-12-08 04:13:27 +00:00
|
|
|
Services.obs.addObserver(this, "social:provider-set", false);
|
2013-02-08 19:39:25 +00:00
|
|
|
Services.obs.addObserver(this, "social:providers-changed", false);
|
2013-08-21 18:32:46 +00:00
|
|
|
Services.obs.addObserver(this, "social:provider-reload", false);
|
2013-09-04 17:01:38 +00:00
|
|
|
Services.obs.addObserver(this, "social:provider-enabled", false);
|
|
|
|
Services.obs.addObserver(this, "social:provider-disabled", false);
|
2012-07-15 23:12:13 +00:00
|
|
|
|
2012-07-18 18:40:05 +00:00
|
|
|
Services.prefs.addObserver("social.sidebar.open", this, false);
|
2012-09-27 00:40:18 +00:00
|
|
|
Services.prefs.addObserver("social.toast-notifications.enabled", this, false);
|
2012-07-18 18:40:05 +00:00
|
|
|
|
2013-02-08 19:39:25 +00:00
|
|
|
gBrowser.addEventListener("ActivateSocialFeature", this._activationEventHandler.bind(this), true, true);
|
2013-12-17 05:24:44 +00:00
|
|
|
document.getElementById("PanelUI-popup").addEventListener("popupshown", SocialMarks.updatePanelButtons, true);
|
2012-06-22 22:01:34 +00:00
|
|
|
|
2013-12-17 05:37:30 +00:00
|
|
|
// menupopups that list social providers. we only populate them when shown,
|
|
|
|
// and if it has not been done already.
|
|
|
|
document.getElementById("viewSidebarMenu").addEventListener("popupshowing", SocialSidebar.populateSidebarMenu, true);
|
|
|
|
document.getElementById("social-statusarea-popup").addEventListener("popupshowing", SocialSidebar.populateSidebarMenu, true);
|
|
|
|
|
2013-03-07 06:25:31 +00:00
|
|
|
if (!Social.initialized) {
|
|
|
|
Social.init();
|
2013-08-30 18:11:20 +00:00
|
|
|
} else if (Social.providers.length > 0) {
|
|
|
|
// Social was initialized during startup in a previous window. If we have
|
|
|
|
// providers enabled initialize the UI for this window.
|
2013-02-20 01:23:47 +00:00
|
|
|
this.observe(null, "social:providers-changed", null);
|
2013-03-07 06:25:31 +00:00
|
|
|
this.observe(null, "social:provider-set", Social.provider ? Social.provider.origin : null);
|
2013-02-20 01:23:47 +00:00
|
|
|
}
|
2012-07-12 01:31:19 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
// Called on window unload
|
|
|
|
uninit: function SocialUI_uninit() {
|
2012-07-15 23:12:13 +00:00
|
|
|
Services.obs.removeObserver(this, "social:ambient-notification-changed");
|
|
|
|
Services.obs.removeObserver(this, "social:profile-changed");
|
2012-10-30 20:10:04 +00:00
|
|
|
Services.obs.removeObserver(this, "social:frameworker-error");
|
2012-12-08 04:13:27 +00:00
|
|
|
Services.obs.removeObserver(this, "social:provider-set");
|
2013-02-08 19:39:25 +00:00
|
|
|
Services.obs.removeObserver(this, "social:providers-changed");
|
2013-08-21 18:32:46 +00:00
|
|
|
Services.obs.removeObserver(this, "social:provider-reload");
|
2013-09-04 17:01:38 +00:00
|
|
|
Services.obs.removeObserver(this, "social:provider-enabled");
|
|
|
|
Services.obs.removeObserver(this, "social:provider-disabled");
|
2012-07-18 18:40:05 +00:00
|
|
|
|
|
|
|
Services.prefs.removeObserver("social.sidebar.open", this);
|
2012-09-27 00:40:18 +00:00
|
|
|
Services.prefs.removeObserver("social.toast-notifications.enabled", this);
|
2013-12-17 05:24:44 +00:00
|
|
|
|
|
|
|
document.getElementById("PanelUI-popup").removeEventListener("popupshown", SocialMarks.updatePanelButtons, true);
|
2013-12-17 05:37:30 +00:00
|
|
|
document.getElementById("viewSidebarMenu").removeEventListener("popupshowing", SocialSidebar.populateSidebarMenu, true);
|
|
|
|
document.getElementById("social-statusarea-popup").removeEventListener("popupshowing", SocialSidebar.populateSidebarMenu, true);
|
2012-07-12 01:31:19 +00:00
|
|
|
},
|
|
|
|
|
2012-12-08 04:13:27 +00:00
|
|
|
_matchesCurrentProvider: function (origin) {
|
|
|
|
return Social.provider && Social.provider.origin == origin;
|
|
|
|
},
|
2012-06-22 22:01:34 +00:00
|
|
|
|
2012-12-08 04:13:27 +00:00
|
|
|
observe: function SocialUI_observe(subject, topic, data) {
|
|
|
|
// Exceptions here sometimes don't get reported properly, report them
|
|
|
|
// manually :(
|
|
|
|
try {
|
|
|
|
switch (topic) {
|
2013-09-04 17:01:38 +00:00
|
|
|
case "social:provider-enabled":
|
2013-09-06 17:56:01 +00:00
|
|
|
SocialMarks.populateToolbarPalette();
|
2013-09-04 17:01:38 +00:00
|
|
|
SocialStatus.populateToolbarPalette();
|
|
|
|
break;
|
|
|
|
case "social:provider-disabled":
|
2013-09-06 17:56:01 +00:00
|
|
|
SocialMarks.removeProvider(data);
|
2013-09-04 17:01:38 +00:00
|
|
|
SocialStatus.removeProvider(data);
|
|
|
|
break;
|
2013-08-21 18:32:46 +00:00
|
|
|
case "social:provider-reload":
|
2013-12-16 23:10:30 +00:00
|
|
|
SocialStatus.reloadProvider(data);
|
2013-08-21 18:32:46 +00:00
|
|
|
// if the reloaded provider is our current provider, fall through
|
|
|
|
// to social:provider-set so the ui will be reset
|
|
|
|
if (!Social.provider || Social.provider.origin != data)
|
|
|
|
return;
|
|
|
|
// be sure to unload the sidebar as it will not reload if the origin
|
|
|
|
// has not changed, it will be loaded in provider-set below. Other
|
|
|
|
// panels will be unloaded or handle reload.
|
|
|
|
SocialSidebar.unloadSidebar();
|
|
|
|
// fall through to social:provider-set
|
2012-12-08 04:13:27 +00:00
|
|
|
case "social:provider-set":
|
2013-03-07 06:25:31 +00:00
|
|
|
// Social.provider has changed (possibly to null), update any state
|
|
|
|
// which depends on it.
|
|
|
|
this._updateActiveUI();
|
|
|
|
|
2013-03-18 19:44:04 +00:00
|
|
|
SocialFlyout.unload();
|
2013-03-07 06:25:31 +00:00
|
|
|
SocialChatBar.update();
|
2013-05-07 06:02:58 +00:00
|
|
|
SocialShare.update();
|
2013-03-07 06:25:31 +00:00
|
|
|
SocialSidebar.update();
|
2013-09-04 17:01:38 +00:00
|
|
|
SocialStatus.populateToolbarPalette();
|
2013-09-06 17:56:01 +00:00
|
|
|
SocialMarks.populateToolbarPalette();
|
2012-12-08 04:13:27 +00:00
|
|
|
break;
|
2013-02-08 19:39:25 +00:00
|
|
|
case "social:providers-changed":
|
|
|
|
// the list of providers changed - this may impact the "active" UI.
|
|
|
|
this._updateActiveUI();
|
|
|
|
// and the multi-provider menu
|
2013-12-17 05:37:30 +00:00
|
|
|
SocialSidebar.clearProviderMenus();
|
2013-05-07 06:02:58 +00:00
|
|
|
SocialShare.populateProviderMenu();
|
2013-09-04 17:01:38 +00:00
|
|
|
SocialStatus.populateToolbarPalette();
|
2013-09-06 17:56:01 +00:00
|
|
|
SocialMarks.populateToolbarPalette();
|
2013-02-08 19:39:25 +00:00
|
|
|
break;
|
2012-12-08 04:13:27 +00:00
|
|
|
|
|
|
|
// Provider-specific notifications
|
|
|
|
case "social:ambient-notification-changed":
|
2013-11-25 12:39:12 +00:00
|
|
|
SocialStatus.updateButton(data);
|
2012-12-08 04:13:27 +00:00
|
|
|
break;
|
|
|
|
case "social:profile-changed":
|
2013-09-30 18:05:17 +00:00
|
|
|
// make sure anything that happens here only affects the provider for
|
|
|
|
// which the profile is changing, and that anything we call actually
|
|
|
|
// needs to change based on profile data.
|
2013-11-25 12:39:12 +00:00
|
|
|
SocialStatus.updateButton(data);
|
2012-12-08 04:13:27 +00:00
|
|
|
break;
|
|
|
|
case "social:frameworker-error":
|
2013-01-24 10:14:36 +00:00
|
|
|
if (this.enabled && Social.provider.origin == data) {
|
2013-01-26 20:07:39 +00:00
|
|
|
SocialSidebar.setSidebarErrorMessage();
|
2012-12-08 04:13:27 +00:00
|
|
|
}
|
|
|
|
break;
|
2012-07-23 03:49:28 +00:00
|
|
|
|
2012-12-08 04:13:27 +00:00
|
|
|
case "nsPref:changed":
|
|
|
|
if (data == "social.sidebar.open") {
|
|
|
|
SocialSidebar.update();
|
2013-01-21 04:38:35 +00:00
|
|
|
} else if (data == "social.toast-notifications.enabled") {
|
2013-12-17 05:37:30 +00:00
|
|
|
SocialSidebar.updateToggleNotifications();
|
2012-12-08 04:13:27 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} catch (e) {
|
2013-01-07 20:42:02 +00:00
|
|
|
Components.utils.reportError(e + "\n" + e.stack);
|
2012-12-08 04:13:27 +00:00
|
|
|
throw e;
|
|
|
|
}
|
|
|
|
},
|
2012-10-30 06:28:31 +00:00
|
|
|
|
2012-12-08 04:13:27 +00:00
|
|
|
_updateActiveUI: function SocialUI_updateActiveUI() {
|
2013-01-24 10:14:36 +00:00
|
|
|
// The "active" UI isn't dependent on there being a provider, just on
|
|
|
|
// social being "active" (but also chromeless/PB)
|
2013-02-08 19:39:25 +00:00
|
|
|
let enabled = Social.providers.length > 0 && !this._chromeless &&
|
2013-01-29 18:12:13 +00:00
|
|
|
!PrivateBrowsingUtils.isWindowPrivate(window);
|
2012-12-08 04:13:27 +00:00
|
|
|
|
|
|
|
let toggleCommand = document.getElementById("Social:Toggle");
|
2013-01-24 10:14:36 +00:00
|
|
|
toggleCommand.setAttribute("hidden", enabled ? "false" : "true");
|
2013-02-05 05:42:18 +00:00
|
|
|
|
|
|
|
if (enabled) {
|
2013-02-08 19:39:25 +00:00
|
|
|
// enabled == true means we at least have a defaultProvider
|
|
|
|
let provider = Social.provider || Social.defaultProvider;
|
2013-02-05 05:42:18 +00:00
|
|
|
// We only need to update the command itself - all our menu items use it.
|
2013-09-19 16:25:56 +00:00
|
|
|
let label;
|
|
|
|
if (Social.providers.length == 1) {
|
|
|
|
label = gNavigatorBundle.getFormattedString(Social.provider
|
|
|
|
? "social.turnOff.label"
|
|
|
|
: "social.turnOn.label",
|
|
|
|
[provider.name]);
|
|
|
|
} else {
|
|
|
|
label = gNavigatorBundle.getString(Social.provider
|
|
|
|
? "social.turnOffAll.label"
|
|
|
|
: "social.turnOnAll.label");
|
|
|
|
}
|
|
|
|
let accesskey = gNavigatorBundle.getString(Social.provider
|
|
|
|
? "social.turnOff.accesskey"
|
|
|
|
: "social.turnOn.accesskey");
|
2013-02-05 05:42:18 +00:00
|
|
|
toggleCommand.setAttribute("label", label);
|
|
|
|
toggleCommand.setAttribute("accesskey", accesskey);
|
|
|
|
}
|
2012-07-23 03:49:28 +00:00
|
|
|
},
|
|
|
|
|
2012-06-22 22:01:34 +00:00
|
|
|
// This handles "ActivateSocialFeature" events fired against content documents
|
|
|
|
// in this window.
|
|
|
|
_activationEventHandler: function SocialUI_activationHandler(e) {
|
2013-03-05 19:24:30 +00:00
|
|
|
let targetDoc;
|
|
|
|
let node;
|
|
|
|
if (e.target instanceof HTMLDocument) {
|
|
|
|
// version 0 support
|
|
|
|
targetDoc = e.target;
|
|
|
|
node = targetDoc.documentElement
|
|
|
|
} else {
|
|
|
|
targetDoc = e.target.ownerDocument;
|
|
|
|
node = e.target;
|
|
|
|
}
|
2012-06-22 22:01:34 +00:00
|
|
|
if (!(targetDoc instanceof HTMLDocument))
|
|
|
|
return;
|
|
|
|
|
2013-03-05 19:24:30 +00:00
|
|
|
// Ignore events fired in background tabs or iframes
|
|
|
|
if (targetDoc.defaultView != content)
|
2012-06-22 22:01:34 +00:00
|
|
|
return;
|
|
|
|
|
2013-01-24 10:14:36 +00:00
|
|
|
// If we are in PB mode, we silently do nothing (bug 829404 exists to
|
|
|
|
// do something sensible here...)
|
|
|
|
if (PrivateBrowsingUtils.isWindowPrivate(window))
|
|
|
|
return;
|
|
|
|
|
2012-06-22 22:01:34 +00:00
|
|
|
// If the last event was received < 1s ago, ignore this one
|
|
|
|
let now = Date.now();
|
|
|
|
if (now - Social.lastEventReceived < 1000)
|
|
|
|
return;
|
|
|
|
Social.lastEventReceived = now;
|
|
|
|
|
2013-03-05 19:24:30 +00:00
|
|
|
// We only want to activate if it is as a result of user input.
|
|
|
|
let dwu = window.QueryInterface(Ci.nsIInterfaceRequestor)
|
|
|
|
.getInterface(Ci.nsIDOMWindowUtils);
|
|
|
|
if (!dwu.isHandlingUserInput) {
|
|
|
|
Cu.reportError("attempt to activate provider without user input from " + targetDoc.nodePrincipal.origin);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
let data = node.getAttribute("data-service");
|
|
|
|
if (data) {
|
|
|
|
try {
|
|
|
|
data = JSON.parse(data);
|
|
|
|
} catch(e) {
|
|
|
|
Cu.reportError("Social Service manifest parse error: "+e);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2013-03-21 20:34:26 +00:00
|
|
|
Social.installProvider(targetDoc, data, function(manifest) {
|
2013-12-17 05:38:22 +00:00
|
|
|
Social.activateFromOrigin(manifest.origin);
|
2013-02-08 19:39:25 +00:00
|
|
|
});
|
2012-06-22 22:01:34 +00:00
|
|
|
},
|
|
|
|
|
2013-04-02 23:28:30 +00:00
|
|
|
showLearnMore: function() {
|
|
|
|
let url = Services.urlFormatter.formatURLPref("app.support.baseURL") + "social-api";
|
|
|
|
openUILinkIn(url, "tab");
|
|
|
|
},
|
|
|
|
|
2012-10-16 06:58:13 +00:00
|
|
|
closeSocialPanelForLinkTraversal: function (target, linkNode) {
|
|
|
|
// No need to close the panel if this traversal was not retargeted
|
|
|
|
if (target == "" || target == "_self")
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Check to see whether this link traversal was in a social panel
|
|
|
|
let win = linkNode.ownerDocument.defaultView;
|
|
|
|
let container = win.QueryInterface(Ci.nsIInterfaceRequestor)
|
|
|
|
.getInterface(Ci.nsIWebNavigation)
|
|
|
|
.QueryInterface(Ci.nsIDocShell)
|
|
|
|
.chromeEventHandler;
|
|
|
|
let containerParent = container.parentNode;
|
|
|
|
if (containerParent.classList.contains("social-panel") &&
|
|
|
|
containerParent instanceof Ci.nsIDOMXULPopupElement) {
|
2013-08-30 16:30:00 +00:00
|
|
|
// allow the link traversal to finish before closing the panel
|
|
|
|
setTimeout(() => {
|
|
|
|
containerParent.hidePopup();
|
|
|
|
}, 0);
|
2012-10-16 06:58:13 +00:00
|
|
|
}
|
2012-10-30 06:25:53 +00:00
|
|
|
},
|
|
|
|
|
2013-01-24 10:14:36 +00:00
|
|
|
get _chromeless() {
|
|
|
|
// Is this a popup window that doesn't want chrome shown?
|
|
|
|
let docElem = document.documentElement;
|
2013-06-14 20:39:42 +00:00
|
|
|
// extrachrome is not restored during session restore, so we need
|
|
|
|
// to check for the toolbar as well.
|
|
|
|
let chromeless = docElem.getAttribute("chromehidden").contains("extrachrome") ||
|
|
|
|
docElem.getAttribute('chromehidden').contains("toolbar");
|
2013-01-24 10:14:36 +00:00
|
|
|
// This property is "fixed" for a window, so avoid doing the check above
|
|
|
|
// multiple times...
|
|
|
|
delete this._chromeless;
|
|
|
|
this._chromeless = chromeless;
|
|
|
|
return chromeless;
|
|
|
|
},
|
|
|
|
|
|
|
|
get enabled() {
|
|
|
|
// Returns whether social is enabled *for this window*.
|
2013-01-29 18:12:13 +00:00
|
|
|
if (this._chromeless || PrivateBrowsingUtils.isWindowPrivate(window))
|
2013-01-24 10:14:36 +00:00
|
|
|
return false;
|
2013-02-08 19:39:25 +00:00
|
|
|
return !!Social.provider;
|
2013-01-24 10:14:36 +00:00
|
|
|
},
|
|
|
|
|
2013-09-06 17:56:01 +00:00
|
|
|
// called on tab/urlbar/location changes and after customization. Update
|
|
|
|
// anything that is tab specific.
|
|
|
|
updateState: function() {
|
|
|
|
if (!this.enabled)
|
|
|
|
return;
|
|
|
|
SocialMarks.update();
|
|
|
|
SocialShare.update();
|
|
|
|
}
|
2012-07-12 01:31:19 +00:00
|
|
|
}
|
|
|
|
|
2013-03-26 23:15:59 +00:00
|
|
|
SocialChatBar = {
|
2012-08-21 00:52:26 +00:00
|
|
|
get chatbar() {
|
|
|
|
return document.getElementById("pinnedchats");
|
|
|
|
},
|
2012-11-13 03:52:06 +00:00
|
|
|
// Whether the chatbar is available for this window. Note that in full-screen
|
|
|
|
// mode chats are available, but not shown.
|
|
|
|
get isAvailable() {
|
2013-08-15 22:30:02 +00:00
|
|
|
return SocialUI.enabled;
|
2012-08-21 00:52:26 +00:00
|
|
|
},
|
2012-12-06 23:56:17 +00:00
|
|
|
// Does this chatbar have any chats (whether minimized, collapsed or normal)
|
|
|
|
get hasChats() {
|
|
|
|
return !!this.chatbar.firstElementChild;
|
|
|
|
},
|
2012-08-26 23:51:24 +00:00
|
|
|
openChat: function(aProvider, aURL, aCallback, aMode) {
|
2013-03-05 00:32:33 +00:00
|
|
|
if (!this.isAvailable)
|
|
|
|
return false;
|
|
|
|
this.chatbar.openChat(aProvider, aURL, aCallback, aMode);
|
|
|
|
// We only want to focus the chat if it is as a result of user input.
|
|
|
|
let dwu = window.QueryInterface(Ci.nsIInterfaceRequestor)
|
|
|
|
.getInterface(Ci.nsIDOMWindowUtils);
|
|
|
|
if (dwu.isHandlingUserInput)
|
|
|
|
this.chatbar.focus();
|
|
|
|
return true;
|
2012-08-21 00:52:26 +00:00
|
|
|
},
|
|
|
|
update: function() {
|
2012-11-27 06:58:55 +00:00
|
|
|
let command = document.getElementById("Social:FocusChat");
|
|
|
|
if (!this.isAvailable) {
|
2013-03-05 19:24:30 +00:00
|
|
|
this.chatbar.hidden = command.hidden = true;
|
2012-11-27 06:58:55 +00:00
|
|
|
} else {
|
2013-05-31 22:52:48 +00:00
|
|
|
this.chatbar.hidden = command.hidden = false;
|
2012-11-13 03:52:06 +00:00
|
|
|
}
|
2012-11-27 06:58:55 +00:00
|
|
|
command.setAttribute("disabled", command.hidden ? "true" : "false");
|
2012-10-24 06:45:59 +00:00
|
|
|
},
|
|
|
|
focus: function SocialChatBar_focus() {
|
2012-11-20 01:54:50 +00:00
|
|
|
this.chatbar.focus();
|
2012-08-21 00:52:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-26 23:15:59 +00:00
|
|
|
SocialFlyout = {
|
2012-08-24 00:11:02 +00:00
|
|
|
get panel() {
|
|
|
|
return document.getElementById("social-flyout-panel");
|
|
|
|
},
|
|
|
|
|
2013-05-31 20:22:51 +00:00
|
|
|
get iframe() {
|
|
|
|
if (!this.panel.firstChild)
|
|
|
|
this._createFrame();
|
|
|
|
return this.panel.firstChild;
|
|
|
|
},
|
|
|
|
|
2012-08-24 00:11:02 +00:00
|
|
|
dispatchPanelEvent: function(name) {
|
2013-05-31 20:22:51 +00:00
|
|
|
let doc = this.iframe.contentDocument;
|
2012-08-24 00:11:02 +00:00
|
|
|
let evt = doc.createEvent("CustomEvent");
|
|
|
|
evt.initCustomEvent(name, true, true, {});
|
|
|
|
doc.documentElement.dispatchEvent(evt);
|
|
|
|
},
|
|
|
|
|
|
|
|
_createFrame: function() {
|
|
|
|
let panel = this.panel;
|
2013-01-24 10:14:36 +00:00
|
|
|
if (!SocialUI.enabled || panel.firstChild)
|
2012-08-24 00:11:02 +00:00
|
|
|
return;
|
|
|
|
// create and initialize the panel for this window
|
|
|
|
let iframe = document.createElement("iframe");
|
|
|
|
iframe.setAttribute("type", "content");
|
2012-09-06 23:13:37 +00:00
|
|
|
iframe.setAttribute("class", "social-panel-frame");
|
2012-08-24 00:11:02 +00:00
|
|
|
iframe.setAttribute("flex", "1");
|
2013-03-18 19:43:51 +00:00
|
|
|
iframe.setAttribute("tooltip", "aHTMLTooltip");
|
2012-08-24 00:11:02 +00:00
|
|
|
iframe.setAttribute("origin", Social.provider.origin);
|
|
|
|
panel.appendChild(iframe);
|
|
|
|
},
|
|
|
|
|
2012-10-06 00:22:09 +00:00
|
|
|
setFlyoutErrorMessage: function SF_setFlyoutErrorMessage() {
|
2013-05-31 20:22:51 +00:00
|
|
|
this.iframe.removeAttribute("src");
|
|
|
|
this.iframe.webNavigation.loadURI("about:socialerror?mode=compactInfo", null, null, null, null);
|
|
|
|
sizeSocialPanelToContent(this.panel, this.iframe);
|
2012-10-06 00:22:09 +00:00
|
|
|
},
|
|
|
|
|
2012-08-24 00:11:02 +00:00
|
|
|
unload: function() {
|
|
|
|
let panel = this.panel;
|
2012-09-26 06:23:25 +00:00
|
|
|
panel.hidePopup();
|
2012-08-24 00:11:02 +00:00
|
|
|
if (!panel.firstChild)
|
|
|
|
return
|
2013-01-26 20:07:39 +00:00
|
|
|
let iframe = panel.firstChild;
|
|
|
|
if (iframe.socialErrorListener)
|
|
|
|
iframe.socialErrorListener.remove();
|
|
|
|
panel.removeChild(iframe);
|
2012-08-24 00:11:02 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
onShown: function(aEvent) {
|
2012-10-08 06:14:55 +00:00
|
|
|
let panel = this.panel;
|
2013-05-31 20:22:51 +00:00
|
|
|
let iframe = this.iframe;
|
2012-10-05 03:32:38 +00:00
|
|
|
this._dynamicResizer = new DynamicResizeWatcher();
|
2012-08-24 00:11:02 +00:00
|
|
|
iframe.docShell.isActive = true;
|
|
|
|
iframe.docShell.isAppTab = true;
|
|
|
|
if (iframe.contentDocument.readyState == "complete") {
|
2012-10-08 06:14:55 +00:00
|
|
|
this._dynamicResizer.start(panel, iframe);
|
2012-08-24 00:11:02 +00:00
|
|
|
this.dispatchPanelEvent("socialFrameShow");
|
|
|
|
} else {
|
|
|
|
// first time load, wait for load and dispatch after load
|
|
|
|
iframe.addEventListener("load", function panelBrowserOnload(e) {
|
|
|
|
iframe.removeEventListener("load", panelBrowserOnload, true);
|
|
|
|
setTimeout(function() {
|
2012-11-27 06:56:22 +00:00
|
|
|
if (SocialFlyout._dynamicResizer) { // may go null if hidden quickly
|
|
|
|
SocialFlyout._dynamicResizer.start(panel, iframe);
|
|
|
|
SocialFlyout.dispatchPanelEvent("socialFrameShow");
|
|
|
|
}
|
2012-08-24 00:11:02 +00:00
|
|
|
}, 0);
|
|
|
|
}, true);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
onHidden: function(aEvent) {
|
2012-10-05 03:32:38 +00:00
|
|
|
this._dynamicResizer.stop();
|
|
|
|
this._dynamicResizer = null;
|
2013-05-31 20:22:51 +00:00
|
|
|
this.iframe.docShell.isActive = false;
|
2012-08-24 00:11:02 +00:00
|
|
|
this.dispatchPanelEvent("socialFrameHide");
|
|
|
|
},
|
|
|
|
|
2013-05-31 20:22:51 +00:00
|
|
|
load: function(aURL, cb) {
|
|
|
|
if (!Social.provider)
|
|
|
|
return;
|
|
|
|
|
|
|
|
this.panel.hidden = false;
|
|
|
|
let iframe = this.iframe;
|
|
|
|
// same url with only ref difference does not cause a new load, so we
|
|
|
|
// want to go right to the callback
|
|
|
|
let src = iframe.contentDocument && iframe.contentDocument.documentURIObject;
|
|
|
|
if (!src || !src.equalsExceptRef(Services.io.newURI(aURL, null, null))) {
|
|
|
|
iframe.addEventListener("load", function documentLoaded() {
|
|
|
|
iframe.removeEventListener("load", documentLoaded, true);
|
|
|
|
cb();
|
|
|
|
}, true);
|
|
|
|
// Force a layout flush by calling .clientTop so
|
|
|
|
// that the docShell of this frame is created
|
|
|
|
iframe.clientTop;
|
|
|
|
Social.setErrorListener(iframe, SocialFlyout.setFlyoutErrorMessage.bind(SocialFlyout))
|
|
|
|
iframe.setAttribute("src", aURL);
|
|
|
|
} else {
|
|
|
|
// we still need to set the src to trigger the contents hashchange event
|
|
|
|
// for ref changes
|
|
|
|
iframe.setAttribute("src", aURL);
|
|
|
|
cb();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2012-08-24 00:11:02 +00:00
|
|
|
open: function(aURL, yOffset, aCallback) {
|
2012-10-22 00:28:37 +00:00
|
|
|
// Hide any other social panels that may be open.
|
|
|
|
document.getElementById("social-notification-panel").hidePopup();
|
|
|
|
|
2013-01-24 10:14:36 +00:00
|
|
|
if (!SocialUI.enabled)
|
2012-08-24 00:11:02 +00:00
|
|
|
return;
|
|
|
|
let panel = this.panel;
|
2013-05-31 20:22:51 +00:00
|
|
|
let iframe = this.iframe;
|
2012-08-24 00:11:02 +00:00
|
|
|
|
2013-05-31 20:22:51 +00:00
|
|
|
this.load(aURL, function() {
|
|
|
|
sizeSocialPanelToContent(panel, iframe);
|
|
|
|
let anchor = document.getElementById("social-sidebar-browser");
|
|
|
|
if (panel.state == "open") {
|
|
|
|
panel.moveToAnchor(anchor, "start_before", 0, yOffset, false);
|
|
|
|
} else {
|
|
|
|
panel.openPopup(anchor, "start_before", 0, yOffset, false, false);
|
|
|
|
}
|
|
|
|
if (aCallback) {
|
|
|
|
try {
|
|
|
|
aCallback(iframe.contentWindow);
|
|
|
|
} catch(e) {
|
|
|
|
Cu.reportError(e);
|
2012-08-24 00:11:02 +00:00
|
|
|
}
|
|
|
|
}
|
2013-05-31 20:22:51 +00:00
|
|
|
});
|
2012-08-24 00:11:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-07 06:02:58 +00:00
|
|
|
SocialShare = {
|
|
|
|
get panel() {
|
|
|
|
return document.getElementById("social-share-panel");
|
|
|
|
},
|
|
|
|
|
|
|
|
get iframe() {
|
|
|
|
// first element is our menu vbox.
|
|
|
|
if (this.panel.childElementCount == 1)
|
|
|
|
return null;
|
|
|
|
else
|
|
|
|
return this.panel.lastChild;
|
|
|
|
},
|
|
|
|
|
2013-11-01 11:52:07 +00:00
|
|
|
uninit: function () {
|
|
|
|
if (this.iframe) {
|
|
|
|
this.iframe.remove();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2013-05-07 06:02:58 +00:00
|
|
|
_createFrame: function() {
|
|
|
|
let panel = this.panel;
|
|
|
|
if (!SocialUI.enabled || this.iframe)
|
|
|
|
return;
|
|
|
|
this.panel.hidden = false;
|
|
|
|
// create and initialize the panel for this window
|
|
|
|
let iframe = document.createElement("iframe");
|
|
|
|
iframe.setAttribute("type", "content");
|
|
|
|
iframe.setAttribute("class", "social-share-frame");
|
2013-07-29 17:53:00 +00:00
|
|
|
iframe.setAttribute("context", "contentAreaContextMenu");
|
|
|
|
iframe.setAttribute("tooltip", "aHTMLTooltip");
|
2013-05-07 06:02:58 +00:00
|
|
|
iframe.setAttribute("flex", "1");
|
|
|
|
panel.appendChild(iframe);
|
|
|
|
this.populateProviderMenu();
|
|
|
|
},
|
2013-07-29 17:53:00 +00:00
|
|
|
|
2013-05-07 06:02:58 +00:00
|
|
|
getSelectedProvider: function() {
|
|
|
|
let provider;
|
|
|
|
let lastProviderOrigin = this.iframe && this.iframe.getAttribute("origin");
|
|
|
|
if (lastProviderOrigin) {
|
|
|
|
provider = Social._getProviderFromOrigin(lastProviderOrigin);
|
|
|
|
}
|
|
|
|
if (!provider)
|
|
|
|
provider = Social.provider || Social.defaultProvider;
|
|
|
|
// if our provider has no shareURL, select the first one that does
|
|
|
|
if (provider && !provider.shareURL) {
|
|
|
|
let providers = [p for (p of Social.providers) if (p.shareURL)];
|
|
|
|
provider = providers.length > 0 && providers[0];
|
|
|
|
}
|
|
|
|
return provider;
|
|
|
|
},
|
|
|
|
|
|
|
|
populateProviderMenu: function() {
|
|
|
|
if (!this.iframe)
|
|
|
|
return;
|
|
|
|
let providers = [p for (p of Social.providers) if (p.shareURL)];
|
|
|
|
let hbox = document.getElementById("social-share-provider-buttons");
|
|
|
|
// selectable providers are inserted before the provider-menu seperator,
|
|
|
|
// remove any menuitems in that area
|
|
|
|
while (hbox.firstChild) {
|
|
|
|
hbox.removeChild(hbox.firstChild);
|
|
|
|
}
|
|
|
|
// reset our share toolbar
|
|
|
|
// only show a selection if there is more than one
|
|
|
|
if (!SocialUI.enabled || providers.length < 2) {
|
|
|
|
this.panel.firstChild.hidden = true;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
let selectedProvider = this.getSelectedProvider();
|
|
|
|
for (let provider of providers) {
|
|
|
|
let button = document.createElement("toolbarbutton");
|
|
|
|
button.setAttribute("class", "toolbarbutton share-provider-button");
|
|
|
|
button.setAttribute("type", "radio");
|
|
|
|
button.setAttribute("group", "share-providers");
|
|
|
|
button.setAttribute("image", provider.iconURL);
|
|
|
|
button.setAttribute("tooltiptext", provider.name);
|
|
|
|
button.setAttribute("origin", provider.origin);
|
|
|
|
button.setAttribute("oncommand", "SocialShare.sharePage(this.getAttribute('origin')); this.checked=true;");
|
|
|
|
if (provider == selectedProvider) {
|
|
|
|
this.defaultButton = button;
|
|
|
|
}
|
|
|
|
hbox.appendChild(button);
|
|
|
|
}
|
|
|
|
if (!this.defaultButton) {
|
|
|
|
this.defaultButton = hbox.firstChild
|
|
|
|
}
|
|
|
|
this.defaultButton.setAttribute("checked", "true");
|
|
|
|
this.panel.firstChild.hidden = false;
|
|
|
|
},
|
|
|
|
|
|
|
|
get shareButton() {
|
|
|
|
return document.getElementById("social-share-button");
|
|
|
|
},
|
|
|
|
|
|
|
|
canSharePage: function(aURI) {
|
|
|
|
// we do not enable sharing from private sessions
|
|
|
|
if (PrivateBrowsingUtils.isWindowPrivate(window))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (!aURI || !(aURI.schemeIs('http') || aURI.schemeIs('https')))
|
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
},
|
|
|
|
|
|
|
|
update: function() {
|
|
|
|
let shareButton = this.shareButton;
|
|
|
|
shareButton.hidden = !SocialUI.enabled ||
|
|
|
|
[p for (p of Social.providers) if (p.shareURL)].length == 0;
|
|
|
|
shareButton.disabled = shareButton.hidden || !this.canSharePage(gBrowser.currentURI);
|
|
|
|
|
|
|
|
// also update the relevent command's disabled state so the keyboard
|
|
|
|
// shortcut only works when available.
|
|
|
|
let cmd = document.getElementById("Social:SharePage");
|
|
|
|
cmd.setAttribute("disabled", shareButton.disabled ? "true" : "false");
|
|
|
|
},
|
|
|
|
|
|
|
|
onShowing: function() {
|
|
|
|
this.shareButton.setAttribute("open", "true");
|
|
|
|
},
|
|
|
|
|
|
|
|
onHidden: function() {
|
|
|
|
this.shareButton.removeAttribute("open");
|
2013-08-30 16:30:00 +00:00
|
|
|
this.iframe.setAttribute("src", "data:text/plain;charset=utf8,");
|
2013-05-07 06:02:58 +00:00
|
|
|
this.currentShare = null;
|
|
|
|
},
|
|
|
|
|
|
|
|
setErrorMessage: function() {
|
|
|
|
let iframe = this.iframe;
|
|
|
|
if (!iframe)
|
|
|
|
return;
|
|
|
|
|
|
|
|
iframe.removeAttribute("src");
|
|
|
|
iframe.webNavigation.loadURI("about:socialerror?mode=compactInfo&origin=" +
|
|
|
|
encodeURIComponent(iframe.getAttribute("origin")),
|
|
|
|
null, null, null, null);
|
|
|
|
sizeSocialPanelToContent(this.panel, iframe);
|
|
|
|
},
|
|
|
|
|
|
|
|
sharePage: function(providerOrigin, graphData) {
|
|
|
|
// if providerOrigin is undefined, we use the last-used provider, or the
|
|
|
|
// current/default provider. The provider selection in the share panel
|
|
|
|
// will call sharePage with an origin for us to switch to.
|
|
|
|
this._createFrame();
|
|
|
|
let iframe = this.iframe;
|
|
|
|
let provider;
|
|
|
|
if (providerOrigin)
|
|
|
|
provider = Social._getProviderFromOrigin(providerOrigin);
|
|
|
|
else
|
|
|
|
provider = this.getSelectedProvider();
|
|
|
|
if (!provider || !provider.shareURL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// graphData is an optional param that either defines the full set of data
|
|
|
|
// to be shared, or partial data about the current page. It is set by a call
|
|
|
|
// in mozSocial API, or via nsContentMenu calls. If it is present, it MUST
|
|
|
|
// define at least url. If it is undefined, we're sharing the current url in
|
|
|
|
// the browser tab.
|
|
|
|
let sharedURI = graphData ? Services.io.newURI(graphData.url, null, null) :
|
|
|
|
gBrowser.currentURI;
|
|
|
|
if (!this.canSharePage(sharedURI))
|
|
|
|
return;
|
|
|
|
|
|
|
|
// the point of this action type is that we can use existing share
|
|
|
|
// endpoints (e.g. oexchange) that do not support additional
|
|
|
|
// socialapi functionality. One tweak is that we shoot an event
|
|
|
|
// containing the open graph data.
|
|
|
|
let pageData = graphData ? graphData : this.currentShare;
|
|
|
|
if (!pageData || sharedURI == gBrowser.currentURI) {
|
|
|
|
pageData = OpenGraphBuilder.getData(gBrowser);
|
|
|
|
if (graphData) {
|
|
|
|
// overwrite data retreived from page with data given to us as a param
|
|
|
|
for (let p in graphData) {
|
|
|
|
pageData[p] = graphData[p];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
this.currentShare = pageData;
|
|
|
|
|
2013-09-06 17:56:01 +00:00
|
|
|
let shareEndpoint = OpenGraphBuilder.generateEndpointURL(provider.shareURL, pageData);
|
2013-05-07 06:02:58 +00:00
|
|
|
|
|
|
|
this._dynamicResizer = new DynamicResizeWatcher();
|
|
|
|
// if we've already loaded this provider/page share endpoint, we don't want
|
|
|
|
// to add another load event listener.
|
|
|
|
let reload = true;
|
|
|
|
let endpointMatch = shareEndpoint == iframe.getAttribute("src");
|
|
|
|
let docLoaded = iframe.contentDocument && iframe.contentDocument.readyState == "complete";
|
|
|
|
if (endpointMatch && docLoaded) {
|
|
|
|
reload = shareEndpoint != iframe.contentDocument.location.spec;
|
|
|
|
}
|
|
|
|
if (!reload) {
|
|
|
|
this._dynamicResizer.start(this.panel, iframe);
|
|
|
|
iframe.docShell.isActive = true;
|
|
|
|
iframe.docShell.isAppTab = true;
|
|
|
|
let evt = iframe.contentDocument.createEvent("CustomEvent");
|
|
|
|
evt.initCustomEvent("OpenGraphData", true, true, JSON.stringify(pageData));
|
|
|
|
iframe.contentDocument.documentElement.dispatchEvent(evt);
|
|
|
|
} else {
|
|
|
|
// first time load, wait for load and dispatch after load
|
|
|
|
iframe.addEventListener("load", function panelBrowserOnload(e) {
|
|
|
|
iframe.removeEventListener("load", panelBrowserOnload, true);
|
|
|
|
iframe.docShell.isActive = true;
|
|
|
|
iframe.docShell.isAppTab = true;
|
|
|
|
setTimeout(function() {
|
|
|
|
if (SocialShare._dynamicResizer) { // may go null if hidden quickly
|
|
|
|
SocialShare._dynamicResizer.start(iframe.parentNode, iframe);
|
|
|
|
}
|
|
|
|
}, 0);
|
|
|
|
let evt = iframe.contentDocument.createEvent("CustomEvent");
|
|
|
|
evt.initCustomEvent("OpenGraphData", true, true, JSON.stringify(pageData));
|
|
|
|
iframe.contentDocument.documentElement.dispatchEvent(evt);
|
|
|
|
}, true);
|
|
|
|
}
|
|
|
|
// always ensure that origin belongs to the endpoint
|
|
|
|
let uri = Services.io.newURI(shareEndpoint, null, null);
|
|
|
|
iframe.setAttribute("origin", provider.origin);
|
|
|
|
iframe.setAttribute("src", shareEndpoint);
|
|
|
|
|
|
|
|
let navBar = document.getElementById("nav-bar");
|
2013-06-11 02:47:02 +00:00
|
|
|
let anchor = document.getAnonymousElementByAttribute(this.shareButton, "class", "toolbarbutton-icon");
|
2013-05-07 06:02:58 +00:00
|
|
|
this.panel.openPopup(anchor, "bottomcenter topright", 0, 0, false, false);
|
|
|
|
Social.setErrorListener(iframe, this.setErrorMessage.bind(this));
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2013-03-26 23:15:59 +00:00
|
|
|
SocialSidebar = {
|
2012-07-18 18:40:05 +00:00
|
|
|
// Whether the sidebar can be shown for this window.
|
|
|
|
get canShow() {
|
2013-12-17 05:37:30 +00:00
|
|
|
if (PrivateBrowsingUtils.isWindowPrivate(window))
|
|
|
|
return false;
|
|
|
|
return [p for (p of Social.providers) if (p.enabled && p.sidebarURL)].length > 0;
|
2012-07-18 18:40:05 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
// Whether the user has toggled the sidebar on (for windows where it can appear)
|
2012-10-03 23:11:52 +00:00
|
|
|
get opened() {
|
|
|
|
return Services.prefs.getBoolPref("social.sidebar.open") && !document.mozFullScreen;
|
2012-07-18 18:40:05 +00:00
|
|
|
},
|
|
|
|
|
2012-10-30 03:52:56 +00:00
|
|
|
setSidebarVisibilityState: function(aEnabled) {
|
2012-08-03 21:42:40 +00:00
|
|
|
let sbrowser = document.getElementById("social-sidebar-browser");
|
2012-11-14 04:27:41 +00:00
|
|
|
// it's possible we'll be called twice with aEnabled=false so let's
|
|
|
|
// just assume we may often be called with the same state.
|
|
|
|
if (aEnabled == sbrowser.docShellIsActive)
|
|
|
|
return;
|
|
|
|
sbrowser.docShellIsActive = aEnabled;
|
2012-08-03 21:42:40 +00:00
|
|
|
let evt = sbrowser.contentDocument.createEvent("CustomEvent");
|
2012-10-30 03:52:56 +00:00
|
|
|
evt.initCustomEvent(aEnabled ? "socialFrameShow" : "socialFrameHide", true, true, {});
|
2012-08-03 21:42:40 +00:00
|
|
|
sbrowser.contentDocument.documentElement.dispatchEvent(evt);
|
|
|
|
},
|
|
|
|
|
2013-12-17 05:37:30 +00:00
|
|
|
updateToggleNotifications: function() {
|
|
|
|
let command = document.getElementById("Social:ToggleNotifications");
|
|
|
|
command.setAttribute("checked", Services.prefs.getBoolPref("social.toast-notifications.enabled"));
|
|
|
|
command.setAttribute("hidden", !SocialUI.enabled);
|
|
|
|
},
|
|
|
|
|
2012-11-13 03:52:06 +00:00
|
|
|
update: function SocialSidebar_update() {
|
2013-12-17 05:37:30 +00:00
|
|
|
this.updateToggleNotifications();
|
|
|
|
this._updateHeader();
|
2012-10-24 00:09:59 +00:00
|
|
|
clearTimeout(this._unloadTimeoutId);
|
2012-07-18 18:40:05 +00:00
|
|
|
// Hide the toggle menu item if the sidebar cannot appear
|
|
|
|
let command = document.getElementById("Social:ToggleSidebar");
|
2012-10-23 07:47:33 +00:00
|
|
|
command.setAttribute("hidden", this.canShow ? "false" : "true");
|
2012-07-18 18:40:05 +00:00
|
|
|
|
|
|
|
// Hide the sidebar if it cannot appear, or has been toggled off.
|
|
|
|
// Also set the command "checked" state accordingly.
|
2012-10-03 23:11:52 +00:00
|
|
|
let hideSidebar = !this.canShow || !this.opened;
|
2012-07-18 18:40:05 +00:00
|
|
|
let broadcaster = document.getElementById("socialSidebarBroadcaster");
|
|
|
|
broadcaster.hidden = hideSidebar;
|
|
|
|
command.setAttribute("checked", !hideSidebar);
|
|
|
|
|
|
|
|
let sbrowser = document.getElementById("social-sidebar-browser");
|
2012-12-08 04:13:27 +00:00
|
|
|
|
2012-08-03 21:42:40 +00:00
|
|
|
if (hideSidebar) {
|
2012-11-05 23:26:33 +00:00
|
|
|
sbrowser.removeEventListener("load", SocialSidebar._loadListener, true);
|
2012-10-30 03:52:56 +00:00
|
|
|
this.setSidebarVisibilityState(false);
|
2012-10-24 00:09:59 +00:00
|
|
|
// If we've been disabled, unload the sidebar content immediately;
|
|
|
|
// if the sidebar was just toggled to invisible, wait a timeout
|
|
|
|
// before unloading.
|
2012-08-03 21:42:40 +00:00
|
|
|
if (!this.canShow) {
|
2012-10-24 00:09:59 +00:00
|
|
|
this.unloadSidebar();
|
|
|
|
} else {
|
|
|
|
this._unloadTimeoutId = setTimeout(
|
|
|
|
this.unloadSidebar,
|
|
|
|
Services.prefs.getIntPref("social.sidebar.unload_timeout_ms")
|
|
|
|
);
|
2012-08-03 21:42:40 +00:00
|
|
|
}
|
|
|
|
} else {
|
2012-12-14 04:42:37 +00:00
|
|
|
sbrowser.setAttribute("origin", Social.provider.origin);
|
2012-12-08 04:13:27 +00:00
|
|
|
if (Social.provider.errorState == "frameworker-error") {
|
2013-01-26 20:07:39 +00:00
|
|
|
SocialSidebar.setSidebarErrorMessage();
|
2012-10-30 20:10:04 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-08-03 21:42:40 +00:00
|
|
|
// Make sure the right sidebar URL is loaded
|
2012-12-08 04:13:27 +00:00
|
|
|
if (sbrowser.getAttribute("src") != Social.provider.sidebarURL) {
|
2013-12-17 05:37:30 +00:00
|
|
|
// we check readyState right after setting src, we need a new content
|
|
|
|
// viewer to ensure we are checking against the correct document.
|
|
|
|
sbrowser.docShell.createAboutBlankContentViewer(null);
|
2013-08-12 19:06:22 +00:00
|
|
|
Social.setErrorListener(sbrowser, this.setSidebarErrorMessage.bind(this));
|
|
|
|
// setting isAppTab causes clicks on untargeted links to open new tabs
|
|
|
|
sbrowser.docShell.isAppTab = true;
|
2012-08-03 21:42:40 +00:00
|
|
|
sbrowser.setAttribute("src", Social.provider.sidebarURL);
|
2013-07-29 16:35:41 +00:00
|
|
|
PopupNotifications.locationChange(sbrowser);
|
2013-07-29 16:03:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// if the document has not loaded, delay until it is
|
|
|
|
if (sbrowser.contentDocument.readyState != "complete") {
|
2013-12-17 05:37:30 +00:00
|
|
|
document.getElementById("social-sidebar-button").setAttribute("loading", "true");
|
2012-11-05 23:26:33 +00:00
|
|
|
sbrowser.addEventListener("load", SocialSidebar._loadListener, true);
|
2012-08-03 21:42:40 +00:00
|
|
|
} else {
|
2012-10-30 03:52:56 +00:00
|
|
|
this.setSidebarVisibilityState(true);
|
2012-08-03 21:42:40 +00:00
|
|
|
}
|
2012-07-18 18:40:05 +00:00
|
|
|
}
|
2013-12-17 05:37:30 +00:00
|
|
|
this._updateCheckedMenuItems(this.opened && this.provider ? this.provider.origin : null);
|
2012-10-06 00:22:09 +00:00
|
|
|
},
|
|
|
|
|
2012-11-05 23:26:33 +00:00
|
|
|
_loadListener: function SocialSidebar_loadListener() {
|
|
|
|
let sbrowser = document.getElementById("social-sidebar-browser");
|
|
|
|
sbrowser.removeEventListener("load", SocialSidebar._loadListener, true);
|
2013-12-17 05:37:30 +00:00
|
|
|
document.getElementById("social-sidebar-button").removeAttribute("loading");
|
2012-11-05 23:26:33 +00:00
|
|
|
SocialSidebar.setSidebarVisibilityState(true);
|
|
|
|
},
|
|
|
|
|
2012-10-24 00:09:59 +00:00
|
|
|
unloadSidebar: function SocialSidebar_unloadSidebar() {
|
|
|
|
let sbrowser = document.getElementById("social-sidebar-browser");
|
|
|
|
if (!sbrowser.hasAttribute("origin"))
|
|
|
|
return;
|
|
|
|
|
2012-12-13 01:13:09 +00:00
|
|
|
sbrowser.stop();
|
2012-10-24 00:09:59 +00:00
|
|
|
sbrowser.removeAttribute("origin");
|
2012-11-17 00:59:46 +00:00
|
|
|
sbrowser.setAttribute("src", "about:blank");
|
2013-11-28 03:23:10 +00:00
|
|
|
// We need to explicitly create a new content viewer because the old one
|
|
|
|
// doesn't get destroyed until about:blank has loaded (which does not happen
|
|
|
|
// as long as the element is hidden).
|
|
|
|
sbrowser.docShell.createAboutBlankContentViewer(null);
|
2012-10-24 00:09:59 +00:00
|
|
|
SocialFlyout.unload();
|
|
|
|
},
|
|
|
|
|
|
|
|
_unloadTimeoutId: 0,
|
|
|
|
|
2013-01-26 20:07:39 +00:00
|
|
|
setSidebarErrorMessage: function() {
|
2012-10-06 00:22:09 +00:00
|
|
|
let sbrowser = document.getElementById("social-sidebar-browser");
|
2013-01-26 20:07:39 +00:00
|
|
|
// a frameworker error "trumps" a sidebar error.
|
|
|
|
if (Social.provider.errorState == "frameworker-error") {
|
|
|
|
sbrowser.setAttribute("src", "about:socialerror?mode=workerFailure");
|
|
|
|
} else {
|
|
|
|
let url = encodeURIComponent(Social.provider.sidebarURL);
|
|
|
|
sbrowser.loadURI("about:socialerror?mode=tryAgain&url=" + url, null, null);
|
2012-10-30 20:10:04 +00:00
|
|
|
}
|
2013-12-17 05:37:30 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
// provider will move to a sidebar specific member in bug 894806
|
|
|
|
get provider() {
|
|
|
|
return Social.provider;
|
|
|
|
},
|
|
|
|
|
|
|
|
setProvider: function(origin) {
|
|
|
|
Social.setProviderByOrigin(origin);
|
|
|
|
this._updateHeader();
|
|
|
|
this._updateCheckedMenuItems(origin);
|
|
|
|
},
|
|
|
|
|
|
|
|
_updateHeader: function() {
|
|
|
|
let provider = this.provider;
|
|
|
|
let image, title;
|
|
|
|
if (provider) {
|
|
|
|
image = "url(" + (provider.icon32URL || provider.iconURL) + ")";
|
|
|
|
title = provider.name;
|
|
|
|
}
|
|
|
|
document.getElementById("social-sidebar-favico").style.listStyleImage = image;
|
|
|
|
document.getElementById("social-sidebar-title").value = title;
|
|
|
|
},
|
|
|
|
|
|
|
|
_updateCheckedMenuItems: function(origin) {
|
|
|
|
// update selected menuitems
|
|
|
|
let menuitems = document.getElementsByClassName("social-provider-menuitem");
|
|
|
|
for (let mi of menuitems) {
|
|
|
|
if (origin && mi.getAttribute("origin") == origin) {
|
|
|
|
mi.setAttribute("checked", "true");
|
|
|
|
mi.setAttribute("oncommand", "SocialSidebar.hide();");
|
|
|
|
} else if (mi.getAttribute("checked")) {
|
|
|
|
mi.removeAttribute("checked");
|
|
|
|
mi.setAttribute("oncommand", "SocialSidebar.show(this.getAttribute('origin'));");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
show: function(origin) {
|
|
|
|
// always show the sidebar, and set the provider
|
|
|
|
this.setProvider(origin);
|
|
|
|
Services.prefs.setBoolPref("social.sidebar.open", true);
|
|
|
|
},
|
|
|
|
|
|
|
|
hide: function() {
|
|
|
|
Services.prefs.setBoolPref("social.sidebar.open", false);
|
|
|
|
this._updateCheckedMenuItems();
|
|
|
|
},
|
|
|
|
|
|
|
|
populateSidebarMenu: function(event) {
|
|
|
|
// Providers are removed from the view->sidebar menu when there is a change
|
|
|
|
// in providers, so we only have to populate onshowing if there are no
|
|
|
|
// provider menus. We populate this menu so long as there are enabled
|
|
|
|
// providers with sidebars.
|
|
|
|
let popup = event.target;
|
|
|
|
let providerMenuSeps = popup.getElementsByClassName("social-provider-menu");
|
|
|
|
if (providerMenuSeps[0].previousSibling.nodeName == "menuseparator")
|
|
|
|
SocialSidebar._populateProviderMenu(providerMenuSeps[0]);
|
|
|
|
},
|
|
|
|
|
|
|
|
clearProviderMenus: function() {
|
|
|
|
// called when there is a change in the provider list we clear all menus,
|
|
|
|
// they will be repopulated when the menu is shown
|
|
|
|
let providerMenuSeps = document.getElementsByClassName("social-provider-menu");
|
|
|
|
for (let providerMenuSep of providerMenuSeps) {
|
|
|
|
while (providerMenuSep.previousSibling.nodeName == "menuitem") {
|
|
|
|
let menu = providerMenuSep.parentNode;
|
|
|
|
menu.removeChild(providerMenuSep.previousSibling);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
_populateProviderMenu: function(providerMenuSep) {
|
|
|
|
let menu = providerMenuSep.parentNode;
|
|
|
|
// selectable providers are inserted before the provider-menu seperator,
|
|
|
|
// remove any menuitems in that area
|
|
|
|
while (providerMenuSep.previousSibling.nodeName == "menuitem") {
|
|
|
|
menu.removeChild(providerMenuSep.previousSibling);
|
|
|
|
}
|
|
|
|
// only show a selection in the sidebar header menu if there is more than one
|
|
|
|
let providers = [p for (p of Social.providers) if (p.sidebarURL)];
|
|
|
|
if (providers.length < 2 && menu.id != "viewSidebarMenu") {
|
|
|
|
providerMenuSep.hidden = true;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
let topSep = providerMenuSep.previousSibling;
|
|
|
|
for (let provider of providers) {
|
|
|
|
let menuitem = document.createElement("menuitem");
|
|
|
|
menuitem.className = "menuitem-iconic social-provider-menuitem";
|
|
|
|
menuitem.setAttribute("image", provider.iconURL);
|
|
|
|
menuitem.setAttribute("label", provider.name);
|
|
|
|
menuitem.setAttribute("origin", provider.origin);
|
|
|
|
if (this.opened && provider == this.provider) {
|
|
|
|
menuitem.setAttribute("checked", "true");
|
|
|
|
menuitem.setAttribute("oncommand", "SocialSidebar.hide();");
|
|
|
|
} else {
|
|
|
|
menuitem.setAttribute("oncommand", "SocialSidebar.show(this.getAttribute('origin'));");
|
|
|
|
}
|
|
|
|
menu.insertBefore(menuitem, providerMenuSep);
|
|
|
|
}
|
|
|
|
topSep.hidden = topSep.nextSibling == providerMenuSep;
|
|
|
|
providerMenuSep.hidden = !providerMenuSep.nextSibling;
|
2012-07-18 18:40:05 +00:00
|
|
|
}
|
|
|
|
}
|
2013-03-26 23:15:59 +00:00
|
|
|
|
2013-09-04 17:01:38 +00:00
|
|
|
// this helper class is used by removable/customizable buttons to handle
|
2013-11-22 20:11:19 +00:00
|
|
|
// widget creation/destruction
|
2013-09-04 17:01:38 +00:00
|
|
|
|
|
|
|
// When a provider is installed we show all their UI so the user will see the
|
|
|
|
// functionality of what they installed. The user can later customize the UI,
|
|
|
|
// moving buttons around or off the toolbar.
|
|
|
|
//
|
2013-11-22 20:11:19 +00:00
|
|
|
// On startup, we create the button widgets of any enabled provider.
|
|
|
|
// CustomizableUI handles placement and persistence of placement.
|
2013-12-17 05:21:17 +00:00
|
|
|
function ToolbarHelper(type, createButtonFn, listener) {
|
2013-09-04 17:01:38 +00:00
|
|
|
this._createButton = createButtonFn;
|
|
|
|
this._type = type;
|
2013-12-17 05:21:17 +00:00
|
|
|
|
|
|
|
if (listener) {
|
|
|
|
CustomizableUI.addListener(listener);
|
|
|
|
// remove this listener on window close
|
|
|
|
window.addEventListener("unload", () => {
|
|
|
|
CustomizableUI.removeListener(listener);
|
|
|
|
});
|
|
|
|
}
|
2013-09-04 17:01:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ToolbarHelper.prototype = {
|
2013-11-22 20:11:19 +00:00
|
|
|
idFromOrigin: function(origin) {
|
|
|
|
// this id needs to pass the checks in CustomizableUI, so remove characters
|
|
|
|
// that wont pass.
|
|
|
|
return this._type + "-" + Services.io.newURI(origin, null, null).hostPort.replace(/[\.:]/g,'-');
|
2013-09-04 17:01:38 +00:00
|
|
|
},
|
|
|
|
|
2013-11-22 20:11:19 +00:00
|
|
|
// should be called on disable of a provider
|
2013-09-04 17:01:38 +00:00
|
|
|
removeProviderButton: function(origin) {
|
2013-11-22 20:11:19 +00:00
|
|
|
CustomizableUI.destroyWidget(this.idFromOrigin(origin));
|
2013-09-04 17:01:38 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
clearPalette: function() {
|
|
|
|
[this.removeProviderButton(p.origin) for (p of Social.providers)];
|
|
|
|
},
|
|
|
|
|
2013-11-22 20:11:19 +00:00
|
|
|
// should be called on enable of a provider
|
2013-09-04 17:01:38 +00:00
|
|
|
populatePalette: function() {
|
|
|
|
if (!Social.enabled) {
|
|
|
|
this.clearPalette();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// create any buttons that do not exist yet if they have been persisted
|
|
|
|
// as a part of the UI (otherwise they belong in the palette).
|
|
|
|
for (let provider of Social.providers) {
|
2013-11-22 20:11:19 +00:00
|
|
|
let id = this.idFromOrigin(provider.origin);
|
2013-12-17 05:21:17 +00:00
|
|
|
this._createButton(id, provider);
|
2013-09-04 17:01:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-17 05:21:17 +00:00
|
|
|
let SocialStatusWidgetListener = {
|
|
|
|
_getNodeOrigin: function(aWidgetId) {
|
|
|
|
// we rely on the button id being the same as the widget.
|
|
|
|
let node = document.getElementById(aWidgetId);
|
|
|
|
if (!node)
|
|
|
|
return null
|
|
|
|
if (!node.classList.contains("social-status-button"))
|
|
|
|
return null
|
|
|
|
return node.getAttribute("origin");
|
|
|
|
},
|
|
|
|
onWidgetAdded: function(aWidgetId, aArea, aPosition) {
|
|
|
|
let origin = this._getNodeOrigin(aWidgetId);
|
|
|
|
if (origin)
|
|
|
|
SocialStatus.updateButton(origin);
|
|
|
|
},
|
|
|
|
onWidgetRemoved: function(aWidgetId, aPrevArea) {
|
|
|
|
let origin = this._getNodeOrigin(aWidgetId);
|
|
|
|
if (!origin)
|
|
|
|
return;
|
|
|
|
// When a widget is demoted to the palette ('removed'), it's visual
|
|
|
|
// style should change.
|
|
|
|
SocialStatus.updateButton(origin);
|
|
|
|
SocialStatus._removeFrame(origin);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-04 17:01:38 +00:00
|
|
|
SocialStatus = {
|
|
|
|
populateToolbarPalette: function() {
|
|
|
|
this._toolbarHelper.populatePalette();
|
|
|
|
},
|
|
|
|
|
|
|
|
removeProvider: function(origin) {
|
2013-09-30 18:05:17 +00:00
|
|
|
this._removeFrame(origin);
|
2013-09-04 17:01:38 +00:00
|
|
|
this._toolbarHelper.removeProviderButton(origin);
|
|
|
|
},
|
|
|
|
|
2013-12-16 23:10:30 +00:00
|
|
|
reloadProvider: function(origin) {
|
|
|
|
let button = document.getElementById(this._toolbarHelper.idFromOrigin(origin));
|
|
|
|
if (button && button.getAttribute("open") == "true")
|
|
|
|
document.getElementById("social-notification-panel").hidePopup();
|
|
|
|
this._removeFrame(origin);
|
|
|
|
},
|
|
|
|
|
2013-09-30 18:05:17 +00:00
|
|
|
_removeFrame: function(origin) {
|
|
|
|
let notificationFrameId = "social-status-" + origin;
|
|
|
|
let frame = document.getElementById(notificationFrameId);
|
|
|
|
if (frame) {
|
|
|
|
SharedFrame.forgetGroup(frame.id);
|
|
|
|
frame.parentNode.removeChild(frame);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2013-09-04 17:01:38 +00:00
|
|
|
get _toolbarHelper() {
|
|
|
|
delete this._toolbarHelper;
|
2013-12-17 05:21:17 +00:00
|
|
|
this._toolbarHelper = new ToolbarHelper("social-status-button",
|
|
|
|
CreateSocialStatusWidget,
|
|
|
|
SocialStatusWidgetListener);
|
2013-09-04 17:01:38 +00:00
|
|
|
return this._toolbarHelper;
|
|
|
|
},
|
|
|
|
|
|
|
|
get _dynamicResizer() {
|
|
|
|
delete this._dynamicResizer;
|
|
|
|
this._dynamicResizer = new DynamicResizeWatcher();
|
|
|
|
return this._dynamicResizer;
|
|
|
|
},
|
|
|
|
|
|
|
|
// status panels are one-per button per-process, we swap the docshells between
|
|
|
|
// windows when necessary
|
2013-12-17 05:21:17 +00:00
|
|
|
_attachNotificatonPanel: function(aParent, aButton, provider) {
|
|
|
|
aParent.hidden = !SocialUI.enabled;
|
2013-09-04 17:01:38 +00:00
|
|
|
let notificationFrameId = "social-status-" + provider.origin;
|
|
|
|
let frame = document.getElementById(notificationFrameId);
|
|
|
|
|
2013-12-17 05:21:17 +00:00
|
|
|
// If the button was customized to a new location, we we'll destroy the
|
|
|
|
// iframe and start fresh.
|
|
|
|
if (frame && frame.parentNode != aParent) {
|
|
|
|
SharedFrame.forgetGroup(frame.id);
|
|
|
|
frame.parentNode.removeChild(frame);
|
|
|
|
frame = null;
|
|
|
|
}
|
|
|
|
|
2013-09-04 17:01:38 +00:00
|
|
|
if (!frame) {
|
|
|
|
frame = SharedFrame.createFrame(
|
|
|
|
notificationFrameId, /* frame name */
|
2013-12-17 05:21:17 +00:00
|
|
|
aParent, /* parent */
|
2013-09-04 17:01:38 +00:00
|
|
|
{
|
|
|
|
"type": "content",
|
|
|
|
"mozbrowser": "true",
|
|
|
|
"class": "social-panel-frame",
|
|
|
|
"id": notificationFrameId,
|
|
|
|
"tooltip": "aHTMLTooltip",
|
2013-11-12 17:37:10 +00:00
|
|
|
"context": "contentAreaContextMenu",
|
2013-12-17 05:21:17 +00:00
|
|
|
"flex": "1",
|
2013-09-04 17:01:38 +00:00
|
|
|
|
|
|
|
// work around bug 793057 - by making the panel roughly the final size
|
|
|
|
// we are more likely to have the anchor in the correct position.
|
|
|
|
"style": "width: " + PANEL_MIN_WIDTH + "px;",
|
|
|
|
|
|
|
|
"origin": provider.origin,
|
|
|
|
"src": provider.statusURL
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
if (frame.socialErrorListener)
|
|
|
|
frame.socialErrorListener.remove();
|
|
|
|
if (frame.docShell) {
|
|
|
|
frame.docShell.isActive = false;
|
|
|
|
Social.setErrorListener(frame, this.setPanelErrorMessage.bind(this));
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
frame.setAttribute("origin", provider.origin);
|
|
|
|
SharedFrame.updateURL(notificationFrameId, provider.statusURL);
|
|
|
|
}
|
|
|
|
aButton.setAttribute("notificationFrameId", notificationFrameId);
|
|
|
|
},
|
|
|
|
|
2013-11-25 12:39:12 +00:00
|
|
|
updateButton: function(origin) {
|
2013-12-17 05:21:17 +00:00
|
|
|
let id = this._toolbarHelper.idFromOrigin(origin);
|
|
|
|
let widget = CustomizableUI.getWidget(id);
|
|
|
|
if (!widget)
|
|
|
|
return;
|
|
|
|
let button = widget.forWindow(window).node;
|
2013-09-04 17:01:38 +00:00
|
|
|
if (button) {
|
|
|
|
// we only grab the first notification, ignore all others
|
2013-12-17 05:21:17 +00:00
|
|
|
let place = CustomizableUI.getPlaceForItem(button);
|
|
|
|
let provider = Social._getProviderFromOrigin(origin);
|
2013-09-04 17:01:38 +00:00
|
|
|
let icons = provider.ambientNotificationIcons;
|
|
|
|
let iconNames = Object.keys(icons);
|
|
|
|
let notif = icons[iconNames[0]];
|
2013-11-25 12:39:12 +00:00
|
|
|
|
|
|
|
// The image and tooltip need to be updated for both
|
|
|
|
// ambient notification and profile changes.
|
2013-12-17 05:21:17 +00:00
|
|
|
let iconURL = provider.icon32URL || provider.iconURL;
|
|
|
|
let tooltiptext;
|
|
|
|
if (!notif || place == "palette") {
|
|
|
|
button.style.listStyleImage = "url(" + iconURL + ")";
|
2013-09-04 17:01:38 +00:00
|
|
|
button.setAttribute("badge", "");
|
|
|
|
button.setAttribute("aria-label", "");
|
2013-12-17 05:21:17 +00:00
|
|
|
button.setAttribute("tooltiptext", provider.name);
|
2013-09-04 17:01:38 +00:00
|
|
|
return;
|
|
|
|
}
|
2013-12-17 05:21:17 +00:00
|
|
|
button.style.listStyleImage = "url(" + (notif.iconURL || iconURL) + ")";
|
|
|
|
button.setAttribute("tooltiptext", notif.label || provider.name);
|
2013-09-04 17:01:38 +00:00
|
|
|
|
|
|
|
let badge = notif.counter || "";
|
|
|
|
button.setAttribute("badge", badge);
|
|
|
|
let ariaLabel = notif.label;
|
|
|
|
// if there is a badge value, we must use a localizable string to insert it.
|
|
|
|
if (badge)
|
|
|
|
ariaLabel = gNavigatorBundle.getFormattedString("social.aria.toolbarButtonBadgeText",
|
|
|
|
[ariaLabel, badge]);
|
|
|
|
button.setAttribute("aria-label", ariaLabel);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
showPopup: function(aToolbarButton) {
|
|
|
|
// attach our notification panel if necessary
|
|
|
|
let origin = aToolbarButton.getAttribute("origin");
|
|
|
|
let provider = Social._getProviderFromOrigin(origin);
|
|
|
|
|
2013-12-17 05:21:17 +00:00
|
|
|
// if we're a slice in the hamburger, use that panel instead
|
|
|
|
let widgetGroup = CustomizableUI.getWidget(aToolbarButton.getAttribute("id"));
|
|
|
|
let widget = widgetGroup.forWindow(window);
|
|
|
|
let panel, showingEvent, hidingEvent;
|
|
|
|
let inMenuPanel = widgetGroup.areaType == CustomizableUI.TYPE_MENU_PANEL;
|
|
|
|
if (inMenuPanel) {
|
|
|
|
panel = document.getElementById("PanelUI-socialapi");
|
|
|
|
this._attachNotificatonPanel(panel, aToolbarButton, provider);
|
2014-01-21 19:01:16 +00:00
|
|
|
widget.node.setAttribute("closemenu", "none");
|
2013-12-17 05:21:17 +00:00
|
|
|
showingEvent = "ViewShowing";
|
|
|
|
hidingEvent = "ViewHiding";
|
|
|
|
} else {
|
|
|
|
panel = document.getElementById("social-notification-panel");
|
|
|
|
this._attachNotificatonPanel(panel, aToolbarButton, provider);
|
|
|
|
showingEvent = "popupshown";
|
|
|
|
hidingEvent = "popuphidden";
|
|
|
|
}
|
2013-09-04 17:01:38 +00:00
|
|
|
let notificationFrameId = aToolbarButton.getAttribute("notificationFrameId");
|
|
|
|
let notificationFrame = document.getElementById(notificationFrameId);
|
|
|
|
|
|
|
|
let wasAlive = SharedFrame.isGroupAlive(notificationFrameId);
|
|
|
|
SharedFrame.setOwner(notificationFrameId, notificationFrame);
|
|
|
|
|
|
|
|
// Clear dimensions on all browsers so the panel size will
|
|
|
|
// only use the selected browser.
|
|
|
|
let frameIter = panel.firstElementChild;
|
|
|
|
while (frameIter) {
|
|
|
|
frameIter.collapsed = (frameIter != notificationFrame);
|
|
|
|
frameIter = frameIter.nextElementSibling;
|
|
|
|
}
|
|
|
|
|
|
|
|
function dispatchPanelEvent(name) {
|
|
|
|
let evt = notificationFrame.contentDocument.createEvent("CustomEvent");
|
|
|
|
evt.initCustomEvent(name, true, true, {});
|
|
|
|
notificationFrame.contentDocument.documentElement.dispatchEvent(evt);
|
|
|
|
}
|
|
|
|
|
2013-12-17 05:21:17 +00:00
|
|
|
// we only use a dynamic resizer when we're located the toolbar.
|
|
|
|
let dynamicResizer = inMenuPanel ? null : this._dynamicResizer;
|
|
|
|
panel.addEventListener(hidingEvent, function onpopuphiding() {
|
|
|
|
panel.removeEventListener(hidingEvent, onpopuphiding);
|
2013-09-04 17:01:38 +00:00
|
|
|
aToolbarButton.removeAttribute("open");
|
2013-12-17 05:21:17 +00:00
|
|
|
if (dynamicResizer)
|
|
|
|
dynamicResizer.stop();
|
2013-09-04 17:01:38 +00:00
|
|
|
notificationFrame.docShell.isActive = false;
|
|
|
|
dispatchPanelEvent("socialFrameHide");
|
|
|
|
});
|
|
|
|
|
2013-12-17 05:21:17 +00:00
|
|
|
panel.addEventListener(showingEvent, function onpopupshown() {
|
|
|
|
panel.removeEventListener(showingEvent, onpopupshown);
|
2013-09-04 17:01:38 +00:00
|
|
|
// This attribute is needed on both the button and the
|
|
|
|
// containing toolbaritem since the buttons on OS X have
|
|
|
|
// moz-appearance:none, while their container gets
|
|
|
|
// moz-appearance:toolbarbutton due to the way that toolbar buttons
|
|
|
|
// get combined on OS X.
|
2013-12-17 05:21:17 +00:00
|
|
|
let initFrameShow = () => {
|
|
|
|
notificationFrame.docShell.isActive = true;
|
|
|
|
notificationFrame.docShell.isAppTab = true;
|
|
|
|
if (dynamicResizer)
|
|
|
|
dynamicResizer.start(panel, notificationFrame);
|
2013-09-04 17:01:38 +00:00
|
|
|
dispatchPanelEvent("socialFrameShow");
|
2013-12-17 05:21:17 +00:00
|
|
|
};
|
|
|
|
if (!inMenuPanel)
|
|
|
|
aToolbarButton.setAttribute("open", "true");
|
|
|
|
if (notificationFrame.contentDocument &&
|
|
|
|
notificationFrame.contentDocument.readyState == "complete" && wasAlive) {
|
|
|
|
initFrameShow();
|
2013-09-04 17:01:38 +00:00
|
|
|
} else {
|
|
|
|
// first time load, wait for load and dispatch after load
|
|
|
|
notificationFrame.addEventListener("load", function panelBrowserOnload(e) {
|
|
|
|
notificationFrame.removeEventListener("load", panelBrowserOnload, true);
|
2013-12-17 05:21:17 +00:00
|
|
|
initFrameShow();
|
2013-09-04 17:01:38 +00:00
|
|
|
}, true);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2013-12-17 05:21:17 +00:00
|
|
|
if (inMenuPanel) {
|
|
|
|
PanelUI.showSubView("PanelUI-socialapi", widget.node,
|
|
|
|
CustomizableUI.AREA_PANEL);
|
|
|
|
} else {
|
|
|
|
let anchor = document.getAnonymousElementByAttribute(aToolbarButton, "class", "toolbarbutton-badge-container");
|
|
|
|
// Bug 849216 - open the popup in a setTimeout so we avoid the auto-rollup
|
|
|
|
// handling from preventing it being opened in some cases.
|
|
|
|
setTimeout(function() {
|
|
|
|
panel.openPopup(anchor, "bottomcenter topright", 0, 0, false, false);
|
|
|
|
}, 0);
|
|
|
|
}
|
2013-09-04 17:01:38 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
setPanelErrorMessage: function(aNotificationFrame) {
|
|
|
|
if (!aNotificationFrame)
|
|
|
|
return;
|
|
|
|
|
|
|
|
let src = aNotificationFrame.getAttribute("src");
|
|
|
|
aNotificationFrame.removeAttribute("src");
|
|
|
|
aNotificationFrame.webNavigation.loadURI("about:socialerror?mode=tryAgainOnly&url=" +
|
|
|
|
encodeURIComponent(src),
|
|
|
|
null, null, null, null);
|
|
|
|
let panel = aNotificationFrame.parentNode;
|
|
|
|
sizeSocialPanelToContent(panel, aNotificationFrame);
|
|
|
|
},
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2013-09-06 17:56:01 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* SocialMarks
|
|
|
|
*
|
|
|
|
* Handles updates to toolbox and signals all buttons to update when necessary.
|
|
|
|
*/
|
|
|
|
SocialMarks = {
|
|
|
|
update: function() {
|
|
|
|
// signal each button to update itself
|
|
|
|
let currentButtons = document.querySelectorAll('toolbarbutton[type="socialmark"]');
|
|
|
|
for (let elt of currentButtons)
|
|
|
|
elt.update();
|
|
|
|
},
|
|
|
|
|
2013-12-17 05:24:44 +00:00
|
|
|
updatePanelButtons: function() {
|
|
|
|
// querySelectorAll does not work on the menu panel the panel, so we have to
|
|
|
|
// do this the hard way.
|
|
|
|
let providers = SocialMarks.getProviders();
|
|
|
|
let panel = document.getElementById("PanelUI-popup");
|
|
|
|
for (let p of providers) {
|
|
|
|
let widgetId = SocialMarks._toolbarHelper.idFromOrigin(p.origin);
|
|
|
|
let widget = CustomizableUI.getWidget(widgetId);
|
|
|
|
if (!widget)
|
|
|
|
continue;
|
|
|
|
let node = widget.forWindow(window).node;
|
|
|
|
if (node)
|
|
|
|
node.update();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2013-09-06 17:56:01 +00:00
|
|
|
getProviders: function() {
|
|
|
|
// only rely on providers that the user has placed in the UI somewhere. This
|
|
|
|
// also means that populateToolbarPalette must be called prior to using this
|
|
|
|
// method, otherwise you get a big fat zero. For our use case with context
|
|
|
|
// menu's, this is ok.
|
|
|
|
let tbh = this._toolbarHelper;
|
|
|
|
return [p for (p of Social.providers) if (p.markURL &&
|
2013-11-22 20:11:19 +00:00
|
|
|
document.getElementById(tbh.idFromOrigin(p.origin)))];
|
2013-09-06 17:56:01 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
populateContextMenu: function() {
|
|
|
|
// only show a selection if enabled and there is more than one
|
|
|
|
let providers = this.getProviders();
|
|
|
|
|
|
|
|
// remove all previous entries by class
|
|
|
|
let menus = [m for (m of document.getElementsByClassName("context-socialmarks"))];
|
|
|
|
[m.parentNode.removeChild(m) for (m of menus)];
|
|
|
|
|
|
|
|
let contextMenus = [
|
|
|
|
{
|
|
|
|
type: "link",
|
|
|
|
id: "context-marklinkMenu",
|
2013-09-11 13:51:03 +00:00
|
|
|
label: "social.marklinkMenu.label"
|
2013-09-06 17:56:01 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
type: "page",
|
|
|
|
id: "context-markpageMenu",
|
2013-09-11 13:51:03 +00:00
|
|
|
label: "social.markpageMenu.label"
|
2013-09-06 17:56:01 +00:00
|
|
|
}
|
|
|
|
];
|
|
|
|
for (let cfg of contextMenus) {
|
|
|
|
this._populateContextPopup(cfg, providers);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
MENU_LIMIT: 3, // adjustable for testing
|
|
|
|
_populateContextPopup: function(menuInfo, providers) {
|
|
|
|
let menu = document.getElementById(menuInfo.id);
|
|
|
|
let popup = menu.firstChild;
|
|
|
|
for (let provider of providers) {
|
|
|
|
// We show up to MENU_LIMIT providers as single menuitems's at the top
|
|
|
|
// level of the context menu, if we have more than that, dump them *all*
|
|
|
|
// into the menu popup.
|
|
|
|
let mi = document.createElement("menuitem");
|
|
|
|
mi.setAttribute("oncommand", "gContextMenu.markLink(this.getAttribute('origin'));");
|
|
|
|
mi.setAttribute("origin", provider.origin);
|
|
|
|
mi.setAttribute("image", provider.iconURL);
|
|
|
|
if (providers.length <= this.MENU_LIMIT) {
|
|
|
|
// an extra class to make enable/disable easy
|
|
|
|
mi.setAttribute("class", "menuitem-iconic context-socialmarks context-mark"+menuInfo.type);
|
|
|
|
let menuLabel = gNavigatorBundle.getFormattedString(menuInfo.label, [provider.name]);
|
|
|
|
mi.setAttribute("label", menuLabel);
|
|
|
|
menu.parentNode.insertBefore(mi, menu);
|
|
|
|
} else {
|
|
|
|
mi.setAttribute("class", "menuitem-iconic context-socialmarks");
|
|
|
|
mi.setAttribute("label", provider.name);
|
|
|
|
popup.appendChild(mi);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
populateToolbarPalette: function() {
|
|
|
|
this._toolbarHelper.populatePalette();
|
|
|
|
this.populateContextMenu();
|
|
|
|
},
|
|
|
|
|
|
|
|
removeProvider: function(origin) {
|
|
|
|
this._toolbarHelper.removeProviderButton(origin);
|
|
|
|
},
|
|
|
|
|
|
|
|
get _toolbarHelper() {
|
|
|
|
delete this._toolbarHelper;
|
2013-12-17 05:21:17 +00:00
|
|
|
this._toolbarHelper = new ToolbarHelper("social-mark-button", CreateSocialMarkWidget);
|
2013-09-06 17:56:01 +00:00
|
|
|
return this._toolbarHelper;
|
|
|
|
},
|
|
|
|
|
|
|
|
markLink: function(aOrigin, aUrl) {
|
|
|
|
// find the button for this provider, and open it
|
2013-11-22 20:11:19 +00:00
|
|
|
let id = this._toolbarHelper.idFromOrigin(aOrigin);
|
2013-09-06 17:56:01 +00:00
|
|
|
document.getElementById(id).markLink(aUrl);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2013-03-26 23:15:59 +00:00
|
|
|
})();
|