/*
* MathGraph32 Javascript : Software for animating online dynamic mathematics figures
* https://www.mathgraph32.org/
* @Author Yves Biton (yves.biton@sesamath.net)
* @License: GNU AGPLv3 https://www.gnu.org/licenses/agpl-3.0.html
*/
import Outil from './Outil'
import SaveImageDlg from 'src/dialogs/SaveImageDlg'
export default OutilSaveSVG
/**
* Outil servant à enregistrer la figure dans un fichier svg
* @param {MtgApp} app L'application propriétaire
* @constructor
* @extends Outil
*/
function OutilSaveSVG (app) {
// Dernier paramètre à false car cet outil n'a pas d'icône associée
Outil.call(this, app, 'SaveSVG', -1, false, false, false, false)
}
OutilSaveSVG.prototype = new Outil()
OutilSaveSVG.prototype.select = function () {
// Ici il faut appeler une fontion de callBack pour que savePNG ne soit appelé que lorsque les données
// sont prêtes.
// saveSVG est une fonction globale de la page index.html pour la version electron
const app = this.app
if (app.electron) {
app.getBase64ImageData('svg', function (data) { saveSVG(data) }, app.pref_coefMult, 1) // eslint-disable-line no-undef
} else {
new SaveImageDlg(this.app, 'svg')
}
}