/* eslint-disable no-var */ /* globals $, svgEditor, svgedit, svgCanvas, DOMParser */ /* * ext-imagelib.js * * Licensed under the MIT License * * Copyright(c) 2010 Alexis Deveria * */ svgEditor.addExtension('imagelib', function () { 'use strict'; var uiStrings = svgEditor.uiStrings; $.extend(uiStrings, { imagelib: { select_lib: 'Select an image library', show_list: 'Show library list', import_single: 'Import single', import_multi: 'Import multiple', open: 'Open as new document' } }); var imgLibs = [ { name: 'Demo library (local)', url: svgEditor.curConfig.extPath + 'imagelib/index.html', description: 'Demonstration library for SVG-edit on this server' }, { name: 'IAN Symbol Libraries', url: 'https://ian.umces.edu/symbols/catalog/svgedit/album_chooser.php', description: 'Free library of illustrations' }, { name: 'Openclipart', url: 'https://openclipart.org/svgedit', description: 'Share and Use Images. Over 50,000 Public Domain SVG Images and Growing.' } ]; function closeBrowser () { $('#imgbrowse_holder').hide(); } function importImage (url) { var newImage = svgCanvas.addSvgElementFromJson({ 'element': 'image', 'attr': { 'x': 0, 'y': 0, 'width': 0, 'height': 0, 'id': svgCanvas.getNextId(), 'style': 'pointer-events:inherit' } }); svgCanvas.clearSelection(); svgCanvas.addToSelection([newImage]); svgCanvas.setImageURL(url); } var mode = 's'; var multiArr = []; var transferStopped = false; var pending = {}; var preview, submit; window.addEventListener('message', function (evt) { // Receive postMessage data var response = evt.data; if (!response || typeof response !== 'string') { // Todo: Should namespace postMessage API for this extension and filter out here // Do nothing return; } try { // This block can be removed if embedAPI moves away from a string to an object (if IE9 support not needed) var res = JSON.parse(response); if (res.namespace) { // Part of embedAPI communications return; } } catch (e) {} var char1 = response.charAt(0); var id; var svgStr; var imgStr; if (char1 !== '{' && transferStopped) { transferStopped = false; return; } if (char1 === '|') { var secondpos = response.indexOf('|', 1); id = response.substr(1, secondpos - 1); response = response.substr(secondpos + 1); char1 = response.charAt(0); } // Hide possible transfer dialog box $('#dialog_box').hide(); var entry, curMeta; switch (char1) { case '{': // Metadata transferStopped = false; curMeta = JSON.parse(response); pending[curMeta.id] = curMeta; var name = (curMeta.name || 'file'); var message = uiStrings.notification.retrieving.replace('%s', name); if (mode !== 'm') { $.process_cancel(message, function () { transferStopped = true; // Should a message be sent back to the frame? $('#dialog_box').hide(); }); } else { entry = $('
' + message + '
').data('id', curMeta.id); preview.append(entry); curMeta.entry = entry; } return; case '<': svgStr = true; break; case 'd': if (response.indexOf('data:image/svg+xml') === 0) { var pre = 'data:image/svg+xml;base64,'; var src = response.substring(pre.length); response = svgedit.utilities.decode64(src); svgStr = true; break; } else if (response.indexOf('data:image/') === 0) { imgStr = true; break; } // Else fall through default: // TODO: See if there's a way to base64 encode the binary data stream // var str = 'data:;base64,' + svgedit.utilities.encode64(response, true); // Assume it's raw image data // importImage(str); // Don't give warning as postMessage may have been used by something else if (mode !== 'm') { closeBrowser(); } else { pending[id].entry.remove(); } // $.alert('Unexpected data was returned: ' + response, function() { // if (mode !== 'm') { // closeBrowser(); // } else { // pending[id].entry.remove(); // } // }); return; } switch (mode) { case 's': // Import one if (svgStr) { svgCanvas.importSvgString(response); } else if (imgStr) { importImage(response); } closeBrowser(); break; case 'm': // Import multiple multiArr.push([(svgStr ? 'svg' : 'img'), response]); var title; curMeta = pending[id]; if (svgStr) { if (curMeta && curMeta.name) { title = curMeta.name; } else { // Try to find a title var xml = new DOMParser().parseFromString(response, 'text/xml').documentElement; title = $(xml).children('title').first().text() || '(SVG #' + response.length + ')'; } if (curMeta) { preview.children().each(function () { if ($(this).data('id') === id) { if (curMeta.preview_url) { $(this).html('' + title); } else { $(this).text(title); } submit.removeAttr('disabled'); } }); } else { preview.append('
' + title + '
'); submit.removeAttr('disabled'); } } else { if (curMeta && curMeta.preview_url) { title = curMeta.name || ''; } if (curMeta && curMeta.preview_url) { entry = '' + title; } else { entry = ''; } if (curMeta) { preview.children().each(function () { if ($(this).data('id') === id) { $(this).html(entry); submit.removeAttr('disabled'); } }); } else { preview.append($('
').append(entry)); submit.removeAttr('disabled'); } } break; case 'o': // Open if (!svgStr) { break; } svgEditor.openPrep(function (ok) { if (!ok) { return; } svgCanvas.clear(); svgCanvas.setSvgString(response); // updateCanvas(); }); closeBrowser(); break; } }, true); function toggleMulti (show) { $('#lib_framewrap, #imglib_opts').css({right: (show ? 200 : 10)}); if (!preview) { preview = $('
').css({ position: 'absolute', top: 45, right: 10, width: 180, bottom: 45, background: '#fff', overflow: 'auto' }).insertAfter('#lib_framewrap'); submit = $('') .appendTo('#imgbrowse') .on('click touchend', function () { $.each(multiArr, function (i) { var type = this[0]; var data = this[1]; if (type === 'svg') { svgCanvas.importSvgString(data); } else { importImage(data); } svgCanvas.moveSelectedElements(i * 20, i * 20, false); }); preview.empty(); multiArr = []; $('#imgbrowse_holder').hide(); }).css({ position: 'absolute', bottom: 10, right: -10 }); } preview.toggle(show); submit.toggle(show); } function showBrowser () { var browser = $('#imgbrowse'); if (!browser.length) { $('
' + '
').insertAfter('#svg_docprops'); browser = $('#imgbrowse'); var allLibs = uiStrings.imagelib.select_lib; var libOpts = $('