File: /var/www/zaklada/html/node_modules/history/es6/createBrowserHistory.js
'use strict';
var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
import invariant from 'invariant';
import { PUSH, POP } from './Actions';
import { canUseDOM } from './ExecutionEnvironment';
import { addEventListener, removeEventListener, getWindowPath, supportsHistory } from './DOMUtils';
import { saveState, readState } from './DOMStateStorage';
import createDOMHistory from './createDOMHistory';
import parsePath from './parsePath';
/**
 * Creates and returns a history object that uses HTML5's history API
 * (pushState, replaceState, and the popstate event) to manage history.
 * This is the recommended method of managing history in browsers because
 * it provides the cleanest URLs.
 *
 * Note: In browsers that do not support the HTML5 history API full
 * page reloads will be used to preserve URLs.
 */
function createBrowserHistory() {
  var options = arguments.length <= 0 || arguments[0] === undefined ? {} : arguments[0];
  !canUseDOM ? process.env.NODE_ENV !== 'production' ? invariant(false, 'Browser history needs a DOM') : invariant(false) : undefined;
  var forceRefresh = options.forceRefresh;
  var isSupported = supportsHistory();
  var useRefresh = !isSupported || forceRefresh;
  function getCurrentLocation(historyState) {
    historyState = historyState || window.history.state || {};
    var path = getWindowPath();
    var _historyState = historyState;
    var key = _historyState.key;
    var state = undefined;
    if (key) {
      state = readState(key);
    } else {
      state = null;
      key = history.createKey();
      if (isSupported) window.history.replaceState(_extends({}, historyState, { key: key }), null, path);
    }
    var location = parsePath(path);
    return history.createLocation(_extends({}, location, { state: state }), undefined, key);
  }
  function startPopStateListener(_ref) {
    var transitionTo = _ref.transitionTo;
    function popStateListener(event) {
      if (event.state === undefined) return; // Ignore extraneous popstate events in WebKit.
      transitionTo(getCurrentLocation(event.state));
    }
    addEventListener(window, 'popstate', popStateListener);
    return function () {
      removeEventListener(window, 'popstate', popStateListener);
    };
  }
  function finishTransition(location) {
    var basename = location.basename;
    var pathname = location.pathname;
    var search = location.search;
    var hash = location.hash;
    var state = location.state;
    var action = location.action;
    var key = location.key;
    if (action === POP) return; // Nothing to do.
    saveState(key, state);
    var path = (basename || '') + pathname + search + hash;
    var historyState = {
      key: key
    };
    if (action === PUSH) {
      if (useRefresh) {
        window.location.href = path;
        return false; // Prevent location update.
      } else {
          window.history.pushState(historyState, null, path);
        }
    } else {
      // REPLACE
      if (useRefresh) {
        window.location.replace(path);
        return false; // Prevent location update.
      } else {
          window.history.replaceState(historyState, null, path);
        }
    }
  }
  var history = createDOMHistory(_extends({}, options, {
    getCurrentLocation: getCurrentLocation,
    finishTransition: finishTransition,
    saveState: saveState
  }));
  var listenerCount = 0,
      stopPopStateListener = undefined;
  function listenBefore(listener) {
    if (++listenerCount === 1) stopPopStateListener = startPopStateListener(history);
    var unlisten = history.listenBefore(listener);
    return function () {
      unlisten();
      if (--listenerCount === 0) stopPopStateListener();
    };
  }
  function listen(listener) {
    if (++listenerCount === 1) stopPopStateListener = startPopStateListener(history);
    var unlisten = history.listen(listener);
    return function () {
      unlisten();
      if (--listenerCount === 0) stopPopStateListener();
    };
  }
  // deprecated
  function registerTransitionHook(hook) {
    if (++listenerCount === 1) stopPopStateListener = startPopStateListener(history);
    history.registerTransitionHook(hook);
  }
  // deprecated
  function unregisterTransitionHook(hook) {
    history.unregisterTransitionHook(hook);
    if (--listenerCount === 0) stopPopStateListener();
  }
  return _extends({}, history, {
    listenBefore: listenBefore,
    listen: listen,
    registerTransitionHook: registerTransitionHook,
    unregisterTransitionHook: unregisterTransitionHook
  });
}
export default createBrowserHistory;