/**
 * @file
 * Handles AJAX fetching of views, including filter submission and response.
 */
(function ($) {

  /**
   * Attaches the AJAX behavior to exposed filter forms and key views links.
   */
  Drupal.behaviors.ViewsAjaxView = {};
  Drupal.behaviors.ViewsAjaxView.attach = function() {
    if (Drupal.settings && Drupal.settings.views && Drupal.settings.views.ajaxViews) {
      $.each(Drupal.settings.views.ajaxViews, function(i, settings) {
        Drupal.views.instances[i] = new Drupal.views.ajaxView(settings);
      });
    }
  };

  Drupal.views = {};
  Drupal.views.instances = {};

  /**
   * JavaScript object for a certain view.
   */
  Drupal.views.ajaxView = function(settings) {
    var selector = '.view-dom-id-' + settings.view_dom_id;
    this.$view = $(selector);

    // If view is not present return to prevent errors.
    if (!this.$view.length) {
      return;
    }

    // Retrieve the path to use for views' ajax.
    var ajax_path = Drupal.settings.views.ajax_path;

    // If there are multiple views this might've ended up showing up multiple
    // times.
    if (ajax_path.constructor.toString().indexOf("Array") != -1) {
      ajax_path = ajax_path[0];
    }

    // Check if there are any GET parameters to send to views.
    var queryString = window.location.search || '';
    if (queryString !== '') {
      // Remove the question mark and Drupal path component if any.
      var queryString = queryString.slice(1).replace(/q=[^&]+&?|&?render=[^&]+/, '');
      if (queryString !== '') {
        // If there is a '?' in ajax_path, clean url are on and & should be
        // used to add parameters.
        queryString = ((/\?/.test(ajax_path)) ? '&' : '?') + queryString;
      }
    }

    this.element_settings = {
      url: ajax_path + queryString,
      submit: settings,
      setClick: true,
      event: 'click',
      selector: selector,
      progress: {
        type: 'throbber'
      }
    };

    this.settings = settings;

    // Add the ajax to exposed forms.
    this.$exposed_form = $('#views-exposed-form-' + settings.view_name.replace(/_/g, '-') + '-' + settings.view_display_id.replace(/_/g, '-'));
    this.$exposed_form.once(jQuery.proxy(this.attachExposedFormAjax, this));

    // Store Drupal.ajax objects here for all pager links.
    this.links = [];

    // Add the ajax to pagers.
    this.$view
      .once(jQuery.proxy(this.attachPagerAjax, this));

    // Add a trigger to update this view specifically. In order to trigger a
    // refresh use the following code.
    //
    // @code
    // jQuery('.view-name').trigger('RefreshView');
    // @endcode
    // Add a trigger to update this view specifically.
    var self_settings = this.element_settings;
    self_settings.event = 'RefreshView';
    var self = this;
    this.$view.once('refresh', function () {
      self.refreshViewAjax = new Drupal.ajax(self.selector, self.$view, self_settings);
    });
  };

  Drupal.views.ajaxView.prototype.attachExposedFormAjax = function() {
    var button = $('input[type=submit], button[type=submit], input[type=image]', this.$exposed_form);
    button = button[0];

    // Call the autocomplete submit before doing AJAX.
    $(button).click(function () {
      if (Drupal.autocompleteSubmit) {
        Drupal.autocompleteSubmit();
      }
    });

    this.exposedFormAjax = new Drupal.ajax($(button).attr('id'), button, this.element_settings);
  };

  /**
   * Attach the ajax behavior to each link.
   */
  Drupal.views.ajaxView.prototype.attachPagerAjax = function() {
    this.$view.find('ul.pager > li > a, ol.pager > li > a, th.views-field a, .attachment .views-summary a')
      .each(jQuery.proxy(this.attachPagerLinkAjax, this));
  };

  /**
   * Attach the ajax behavior to a single link.
   */
  Drupal.views.ajaxView.prototype.attachPagerLinkAjax = function(id, link) {
    var $link = $(link);
    var viewData = {};
    var href = $link.attr('href');
    // Don't attach to pagers inside nested views.
    if ($link.closest('.view')[0] !== this.$view[0] &&
      $link.closest('.view').parent().hasClass('attachment') === false) {
      return;
    }

    // Provide a default page if none has been set. This must be done
    // prior to merging with settings to avoid accidentally using the
    // page landed on instead of page 1.
    if (typeof(viewData.page) === 'undefined') {
      viewData.page = 0;
    }

    // Construct an object using the settings defaults and then overriding
    // with data specific to the link.
    $.extend(
      viewData,
      this.settings,
      Drupal.Views.parseQueryString(href),
      // Extract argument data from the URL.
      Drupal.Views.parseViewArgs(href, this.settings.view_base_path)
    );

    // For anchor tags, these will go to the target of the anchor rather
    // than the usual location.
    $.extend(viewData, Drupal.Views.parseViewArgs(href, this.settings.view_base_path));

    // Construct an object using the element settings defaults,
    // then overriding submit with viewData.
    var pager_settings = $.extend({}, this.element_settings);
    pager_settings.submit = viewData;
    this.pagerAjax = new Drupal.ajax(false, $link, pager_settings);
    this.links.push(this.pagerAjax);
  };

  Drupal.ajax.prototype.commands.viewsScrollTop = function (ajax, response, status) {
    // Scroll to the top of the view. This will allow users
    // to browse newly loaded content after e.g. clicking a pager
    // link.
    var offset = $(response.selector).offset();
    // We can't guarantee that the scrollable object should be
    // the body, as the view could be embedded in something
    // more complex such as a modal popup. Recurse up the DOM
    // and scroll the first element that has a non-zero top.
    var scrollTarget = response.selector;
    while ($(scrollTarget).scrollTop() == 0 && $(scrollTarget).parent()) {
      scrollTarget = $(scrollTarget).parent();
    }
    // Only scroll upward.
    if (offset.top - 10 < $(scrollTarget).scrollTop()) {
      $(scrollTarget).animate({scrollTop: (offset.top - 10)}, 500);
    }
  };

})(jQuery);
;/*})'"*/;/*})'"*/
/**
 * @file
 */

