From 3982f4f67314ec37fd9b22ae54049958af777c1b Mon Sep 17 00:00:00 2001 From: jimmydot Date: Sun, 7 May 2017 14:58:24 -0400 Subject: [VID-6] Initial rebase push Change-Id: I9077be9663754d9b22f77c6a7b3109b361b39346 Signed-off-by: jimmydot --- .../vid/scripts/directives/popupWindowDirective.js | 88 ++++++++++++++++++++++ 1 file changed, 88 insertions(+) create mode 100755 vid-app-common/src/main/webapp/app/vid/scripts/directives/popupWindowDirective.js (limited to 'vid-app-common/src/main/webapp/app/vid/scripts/directives/popupWindowDirective.js') diff --git a/vid-app-common/src/main/webapp/app/vid/scripts/directives/popupWindowDirective.js b/vid-app-common/src/main/webapp/app/vid/scripts/directives/popupWindowDirective.js new file mode 100755 index 00000000..76034d54 --- /dev/null +++ b/vid-app-common/src/main/webapp/app/vid/scripts/directives/popupWindowDirective.js @@ -0,0 +1,88 @@ +/*- + * ============LICENSE_START======================================================= + * VID + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. + * ================================================================================ + * Licensed 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. + * ============LICENSE_END========================================================= + */ + +"use strict"; + +var popupWindowDirective = function($log, $window) { + + function getZIndex(element) { + var maxZIndex = 0; + $(window.document).find("*").each(function() { + var zIndex = parseInt($(this).css("z-index")); + if (zIndex > maxZIndex) { + maxZIndex = zIndex; + } + }); + + return maxZIndex; + } + + var scrollPosition = { + x : 0, + y : 0 + }; + + var link = function(scope, element, attrs, controller, transcludeFn) { + + var zIndex = getZIndex(element.parent()) + 1; + + element.css("z-index", zIndex + 1); + + var backgroundStyle = "display: none; position: fixed; z-index:" + + zIndex + ";" + "top: 0; left: 0; width: 100%; height: 100%;" + + "background-color: #000000; opacity: 0.5"; + + var className = attrs["class"]; + var classString = ""; + if (className !== undefined && className !== null && className !== "") { + element.children().children().children().children().addClass( + className); + element.removeClass(className); + } + + element.before("
"); + + attrs.$observe("ngxShow", function(value) { + if (value === "true") { + scrollPosition = { + x : $window.pageXOffset, + y : $window.pageYOffset + } + $window.scrollTo(0, 0); + element.css("display", "table"); + element.prev().css("display", "block"); + } else if (value === "false") { + element.css("display", "none"); + element.prev().css("display", "none"); + $window.scrollTo(scrollPosition.x, scrollPosition.y); + } + }); + } + + return { + restrict : "EA", + transclude : true, + replace : true, + link : link, + template : '
' + }; +} + +appDS2.directive("popupWindow", [ "$log", "$window", popupWindowDirective ]); -- cgit 1.2.3-korg