themes/solr/static/javascript/main.js (46 lines of code) (raw):

/* Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ ;(function() { /* * -------------------------------------------------------------------------- * Initialize non-Angular components (limit this) * -------------------------------------------------------------------------- */ $(function() { $('h2').addClass('offset'); $('.container .row .small-12 h2').removeClass('offset'); $('.security .row .large-12 h2').removeClass('offset'); $('.topnews .row h2').removeClass('offset'); $('.smooth-scroll').smoothScroll({ offset: 100 }); // Conditionally show security news block const latest_sec_days = (new Date() - new Date($('.security').attr('latest-date'))) / (1000 * 60 * 60 * 24); if (latest_sec_days < 60) { $('.security').show(); } // Conditionally show last news entry const latest_news_days = (new Date() - new Date($('.topnews').attr('latest-date'))) / (1000 * 60 * 60 * 24); if (latest_news_days < 60) { $('.topnews').show(); } // Conditionally show last operator news entry const latest_operator_news_days = (new Date() - new Date($('.topnews-operator').attr('latest-date'))) / (1000 * 60 * 60 * 24); if (latest_operator_news_days < 60) { $('.topnews-operator').show(); } }); /* * Shrinking top-bar */ $(function() { var header = $(".top-bar") $(window).scroll(function() { var scroll = $(window).scrollTop(); if (scroll >= 150) { $(header).addClass("shrink"); } if (scroll < 150) { $(header).removeClass("shrink"); } }); }); angular.module('page', []) .controller('page.controllers.main', [ '$scope', function($scope) { /* * Initialize. */ /* * View methods. */ $scope.select = function(key, n) { $scope.model[key] = n } $scope.isSelected = function(key, n) { return $scope.model[key] == n } } ]) .directive('navigation', [function() { return { restrict: 'C', scope: true, link: function(scope, el, attrs) { scope.model = { path: '' } scope.$watch(function() { return window.location.pathname }, function(n, o, s) { scope.model.path = window.location.pathname $(el).find('a').removeClass('selected') $(el).find('a[href="' + scope.model.path + '"]').addClass('selected') }) } } }]) .directive('toggle', ['$window', function($window) { return { restrict: 'C', scope: true, link: function(scope, el, attrs) { var windowEl = angular.element($window), offset = el.offset().top, handler = function() { scope.scroll = windowEl.scrollTop() }, focusSearch = function() { window.setTimeout(function() { $('input[type="search"]').focus() }, 1) } windowEl.on('scroll', scope.$apply.bind(scope, handler)) handler(); scope.toggled = false scope.toggle = function() { if(!scope.toggled && scope.scroll > 100) { $.smoothScroll({ afterScroll: function() { scope.$apply(function() { scope.toggled = true focusSearch() }) } }, 0) } else { scope.toggled = true focusSearch() } } scope.$watch('scroll', function(n, o, s) { if(n > 100) { scope.toggled = false } }) } } }]) .directive('anchorTop', ['$window', function($window) { return { restrict: 'C', scopr: true, link: function(scope, el, attrs) { var windowEl = angular.element($window), offset = el.offset().top, handler = function() { scope.scroll = windowEl.scrollTop() } windowEl.on('scroll', scope.$apply.bind(scope, handler)) handler(); scope.$watch('scroll', function(n, o, s) { var difference = (-1 * (offset - n)) + 57; if(difference > 0) { el.addClass('anchor-fixed') } else { el.removeClass('anchor-fixed') } }) } } }]) })()