(function ($) {

    Drupal.behaviors.HujiOsBoxesRemove = {
        attach: function (ctx) {
            $('li.widget-remove a').once('os-boxes-remove').click(function (e) {
                var widget = $(this).closest('.block');
                removeWidget(widget, this.search);
                $.ajax(this.href);
                e.preventDefault();
                e.stopPropagation();
            })
        }
    };

    Drupal.behaviors.NidOnTitle = {
        attach: function (context) {
            if (Drupal.settings.nid) {
                $('.page-node-edit #overlay-title').append(' (nid: ' + Drupal.settings.nid + ')');
            }
        }
    };

    Drupal.behaviors.ResponsiveMenu = {
        attach: function (ctx) {
            var $LowerNavLI = $('#block-os-secondary-menu .navbar-collapse > ul li'),
                    $TopNav = $('.mean-bar nav.mean-nav > ul'),
                    $win = $(window);
            var mobile = 0;
            function navResize() {
                mobile = window.innerWidth <= 768;
                $LowerNavLI.appendTo(mobile ? $TopNav : "");
                $TopNav[mobile ? "addClass" : "removeClass"]('BothNav');
            }

            navResize();
            $win.resize(navResize);

            function stickyNav() {
                var scrollTop = $win.scrollTop(), stickyNavTop = 0

                if ($('.mean-bar nav.mean-nav').offset()) {
                    stickyNavTop = $('.mean-bar nav.mean-nav').offset().top;
                }

                if (scrollTop > stickyNavTop && mobile) {
                    $('.mean-bar').addClass('sticky');
                    $('#header').css('margin-top', '50px');
                }
            }

            $win.scroll(function () {
                stickyNav();
            });
        }
    };

    var removed_widgets = {},
            template = 'This widget has been removed from this section. You can <a href="/os/site01/os/widget/boxes/{delta}/remove/{region}{query}">undo this action</a>';

    function removeWidget(widget, query) {
        var id = widget.attr('id'),
                delta = id.replace('block-boxes-', '').replace(/--\d/, ''),
                region = findRegion(widget),
                html = template;

        html = html.replace('{delta}', delta);
        html = html.replace('{region}', region);
        html = html.replace('{query}', query);

        removed_widgets[id] = widget.children().detach();
        widget.html(html);
        widget.find('a').click(function (e) {
            var widget = $(this).closest('.block');
            undoRemoveWidget(widget);
            $.ajax(this.href);
            e.preventDefault();
            e.stopPropagation();
        });
    }

    function undoRemoveWidget(widget) {
        var id = widget.attr('id');

        widget.empty().append(removed_widgets[id]);
    }

    function findRegion(widget) {
        var region = widget.closest('.region'),
                classes = region.attr('class').split(' '),
                region_name = '';

        $.each(classes, function (i, v) {
            if (typeof v == 'string' && v.indexOf('region-') > -1) {
                region_name = v.replace('region-', '').replace('-', '_');
                // Found what we need, break out
                // break out of the loop.
                return false;
            }
        });

        return region_name;
    }

    Drupal.behaviors.PeopleSearching = {
        attach: function (ctx) {
            $("#huji_people").submit(function (event) {
                event.preventDefault();

                var value = jQuery(this).find('input#edit-combine').val();

                if (value == "") {
                    return;
                }

                window.location = Drupal.settings.paths.vsite_home + '/people?combine=' + value;

            });
        }
    };

    Drupal.behaviors.PagingBack = {
        attach: function (context) {
            (function (window, location) {
                if ($('body').hasClass('page-people') && !$('body').hasClass('page-node-edit')) {
                    if ($('ul.pagination').length == 0) {
                        localStorage.setItem('pager', 'false');
                    } else {
                        localStorage.setItem('pager', 'true');
                    }
                } else if ($('body').hasClass('node-type-person') && !$('body').hasClass('page-node-edit') && localStorage.getItem('pager') == 'false') {
                    history.replaceState(null, document.title, location.pathname + "#!/stealingyourhistory");
                    history.pushState(null, document.title, location.pathname);
                    localStorage.setItem('pager', 'false');

                    window.addEventListener("popstate", function () {
                        if (location.hash === "#!/stealingyourhistory") {
                            history.replaceState(null, document.title, document.referrer.split("?page=")[0]);
                            setTimeout(function () {
                                location.replace(document.referrer.split("?page=")[0]);
                            }, 0);
                        }
                    }, false);
                }
            }(window, location));
        }
    };

    Drupal.behaviors.AlertResetSettings = {
        attach: function (ctx) {
            $('#edit-reset, #edit-preset').click(function (e) {
                if (Drupal.settings.messageAppearance) {
                    var result = window.confirm(Drupal.settings.messageAppearance);
                    if (result == false) {
                        e.preventDefault();
                    }
                }
            });
        }
    };

    /* 
     * To change this license header, choose License Headers in Project Properties.
     * To change this template file, choose Tools | Templates
     * and open the template in the editor.
     */

    (function ($, Drupal) {
        Drupal.behaviors.langCKEditorConfig = {
            attach: function (context, settings) {
                if ((typeof CKEDITOR !== "undefined")) {
                    CKEDITOR.config.contentsLangDirection = $('html').attr('dir') ? $('html').attr('dir') : "ltr";
                }
            }
        }
    })(jQuery, Drupal);

   /* Drupal.behaviors.fix_simple_cookie_compliance = {
        attach: function (ctx) {
            $('.cookie-compliance__button').click(function (e) {
                // Prevent the default behavior of the click event, which typically triggers a server request.
                e.preventDefault();
                // Set the cookie in client because not always happens in server.
                var cookie_name = 'simple_cookie_compliance_dismissed';

                // See if the cookie exists.
                var cookie_pos = document.cookie.indexOf(cookie_name + '=1');

                // Calculate the expiration date three months from now.
                var expireDate = new Date();
                expireDate.setMonth(expireDate.getMonth() + 3);

                // If the cookie does not exist then add it.
                if (cookie_pos == -1) {
                    document.cookie =
                        cookie_name + '=1'
                        + '; expires=' + expireDate.toUTCString()
                        + '; path=/'
                        + '; secure; samesite=None;';
                    $('#cookie-compliance').hide();
                }
            });
        }
    }*/

})(jQuery);
;/*})'"*/;/*})'"*/
/* 
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */


/**
 * @file
 */

(function ($) {
    /**
     * Keep the current tab active on page reload or when going back #1701
     */

    if ($('.os-boxes-tabbed').length > 0) {
        var tabActiveIndex = getParams();
        $('.os-boxes-tabbed').tabs({
            activate: function (event, ui) {
                var params = "?tab-active" + "=" + ui.newTab.index()//event.currentTarget.getAttribute("id");
                var refresh = window.location.protocol + "//" + window.location.host + window.location.pathname + params;
                window.history.pushState({path: refresh}, '', refresh);
            },
            active: tabActiveIndex

        });
    }

    function getParams() {
        let params = window.location.href.split("?");
        if (params[1]) {
            let indexTab = window.location.href.split("=");
            if (indexTab[1]) {
                return decodeURIComponent(indexTab[1]);
            }
        }
        return 0;
    }
})(jQuery);
;/*})'"*/;/*})'"*/
