- Breaking change: Require `new` with `EmbeddedSVGEdit` (allows us to use `class` internally)
- Breaking change: If `svgcanvas.setUiStrings` must now be called if not using editor in order
to get strings (for sake of i18n) (and if using path.js alone, must also have its `setUiStrings` called)
- Breaking change (ext-overview-window): Avoid global `overviewWindowGlobals`
- Breaking change (ext-imagelib): Change to object-based encoding for namespacing of
messages (though keep stringifying/parsing ourselves until we remove IE9 support)
- Breaking change: Rename `jquery.js` to `jquery.min.js`
- Breaking change: Remove `scoped` attribute from `style`; it is now deprecated and
obsolete; also move to head (after other stylesheets)
- Enhancement: Make SpinButton plugin independent of SVGEdit via
generic state object for tool_scale
- Enhancement: Remove now unused Python l10n scripts (#238)
- Enhancement: ES6 Modules (including jQuery plugins but not jQuery)
- Enhancement: Further JSDoc (incomplete)
- Enhancement (Optimization): Compress images using imageoptim (and add
npm script) (per #215)
- Fix: i18nize path.js strings and canvas notifications
- Fix: Attempt i18n for ext-markers
- Refactoring (ext-storage): Move locale info to own file imported by the extension (toward modularity; still should be split into separate files by language and *dynamically* imported, but we'll wait for better `import` support to refactor this)
- Refactoring: For imagelib, add local jQuery copy (using old 1.4.4 as had
been using from server)
- Refactoring: For MathJax, add local copy (using old 2.3 as had been using from
server); server had not been working
- Refactoring: Remove `use strict` (implicit in modules)
- Refactoring: Remove trailing whitespace, fix some code within comments
- Refactoring: Expect `jQuery` global rather than `$` for better modularity
(also to adapt line later once available via `import`)
- Refactoring: Prefer `const` (and then `let`)
- Refactoring: Add block scope keywords closer to first block in which they appear
- Refactoring: Use ES6 `class`
- Refactoring `$.isArray` -> `Array.isArray` and avoid some other jQuery core methods
with simple VanillaJS replacements
- Refactoring: Use abbreviated object property syntax
- Refactoring: Object destructuring
- Refactoring: Remove `uiStrings` contents in svg-editor.js (obtains from locale)
- Refactoring: Add favicon to embedded API file
- Refactoring: Use arrow functions for brief functions (incomplete)
- Refactoring: Use `Array.prototype.includes`/`String.prototype.includes`;
`String.prototype.startsWith`, `String.prototype.trim`
- Refactoring: Remove now unnecessary svgutils do/while resetting of variables
- Refactoring: Use shorthand methods for object literals (avoid ": function")
- Refactoring: Avoid quoting object property keys where unnecessary
- Refactoring: Just do truthy/falsey check for lengths in place of comparison to 0
- Refactoring (Testing): Avoid jQuery usage within most test files (defer script,
also in preparation for future switch to ES6 modules for tests)
- Refactoring: Make jpicker variable declaration indent bearable
- Refactoring (Linting): Finish svgcanvas.js
- Docs: Mention in comment no longer an entry file as before
- Docs: Migrate old config, extensions, and FAQ docs
- Licensing: Indicate MIT is license type of rgbcolor; rename/add license file name for
jgraduate and screencast to reflect type (Apache 2.0); rename file to reflect it
contains license information (of type MIT) for Raphael icons
266 lines
7.4 KiB
JavaScript
266 lines
7.4 KiB
JavaScript
/* globals jQuery, svgEditor, svgedit, svgCanvas */
|
|
/*
|
|
* ext-foreignobject.js
|
|
*
|
|
* Licensed under the Apache License, Version 2
|
|
*
|
|
* Copyright(c) 2010 Jacques Distler
|
|
* Copyright(c) 2010 Alexis Deveria
|
|
*
|
|
*/
|
|
|
|
import {NS} from './svgedit.js';
|
|
|
|
svgEditor.addExtension('foreignObject', function (S) {
|
|
const $ = jQuery;
|
|
const Utils = svgedit.utilities,
|
|
// {svgcontent} = S,
|
|
// addElem = S.addSvgElementFromJson,
|
|
svgdoc = S.svgroot.parentNode.ownerDocument;
|
|
|
|
const properlySourceSizeTextArea = function () {
|
|
// TODO: remove magic numbers here and get values from CSS
|
|
const height = $('#svg_source_container').height() - 80;
|
|
$('#svg_source_textarea').css('height', height);
|
|
};
|
|
|
|
function showPanel (on) {
|
|
let fcRules = $('#fc_rules');
|
|
if (!fcRules.length) {
|
|
fcRules = $('<style id="fc_rules"></style>').appendTo('head');
|
|
}
|
|
fcRules.text(!on ? '' : ' #tool_topath { display: none !important; }');
|
|
$('#foreignObject_panel').toggle(on);
|
|
}
|
|
|
|
function toggleSourceButtons (on) {
|
|
$('#tool_source_save, #tool_source_cancel').toggle(!on);
|
|
$('#foreign_save, #foreign_cancel').toggle(on);
|
|
}
|
|
|
|
let selElems,
|
|
started,
|
|
newFO,
|
|
editingforeign = false;
|
|
|
|
// Function: setForeignString(xmlString, elt)
|
|
// This function sets the content of element elt to the input XML.
|
|
//
|
|
// Parameters:
|
|
// xmlString - The XML text.
|
|
// elt - the parent element to append to
|
|
//
|
|
// Returns:
|
|
// This function returns false if the set was unsuccessful, true otherwise.
|
|
function setForeignString (xmlString) {
|
|
const elt = selElems[0];
|
|
try {
|
|
// convert string into XML document
|
|
const newDoc = Utils.text2xml('<svg xmlns="' + NS.SVG + '" xmlns:xlink="' + NS.XLINK + '">' + xmlString + '</svg>');
|
|
// run it through our sanitizer to remove anything we do not support
|
|
S.sanitizeSvg(newDoc.documentElement);
|
|
elt.parentNode.replaceChild(svgdoc.importNode(newDoc.documentElement.firstChild, true), elt);
|
|
S.call('changed', [elt]);
|
|
svgCanvas.clearSelection();
|
|
} catch (e) {
|
|
console.log(e);
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
function showForeignEditor () {
|
|
const elt = selElems[0];
|
|
if (!elt || editingforeign) { return; }
|
|
editingforeign = true;
|
|
toggleSourceButtons(true);
|
|
elt.removeAttribute('fill');
|
|
|
|
const str = S.svgToString(elt, 0);
|
|
$('#svg_source_textarea').val(str);
|
|
$('#svg_source_editor').fadeIn();
|
|
properlySourceSizeTextArea();
|
|
$('#svg_source_textarea').focus();
|
|
}
|
|
|
|
function setAttr (attr, val) {
|
|
svgCanvas.changeSelectedAttribute(attr, val);
|
|
S.call('changed', selElems);
|
|
}
|
|
|
|
return {
|
|
name: 'foreignObject',
|
|
svgicons: svgEditor.curConfig.extPath + 'foreignobject-icons.xml',
|
|
buttons: [{
|
|
id: 'tool_foreign',
|
|
type: 'mode',
|
|
title: 'Foreign Object Tool',
|
|
events: {
|
|
click () {
|
|
svgCanvas.setMode('foreign');
|
|
}
|
|
}
|
|
}, {
|
|
id: 'edit_foreign',
|
|
type: 'context',
|
|
panel: 'foreignObject_panel',
|
|
title: 'Edit ForeignObject Content',
|
|
events: {
|
|
click () {
|
|
showForeignEditor();
|
|
}
|
|
}
|
|
}],
|
|
|
|
context_tools: [{
|
|
type: 'input',
|
|
panel: 'foreignObject_panel',
|
|
title: "Change foreignObject's width",
|
|
id: 'foreign_width',
|
|
label: 'w',
|
|
size: 3,
|
|
events: {
|
|
change () {
|
|
setAttr('width', this.value);
|
|
}
|
|
}
|
|
}, {
|
|
type: 'input',
|
|
panel: 'foreignObject_panel',
|
|
title: "Change foreignObject's height",
|
|
id: 'foreign_height',
|
|
label: 'h',
|
|
events: {
|
|
change () {
|
|
setAttr('height', this.value);
|
|
}
|
|
}
|
|
}, {
|
|
type: 'input',
|
|
panel: 'foreignObject_panel',
|
|
title: "Change foreignObject's font size",
|
|
id: 'foreign_font_size',
|
|
label: 'font-size',
|
|
size: 2,
|
|
defval: 16,
|
|
events: {
|
|
change () {
|
|
setAttr('font-size', this.value);
|
|
}
|
|
}
|
|
}
|
|
|
|
],
|
|
callback () {
|
|
$('#foreignObject_panel').hide();
|
|
|
|
const endChanges = function () {
|
|
$('#svg_source_editor').hide();
|
|
editingforeign = false;
|
|
$('#svg_source_textarea').blur();
|
|
toggleSourceButtons(false);
|
|
};
|
|
|
|
// TODO: Needs to be done after orig icon loads
|
|
setTimeout(function () {
|
|
// Create source save/cancel buttons
|
|
/* const save = */ $('#tool_source_save').clone()
|
|
.hide().attr('id', 'foreign_save').unbind()
|
|
.appendTo('#tool_source_back').click(function () {
|
|
if (!editingforeign) { return; }
|
|
|
|
if (!setForeignString($('#svg_source_textarea').val())) {
|
|
$.confirm('Errors found. Revert to original?', function (ok) {
|
|
if (!ok) { return false; }
|
|
endChanges();
|
|
});
|
|
} else {
|
|
endChanges();
|
|
}
|
|
// setSelectMode();
|
|
});
|
|
|
|
/* const cancel = */ $('#tool_source_cancel').clone()
|
|
.hide().attr('id', 'foreign_cancel').unbind()
|
|
.appendTo('#tool_source_back').click(function () {
|
|
endChanges();
|
|
});
|
|
}, 3000);
|
|
},
|
|
mouseDown (opts) {
|
|
// const e = opts.event;
|
|
|
|
if (svgCanvas.getMode() === 'foreign') {
|
|
started = true;
|
|
newFO = S.addSvgElementFromJson({
|
|
'element': 'foreignObject',
|
|
'attr': {
|
|
'x': opts.start_x,
|
|
'y': opts.start_y,
|
|
'id': S.getNextId(),
|
|
'font-size': 16, // cur_text.font_size,
|
|
'width': '48',
|
|
'height': '20',
|
|
'style': 'pointer-events:inherit'
|
|
}
|
|
});
|
|
const m = svgdoc.createElementNS(NS.MATH, 'math');
|
|
m.setAttributeNS(NS.XMLNS, 'xmlns', NS.MATH);
|
|
m.setAttribute('display', 'inline');
|
|
const mi = svgdoc.createElementNS(NS.MATH, 'mi');
|
|
mi.setAttribute('mathvariant', 'normal');
|
|
mi.textContent = '\u03A6';
|
|
const mo = svgdoc.createElementNS(NS.MATH, 'mo');
|
|
mo.textContent = '\u222A';
|
|
const mi2 = svgdoc.createElementNS(NS.MATH, 'mi');
|
|
mi2.textContent = '\u2133';
|
|
m.appendChild(mi);
|
|
m.appendChild(mo);
|
|
m.appendChild(mi2);
|
|
newFO.appendChild(m);
|
|
return {
|
|
started: true
|
|
};
|
|
}
|
|
},
|
|
mouseUp (opts) {
|
|
// const e = opts.event;
|
|
if (svgCanvas.getMode() === 'foreign' && started) {
|
|
const attrs = $(newFO).attr(['width', 'height']);
|
|
const keep = (attrs.width !== '0' || attrs.height !== '0');
|
|
svgCanvas.addToSelection([newFO], true);
|
|
|
|
return {
|
|
keep,
|
|
element: newFO
|
|
};
|
|
}
|
|
},
|
|
selectedChanged (opts) {
|
|
// Use this to update the current selected elements
|
|
selElems = opts.elems;
|
|
|
|
let i = selElems.length;
|
|
while (i--) {
|
|
const elem = selElems[i];
|
|
if (elem && elem.tagName === 'foreignObject') {
|
|
if (opts.selectedElement && !opts.multiselected) {
|
|
$('#foreign_font_size').val(elem.getAttribute('font-size'));
|
|
$('#foreign_width').val(elem.getAttribute('width'));
|
|
$('#foreign_height').val(elem.getAttribute('height'));
|
|
showPanel(true);
|
|
} else {
|
|
showPanel(false);
|
|
}
|
|
} else {
|
|
showPanel(false);
|
|
}
|
|
}
|
|
},
|
|
elementChanged (opts) {
|
|
// const elem = opts.elems[0];
|
|
}
|
|
};
|
|
});
|