This is an automated email from the ASF dual-hosted git repository.
dineshkumar pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/ranger.git
from f33a88a90 RANGER-4165: support SELF_OR_PREFIX resource matching scope
add 338f26473 RANGER-4253 Left Sidebar layout for Ranger Admin UI in react
code base
No new revisions were added by this update.
Summary of changes:
pom.xml | 7 +-
.../src/main/webapp/react-webapp/package-lock.json | 57 +-
.../src/main/webapp/react-webapp/package.json | 2 +-
.../src/main/webapp/react-webapp/src/App.jsx | 40 +-
.../src/components/CommonComponents.jsx | 42 +-
.../react-webapp/src/components/XATableLayout.jsx | 105 ++--
.../main/webapp/react-webapp/src/images/close.svg | 3 +
.../react-webapp/src/images/sidebar/account.svg | 3 +
.../react-webapp/src/images/sidebar/audits.svg | 3 +
.../react-webapp/src/images/sidebar/chevron.svg | 1 +
.../react-webapp/src/images/sidebar/dropdown.svg | 10 +
.../webapp/react-webapp/src/images/sidebar/key.svg | 3 +
.../react-webapp/src/images/sidebar/pipe.svg | 3 +
.../react-webapp/src/images/sidebar/ranger.svg | 12 +
.../react-webapp/src/images/sidebar/reports.svg | 3 +
.../react-webapp/src/images/sidebar/settings.svg | 3 +
.../react-webapp/src/images/sidebar/tags.svg | 3 +
.../react-webapp/src/images/sidebar/zone.svg | 3 +
.../src/main/webapp/react-webapp/src/index.jsx | 4 +-
.../main/webapp/react-webapp/src/styles/style.css | 687 +++++++++++++++++++--
.../main/webapp/react-webapp/src/utils/XAUtils.js | 15 +-
.../main/webapp/react-webapp/src/utils/appState.js | 12 +-
.../src/views/AuditEvent/AccessLogDetail.jsx | 6 +-
.../AuditEvent/AdminLogs/PolicyViewDetails.jsx | 11 +-
.../src/views/AuditEvent/AdminModal.jsx | 2 +-
.../src/views/AuditEvent/AuditLayout.jsx | 4 +-
.../src/views/AuditEvent/OperationAdminModal.jsx | 2 +-
.../react-webapp/src/views/CustomBreadcrumb.jsx | 86 +--
.../src/views/Encryption/KeyCreate.jsx | 7 +-
.../src/views/Encryption/KeyManager.jsx | 7 +-
.../main/webapp/react-webapp/src/views/Home.jsx | 117 +++-
.../main/webapp/react-webapp/src/views/Layout.jsx | 69 ++-
.../src/views/PermissionsModule/EditPermission.jsx | 28 +-
.../src/views/PermissionsModule/Permissions.jsx | 7 +-
.../views/PolicyListing/AddUpdatePolicyForm.jsx | 335 +++++-----
.../views/PolicyListing/PolicyConditionsComp.jsx | 8 +-
.../src/views/PolicyListing/PolicyListing.jsx | 17 +-
.../views/PolicyListing/PolicyListingTabView.jsx | 418 +++++++++----
.../views/PolicyListing/PolicyPermissionItem.jsx | 98 ++-
.../views/PolicyListing/TagBasePermissionItem.jsx | 33 +-
.../src/views/Reports/SearchPolicyTable.jsx | 331 ++++++----
.../src/views/Reports/UserAccessLayout.jsx | 14 +-
.../src/views/SecurityZone/SecurityZoneForm.jsx | 28 +-
.../src/views/SecurityZone/ZoneDisplay.jsx | 7 +-
.../src/views/SecurityZone/ZoneListing.jsx | 25 +-
.../src/views/ServiceManager/ImportPolicy.jsx | 26 +-
.../views/ServiceManager/ServiceAuditFilter.jsx | 81 ++-
.../src/views/ServiceManager/ServiceDefinition.jsx | 10 +-
.../views/ServiceManager/ServiceDefinitions.jsx | 150 ++---
.../src/views/ServiceManager/ServiceForm.jsx | 232 ++++---
.../views/ServiceManager/ServiceViewDetails.jsx | 311 ++++++++++
.../src/views/SideBar/ResourceTagContent.jsx | 81 +++
.../react-webapp/src/views/SideBar/SideBar.jsx | 453 ++++++++++++++
.../react-webapp/src/views/SideBar/SideBarBody.jsx | 613 ++++++++++++++++++
.../react-webapp/src/views/SideBar/TopNavBar.jsx | 353 +++++++++++
.../UserGroupRoleListing/UserGroupRoleListing.jsx | 19 +-
.../groups_details/GroupForm.jsx | 12 +-
.../groups_details/GroupListing.jsx | 1 -
.../UserGroupRoleListing/role_details/RoleForm.jsx | 16 +-
.../role_details/RoleListing.jsx | 1 -
.../users_details/AddUserView.jsx | 7 +-
.../users_details/EditUserView.jsx | 12 +-
.../users_details/UserFormComp.jsx | 15 +-
.../users_details/UserListing.jsx | 1 -
.../webapp/react-webapp/src/views/UserProfile.jsx | 9 +-
65 files changed, 4064 insertions(+), 1020 deletions(-)
create mode 100644
security-admin/src/main/webapp/react-webapp/src/images/close.svg
create mode 100644
security-admin/src/main/webapp/react-webapp/src/images/sidebar/account.svg
create mode 100644
security-admin/src/main/webapp/react-webapp/src/images/sidebar/audits.svg
create mode 100644
security-admin/src/main/webapp/react-webapp/src/images/sidebar/chevron.svg
create mode 100644
security-admin/src/main/webapp/react-webapp/src/images/sidebar/dropdown.svg
create mode 100644
security-admin/src/main/webapp/react-webapp/src/images/sidebar/key.svg
create mode 100644
security-admin/src/main/webapp/react-webapp/src/images/sidebar/pipe.svg
create mode 100644
security-admin/src/main/webapp/react-webapp/src/images/sidebar/ranger.svg
create mode 100644
security-admin/src/main/webapp/react-webapp/src/images/sidebar/reports.svg
create mode 100644
security-admin/src/main/webapp/react-webapp/src/images/sidebar/settings.svg
create mode 100644
security-admin/src/main/webapp/react-webapp/src/images/sidebar/tags.svg
create mode 100644
security-admin/src/main/webapp/react-webapp/src/images/sidebar/zone.svg
create mode 100644
security-admin/src/main/webapp/react-webapp/src/views/ServiceManager/ServiceViewDetails.jsx
create mode 100644
security-admin/src/main/webapp/react-webapp/src/views/SideBar/ResourceTagContent.jsx
create mode 100644
security-admin/src/main/webapp/react-webapp/src/views/SideBar/SideBar.jsx
create mode 100644
security-admin/src/main/webapp/react-webapp/src/views/SideBar/SideBarBody.jsx
create mode 100644
security-admin/src/main/webapp/react-webapp/src/views/SideBar/TopNavBar.jsx