svgedit
Version:
Powerful SVG-Editor for your browser
177 lines (160 loc) • 4.88 kB
JavaScript
function __variableDynamicImportRuntime0__(path) {
switch (path) {
case './locale/en.js':
return Promise.resolve().then(function () { return en$1; });
case './locale/fr.js':
return Promise.resolve().then(function () { return fr$1; });
case './locale/tr.js':
return Promise.resolve().then(function () { return tr$1; });
case './locale/uk.js':
return Promise.resolve().then(function () { return uk$1; });
case './locale/zh-CN.js':
return Promise.resolve().then(function () { return zhCN$1; });
default:
return new Promise(function (resolve, reject) {
(typeof queueMicrotask === 'function' ? queueMicrotask : setTimeout)(reject.bind(null, new Error("Unknown variable dynamic import: " + path)));
});
}
}
/**
* @file ext-helloworld.js
*
* @license MIT
*
* @copyright 2010 Alexis Deveria
*
*/
/**
* This is a very basic SVG-Edit extension. It adds a "Hello World" button in
* the left ("mode") panel. Clicking on the button, and then the canvas
* will show the user the point on the canvas that was clicked on.
*/
const name = 'helloworld';
const loadExtensionTranslation = async function (svgEditor) {
let translationModule;
const lang = svgEditor.configObj.pref('lang');
try {
translationModule = await __variableDynamicImportRuntime0__(`./locale/${lang}.js`);
} catch (_error) {
console.warn(`Missing translation (${lang}) for ${name} - using 'en'`);
translationModule = await Promise.resolve().then(function () { return en$1; });
}
svgEditor.i18next.addResourceBundle(lang, name, translationModule.default);
};
var extHelloworld = {
name,
async init(_ref) {
const svgEditor = this;
await loadExtensionTranslation(svgEditor);
const {
svgCanvas
} = svgEditor;
const {
$id,
$click
} = svgCanvas;
return {
name: svgEditor.i18next.t(`${name}:name`),
callback() {
// Add the button and its handler(s)
const buttonTemplate = document.createElement('template');
const title = `${name}:buttons.0.title`;
buttonTemplate.innerHTML = `
<se-button id="hello_world" title="${title}" src="hello_world.svg"></se-button>
`;
$id('tools_left').append(buttonTemplate.content.cloneNode(true));
$click($id('hello_world'), () => {
svgCanvas.setMode('hello_world');
});
},
// This is triggered when the main mouse button is pressed down
// on the editor canvas (not the tool panels)
mouseDown() {
// Check the mode on mousedown
if (svgCanvas.getMode() === 'hello_world') {
// The returned object must include "started" with
// a value of true in order for mouseUp to be triggered
return {
started: true
};
}
return undefined;
},
// This is triggered from anywhere, but "started" must have been set
// to true (see above). Note that "opts" is an object with event info
mouseUp(opts) {
// Check the mode on mouseup
if (svgCanvas.getMode() === 'hello_world') {
const zoom = svgCanvas.getZoom();
// Get the actual coordinate by dividing by the zoom value
const x = opts.mouse_x / zoom;
const y = opts.mouse_y / zoom;
// We do our own formatting
const text = svgEditor.i18next.t(`${name}:text`, {
x,
y
});
// Show the text using the custom alert function
alert(text);
}
}
};
}
};
var en = {
name: 'Hello World',
text: 'Hello World!\n\nYou clicked here: {{x}}, {{y}}',
buttons: [{
title: "Say 'Hello World'"
}]
};
var en$1 = /*#__PURE__*/Object.freeze({
__proto__: null,
default: en
});
var fr = {
name: 'Bonjour le Monde',
text: 'Bonjour le Monde!\n\nVous avez cliqué ici: {{x}}, {{y}}',
buttons: [{
title: "Dire 'Bonjour le Monde'"
}]
};
var fr$1 = /*#__PURE__*/Object.freeze({
__proto__: null,
default: fr
});
var tr = {
name: 'Merhaba Dünya',
text: 'Merhaba Dünya!\n\nBuraya Tıkladınız: {{x}}, {{y}}',
buttons: [{
title: "'Merhaba Dünya' De"
}]
};
var tr$1 = /*#__PURE__*/Object.freeze({
__proto__: null,
default: tr
});
var uk = {
name: 'Привіт Світ',
text: 'Привіт Світ!\n\nВи клацнули тут: {{x}}, {{y}}',
buttons: [{
title: "Сказати 'Привіт Світ'"
}]
};
var uk$1 = /*#__PURE__*/Object.freeze({
__proto__: null,
default: uk
});
var zhCN = {
name: 'Hello World',
text: 'Hello World!\n\n 请点击: {{x}}, {{y}}',
buttons: [{
title: "输出 'Hello World'"
}]
};
var zhCN$1 = /*#__PURE__*/Object.freeze({
__proto__: null,
default: zhCN
});
export { extHelloworld as default };
//# sourceMappingURL=ext-helloworld.js.map