Skip to content

Commit 3be8b61

Browse files
committed
#2244 imporve message when file is analyzed for data structure
1 parent 3c7f656 commit 3be8b61

File tree

7 files changed

+36
-13
lines changed

7 files changed

+36
-13
lines changed

Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/package-lock.json

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
"type": "module",
5252
"dependencies": {
5353
"@bexis2/bexis2-core-ui": "0.4.58",
54-
"@bexis2/bexis2-rpm-ui": "0.2.11",
54+
"@bexis2/bexis2-rpm-ui": "0.2.13",
5555
"@floating-ui/dom": "1.6.8",
5656
"@fortawesome/free-solid-svg-icons": "6.6.0",
5757
"@sveltejs/adapter-static": "3.0.2",

Console/BExIS.Web.Shell/Areas/RPM/BExIS.Modules.Rpm.UI.Svelte/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
# bexis2-rpm-ui
2+
## 0.2.13
3+
- change message when file is analyzed for a data structure
4+
25
## 0.2.9
36
- update bexis2.core.ui lib
47

Console/BExIS.Web.Shell/Areas/RPM/BExIS.Modules.Rpm.UI.Svelte/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@bexis2/bexis2-rpm-ui",
3-
"version": "0.2.11",
3+
"version": "0.2.13",
44
"private": false,
55
"scripts": {
66
"dev": "vite dev",

Console/BExIS.Web.Shell/Areas/RPM/BExIS.Modules.Rpm.UI.Svelte/src/app.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
dataset="0"
1717
version="0"
1818
structure="0"
19-
file="203_Flask monitoring data extended v2.0.csv"
19+
file="Step4_Bird_MASTER_DataOnly_2001_names_corrected_taxon_annot_withouttimezone.csv"
2020
structure="0"
2121
isTemplateRequired="false"
2222
isMeaningRequired="false"
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<div class="flex w-full justify-center">
2+
3+
4+
<div class="card m-5 p-5 w-1/2">
5+
6+
<h3 class="h3">Please wait. We are currently taking samples and analyzing your file to suggest data types, date patterns, and existing variable meanings.</h3>
7+
<div class="p-5">
8+
<p>Please check automatically filled fields carefully, correct, and fill in missing information.</p>
9+
<p>After saving the data structure, it will be automatically validated. In case of errors, you can upload a corrected file or edit your data structure to trigger validation again.</p>
10+
</div>
11+
</div>
12+
</div>

Console/BExIS.Web.Shell/Areas/RPM/BExIS.Modules.Rpm.UI.Svelte/src/lib/components/datastructure/Selection.svelte

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
import ConstraintsDescription from './structure/variable/ConstraintsDescription.svelte';
2828
import { goTo } from './services';
2929
import { type ModalSettings, getModalStore } from '@skeletonlabs/skeleton';
30+
import Info from './Info.svelte';
3031
const modalStore = getModalStore();
3132
3233
export let model: DataStructureCreationModel;
@@ -457,17 +458,24 @@
457458
}
458459
</script>
459460

461+
460462
{#if !model || state.length == 0 || generate == false}
461463
<button title="back" class="btn variant-filled-warning" on:click={() => back()}
462464
><Fa icon={faArrowLeft} /></button
463465
>
466+
464467
<!--if the model == false, access denied-->
465468
{#if !model || state.length == 0 || generate == false}
466469
<div class="h-full w-full text-surface-700">
470+
467471
<Spinner
468-
position={positionType.center}
469-
label="Loading Structure Suggestion based on: {model.file}"
470-
/>
472+
position={positionType.center}
473+
label="Loading Structure Suggestion based on: {model.file}"/>
474+
475+
<div class="mt-10">
476+
<Info></Info>
477+
</div>
478+
471479
</div>
472480
{:else}
473481
<div class="h-full w-full text-surface-700">

0 commit comments

Comments
 (0)