1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
/**
* @fileoverview A collection of utility methods for UberPage and its contained
* pages.
*/
cr.define('uber', function() {
/**
* Fixed position header elements on the page to be shifted by handleScroll.
* @type {NodeList}
*/
var headerElements;
/**
* This should be called by uber content pages when DOM content has loaded.
*/
function onContentFrameLoaded() {
headerElements = document.getElementsByTagName('header');
document.addEventListener('scroll', handleScroll);
document.addEventListener('mousedown', handleMouseDownInFrame, true);
invokeMethodOnParent('ready');
// Prevent the navigation from being stuck in a disabled state when a
// content page is reloaded while an overlay is visible (crbug.com/246939).
invokeMethodOnParent('stopInterceptingEvents');
// Trigger the scroll handler to tell the navigation if our page started
// with some scroll (happens when you use tab restore).
handleScroll();
window.addEventListener('message', handleWindowMessage);
}
/**
* Handles scroll events on the document. This adjusts the position of all
* headers and updates the parent frame when the page is scrolled.
*/
function handleScroll() {
var scrollLeft = scrollLeftForDocument(document);
var offset = scrollLeft * -1;
for (var i = 0; i < headerElements.length; i++) {
// As a workaround for http://crbug.com/231830, set the transform to
// 'none' rather than 0px.
headerElements[i].style.webkitTransform = offset ?
'translateX(' + offset + 'px)' : 'none';
}
invokeMethodOnParent('adjustToScroll', scrollLeft);
}
/**
* Tells the parent to focus the current frame if the mouse goes down in the
* current frame (and it doesn't already have focus).
* @param {Event} e A mousedown event.
*/
function handleMouseDownInFrame(e) {
if (!e.isSynthetic && !document.hasFocus())
window.focus();
}
/**
* Handles 'message' events on window.
* @param {Event} e The message event.
*/
function handleWindowMessage(e) {
e = /** @type {!MessageEvent.<!{method: string, params: *}>} */(e);
if (e.data.method === 'frameSelected') {
handleFrameSelected();
} else if (e.data.method === 'mouseWheel') {
handleMouseWheel(
/** @type {{deltaX: number, deltaY: number}} */(e.data.params));
} else if (e.data.method === 'mouseDown') {
handleMouseDown();
} else if (e.data.method === 'popState') {
handlePopState(e.data.params.state, e.data.params.path);
}
}
/**
* This is called when a user selects this frame via the navigation bar
* frame (and is triggered via postMessage() from the uber page).
*/
function handleFrameSelected() {
setScrollTopForDocument(document, 0);
}
/**
* Called when a user mouse wheels (or trackpad scrolls) over the nav frame.
* The wheel event is forwarded here and we scroll the body.
* There's no way to figure out the actual scroll amount for a given delta.
* It differs for every platform and even initWebKitWheelEvent takes a
* pixel amount instead of a wheel delta. So we just choose something
* reasonable and hope no one notices the difference.
* @param {{deltaX: number, deltaY: number}} params A structure that holds
* wheel deltas in X and Y.
*/
function handleMouseWheel(params) {
window.scrollBy(-params.deltaX * 49 / 120, -params.deltaY * 49 / 120);
}
/**
* Fire a synthetic mousedown on the body to dismiss transient things like
* bubbles or menus that listen for mouse presses outside of their UI. We
* dispatch a fake mousedown rather than a 'mousepressedinnavframe' so that
* settings/history/extensions don't need to know about their embedder.
*/
function handleMouseDown() {
var mouseEvent = new MouseEvent('mousedown');
mouseEvent.isSynthetic = true;
document.dispatchEvent(mouseEvent);
}
/**
* Called when the parent window restores some state saved by uber.pushState
* or uber.replaceState. Simulates a popstate event.
* @param {PopStateEvent} state A state object for replaceState and pushState.
* @param {string} path The path the page navigated to.
* @suppress {checkTypes}
*/
function handlePopState(state, path) {
window.history.replaceState(state, '', path);
window.dispatchEvent(new PopStateEvent('popstate', {state: state}));
}
/**
* @return {boolean} Whether this frame has a parent.
*/
function hasParent() {
return window != window.parent;
}
/**
* Invokes a method on the parent window (UberPage). This is a convenience
* method for API calls into the uber page.
* @param {string} method The name of the method to invoke.
* @param {?=} opt_params Optional property bag of parameters to pass to the
* invoked method.
*/
function invokeMethodOnParent(method, opt_params) {
if (!hasParent())
return;
invokeMethodOnWindow(window.parent, method, opt_params, 'chrome://chrome');
}
/**
* Invokes a method on the target window.
* @param {string} method The name of the method to invoke.
* @param {?=} opt_params Optional property bag of parameters to pass to the
* invoked method.
* @param {string=} opt_url The origin of the target window.
*/
function invokeMethodOnWindow(targetWindow, method, opt_params, opt_url) {
var data = {method: method, params: opt_params};
targetWindow.postMessage(data, opt_url ? opt_url : '*');
}
/**
* Updates the page's history state. If the page is embedded in a child,
* forward the information to the parent for it to manage history for us. This
* is a replacement of history.replaceState and history.pushState.
* @param {Object} state A state object for replaceState and pushState.
* @param {string} path The path the page navigated to.
* @param {boolean} replace If true, navigate with replacement.
*/
function updateHistory(state, path, replace) {
var historyFunction = replace ?
window.history.replaceState :
window.history.pushState;
if (hasParent()) {
// If there's a parent, always replaceState. The parent will do the actual
// pushState.
historyFunction = window.history.replaceState;
invokeMethodOnParent('updateHistory', {
state: state, path: path, replace: replace});
}
historyFunction.call(window.history, state, '', '/' + path);
}
/**
* Sets the current title for the page. If the page is embedded in a child,
* forward the information to the parent. This is a replacement for setting
* document.title.
* @param {string} title The new title for the page.
*/
function setTitle(title) {
document.title = title;
invokeMethodOnParent('setTitle', {title: title});
}
/**
* Pushes new history state for the page. If the page is embedded in a child,
* forward the information to the parent; when embedded, all history entries
* are attached to the parent. This is a replacement of history.pushState.
* @param {Object} state A state object for replaceState and pushState.
* @param {string} path The path the page navigated to.
*/
function pushState(state, path) {
updateHistory(state, path, false);
}
/**
* Replaces the page's history state. If the page is embedded in a child,
* forward the information to the parent; when embedded, all history entries
* are attached to the parent. This is a replacement of history.replaceState.
* @param {Object} state A state object for replaceState and pushState.
* @param {string} path The path the page navigated to.
*/
function replaceState(state, path) {
updateHistory(state, path, true);
}
return {
invokeMethodOnParent: invokeMethodOnParent,
invokeMethodOnWindow: invokeMethodOnWindow,
onContentFrameLoaded: onContentFrameLoaded,
pushState: pushState,
replaceState: replaceState,
setTitle: setTitle,
};
});
|