mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-08 20:22:42 +01:00
d61a3d89b7
Safari 14 freeze if the preview is enable https://github.com/invoiceninja/invoiceninja/issues/4305
232 lines
9.0 KiB
PHP
232 lines
9.0 KiB
PHP
@if (empty($hide_pdf))
|
|
<object id="pdfObject" style="display:block;background-color:#525659;border:solid 2px #9a9a9a;" frameborder="1" width="100%" height="{{ isset($pdfHeight) ? $pdfHeight : 1180 }}px"></object>
|
|
<div id="pdfCanvas" style="display:none;width:100%;background-color:#525659;border:solid 2px #9a9a9a;padding-top:40px;text-align:center">
|
|
<canvas id="theCanvas" style="max-width:100%;border:solid 1px #CCCCCC;"></canvas>
|
|
</div>
|
|
<canvas id="signatureCanvas" style="display:none;"></canvas>
|
|
@endif
|
|
|
|
@if (!Utils::isPro() && !request()->borderless)
|
|
<br/>
|
|
<div class="modal fade" id="moreDesignsModal" tabindex="-1" role="dialog" aria-labelledby="moreDesignsModalLabel" aria-hidden="true">
|
|
<div class="modal-dialog">
|
|
<div class="modal-content">
|
|
<div class="modal-header">
|
|
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
|
|
<h4 class="modal-title">{{ trans('texts.more_designs_title') }}</h4>
|
|
</div>
|
|
|
|
<div class="container">
|
|
@if (Utils::isNinja())
|
|
<h3>{{ trans('texts.more_designs_cloud_header') }}</h3>
|
|
<p>{{ trans('texts.more_designs_cloud_text') }}</p>
|
|
@else
|
|
<h3>{{ trans('texts.more_designs_self_host_header', ['price' => INVOICE_DESIGNS_PRICE]) }}</h3>
|
|
<p>{{ trans('texts.more_designs_self_host_text') }}</p>
|
|
@endif
|
|
</div>
|
|
|
|
<center id="designThumbs">
|
|
<p> </p>
|
|
<a href="{{ asset('/images/designs/business.png') }}" data-lightbox="more-designs" data-title="Business">
|
|
<img src="{{ BLANK_IMAGE }}" data-src="{{ asset('/images/designs/business_thumb.png') }}"/>
|
|
</a>
|
|
<a href="{{ asset('/images/designs/creative.png') }}" data-lightbox="more-designs" data-title="Creative">
|
|
<img src="{{ BLANK_IMAGE }}" data-src="{{ asset('/images/designs/creative_thumb.png') }}"/>
|
|
</a>
|
|
<a href="{{ asset('/images/designs/elegant.png') }}" data-lightbox="more-designs" data-title="Elegant">
|
|
<img src="{{ BLANK_IMAGE }}" data-src="{{ asset('/images/designs/elegant_thumb.png') }}"/>
|
|
</a>
|
|
<p> </p>
|
|
<a href="{{ asset('/images/designs/hipster.png') }}" data-lightbox="more-designs" data-title="Hipster">
|
|
<img src="{{ BLANK_IMAGE }}" data-src="{{ asset('/images/designs/hipster_thumb.png') }}"/>
|
|
</a>
|
|
<a href="{{ asset('/images/designs/playful.png') }}" data-lightbox="more-designs" data-title="Playful">
|
|
<img src="{{ BLANK_IMAGE }}" data-src="{{ asset('/images/designs/playful_thumb.png') }}"/>
|
|
</a>
|
|
<a href="{{ asset('/images/designs/photo.png') }}" data-lightbox="more-designs" data-title="Photo">
|
|
<img src="{{ BLANK_IMAGE }}" data-src="{{ asset('/images/designs/photo_thumb.png') }}"/>
|
|
</a>
|
|
<p> </p>
|
|
</center>
|
|
|
|
<div class="modal-footer" id="signUpFooter">
|
|
<button type="button" class="btn btn-default" data-dismiss="modal">{{ trans('texts.cancel') }}</button>
|
|
|
|
@if (Utils::isNinjaProd())
|
|
<a class="btn btn-primary" href="javascript:showUpgradeModal()">{{ trans('texts.go_pro') }}</a>
|
|
@else
|
|
<button type="button" class="btn btn-primary" onclick="buyProduct('{{ INVOICE_DESIGNS_AFFILIATE_KEY }}', '{{ PRODUCT_INVOICE_DESIGNS }}')">{{ trans('texts.buy') }}</button>
|
|
@endif
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endif
|
|
|
|
|
|
<script type="text/javascript">
|
|
window.logoImages = {};
|
|
|
|
logoImages.imageLogo1 = "{{ Form::image_data('images/report_logo1.jpg') }}";
|
|
logoImages.imageLogoWidth1 =120;
|
|
logoImages.imageLogoHeight1 = 40
|
|
|
|
logoImages.imageLogo2 = "{{ Form::image_data('images/report_logo2.jpg') }}";
|
|
logoImages.imageLogoWidth2 =325/2;
|
|
logoImages.imageLogoHeight2 = 81/2;
|
|
|
|
logoImages.imageLogo3 = "{{ Form::image_data('images/report_logo3.png') }}";
|
|
logoImages.imageLogoWidth3 =325/2;
|
|
logoImages.imageLogoHeight3 = 81/2;
|
|
|
|
@if ($account->hasLogo())
|
|
window.accountLogo = "{{ Form::image_data($account->getLogoRaw(), true) }}";
|
|
if (window.invoice) {
|
|
invoice.image = window.accountLogo;
|
|
invoice.imageWidth = {{ $account->getLogoWidth() }};
|
|
invoice.imageHeight = {{ $account->getLogoHeight() }};
|
|
}
|
|
@endif
|
|
|
|
@if ($account->isEnterprise() && $account->background_image_id && $account->background_image)
|
|
window.accountBackground = "{{ Form::image_data($account->background_image->getRawCached(), true) }}";
|
|
@endif
|
|
|
|
var NINJA = NINJA || {};
|
|
@if ($account->hasFeature(FEATURE_CUSTOMIZE_INVOICE_DESIGN))
|
|
NINJA.primaryColor = "{{ $account->primary_color }}";
|
|
NINJA.secondaryColor = "{{ $account->secondary_color }}";
|
|
NINJA.fontSize = {{ $account->font_size }};
|
|
NINJA.headerFont = {!! json_encode($account->getHeaderFontName()) !!};
|
|
NINJA.bodyFont = {!! json_encode($account->getBodyFontName()) !!};
|
|
@else
|
|
NINJA.primaryColor = "";
|
|
NINJA.secondaryColor = "";
|
|
NINJA.fontSize = 9;
|
|
NINJA.headerFont = "Roboto";
|
|
NINJA.bodyFont = "Roboto";
|
|
@endif
|
|
|
|
var invoiceLabels = {!! json_encode($account->getInvoiceLabels()) !!};
|
|
var isRefreshing = false;
|
|
var needsRefresh = false;
|
|
|
|
function refreshPDF(force) {
|
|
try {
|
|
return getPDFString(refreshPDFCB, force);
|
|
} catch (exception) {
|
|
@if (Utils::isTravis())
|
|
var message = exception.message || '';
|
|
if (message.indexOf('Attempting to change value of a readonly property') >= 0) {
|
|
// do nothing
|
|
} else {
|
|
throw exception;
|
|
}
|
|
@else
|
|
console.log(exception);
|
|
console.warn('Failed to generate PDF: %s', exception.message);
|
|
var href = location.href;
|
|
if (href.indexOf('/view/') > 0 && href.indexOf('phantomjs') == -1) {
|
|
var url = href.replace('/view/', '/download/') + '?base64=true';
|
|
$.get(url, function(result) {
|
|
if (result && result.indexOf('data:application/pdf') == 0) {
|
|
refreshPDFCB(result);
|
|
}
|
|
})
|
|
}
|
|
@endif
|
|
}
|
|
}
|
|
|
|
function refreshPDFCB(string) {
|
|
if (!string) return;
|
|
@if ( !empty($hide_pdf))
|
|
return;
|
|
@endif
|
|
PDFJS.workerSrc = '{{ asset('js/pdf_viewer.worker.js') }}';
|
|
var forceJS = {{ Auth::check() && Auth::user()->force_pdfjs ? 'true' : 'false' }};
|
|
// Use the browser's built in PDF viewer
|
|
if ((isChrome || isFirefox) && ! forceJS && ! isMobile) {
|
|
document.getElementById('pdfObject').data = string;
|
|
// Use PDFJS to view the PDF
|
|
} else {
|
|
if (isRefreshing) {
|
|
needsRefresh = true;
|
|
return;
|
|
}
|
|
isRefreshing = true;
|
|
var pdfAsArray = convertDataURIToBinary(string);
|
|
PDFJS.getDocument(pdfAsArray).then(function getPdfHelloWorld(pdf) {
|
|
|
|
pdf.getPage(1).then(function getPageHelloWorld(page) {
|
|
var scale = 1.5;
|
|
var viewport = page.getViewport(scale);
|
|
|
|
var canvas = document.getElementById('theCanvas');
|
|
var context = canvas.getContext('2d');
|
|
canvas.height = viewport.height;
|
|
canvas.width = viewport.width;
|
|
|
|
page.render({canvasContext: context, viewport: viewport});
|
|
$('#pdfObject').hide();
|
|
$('#pdfCanvas').show();
|
|
isRefreshing = false;
|
|
if (needsRefresh) {
|
|
needsRefresh = false;
|
|
refreshPDF();
|
|
}
|
|
});
|
|
});
|
|
}
|
|
}
|
|
|
|
function showMoreDesigns() {
|
|
loadImages('#designThumbs');
|
|
trackEvent('/account', '/view_more_designs');
|
|
$('#moreDesignsModal').modal('show');
|
|
}
|
|
|
|
window.signatureAsPNG = false;
|
|
function convertSignature(invoice) {
|
|
if (! invoice || ! invoice.invitations || ! invoice.invitations.length) {
|
|
return invoice;
|
|
}
|
|
|
|
for (var i=0; i<invoice.invitations.length; i++) {
|
|
var invitation = invoice.invitations[i];
|
|
if (invitation.signature_base64) {
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (! invitation.signature_base64) {
|
|
return invoice;
|
|
}
|
|
|
|
var sourceSVG = invitation.signature_base64;
|
|
if (! sourceSVG || sourceSVG.indexOf('data:image') == 0) {
|
|
return invoice;
|
|
}
|
|
if (window.signatureAsPNG) {
|
|
invoice.invitations[0].signature_base64 = window.signatureAsPNG;
|
|
return invoice;
|
|
} else {
|
|
var signatureDiv = $('#signatureCanvas')[0];
|
|
var ctx = signatureDiv.getContext('2d');
|
|
var img = new Image();
|
|
img.src = "data:image/svg+xml;base64," + sourceSVG;
|
|
img.onload = function() {
|
|
ctx.drawImage(img, 0, 0);
|
|
var blankImage = 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVQYV2NgYAAAAAMAAWgmWQ0AAAAASUVORK5CYII=';
|
|
var image = signatureDiv.toDataURL("image/png") || blankImage;
|
|
window.signatureAsPNG = invoice.invitations[0].signature_base64 = image;
|
|
refreshPDF();
|
|
}
|
|
|
|
return false;
|
|
}
|
|
}
|
|
|
|
</script>
|