datajunction-ui 0.0.1-rc.25 → 0.0.1-rc.27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/app/pages/LoginPage/LoginForm.jsx +10 -2
- package/src/app/pages/LoginPage/SignupForm.jsx +15 -3
- package/src/app/pages/NodePage/AddBackfillPopover.jsx +166 -0
- package/src/app/pages/NodePage/AddMaterializationPopover.jsx +161 -0
- package/src/app/pages/NodePage/LinkDimensionPopover.jsx +0 -1
- package/src/app/pages/NodePage/NodeColumnTab.jsx +91 -25
- package/src/app/pages/NodePage/NodeInfoTab.jsx +28 -22
- package/src/app/pages/NodePage/NodeMaterializationTab.jsx +158 -99
- package/src/app/pages/NodePage/PartitionColumnPopover.jsx +153 -0
- package/src/app/pages/NodePage/__tests__/AddBackfillPopover.test.jsx +47 -0
- package/src/app/pages/NodePage/__tests__/NodePage.test.jsx +43 -14
- package/src/app/pages/NodePage/__tests__/__snapshots__/NodePage.test.jsx.snap +101 -100
- package/src/app/services/DJService.js +87 -0
- package/src/app/services/__tests__/DJService.test.jsx +112 -0
- package/src/mocks/mockNodes.jsx +56 -67
- package/src/styles/dag.css +4 -0
- package/src/styles/index.css +70 -1
- package/src/styles/loading.css +31 -32
- package/src/styles/login.css +2 -2
package/src/styles/index.css
CHANGED
|
@@ -369,6 +369,7 @@ tbody th {
|
|
|
369
369
|
border-top: 1px solid #edf2f9;
|
|
370
370
|
border-bottom: 0;
|
|
371
371
|
padding: 1rem;
|
|
372
|
+
max-width: 25rem;
|
|
372
373
|
}
|
|
373
374
|
.card-inner-table td,
|
|
374
375
|
.card-inner-table th {
|
|
@@ -452,6 +453,11 @@ tbody th {
|
|
|
452
453
|
color: #580076;
|
|
453
454
|
}
|
|
454
455
|
|
|
456
|
+
.node_type__blank {
|
|
457
|
+
font-family: 'Jost';
|
|
458
|
+
background-color: #ffffff !important;
|
|
459
|
+
color: #a96621;
|
|
460
|
+
}
|
|
455
461
|
.entity__tag {
|
|
456
462
|
font-family: 'Jost';
|
|
457
463
|
background-color: #afd4ff !important;
|
|
@@ -900,7 +906,33 @@ pre {
|
|
|
900
906
|
position: absolute;
|
|
901
907
|
min-width: 210px;
|
|
902
908
|
max-width: 100%;
|
|
903
|
-
z-index:
|
|
909
|
+
z-index: 100000;
|
|
910
|
+
}
|
|
911
|
+
|
|
912
|
+
.centerPopover {
|
|
913
|
+
position: absolute !important;
|
|
914
|
+
top: 1%;
|
|
915
|
+
left: 25%;
|
|
916
|
+
|
|
917
|
+
padding: 1rem 1rem 0.6rem 1rem !important;
|
|
918
|
+
margin-top: 1rem;
|
|
919
|
+
border-radius: 10px;
|
|
920
|
+
text-align: left;
|
|
921
|
+
position: absolute;
|
|
922
|
+
min-width: 210px;
|
|
923
|
+
max-width: 100%;
|
|
924
|
+
z-index: 100000;
|
|
925
|
+
background-color: #fff;
|
|
926
|
+
background-clip: padding-box;
|
|
927
|
+
border: 1px solid rgba(0, 0, 0, 0.2);
|
|
928
|
+
-webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
|
|
929
|
+
box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
|
|
930
|
+
outline: 0;
|
|
931
|
+
}
|
|
932
|
+
|
|
933
|
+
.centerPopover h2 {
|
|
934
|
+
margin-top: 0;
|
|
935
|
+
margin-bottom: 1rem;
|
|
904
936
|
}
|
|
905
937
|
|
|
906
938
|
.select-name {
|
|
@@ -1012,3 +1044,40 @@ pre {
|
|
|
1012
1044
|
.tag_value:hover {
|
|
1013
1045
|
background-color: #5c3b8f50;
|
|
1014
1046
|
}
|
|
1047
|
+
|
|
1048
|
+
.modal-backdrop.in {
|
|
1049
|
+
filter: alpha(opacity=50);
|
|
1050
|
+
opacity: 0.5;
|
|
1051
|
+
}
|
|
1052
|
+
.modal-backdrop.fade {
|
|
1053
|
+
filter: alpha(opacity=0);
|
|
1054
|
+
opacity: 0;
|
|
1055
|
+
}
|
|
1056
|
+
.fade.in {
|
|
1057
|
+
opacity: 1;
|
|
1058
|
+
}
|
|
1059
|
+
.modal-backdrop {
|
|
1060
|
+
z-index: 1 !important;
|
|
1061
|
+
}
|
|
1062
|
+
.modal-backdrop {
|
|
1063
|
+
z-index: 1;
|
|
1064
|
+
}
|
|
1065
|
+
.modal-backdrop {
|
|
1066
|
+
position: fixed;
|
|
1067
|
+
top: 0;
|
|
1068
|
+
right: 0;
|
|
1069
|
+
bottom: 0;
|
|
1070
|
+
left: 0;
|
|
1071
|
+
z-index: 1;
|
|
1072
|
+
background-color: #00000075;
|
|
1073
|
+
}
|
|
1074
|
+
.fade {
|
|
1075
|
+
opacity: 0;
|
|
1076
|
+
-webkit-transition: opacity 0.15s linear;
|
|
1077
|
+
-o-transition: opacity 0.15s linear;
|
|
1078
|
+
transition: opacity 0.15s linear;
|
|
1079
|
+
}
|
|
1080
|
+
|
|
1081
|
+
.partitionLink:hover {
|
|
1082
|
+
text-decoration: none;
|
|
1083
|
+
}
|
package/src/styles/loading.css
CHANGED
|
@@ -1,35 +1,34 @@
|
|
|
1
1
|
.lds-ring {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
2
|
+
display: inline-block;
|
|
3
|
+
position: relative;
|
|
4
|
+
width: 25px;
|
|
5
|
+
height: 25px;
|
|
6
|
+
}
|
|
7
|
+
.lds-ring div {
|
|
8
|
+
box-sizing: border-box;
|
|
9
|
+
display: block;
|
|
10
|
+
position: absolute;
|
|
11
|
+
width: 25px;
|
|
12
|
+
height: 25px;
|
|
13
|
+
border: 8px solid #fff;
|
|
14
|
+
border-radius: 50%;
|
|
15
|
+
animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
|
|
16
|
+
border-color: #fff transparent transparent transparent;
|
|
17
|
+
}
|
|
18
|
+
.lds-ring div:nth-child(1) {
|
|
19
|
+
animation-delay: -0.45s;
|
|
20
|
+
}
|
|
21
|
+
.lds-ring div:nth-child(2) {
|
|
22
|
+
animation-delay: -0.3s;
|
|
23
|
+
}
|
|
24
|
+
.lds-ring div:nth-child(3) {
|
|
25
|
+
animation-delay: -0.15s;
|
|
26
|
+
}
|
|
27
|
+
@keyframes lds-ring {
|
|
28
|
+
0% {
|
|
29
|
+
transform: rotate(0deg);
|
|
6
30
|
}
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
display: block;
|
|
10
|
-
position: absolute;
|
|
11
|
-
width: 25px;
|
|
12
|
-
height: 25px;
|
|
13
|
-
border: 8px solid #fff;
|
|
14
|
-
border-radius: 50%;
|
|
15
|
-
animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
|
|
16
|
-
border-color: #fff transparent transparent transparent;
|
|
31
|
+
100% {
|
|
32
|
+
transform: rotate(360deg);
|
|
17
33
|
}
|
|
18
|
-
|
|
19
|
-
animation-delay: -0.45s;
|
|
20
|
-
}
|
|
21
|
-
.lds-ring div:nth-child(2) {
|
|
22
|
-
animation-delay: -0.3s;
|
|
23
|
-
}
|
|
24
|
-
.lds-ring div:nth-child(3) {
|
|
25
|
-
animation-delay: -0.15s;
|
|
26
|
-
}
|
|
27
|
-
@keyframes lds-ring {
|
|
28
|
-
0% {
|
|
29
|
-
transform: rotate(0deg);
|
|
30
|
-
}
|
|
31
|
-
100% {
|
|
32
|
-
transform: rotate(360deg);
|
|
33
|
-
}
|
|
34
|
-
}
|
|
35
|
-
|
|
34
|
+
}
|
package/src/styles/login.css
CHANGED