- Breaking change: Rename config file to `svgedit-config-iife.js` (or for the module version, `svgedit-config-es.js`);
also expect one directory higher; incorporates #207 (@iuyiuy)
- Breaking change: Separate `extIconsPath` from `extPath` (not copying over icons)
- Breaking change: Don't reference `custom.css` in HTML; can instead be referenced in JavaScript through
the config file (provided in `svgedit-config-sample-iife.js`/`svgedit-config-sample-es.js` as `svgedit-custom.css` for
better namespacing); incorporates #207 (@iuyiuy)
- Breaking change: Remove minified jgraduate/spinbtn files (minified within Rollup routine)
- Fix: Zoom when scrolled; incorporates #169 (@AndrolGenhald), adapting for conventions; also allow avoidance when shift key pressed
- Fix: Update Atom feed reference in HTML
- Fixes related to recent commits: Some path and method name fixes needed, function order, missing methods, variable scope declaration, no need for DOMContentLoaded listeners in modules, switch back to non-default export, avoid trimming nullish, deal with mock tests, fix `math.matrixMultiply`, use jquery-svg where needed for array/SVG attributes; add babel-polyfill and defer script to imagelib; other misc. fixes
- Enhancement: Move config-sample.js out of `editor` directory
- Enhancement: For `callback`-style extensions, also provide config object; add following
to that object: buildCanvgCallback, canvg, decode64, encode64, executeAfterLoads, getTypeMap, isChrome, ieIE, NS, text2xml
- Enhancement: Complete ES6 modules work (extensions, locales, tests), along with Babel;
make Node build routine for converting modular source to non-modular,
use `loadStylesheets` for modular stylehsheet defining (but parallel loading);
- Enhancement: Add `stylesheets` config for modular but parallel stylesheet loading with `@default` option for simple inclusion/exclusion of defaults (if not going with default).
- Refactoring: Clean up `svg-editor.html`: consistent indents; avoid extra lbs, avoid long lines
- Refactoring: Avoid embedded API adding inline JavaScript listener
- Refactoring: Move layers and context code to `draw.js`
- Refactoring: Move `pathActions` from `svgcanvas.js` (though preserve aliases to these methods on `canvas`) and `convertPath` from `svgutils.js` to `path.js`
- Refactoring: Move `getStrokedBBox` from `svgcanvas.js` (while keeping an alias) to `svgutils.js` (as `getStrokedBBoxDefaultVisible` to avoid conflict with existing)
- Docs: Remove "dependencies" comments in code except where summarizing role of jQuery or a non-obvious dependency
- Refactoring/Linting: Enfore `no-extra-semi` and `quote-props` rules
- Refactoring: Further avoidance of quotes on properties (as possible)
- Refactoring: Use `class` in place of functions where intended as classes
- Refactoring: Consistency and granularity in extensions imports
- Testing: Update QUnit to 2.6.1 (node_modules) and Sinon to 5.0.8 (and add sinon-test at 2.1.3) and enforce eslint-plugin-qunit linting rules; update custom extensions
- Testing: Add node-static for automating (and accessing out-of-directory contents)
- Testing: Avoid HTML attributes for styling
- Testing: Add npm `test` script
- Testing: Comment out unused jQuery SVG test
- Testing: Add test1 and svgutils_performance_test to all tests page
- Testing: Due apparently to Path having not been a formal class, the test was calling it without `new`; refactored now with sufficient mock data to take into account it is a class
- npm: Update devDeps
- npm: Add html modules and config build to test script
2018-05-22 10:03:16 +00:00
|
|
|
/* globals jQuery */
|
2013-01-18 18:05:41 +00:00
|
|
|
/*
|
|
|
|
* ext-polygon.js
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Copyright(c) 2010 CloudCanvas, Inc.
|
|
|
|
* All rights reserved
|
|
|
|
*
|
|
|
|
*/
|
- Breaking change: Rename config file to `svgedit-config-iife.js` (or for the module version, `svgedit-config-es.js`);
also expect one directory higher; incorporates #207 (@iuyiuy)
- Breaking change: Separate `extIconsPath` from `extPath` (not copying over icons)
- Breaking change: Don't reference `custom.css` in HTML; can instead be referenced in JavaScript through
the config file (provided in `svgedit-config-sample-iife.js`/`svgedit-config-sample-es.js` as `svgedit-custom.css` for
better namespacing); incorporates #207 (@iuyiuy)
- Breaking change: Remove minified jgraduate/spinbtn files (minified within Rollup routine)
- Fix: Zoom when scrolled; incorporates #169 (@AndrolGenhald), adapting for conventions; also allow avoidance when shift key pressed
- Fix: Update Atom feed reference in HTML
- Fixes related to recent commits: Some path and method name fixes needed, function order, missing methods, variable scope declaration, no need for DOMContentLoaded listeners in modules, switch back to non-default export, avoid trimming nullish, deal with mock tests, fix `math.matrixMultiply`, use jquery-svg where needed for array/SVG attributes; add babel-polyfill and defer script to imagelib; other misc. fixes
- Enhancement: Move config-sample.js out of `editor` directory
- Enhancement: For `callback`-style extensions, also provide config object; add following
to that object: buildCanvgCallback, canvg, decode64, encode64, executeAfterLoads, getTypeMap, isChrome, ieIE, NS, text2xml
- Enhancement: Complete ES6 modules work (extensions, locales, tests), along with Babel;
make Node build routine for converting modular source to non-modular,
use `loadStylesheets` for modular stylehsheet defining (but parallel loading);
- Enhancement: Add `stylesheets` config for modular but parallel stylesheet loading with `@default` option for simple inclusion/exclusion of defaults (if not going with default).
- Refactoring: Clean up `svg-editor.html`: consistent indents; avoid extra lbs, avoid long lines
- Refactoring: Avoid embedded API adding inline JavaScript listener
- Refactoring: Move layers and context code to `draw.js`
- Refactoring: Move `pathActions` from `svgcanvas.js` (though preserve aliases to these methods on `canvas`) and `convertPath` from `svgutils.js` to `path.js`
- Refactoring: Move `getStrokedBBox` from `svgcanvas.js` (while keeping an alias) to `svgutils.js` (as `getStrokedBBoxDefaultVisible` to avoid conflict with existing)
- Docs: Remove "dependencies" comments in code except where summarizing role of jQuery or a non-obvious dependency
- Refactoring/Linting: Enfore `no-extra-semi` and `quote-props` rules
- Refactoring: Further avoidance of quotes on properties (as possible)
- Refactoring: Use `class` in place of functions where intended as classes
- Refactoring: Consistency and granularity in extensions imports
- Testing: Update QUnit to 2.6.1 (node_modules) and Sinon to 5.0.8 (and add sinon-test at 2.1.3) and enforce eslint-plugin-qunit linting rules; update custom extensions
- Testing: Add node-static for automating (and accessing out-of-directory contents)
- Testing: Avoid HTML attributes for styling
- Testing: Add npm `test` script
- Testing: Comment out unused jQuery SVG test
- Testing: Add test1 and svgutils_performance_test to all tests page
- Testing: Due apparently to Path having not been a formal class, the test was calling it without `new`; refactored now with sufficient mock data to take into account it is a class
- npm: Update devDeps
- npm: Add html modules and config build to test script
2018-05-22 10:03:16 +00:00
|
|
|
import svgEditor from '../svg-editor.js';
|
2018-05-16 00:53:27 +00:00
|
|
|
svgEditor.addExtension('polygon', function (S) {
|
2018-05-18 03:25:45 +00:00
|
|
|
const $ = jQuery;
|
- Breaking change: Rename config file to `svgedit-config-iife.js` (or for the module version, `svgedit-config-es.js`);
also expect one directory higher; incorporates #207 (@iuyiuy)
- Breaking change: Separate `extIconsPath` from `extPath` (not copying over icons)
- Breaking change: Don't reference `custom.css` in HTML; can instead be referenced in JavaScript through
the config file (provided in `svgedit-config-sample-iife.js`/`svgedit-config-sample-es.js` as `svgedit-custom.css` for
better namespacing); incorporates #207 (@iuyiuy)
- Breaking change: Remove minified jgraduate/spinbtn files (minified within Rollup routine)
- Fix: Zoom when scrolled; incorporates #169 (@AndrolGenhald), adapting for conventions; also allow avoidance when shift key pressed
- Fix: Update Atom feed reference in HTML
- Fixes related to recent commits: Some path and method name fixes needed, function order, missing methods, variable scope declaration, no need for DOMContentLoaded listeners in modules, switch back to non-default export, avoid trimming nullish, deal with mock tests, fix `math.matrixMultiply`, use jquery-svg where needed for array/SVG attributes; add babel-polyfill and defer script to imagelib; other misc. fixes
- Enhancement: Move config-sample.js out of `editor` directory
- Enhancement: For `callback`-style extensions, also provide config object; add following
to that object: buildCanvgCallback, canvg, decode64, encode64, executeAfterLoads, getTypeMap, isChrome, ieIE, NS, text2xml
- Enhancement: Complete ES6 modules work (extensions, locales, tests), along with Babel;
make Node build routine for converting modular source to non-modular,
use `loadStylesheets` for modular stylehsheet defining (but parallel loading);
- Enhancement: Add `stylesheets` config for modular but parallel stylesheet loading with `@default` option for simple inclusion/exclusion of defaults (if not going with default).
- Refactoring: Clean up `svg-editor.html`: consistent indents; avoid extra lbs, avoid long lines
- Refactoring: Avoid embedded API adding inline JavaScript listener
- Refactoring: Move layers and context code to `draw.js`
- Refactoring: Move `pathActions` from `svgcanvas.js` (though preserve aliases to these methods on `canvas`) and `convertPath` from `svgutils.js` to `path.js`
- Refactoring: Move `getStrokedBBox` from `svgcanvas.js` (while keeping an alias) to `svgutils.js` (as `getStrokedBBoxDefaultVisible` to avoid conflict with existing)
- Docs: Remove "dependencies" comments in code except where summarizing role of jQuery or a non-obvious dependency
- Refactoring/Linting: Enfore `no-extra-semi` and `quote-props` rules
- Refactoring: Further avoidance of quotes on properties (as possible)
- Refactoring: Use `class` in place of functions where intended as classes
- Refactoring: Consistency and granularity in extensions imports
- Testing: Update QUnit to 2.6.1 (node_modules) and Sinon to 5.0.8 (and add sinon-test at 2.1.3) and enforce eslint-plugin-qunit linting rules; update custom extensions
- Testing: Add node-static for automating (and accessing out-of-directory contents)
- Testing: Avoid HTML attributes for styling
- Testing: Add npm `test` script
- Testing: Comment out unused jQuery SVG test
- Testing: Add test1 and svgutils_performance_test to all tests page
- Testing: Due apparently to Path having not been a formal class, the test was calling it without `new`; refactored now with sufficient mock data to take into account it is a class
- npm: Update devDeps
- npm: Add html modules and config build to test script
2018-05-22 10:03:16 +00:00
|
|
|
const svgCanvas = svgEditor.canvas;
|
2018-05-18 03:25:45 +00:00
|
|
|
const // {svgcontent} = S,
|
2018-05-18 04:54:31 +00:00
|
|
|
// addElem = S.addSvgElementFromJson,
|
2018-05-18 03:25:45 +00:00
|
|
|
editingitex = false;
|
|
|
|
let selElems,
|
2018-05-18 04:54:31 +00:00
|
|
|
// svgdoc = S.svgroot.parentNode.ownerDocument,
|
|
|
|
// newFOG, newFOGParent, newDef, newImageName, newMaskID, modeChangeG,
|
|
|
|
// edg = 0,
|
|
|
|
// undoCommand = 'Not image';
|
|
|
|
started, newFO;
|
2018-05-16 00:53:27 +00:00
|
|
|
|
2018-05-18 03:25:45 +00:00
|
|
|
// const ccZoom;
|
|
|
|
// const wEl, hEl;
|
|
|
|
// const wOffset, hOffset;
|
|
|
|
// const ccRBG;
|
|
|
|
// const ccOpacity;
|
|
|
|
// const brushW, brushH;
|
2018-05-16 00:53:27 +00:00
|
|
|
|
2018-05-18 03:25:45 +00:00
|
|
|
// const ccDebug = document.getElementById('debugpanel');
|
2018-05-16 00:53:27 +00:00
|
|
|
|
2018-05-18 03:25:45 +00:00
|
|
|
/* const properlySourceSizeTextArea = function(){
|
2018-05-18 04:54:31 +00:00
|
|
|
// TODO: remove magic numbers here and get values from CSS
|
2018-05-18 03:25:45 +00:00
|
|
|
const height = $('#svg_source_container').height() - 80;
|
2018-05-18 04:54:31 +00:00
|
|
|
$('#svg_source_textarea').css('height', height);
|
|
|
|
}; */
|
|
|
|
function showPanel (on) {
|
2018-05-18 03:25:45 +00:00
|
|
|
let fcRules = $('#fc_rules');
|
2018-05-18 04:54:31 +00:00
|
|
|
if (!fcRules.length) {
|
|
|
|
fcRules = $('<style id="fc_rules"></style>').appendTo('head');
|
|
|
|
}
|
|
|
|
fcRules.text(!on ? '' : ' #tool_topath { display: none !important; }');
|
|
|
|
$('#polygon_panel').toggle(on);
|
|
|
|
}
|
2018-05-16 00:53:27 +00:00
|
|
|
|
2018-05-18 04:54:31 +00:00
|
|
|
/*
|
|
|
|
function toggleSourceButtons(on){
|
|
|
|
$('#tool_source_save, #tool_source_cancel').toggle(!on);
|
|
|
|
$('#polygon_save, #polygon_cancel').toggle(on);
|
|
|
|
}
|
|
|
|
*/
|
2018-05-16 00:53:27 +00:00
|
|
|
|
2018-05-18 04:54:31 +00:00
|
|
|
function setAttr (attr, val) {
|
|
|
|
svgCanvas.changeSelectedAttribute(attr, val);
|
|
|
|
S.call('changed', selElems);
|
|
|
|
}
|
2018-05-16 00:53:27 +00:00
|
|
|
|
2018-05-18 04:54:31 +00:00
|
|
|
function cot (n) {
|
|
|
|
return 1 / Math.tan(n);
|
|
|
|
}
|
2018-05-16 00:53:27 +00:00
|
|
|
|
2018-05-18 04:54:31 +00:00
|
|
|
function sec (n) {
|
|
|
|
return 1 / Math.cos(n);
|
|
|
|
}
|
2014-02-12 09:38:38 +00:00
|
|
|
|
2018-05-18 04:54:31 +00:00
|
|
|
/**
|
|
|
|
* Obtained from http://code.google.com/p/passenger-top/source/browse/instiki/public/svg-edit/editor/extensions/ext-itex.js?r=3
|
|
|
|
* This function sets the content of of the currently-selected foreignObject element,
|
|
|
|
* based on the itex contained in string.
|
|
|
|
* @param {string} tex The itex text.
|
|
|
|
* @returns This function returns false if the set was unsuccessful, true otherwise.
|
|
|
|
*/
|
|
|
|
/*
|
|
|
|
function setItexString(tex) {
|
2018-05-18 03:25:45 +00:00
|
|
|
const mathns = 'http://www.w3.org/1998/Math/MathML',
|
2018-05-18 04:54:31 +00:00
|
|
|
xmlnsns = 'http://www.w3.org/2000/xmlns/',
|
|
|
|
ajaxEndpoint = '../../itex';
|
2018-05-18 03:25:45 +00:00
|
|
|
const elt = selElems[0];
|
2018-05-18 04:54:31 +00:00
|
|
|
try {
|
2018-05-18 03:25:45 +00:00
|
|
|
const math = svgdoc.createElementNS(mathns, 'math');
|
2018-05-18 04:54:31 +00:00
|
|
|
math.setAttributeNS(xmlnsns, 'xmlns', mathns);
|
|
|
|
math.setAttribute('display', 'inline');
|
2018-05-18 03:25:45 +00:00
|
|
|
const semantics = document.createElementNS(mathns, 'semantics');
|
|
|
|
const annotation = document.createElementNS(mathns, 'annotation');
|
2018-05-18 04:54:31 +00:00
|
|
|
annotation.setAttribute('encoding', 'application/x-tex');
|
|
|
|
annotation.textContent = tex;
|
2018-05-18 03:25:45 +00:00
|
|
|
const mrow = document.createElementNS(mathns, 'mrow');
|
2018-05-18 04:54:31 +00:00
|
|
|
semantics.appendChild(mrow);
|
|
|
|
semantics.appendChild(annotation);
|
|
|
|
math.appendChild(semantics);
|
|
|
|
// make an AJAX request to the server, to get the MathML
|
- Breaking change: Rename config file to `svgedit-config-iife.js` (or for the module version, `svgedit-config-es.js`);
also expect one directory higher; incorporates #207 (@iuyiuy)
- Breaking change: Separate `extIconsPath` from `extPath` (not copying over icons)
- Breaking change: Don't reference `custom.css` in HTML; can instead be referenced in JavaScript through
the config file (provided in `svgedit-config-sample-iife.js`/`svgedit-config-sample-es.js` as `svgedit-custom.css` for
better namespacing); incorporates #207 (@iuyiuy)
- Breaking change: Remove minified jgraduate/spinbtn files (minified within Rollup routine)
- Fix: Zoom when scrolled; incorporates #169 (@AndrolGenhald), adapting for conventions; also allow avoidance when shift key pressed
- Fix: Update Atom feed reference in HTML
- Fixes related to recent commits: Some path and method name fixes needed, function order, missing methods, variable scope declaration, no need for DOMContentLoaded listeners in modules, switch back to non-default export, avoid trimming nullish, deal with mock tests, fix `math.matrixMultiply`, use jquery-svg where needed for array/SVG attributes; add babel-polyfill and defer script to imagelib; other misc. fixes
- Enhancement: Move config-sample.js out of `editor` directory
- Enhancement: For `callback`-style extensions, also provide config object; add following
to that object: buildCanvgCallback, canvg, decode64, encode64, executeAfterLoads, getTypeMap, isChrome, ieIE, NS, text2xml
- Enhancement: Complete ES6 modules work (extensions, locales, tests), along with Babel;
make Node build routine for converting modular source to non-modular,
use `loadStylesheets` for modular stylehsheet defining (but parallel loading);
- Enhancement: Add `stylesheets` config for modular but parallel stylesheet loading with `@default` option for simple inclusion/exclusion of defaults (if not going with default).
- Refactoring: Clean up `svg-editor.html`: consistent indents; avoid extra lbs, avoid long lines
- Refactoring: Avoid embedded API adding inline JavaScript listener
- Refactoring: Move layers and context code to `draw.js`
- Refactoring: Move `pathActions` from `svgcanvas.js` (though preserve aliases to these methods on `canvas`) and `convertPath` from `svgutils.js` to `path.js`
- Refactoring: Move `getStrokedBBox` from `svgcanvas.js` (while keeping an alias) to `svgutils.js` (as `getStrokedBBoxDefaultVisible` to avoid conflict with existing)
- Docs: Remove "dependencies" comments in code except where summarizing role of jQuery or a non-obvious dependency
- Refactoring/Linting: Enfore `no-extra-semi` and `quote-props` rules
- Refactoring: Further avoidance of quotes on properties (as possible)
- Refactoring: Use `class` in place of functions where intended as classes
- Refactoring: Consistency and granularity in extensions imports
- Testing: Update QUnit to 2.6.1 (node_modules) and Sinon to 5.0.8 (and add sinon-test at 2.1.3) and enforce eslint-plugin-qunit linting rules; update custom extensions
- Testing: Add node-static for automating (and accessing out-of-directory contents)
- Testing: Avoid HTML attributes for styling
- Testing: Add npm `test` script
- Testing: Comment out unused jQuery SVG test
- Testing: Add test1 and svgutils_performance_test to all tests page
- Testing: Due apparently to Path having not been a formal class, the test was calling it without `new`; refactored now with sufficient mock data to take into account it is a class
- npm: Update devDeps
- npm: Add html modules and config build to test script
2018-05-22 10:03:16 +00:00
|
|
|
$.post(ajaxEndpoint, {tex, display: 'inline'}, function(data){
|
2018-05-18 03:25:45 +00:00
|
|
|
const children = data.documentElement.childNodes;
|
2018-05-18 04:54:31 +00:00
|
|
|
while (children.length > 0) {
|
|
|
|
mrow.appendChild(svgdoc.adoptNode(children[0], true));
|
|
|
|
}
|
|
|
|
S.sanitizeSvg(math);
|
|
|
|
S.call('changed', [elt]);
|
|
|
|
});
|
|
|
|
elt.replaceChild(math, elt.firstChild);
|
|
|
|
S.call('changed', [elt]);
|
|
|
|
svgCanvas.clearSelection();
|
|
|
|
} catch(e) {
|
|
|
|
console.log(e);
|
|
|
|
return false;
|
|
|
|
}
|
2014-02-12 09:38:38 +00:00
|
|
|
|
2018-05-18 04:54:31 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
return {
|
|
|
|
name: 'polygon',
|
- Breaking change: Rename config file to `svgedit-config-iife.js` (or for the module version, `svgedit-config-es.js`);
also expect one directory higher; incorporates #207 (@iuyiuy)
- Breaking change: Separate `extIconsPath` from `extPath` (not copying over icons)
- Breaking change: Don't reference `custom.css` in HTML; can instead be referenced in JavaScript through
the config file (provided in `svgedit-config-sample-iife.js`/`svgedit-config-sample-es.js` as `svgedit-custom.css` for
better namespacing); incorporates #207 (@iuyiuy)
- Breaking change: Remove minified jgraduate/spinbtn files (minified within Rollup routine)
- Fix: Zoom when scrolled; incorporates #169 (@AndrolGenhald), adapting for conventions; also allow avoidance when shift key pressed
- Fix: Update Atom feed reference in HTML
- Fixes related to recent commits: Some path and method name fixes needed, function order, missing methods, variable scope declaration, no need for DOMContentLoaded listeners in modules, switch back to non-default export, avoid trimming nullish, deal with mock tests, fix `math.matrixMultiply`, use jquery-svg where needed for array/SVG attributes; add babel-polyfill and defer script to imagelib; other misc. fixes
- Enhancement: Move config-sample.js out of `editor` directory
- Enhancement: For `callback`-style extensions, also provide config object; add following
to that object: buildCanvgCallback, canvg, decode64, encode64, executeAfterLoads, getTypeMap, isChrome, ieIE, NS, text2xml
- Enhancement: Complete ES6 modules work (extensions, locales, tests), along with Babel;
make Node build routine for converting modular source to non-modular,
use `loadStylesheets` for modular stylehsheet defining (but parallel loading);
- Enhancement: Add `stylesheets` config for modular but parallel stylesheet loading with `@default` option for simple inclusion/exclusion of defaults (if not going with default).
- Refactoring: Clean up `svg-editor.html`: consistent indents; avoid extra lbs, avoid long lines
- Refactoring: Avoid embedded API adding inline JavaScript listener
- Refactoring: Move layers and context code to `draw.js`
- Refactoring: Move `pathActions` from `svgcanvas.js` (though preserve aliases to these methods on `canvas`) and `convertPath` from `svgutils.js` to `path.js`
- Refactoring: Move `getStrokedBBox` from `svgcanvas.js` (while keeping an alias) to `svgutils.js` (as `getStrokedBBoxDefaultVisible` to avoid conflict with existing)
- Docs: Remove "dependencies" comments in code except where summarizing role of jQuery or a non-obvious dependency
- Refactoring/Linting: Enfore `no-extra-semi` and `quote-props` rules
- Refactoring: Further avoidance of quotes on properties (as possible)
- Refactoring: Use `class` in place of functions where intended as classes
- Refactoring: Consistency and granularity in extensions imports
- Testing: Update QUnit to 2.6.1 (node_modules) and Sinon to 5.0.8 (and add sinon-test at 2.1.3) and enforce eslint-plugin-qunit linting rules; update custom extensions
- Testing: Add node-static for automating (and accessing out-of-directory contents)
- Testing: Avoid HTML attributes for styling
- Testing: Add npm `test` script
- Testing: Comment out unused jQuery SVG test
- Testing: Add test1 and svgutils_performance_test to all tests page
- Testing: Due apparently to Path having not been a formal class, the test was calling it without `new`; refactored now with sufficient mock data to take into account it is a class
- npm: Update devDeps
- npm: Add html modules and config build to test script
2018-05-22 10:03:16 +00:00
|
|
|
svgicons: svgEditor.curConfig.extIconsPath + 'polygon-icons.svg',
|
2018-05-18 04:54:31 +00:00
|
|
|
buttons: [{
|
|
|
|
id: 'tool_polygon',
|
|
|
|
type: 'mode',
|
|
|
|
title: 'Polygon Tool',
|
|
|
|
position: 11,
|
|
|
|
events: {
|
2018-05-18 03:25:45 +00:00
|
|
|
click () {
|
2018-05-18 04:54:31 +00:00
|
|
|
svgCanvas.setMode('polygon');
|
|
|
|
showPanel(true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}],
|
2018-05-16 00:53:27 +00:00
|
|
|
|
2018-05-18 04:54:31 +00:00
|
|
|
context_tools: [{
|
|
|
|
type: 'input',
|
|
|
|
panel: 'polygon_panel',
|
|
|
|
title: 'Number of Sides',
|
|
|
|
id: 'polySides',
|
|
|
|
label: 'sides',
|
|
|
|
size: 3,
|
|
|
|
defval: 5,
|
|
|
|
events: {
|
2018-05-18 03:25:45 +00:00
|
|
|
change () {
|
2018-05-18 04:54:31 +00:00
|
|
|
setAttr('sides', this.value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}],
|
2018-05-16 00:53:27 +00:00
|
|
|
|
2018-05-18 03:25:45 +00:00
|
|
|
callback () {
|
2018-05-18 04:54:31 +00:00
|
|
|
$('#polygon_panel').hide();
|
2018-05-16 00:53:27 +00:00
|
|
|
|
2018-05-18 03:25:45 +00:00
|
|
|
const endChanges = function () {
|
2018-05-18 04:54:31 +00:00
|
|
|
};
|
2018-05-16 00:53:27 +00:00
|
|
|
|
2018-05-18 04:54:31 +00:00
|
|
|
// TODO: Needs to be done after orig icon loads
|
|
|
|
setTimeout(function () {
|
|
|
|
// Create source save/cancel buttons
|
2018-05-18 03:25:45 +00:00
|
|
|
/* const save = */ $('#tool_source_save').clone().hide().attr('id', 'polygon_save').unbind().appendTo('#tool_source_back').click(function () {
|
2018-05-18 04:54:31 +00:00
|
|
|
if (!editingitex) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// Todo: Uncomment the setItexString() function above and handle ajaxEndpoint?
|
|
|
|
/*
|
|
|
|
if (!setItexString($('#svg_source_textarea').val())) {
|
|
|
|
$.confirm('Errors found. Revert to original?', function (ok) {
|
|
|
|
if (!ok) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
endChanges();
|
|
|
|
});
|
|
|
|
} else { */
|
|
|
|
endChanges();
|
|
|
|
// }
|
|
|
|
// setSelectMode();
|
|
|
|
});
|
2018-05-16 00:53:27 +00:00
|
|
|
|
2018-05-18 03:25:45 +00:00
|
|
|
/* const cancel = */ $('#tool_source_cancel').clone().hide().attr('id', 'polygon_cancel').unbind().appendTo('#tool_source_back').click(function () {
|
2018-05-18 04:54:31 +00:00
|
|
|
endChanges();
|
|
|
|
});
|
|
|
|
}, 3000);
|
|
|
|
},
|
2018-05-18 03:25:45 +00:00
|
|
|
mouseDown (opts) {
|
|
|
|
// const e = opts.event;
|
|
|
|
const rgb = svgCanvas.getColor('fill');
|
|
|
|
// const ccRgbEl = rgb.substring(1, rgb.length);
|
|
|
|
const sRgb = svgCanvas.getColor('stroke');
|
2018-05-18 04:54:31 +00:00
|
|
|
// ccSRgbEl = sRgb.substring(1, rgb.length);
|
2018-05-18 03:25:45 +00:00
|
|
|
const sWidth = svgCanvas.getStrokeWidth();
|
2018-05-16 00:53:27 +00:00
|
|
|
|
2018-05-18 04:54:31 +00:00
|
|
|
if (svgCanvas.getMode() === 'polygon') {
|
|
|
|
started = true;
|
2018-05-16 00:53:27 +00:00
|
|
|
|
2018-05-18 04:54:31 +00:00
|
|
|
newFO = S.addSvgElementFromJson({
|
- Breaking change: Rename config file to `svgedit-config-iife.js` (or for the module version, `svgedit-config-es.js`);
also expect one directory higher; incorporates #207 (@iuyiuy)
- Breaking change: Separate `extIconsPath` from `extPath` (not copying over icons)
- Breaking change: Don't reference `custom.css` in HTML; can instead be referenced in JavaScript through
the config file (provided in `svgedit-config-sample-iife.js`/`svgedit-config-sample-es.js` as `svgedit-custom.css` for
better namespacing); incorporates #207 (@iuyiuy)
- Breaking change: Remove minified jgraduate/spinbtn files (minified within Rollup routine)
- Fix: Zoom when scrolled; incorporates #169 (@AndrolGenhald), adapting for conventions; also allow avoidance when shift key pressed
- Fix: Update Atom feed reference in HTML
- Fixes related to recent commits: Some path and method name fixes needed, function order, missing methods, variable scope declaration, no need for DOMContentLoaded listeners in modules, switch back to non-default export, avoid trimming nullish, deal with mock tests, fix `math.matrixMultiply`, use jquery-svg where needed for array/SVG attributes; add babel-polyfill and defer script to imagelib; other misc. fixes
- Enhancement: Move config-sample.js out of `editor` directory
- Enhancement: For `callback`-style extensions, also provide config object; add following
to that object: buildCanvgCallback, canvg, decode64, encode64, executeAfterLoads, getTypeMap, isChrome, ieIE, NS, text2xml
- Enhancement: Complete ES6 modules work (extensions, locales, tests), along with Babel;
make Node build routine for converting modular source to non-modular,
use `loadStylesheets` for modular stylehsheet defining (but parallel loading);
- Enhancement: Add `stylesheets` config for modular but parallel stylesheet loading with `@default` option for simple inclusion/exclusion of defaults (if not going with default).
- Refactoring: Clean up `svg-editor.html`: consistent indents; avoid extra lbs, avoid long lines
- Refactoring: Avoid embedded API adding inline JavaScript listener
- Refactoring: Move layers and context code to `draw.js`
- Refactoring: Move `pathActions` from `svgcanvas.js` (though preserve aliases to these methods on `canvas`) and `convertPath` from `svgutils.js` to `path.js`
- Refactoring: Move `getStrokedBBox` from `svgcanvas.js` (while keeping an alias) to `svgutils.js` (as `getStrokedBBoxDefaultVisible` to avoid conflict with existing)
- Docs: Remove "dependencies" comments in code except where summarizing role of jQuery or a non-obvious dependency
- Refactoring/Linting: Enfore `no-extra-semi` and `quote-props` rules
- Refactoring: Further avoidance of quotes on properties (as possible)
- Refactoring: Use `class` in place of functions where intended as classes
- Refactoring: Consistency and granularity in extensions imports
- Testing: Update QUnit to 2.6.1 (node_modules) and Sinon to 5.0.8 (and add sinon-test at 2.1.3) and enforce eslint-plugin-qunit linting rules; update custom extensions
- Testing: Add node-static for automating (and accessing out-of-directory contents)
- Testing: Avoid HTML attributes for styling
- Testing: Add npm `test` script
- Testing: Comment out unused jQuery SVG test
- Testing: Add test1 and svgutils_performance_test to all tests page
- Testing: Due apparently to Path having not been a formal class, the test was calling it without `new`; refactored now with sufficient mock data to take into account it is a class
- npm: Update devDeps
- npm: Add html modules and config build to test script
2018-05-22 10:03:16 +00:00
|
|
|
element: 'polygon',
|
|
|
|
attr: {
|
|
|
|
cx: opts.start_x,
|
|
|
|
cy: opts.start_y,
|
|
|
|
id: S.getNextId(),
|
|
|
|
shape: 'regularPoly',
|
|
|
|
sides: document.getElementById('polySides').value,
|
|
|
|
orient: 'x',
|
|
|
|
edge: 0,
|
|
|
|
fill: rgb,
|
|
|
|
strokecolor: sRgb,
|
|
|
|
strokeWidth: sWidth
|
2018-05-18 04:54:31 +00:00
|
|
|
}
|
|
|
|
});
|
2018-05-16 00:53:27 +00:00
|
|
|
|
2018-05-18 04:54:31 +00:00
|
|
|
return {
|
|
|
|
started: true
|
|
|
|
};
|
|
|
|
}
|
|
|
|
},
|
2018-05-18 03:25:45 +00:00
|
|
|
mouseMove (opts) {
|
2018-05-18 04:54:31 +00:00
|
|
|
if (!started) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (svgCanvas.getMode() === 'polygon') {
|
2018-05-18 03:25:45 +00:00
|
|
|
// const e = opts.event;
|
|
|
|
const c = $(newFO).attr(['cx', 'cy', 'sides', 'orient', 'fill', 'strokecolor', 'strokeWidth']);
|
|
|
|
let x = opts.mouse_x;
|
|
|
|
let y = opts.mouse_y;
|
|
|
|
const {cx, cy, fill, strokecolor, strokeWidth, sides} = c, // {orient} = c,
|
2018-05-18 04:54:31 +00:00
|
|
|
edg = (Math.sqrt((x - cx) * (x - cx) + (y - cy) * (y - cy))) / 1.5;
|
|
|
|
newFO.setAttributeNS(null, 'edge', edg);
|
2018-05-16 00:53:27 +00:00
|
|
|
|
2018-05-18 03:25:45 +00:00
|
|
|
const inradius = (edg / 2) * cot(Math.PI / sides);
|
|
|
|
const circumradius = inradius * sec(Math.PI / sides);
|
|
|
|
let points = '';
|
|
|
|
for (let s = 0; sides >= s; s++) {
|
|
|
|
const angle = 2.0 * Math.PI * s / sides;
|
2018-05-18 04:54:31 +00:00
|
|
|
x = (circumradius * Math.cos(angle)) + cx;
|
|
|
|
y = (circumradius * Math.sin(angle)) + cy;
|
2018-05-16 00:53:27 +00:00
|
|
|
|
2018-05-18 04:54:31 +00:00
|
|
|
points += x + ',' + y + ' ';
|
|
|
|
}
|
2018-05-16 00:53:27 +00:00
|
|
|
|
2018-05-18 03:25:45 +00:00
|
|
|
// const poly = newFO.createElementNS(NS.SVG, 'polygon');
|
2018-05-18 04:54:31 +00:00
|
|
|
newFO.setAttributeNS(null, 'points', points);
|
|
|
|
newFO.setAttributeNS(null, 'fill', fill);
|
|
|
|
newFO.setAttributeNS(null, 'stroke', strokecolor);
|
2018-05-18 03:25:45 +00:00
|
|
|
newFO.setAttributeNS(null, 'stroke-width', strokeWidth);
|
2018-05-18 04:54:31 +00:00
|
|
|
// newFO.setAttributeNS(null, 'transform', 'rotate(-90)');
|
2018-05-18 03:25:45 +00:00
|
|
|
// const shape = newFO.getAttributeNS(null, 'shape');
|
2018-05-18 04:54:31 +00:00
|
|
|
// newFO.appendChild(poly);
|
|
|
|
// DrawPoly(cx, cy, sides, edg, orient);
|
|
|
|
return {
|
|
|
|
started: true
|
|
|
|
};
|
|
|
|
}
|
|
|
|
},
|
2018-05-16 00:53:27 +00:00
|
|
|
|
2018-05-18 03:25:45 +00:00
|
|
|
mouseUp (opts) {
|
2018-05-18 04:54:31 +00:00
|
|
|
if (svgCanvas.getMode() === 'polygon') {
|
2018-05-18 03:25:45 +00:00
|
|
|
const attrs = $(newFO).attr('edge');
|
|
|
|
const keep = (attrs.edge !== '0');
|
2018-05-18 04:54:31 +00:00
|
|
|
// svgCanvas.addToSelection([newFO], true);
|
|
|
|
return {
|
2018-05-18 03:25:45 +00:00
|
|
|
keep,
|
2018-05-18 04:54:31 +00:00
|
|
|
element: newFO
|
|
|
|
};
|
|
|
|
}
|
|
|
|
},
|
2018-05-18 03:25:45 +00:00
|
|
|
selectedChanged (opts) {
|
2018-05-18 04:54:31 +00:00
|
|
|
// Use this to update the current selected elements
|
|
|
|
selElems = opts.elems;
|
2018-05-16 00:53:27 +00:00
|
|
|
|
2018-05-18 03:25:45 +00:00
|
|
|
let i = selElems.length;
|
2018-05-18 04:54:31 +00:00
|
|
|
while (i--) {
|
2018-05-18 03:25:45 +00:00
|
|
|
const elem = selElems[i];
|
2018-05-18 04:54:31 +00:00
|
|
|
if (elem && elem.getAttributeNS(null, 'shape') === 'regularPoly') {
|
|
|
|
if (opts.selectedElement && !opts.multiselected) {
|
|
|
|
$('#polySides').val(elem.getAttribute('sides'));
|
2018-05-16 00:53:27 +00:00
|
|
|
|
2018-05-18 04:54:31 +00:00
|
|
|
showPanel(true);
|
|
|
|
} else {
|
|
|
|
showPanel(false);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
showPanel(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2018-05-18 03:25:45 +00:00
|
|
|
elementChanged (opts) {
|
|
|
|
// const elem = opts.elems[0];
|
2018-05-18 04:54:31 +00:00
|
|
|
}
|
|
|
|
};
|
2013-01-18 18:05:41 +00:00
|
|
|
});
|