- Breaking change: Locale now formatted as export - Breaking change: Moved out remaining modular i18n (imagelib) to own folder - Breaking change: Drop `executeAfterLoads` (and getJSPDF/getCanvg) - Breaking change: `RGBColor` must accept `new` - Breaking change: canvg - `stackBlurCanvasRGBA` must be set now by function (`setStackBlurCanvasRGBA`) rather than global; `canvg` now a named export - Breaking change: Avoid passing `canvg`/`buildCanvgCallback` to extensions (have them import) - Fix: i18nize imaglib more deeply - Fix: Positioning of Document Properties dialog (Fixes #246) - Fix (regression): PDF Export (Fixes #249) - Fix (regression): Add polyfill for `ChildNode`/`ParentNode` (and use further) - Fix (regression): Apply Babel universally to dependencies - Fix (regression): Ordering of `uaPrefix` function in `svgEditor.js` - Fix (regression): Embedded API - Fix (embedded editor): Fix backspace key in Firefox so it doesn't navigate out of frame - Fix: Alert if no exportWindow for PDF (e.g., if blocked) - Refactoring( RGBColor) `RGBColor` as class, without rebuilding constants, optimize string replacement, move methods to prototype, use templates and object literals, use `Object.keys` - Refactoring (canvg) Use classes more internally, use shorthand objects; array extras, return to lazy-loading - Refactoring: Use Promises in place of `$.getScript`; always return Promises in case deciding to await resolving - Refactoring: Avoid importing `RGBColor` into `svgutils.js` (jsPDF imports it itself) - Refactoring: Arrow functions, destructuring, shorter property references - Refactoring: Fix `lang` and `dir` for locales (though not in use currently anyways) - Refactoring: Provide path config for canvg, jspdf
75 lines
2.4 KiB
JavaScript
75 lines
2.4 KiB
JavaScript
var svgEditorExtension_webappfind = (function () {
|
|
'use strict';
|
|
|
|
/*
|
|
Depends on Firefox add-on and executables from https://github.com/brettz9/webappfind
|
|
|
|
Todos:
|
|
1. See WebAppFind Readme for SVG-related todos
|
|
*/
|
|
|
|
var extWebappfind = {
|
|
name: 'WebAppFind',
|
|
init: function init() {
|
|
var svgEditor = this;
|
|
// Todo: Update to new API once released
|
|
window.addEventListener('message', function (e) {
|
|
if (e.origin !== window.location.origin || // PRIVACY AND SECURITY! (for viewing and saving, respectively)
|
|
!Array.isArray(e.data) || excludedMessages.includes(e.data[0]) // Validate format and avoid our post below
|
|
) {
|
|
return;
|
|
}
|
|
var messageType = e.data[0];
|
|
var svgString = void 0;
|
|
switch (messageType) {
|
|
case 'webapp-view':
|
|
// Populate the contents
|
|
pathID = e.data[1];
|
|
|
|
svgString = e.data[2];
|
|
svgEditor.loadFromString(svgString);
|
|
|
|
/* if ($('#tool_save_file')) {
|
|
$('#tool_save_file').disabled = false;
|
|
} */
|
|
break;
|
|
case 'webapp-save-end':
|
|
alert('save complete for pathID ' + e.data[1] + '!');
|
|
break;
|
|
default:
|
|
throw new Error('Unexpected mode');
|
|
}
|
|
}, false);
|
|
var saveMessage = 'webapp-save',
|
|
readMessage = 'webapp-read',
|
|
excludedMessages = [readMessage, saveMessage];
|
|
var pathID = void 0;
|
|
|
|
window.postMessage([readMessage], window.location.origin !== 'null' ? window.location.origin : '*'); // Avoid "null" string error for file: protocol (even though file protocol not currently supported by add-on)
|
|
|
|
return {
|
|
name: 'WebAppFind',
|
|
svgicons: svgEditor.curConfig.extIconsPath + 'webappfind-icon.svg',
|
|
buttons: [{
|
|
id: 'webappfind_save', //
|
|
type: 'app_menu',
|
|
title: 'Save Image back to Disk',
|
|
position: 4, // Before 0-based index position 4 (after the regular "Save Image (S)")
|
|
events: {
|
|
click: function click() {
|
|
if (!pathID) {
|
|
// Not ready yet as haven't received first payload
|
|
return;
|
|
}
|
|
window.postMessage([saveMessage, pathID, svgEditor.canvas.getSvgString()], window.location.origin);
|
|
}
|
|
}
|
|
}]
|
|
};
|
|
}
|
|
};
|
|
|
|
return extWebappfind;
|
|
|
|
}());
|