UNPKG

@gpa-gemstone/react-interactive

Version:
67 lines (66 loc) 3.41 kB
"use strict"; // ****************************************************************************************************** // ConfigurableTableAlert.tsx - Gbtc // // Copyright © 2025, 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/25/2025 - Preston Crawford // 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; }; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.ConfigurableTableAlert = void 0; var React = __importStar(require("react")); var Alert_1 = __importDefault(require("../Alert")); var ConfigurableTableAlert = function () { var _a = React.useState(true), show = _a[0], setShow = _a[1]; //Effect to set the show state onMount React.useEffect(function () { var dismissed = localStorage.getItem("Gemstone.HelperAlerts.ConfigurableTable"); if (dismissed === "true") setShow(false); }, []); var handleOnClick = function () { localStorage.setItem("Gemstone.HelperAlerts.ConfigurableTable", "true"); }; return (show ? React.createElement(Alert_1.default, { OnClick: handleOnClick, Color: "alert-primary" }, "Use the gear at the far right of the header row to choose columns to show or hide.") : null); }; exports.ConfigurableTableAlert = ConfigurableTableAlert;