From 7ed4bea47666dd89d4bb4068e5e05a94f9b17725 Mon Sep 17 00:00:00 2001 From: Julian Martinsson Bonde Date: Wed, 8 Nov 2023 16:19:58 +0100 Subject: [PATCH] Loading overhaul (#88) * Adjusted positioning and visibility of loading msg * Minor performance tweaks for rasterized rendering * Rasterized rendering now shows proper loading messages * Nothing to see here * Reverted rendering hook loading stage * Batch render, but no export * Dynamic chunking * Bumped version to 1.11.0 Export adjustments --- package.json | 2 +- src/components/DataList.vue | 36 ++--- src/components/LoadingModal.vue | 20 ++- src/components/plot-layouts/PCPlot/PCPlot.vue | 36 +++-- .../PCPlot/PCPlotPathLayerRaster.vue | 131 +++++++++++------- .../PCPlot/PCPlotPathLayerVector.vue | 6 +- .../sidemenu/import-export/ExportForm.vue | 41 ++++-- .../sidemenu/import-export/SourceForm.vue | 8 +- src/store/OptionsStore.js | 2 +- src/store/StateStore.js | 14 +- 10 files changed, 187 insertions(+), 109 deletions(-) diff --git a/package.json b/package.json index 8021025..5e69d82 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "md-analysis-cli", - "version": "1.10.0", + "version": "1.11.0", "private": true, "author": { "name": "Julian Martinsson Bonde", diff --git a/src/components/DataList.vue b/src/components/DataList.vue index 52eef52..0d0bd58 100644 --- a/src/components/DataList.vue +++ b/src/components/DataList.vue @@ -58,7 +58,7 @@ @@ -31,6 +31,12 @@ const {loadingReason} = storeToRefs(stateStore) } .message-container { - color: black; + color: white; + white-space: nowrap; + height: 40px; + display: flex; + // Align in middle vertically + justify-content: center; /*x-axis*/ + align-items: center; /*y-axis*/ } \ No newline at end of file diff --git a/src/components/plot-layouts/PCPlot/PCPlot.vue b/src/components/plot-layouts/PCPlot/PCPlot.vue index 58d506e..1b07f25 100644 --- a/src/components/plot-layouts/PCPlot/PCPlot.vue +++ b/src/components/plot-layouts/PCPlot/PCPlot.vue @@ -3,7 +3,7 @@
- +
+ + Plot export
Format: - @@ -31,25 +31,46 @@