[atlas] branch master updated: ATLAS-3030: UI : Allow to search the node in the lineage graph

2019-02-25 Thread sarath
This is an automated email from the ASF dual-hosted git repository.

sarath pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/atlas.git


The following commit(s) were added to refs/heads/master by this push:
 new b9642b6  ATLAS-3030: UI : Allow to search the node in the lineage graph
b9642b6 is described below

commit b9642b62bca574bda897b199c5beb722238f3201
Author: kevalbhatt 
AuthorDate: Mon Feb 25 11:04:21 2019 -0800

ATLAS-3030: UI : Allow to search the node in the lineage graph

Signed-off-by: Sarath Subramanian 
---
 dashboardv2/public/css/scss/graph.scss |  30 +++
 .../entity-icon/disabled/falcon_feed_creation.png  | Bin 0 -> 6830 bytes
 .../disabled/falcon_feed_replication.png   | Bin 0 -> 6830 bytes
 .../img/entity-icon/disabled/falcon_process.png| Bin 0 -> 6830 bytes
 .../img/entity-icon/falcon_feed_creation.png   | Bin 0 -> 9620 bytes
 .../img/entity-icon/falcon_feed_replication.png| Bin 0 -> 9620 bytes
 .../public/img/entity-icon/falcon_process.png  | Bin 0 -> 9620 bytes
 dashboardv2/public/js/main.js  |   3 +-
 dashboardv2/public/js/router/Router.js |   1 +
 .../js/templates/graph/LineageLayoutView_tmpl.html |  25 ++-
 dashboardv2/public/js/utils/CommonViewFunction.js  |  20 +-
 .../public/js/utils/{Overrides.js => Helper.js}| 202 ++---
 dashboardv2/public/js/utils/Overrides.js   | 182 ---
 dashboardv2/public/js/utils/Utils.js   |   9 -
 dashboardv2/public/js/views/common/Statistics.js   |   8 +-
 .../js/views/detail_page/DetailPageLayoutView.js   |   2 +-
 .../public/js/views/graph/LineageLayoutView.js | 188 +--
 .../public/js/views/search/SearchLayoutView.js |   4 +-
 18 files changed, 231 insertions(+), 443 deletions(-)

diff --git a/dashboardv2/public/css/scss/graph.scss 
b/dashboardv2/public/css/scss/graph.scss
index 3646261..4a9fd57 100644
--- a/dashboardv2/public/css/scss/graph.scss
+++ b/dashboardv2/public/css/scss/graph.scss
@@ -38,6 +38,12 @@
 stroke: $color_mountain_mist_approx;
 fill: $white;
 stroke-width: 1.5px;
