'use strict'; var ngModule = angular.module('woDirectives'); ngModule.directive('replySelection', function() { return function(scope, elm) { var popover, visible; popover = angular.element(document.querySelector('.reply-selection')); visible = false; elm.on('touchstart click', appear); elm.parent().parent().on('touchstart click', disappear); popover.on('touchstart click', disappear); function appear(e) { e.preventDefault(); e.stopPropagation(); visible = true; // set popover position var top = elm[0].offsetTop; var left = elm[0].offsetLeft; var width = elm[0].offsetWidth; var height = elm[0].offsetHeight; popover[0].style.transition = 'opacity 0.1s linear'; popover[0].style.top = (top + height) + 'px'; popover[0].style.left = (left + width / 2 - popover[0].offsetWidth / 2) + 'px'; popover[0].style.opacity = '1'; } function disappear() { if (!visible) { return; } popover[0].style.transition = 'opacity 0.25s linear, top 0.25s step-end, left 0.25s step-end'; popover[0].style.opacity = '0'; popover[0].style.top = '-9999px'; popover[0].style.left = '-9999px'; visible = false; } }; }); ngModule.directive('frameLoad', function($timeout, $window) { return function(scope, elm) { var iframe = elm[0]; scope.$watch('state.read.open', function(open) { if (open) { // trigger rendering of iframe // otherwise scale to fit would not compute correct dimensions on mobile displayText(scope.state.mailList.selected ? scope.state.mailList.selected.body : undefined); displayHtml(scope.state.mailList.selected ? scope.state.mailList.selected.html : undefined); } }); $window.addEventListener('resize', scaleToFit); iframe.onload = function() { // set listeners scope.$watch('state.mailList.selected.body', displayText); scope.$watch('state.mailList.selected.html', displayHtml); // display initial message body scope.$apply(); }; function displayText(body) { var mail = scope.state.mailList.selected; if ((mail && mail.html) || (mail && mail.encrypted && !mail.decrypted)) { return; } // send text body for rendering in iframe iframe.contentWindow.postMessage({ text: body }, '*'); $timeout(scaleToFit, 0); } function displayHtml(html) { if (!html) { return; } // if there are image tags in the html? var hasImages = /]+\bsrc=['"][^'">]+['"]/ig.test(html); scope.showImageButton = hasImages; iframe.contentWindow.postMessage({ html: html, removeImages: hasImages // avoids doing unnecessary work on the html }, '*'); // only add a scope function to reload the html if there are images if (hasImages) { // reload WITH images scope.displayImages = function() { scope.showImageButton = false; iframe.contentWindow.postMessage({ html: html, removeImages: false }, '*'); }; } $timeout(scaleToFit, 0); } // transform scale iframe (necessary on iOS) to fit container width function scaleToFit() { var parentWidth = elm.parent().width(); var w = elm.width(); var scale = ''; if (w > parentWidth) { scale = parentWidth / w; scale = 'scale(' + scale + ',' + scale + ')'; } elm.css({ '-webkit-transform-origin': '0 0', 'transform-origin': '0 0', '-webkit-transform': scale, 'transform': scale }); } }; });