export chart to HTML

This commit is contained in:
Jan Prochazka
2021-11-11 13:16:46 +01:00
parent 423bd3f223
commit 0fd4084fac
6 changed files with 121 additions and 28 deletions

View File

@@ -1,18 +1,39 @@
<script lang="ts" context="module">
import Chart from 'chart.js/auto';
import 'chartjs-adapter-moment';
const getCurrentEditor = () => getActiveComponent('ChartCore');
registerCommand({
id: 'chart.export',
category: 'Chart',
toolbarName: 'Export',
name: 'Export chart',
icon: 'icon report',
toolbar: true,
isRelatedToTab: true,
onClick: () => getCurrentEditor().exportChart(),
testEnabled: () => getCurrentEditor() != null,
});
</script>
<script lang="ts">
import { onMount, afterUpdate, onDestroy } from 'svelte';
import registerCommand from '../commands/registerCommand';
import axiosInstance from '../utility/axiosInstance';
import contextMenu from '../utility/contextMenu';
import contextMenu, { getContextMenu, registerMenu } from '../utility/contextMenu';
import createActivator, { getActiveComponent } from '../utility/createActivator';
import resolveApi from '../utility/resolveApi';
export let data;
export let title;
export let type = 'line';
export let options = {};
export let plugins = {};
export let menu;
// export let plugins = {};
// export let menu;
export const activator = createActivator('ChartCore', true);
let chart = null;
let domChart;
@@ -21,10 +42,7 @@
chart = new Chart(domChart, {
type,
data,
options: {
...options,
plugins,
},
options,
});
});
@@ -32,10 +50,7 @@
if (!chart) return;
chart.data = data;
chart.type = type;
chart.options = {
...options,
plugins,
};
chart.options = options;
// chart.plugins = plugins;
chart.update();
});
@@ -43,6 +58,23 @@
onDestroy(() => {
chart = null;
});
export async function exportChart() {
const resp = await axiosInstance.post('files/export-chart', {
title,
config: {
type,
data,
options,
},
});
window.open(`${resolveApi()}/uploads/get?file=${resp.data}`, '_blank');
}
registerMenu({ command: 'chart.export', tag: 'export' });
const menu = getContextMenu();
</script>
<canvas bind:this={domChart} {...$$restProps} use:contextMenu={menu} />