+
+&.serach-rect {
+stroke: $color_keppel_approx;
+fill: transparent;
+stroke-width: 2.5px
+}
 }
 
 .label {
@@ -276,6 +282,7 @@ g.type-TK>rect {
 .lineage-fltr-panel,
 .lineage-search-panel {
 position: absolute;
+top: 45px;
 border: 1px solid #ccc;
 width: 250px;
 max-height: 99%;
@@ -445,6 +452,11 @@ span#zoom_in {
 position: relative;
 width: 100%;
 height: 64vh;
+overflow: hidden !important;
+
+&.auto-height {
+height: auto !important;
+}
 }
 
 .active.fullscreen-mode {
@@ -471,4 +483,22 @@ span#zoom_in {
 .lineage-box {
 padding: 10px !important;
 }
+}
+
+@keyframes zoominoutsinglefeatured {
+0% {
+transform: scale(1, 1);
+}
+
+50% {
+transform: scale(1.2, 1.2);
+}
+
+100% {
+transform: scale(1, 1);
+}
+}
+
+.wobble {
+animation: zoominoutsinglefeatured 1s 5;
 }
\ No newline at end of file
diff --git 
a/dashboardv2/public/img/entity-icon/disabled/falcon_feed_creation.png 
b/dashboardv2/public/img/entity-icon/disabled/falcon_feed_creation.png
new file mode 100644
index 000..b98be6c
Binary files /dev/null and 
b/dashboardv2/public/img/entity-icon/disabled/falcon_feed_creation.png differ
diff --git 
a/dashboardv2/public/img/entity-icon/disabled/falcon_feed_replication.png 
b/dashboardv2/public/img/entity-icon/disabled/falcon_feed_replication.png
new file mode 100644
index 000..b98be6c
Binary files /dev/null and 
b/dashboardv2/public/img/entity-icon/disabled/falcon_feed_replication.png differ
diff --git a/dashboardv2/public/img/entity-icon/disabled/falcon_process.png 
b/dashboardv2/public/img/entity-icon/disabled/falcon_process.png
new file mode 100644
index 000..b98be6c
Binary files /dev/null and 
b/dashboardv2/public/img/entity-icon/disabled/falcon_process.png differ
diff --git a/dashboardv2/public/img/entity-icon/falcon_feed_creation.png 
b/dashboardv2/public/img/entity-icon/falcon_feed_creation.png
new file mode 100644
index 000..ddb3829
Binary files /dev/null and 
b/dashboardv2/public/img/entity-icon/falcon_feed_creation.png differ
diff --git a/dashboardv2/public/img/entity-icon/falcon_feed_replication.png 
b/dashboardv2/public/img/entity-icon/falcon_feed_replication.png
new file mode 100644
index 000..ddb3829
Binary files /dev/null and 
b/dashboardv2/public/img/entity-icon/falcon_feed_replication.png differ
diff --git a/dashboardv2/public/img/entity-icon/falcon_process.png 
b/dashboardv2/public/img/entity-icon/falcon_process.png
new file mode 100644
index 000..ddb3829
Binary files /dev/null and 
b/dashboardv2/public/img/entity-icon/falcon_process.png differ
diff --git a/dashboardv2/public/js/main.js b/dashboardv2/public/js/main.js
index 

[atlas] branch branch-1.0 updated: ATLAS-3030: UI : Allow to search the node in the lineage graph

2019-02-25 Thread sarath
This is an automated email from the ASF dual-hosted git repository.

sarath pushed a commit to branch branch-1.0
in repository https://gitbox.apache.org/repos/asf/atlas.git


The following commit(s) were added to refs/heads/branch-1.0 by this push:
 new b41788c  ATLAS-3030: UI : Allow to search the node in the lineage graph
b41788c is described below

commit b41788c76a89127b9e8d0665dcf331926da6003a
Author: kevalbhatt 
AuthorDate: Mon Feb 25 11:04:21 2019 -0800

ATLAS-3030: UI : Allow to search the node in the lineage graph

Signed-off-by: Sarath Subramanian 
(cherry picked from commit b9642b62bca574bda897b199c5beb722238f3201)
---
 dashboardv2/public/css/scss/graph.scss |  30 +++
 .../entity-icon/disabled/falcon_feed_creation.png  | Bin 0 -> 6830 bytes
 .../disabled/falcon_feed_replication.png   | Bin 0 -> 6830 bytes
 .../img/entity-icon/disabled/falcon_process.png| Bin 0 -> 6830 bytes
 .../img/entity-icon/falcon_feed_creation.png   | Bin 0 -> 9620 bytes
 .../img/entity-icon/falcon_feed_replication.png| Bin 0 -> 9620 bytes
 .../public/img/entity-icon/falcon_process.png  | Bin 0 -> 9620 bytes
 dashboardv2/public/js/main.js  |   3 +-
 dashboardv2/public/js/router/Router.js |   1 +
 .../js/templates/graph/LineageLayoutView_tmpl.html |  25 ++-
 dashboardv2/public/js/utils/CommonViewFunction.js  |  20 +-
 .../public/js/utils/{Overrides.js => Helper.js}| 202 ++---
 dashboardv2/public/js/utils/Overrides.js   | 182 ---
 dashboardv2/public/js/utils/Utils.js   |   9 -
 dashboardv2/public/js/views/common/Statistics.js   |   8 +-
 .../js/views/detail_page/DetailPageLayoutView.js   |   2 +-
 .../public/js/views/graph/LineageLayoutView.js | 188 +--
 .../public/js/views/search/SearchLayoutView.js |   4 +-
 18 files changed, 231 insertions(+), 443 deletions(-)

diff --git a/dashboardv2/public/css/scss/graph.scss 
b/dashboardv2/public/css/scss/graph.scss
index 3646261..4a9fd57 100644
--- a/dashboardv2/public/css/scss/graph.scss
+++ b/dashboardv2/public/css/scss/graph.scss
@@ -38,6 +38,12 @@
 stroke: $color_mountain_mist_approx;
 fill: $white;
 stroke-width: 1.5px;
+
+&.serach-rect {
+stroke: $color_keppel_approx;
+fill: transparent;
+stroke-width: 2.5px
+}
 }
 
 .label {
@@ -276,6 +282,7 @@ g.type-TK>rect {
 .lineage-fltr-panel,
 .lineage-search-panel {
 position: absolute;
+top: 45px;
 border: 1px solid #ccc;
 width: 250px;
 max-height: 99%;
@@ -445,6 +452,11 @@ span#zoom_in {
 position: relative;
 width: 100%;
 height: 64vh;
+overflow: hidden !important;
+
+&.auto-height {
+height: auto !important;
+}
 }
 
 .active.fullscreen-mode {
@@ -471,4 +483,22 @@ span#zoom_in {
 .lineage-box {
 padding: 10px !important;
 }
+}
+
+@keyframes zoominoutsinglefeatured {
+0% {
+transform: scale(1, 1);
+}
+
+50% {
+transform: scale(1.2, 1.2);
+}
+
+100% {
+transform: scale(1, 1);
+}
+}
+
+.wobble {
+animation: zoominoutsinglefeatured 1s 5;
 }
\ No newline at end of file
diff --git 
a/dashboardv2/public/img/entity-icon/disabled/falcon_feed_creation.png 
b/dashboardv2/public/img/entity-icon/disabled/falcon_feed_creation.png
new file mode 100644
index 000..b98be6c
Binary files /dev/null and 
b/dashboardv2/public/img/entity-icon/disabled/falcon_feed_creation.png differ
diff --git 
a/dashboardv2/public/img/entity-icon/disabled/falcon_feed_replication.png 
b/dashboardv2/public/img/entity-icon/disabled/falcon_feed_replication.png
new file mode 100644
index 000..b98be6c
Binary files /dev/null and 
b/dashboardv2/public/img/entity-icon/disabled/falcon_feed_replication.png differ
diff --git a/dashboardv2/public/img/entity-icon/disabled/falcon_process.png 
b/dashboardv2/public/img/entity-icon/disabled/falcon_process.png
new file mode 100644
index 000..b98be6c
Binary files /dev/null and 
b/dashboardv2/public/img/entity-icon/disabled/falcon_process.png differ
diff --git a/dashboardv2/public/img/entity-icon/falcon_feed_creation.png 
b/dashboardv2/public/img/entity-icon/falcon_feed_creation.png
new file mode 100644
index 000..ddb3829
Binary files /dev/null and 
b/dashboardv2/public/img/entity-icon/falcon_feed_creation.png differ
diff --git a/dashboardv2/public/img/entity-icon/falcon_feed_replication.png 
b/dashboardv2/public/img/entity-icon/falcon_feed_replication.png
new file mode 100644
index 000..ddb3829
Binary files /dev/null and 
b/dashboardv2/public/img/entity-icon/falcon_feed_replication.png differ
diff --git a/dashboardv2/public/img/entity-icon/falcon_process.png 
b/dashboardv2/public/img/entity-icon/falcon_process.png
new file mode 100644
index 000..ddb3829
Binary files /dev/null and 
b/dashboardv2/public/img/entity-icon/falcon_process.png differ
diff