RelationshipLayoutView_tmpl.html 3.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <!--
  2. * Licensed to the Apache Software Foundation (ASF) under one or more
  3. * contributor license agreements. See the NOTICE file distributed with
  4. * this work for additional information regarding copyright ownership.
  5. * The ASF licenses this file to You under the Apache License, Version 2.0
  6. * (the "License"); you may not use this file except in compliance with
  7. * the License. You may obtain a copy of the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. -->
  17. <div class="relationship-details">
  18. <div class="graph-button-group form-group clearfix">
  19. <div class="btn-group pull-left">
  20. <span class="pull-left">Graph</span>
  21. <label class="switch pull-left">
  22. <input type="checkbox" checked class="switch-input" name="relationshipViewToggle" value="text">
  23. <span class="switch-slider"></span>
  24. </label>
  25. <span class="pull-left">Table</span>
  26. </div>
  27. <div class="pull-right" data-id="zoomControl">
  28. <div class="btn-group pull-right">
  29. <button type="button" id="zoom_in" class="btn btn-action btn-gray btn-sm lineageZoomButton" title="Zoom In" data-id="refreshBtn"> <i class="fa fa-search-plus"></i></button>
  30. <button type="button" id="zoom_out" class="btn btn-action btn-gray btn-sm lineageZoomButton" title="Zoom Out" data-id="refreshBtn"> <i class="fa fa-search-minus"></i></button>
  31. </div>
  32. <div class="btn-group pull-right" style="padding: 4px 15px;">
  33. <span class="entity-status active" title="Active Entity"><i class="fa fa-long-arrow-right fa-fw" aria-hidden="true"></i>Active</span>
  34. <span class="entity-status deleted" title="Deleted Entity"><i class="fa fa-long-arrow-right fa-fw" aria-hidden="true"></i>Deleted</span>
  35. </div>
  36. </div>
  37. </div>
  38. <div class="white-bg no-padding relationship-box invisible" data-id='relationshipSVG'>
  39. <div class="fontLoader">
  40. <i class="fa fa-refresh fa-spin-custom"></i>
  41. </div>
  42. <svg width="100%" height="100%" viewBox="0 0 854 330" enable-background="new 0 0 854 330" xml:space="preserve"></svg>
  43. <div class="box-panel size-lg slide-from-left relationship-node-details">
  44. <div class="header clearfix">
  45. <h4><span data-id="typeName"></span></h4>
  46. <span data-id="box-close" class="btn btn-sm btn-close"><i class="fa fa-close"></i></span>
  47. </div>
  48. <div class="body">
  49. <div class="col-md-12">
  50. <input data-id="searchNode" class="form-control form-group" placeholder="Search Entities" />
  51. <ul data-id="entityList" class="entity-list"></ul>
  52. </div>
  53. </div>
  54. </div>
  55. </div>
  56. <div class="relationship-detail-table">
  57. <div class="entity-relationship-table-toggle">
  58. <div class="pretty p-switch p-fill">
  59. <input type="checkbox" data-id="noValueToggle" />
  60. <div class="state p-primary">
  61. <label>Show Empty Values</label>
  62. </div>
  63. </div>
  64. </div>
  65. <table class="table table-quickMenu bold-key" data-id="relationshipDetailTable">
  66. <thead>
  67. <tr>
  68. <th>Key</th>
  69. <th>Value</th>
  70. </tr>
  71. </thead>
  72. <tbody data-id="relationshipDetailValue">
  73. </tbody>
  74. </table>
  75. </div>
  76. </div>
  77. <div class="no-data" style="display: none;">
  78. <h4 style="text-align: center;">No Records found!</h4>
  79. </div>