@gpa-gemstone/react-interactive
Version:
Interactive UI Components for GPA products
93 lines (92 loc) • 4.9 kB
JavaScript
// ******************************************************************************************************
// Header.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:
// ----------------------------------------------------------------------------------------------------
// 02/13/2022 - C. Lackner
// 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 = __importStar(require("react"));
var Context_1 = require("./Context");
var gpa_symbols_1 = require("@gpa-gemstone/gpa-symbols");
var helper_functions_1 = require("@gpa-gemstone/helper-functions");
var Section = function (props) {
var context = React.useContext(Context_1.Context);
var _a = React.useState(true), show = _a[0], setShow = _a[1];
var _b = React.useState(true), collapsable = _b[0], setCollapsable = _b[1];
var _c = React.useState((0, helper_functions_1.CreateGuid)()), guid = _c[0], _setGuid = _c[1];
var chevron = React.useMemo(function () {
if (!collapsable)
return null;
if (show)
return React.createElement(gpa_symbols_1.ReactIcons.ChevronUp, { Style: { width: '1em', height: '1em' } });
return React.createElement(gpa_symbols_1.ReactIcons.ChevronDown, { Style: { width: '1em', height: '1em' } });
}, [collapsable, show]);
React.useEffect(function () {
var _a;
if (props.Label == null || context.collapsed || guid === context.activeSection)
setCollapsable(false);
else
setCollapsable((_a = props.AllowCollapse) !== null && _a !== void 0 ? _a : true);
}, [context.collapsed, context.activeSection, props.Label, props.AllowCollapse]);
var onClick = React.useCallback(function (event) {
if (!collapsable)
return;
setShow(function (s) { return !s; });
event.preventDefault();
event.stopPropagation();
}, [collapsable]);
if (props.RequiredRoles != null && props.RequiredRoles.filter(function (r) { return context.userRoles.findIndex(function (i) { return i === r; }) > -1; }).length === 0)
return null;
return (React.createElement(Context_1.SectionContext.Provider, { value: guid },
React.createElement("hr", null),
(props.Label != null && !context.collapsed) ?
React.createElement(React.Fragment, null,
React.createElement("h6", { className: "sidebar-heading d-flex justify-content-between align-items-center px-3 mt-4 mb-1 text-muted", onClick: onClick, style: { cursor: collapsable ? "pointer" : undefined } },
React.createElement("span", null,
props.Label,
" ",
chevron))) : null,
(show || !collapsable) ?
React.createElement("ul", { className: "navbar-nav px-3", style: props.Style }, props.children) : null));
};
exports.default = Section;
;