UNPKG

@gpa-gemstone/react-interactive

Version:
107 lines (106 loc) 5.83 kB
"use strict"; // ****************************************************************************************************** // Page.tsx - Gbtc // // Copyright © 2020, Grid Protection Alliance. All Rights Reserved. // // Licensed to the Grid Protection Alliance (GPA) under one or more contributor license agreements. See // the NOTICE file distributed with this work for additional information regarding copyright ownership. // The GPA licenses this file to you under the MIT License (MIT), the "License"; you may not use this // file except in compliance with the License. You may obtain a copy of the License at: // // http://opensource.org/licenses/MIT // // Unless agreed to in writing, the subject software distributed under the License is distributed on an // "AS-IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. Refer to the // License for the specific language governing permissions and limitations. // // Code Modification History: // ---------------------------------------------------------------------------------------------------- // 10/05/2020 - Billy Ernest // Generated original version of source code. // // ****************************************************************************************************** var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; var desc = Object.getOwnPropertyDescriptor(m, k); if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { desc = { enumerable: true, get: function() { return m[k]; } }; } Object.defineProperty(o, k2, desc); }) : (function(o, m, k, k2) { if (k2 === undefined) k2 = k; o[k2] = m[k]; })); var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { Object.defineProperty(o, "default", { enumerable: true, value: v }); }) : function(o, v) { o["default"] = v; }); var __importStar = (this && this.__importStar) || function (mod) { if (mod && mod.__esModule) return mod; var result = {}; if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); __setModuleDefault(result, mod); return result; }; Object.defineProperty(exports, "__esModule", { value: true }); var react_forms_1 = require("@gpa-gemstone/react-forms"); var React = __importStar(require("react")); var react_router_dom_1 = require("react-router-dom"); var Context_1 = require("./Context"); var Page = function (props) { var _a = React.useState(false), hover = _a[0], setHover = _a[1]; var _b = React.useState("nav-link"), className = _b[0], setClassName = _b[1]; var context = React.useContext(Context_1.Context); var sectionGuid = React.useContext(Context_1.SectionContext); var location = (0, react_router_dom_1.useLocation)(); //effect to set the className based on the current path and the props.Name and set activeSection React.useEffect(function () { var _a, _b; // Use Name as the base check and see if the current path starts with this base. // React v6 will try to set active or not themselves, we need to not let them to support search matching var base = "".concat(context.homePath).concat(props.Name); var currentPage = location.pathname; if (context.useSearchMatch) currentPage += location.search; var isPathActive = isBaseOrChildRoute(currentPage, base) || isOtherPathActive((_a = props.OtherActivePages) !== null && _a !== void 0 ? _a : [], currentPage); if (isPathActive) { context.setActivePageLabel((_b = props.Label) !== null && _b !== void 0 ? _b : null); context.setActiveSection(sectionGuid); } setClassName("nav-link ".concat((isPathActive ? "active" : ""))); }, [location.pathname, (context.useSearchMatch ? location.search : null), props.OtherActivePages, props.Name]); if (props.RequiredRoles != null && props.RequiredRoles.filter(function (r) { return context.userRoles.findIndex(function (i) { return i === r; }) > -1; }).length === 0) return null; if (props.Label != null || props.Icon != null) { return (React.createElement(React.Fragment, null, React.createElement("li", { className: "nav-item", style: { position: 'relative' } }, React.createElement(react_router_dom_1.NavLink, { "data-tooltip": props.Name, className: function () { return className; }, to: "".concat(context.homePath).concat(props.Name), onMouseEnter: function () { return setHover(true); }, onMouseLeave: function () { return setHover(false); } }, props.Icon !== undefined ? props.Icon : null, !context.collapsed ? React.createElement("span", null, props.Label) : null)), context.collapsed ? React.createElement(react_forms_1.ToolTip, { Target: props.Name, Show: hover, Position: 'right' }, props.Label) : null)); } return null; }; //Helper functiions var isOtherPathActive = function (otherActivePages, currentPage) { if (otherActivePages == null) return false; for (var _i = 0, otherActivePages_1 = otherActivePages; _i < otherActivePages_1.length; _i++) { var path = otherActivePages_1[_i]; if (currentPage.includes(path)) return true; } return false; }; // Helper function to see if the current page is the base route or a child route of the base path var isBaseOrChildRoute = function (page, basePath) { if (!page.startsWith(basePath)) return false; var nextChar = page.charAt(basePath.length); return nextChar === '' || nextChar === '/' || nextChar === '?'; }; exports.default = Page;