@gpa-gemstone/common-pages
Version:
Common UI pages for GPA products
83 lines (82 loc) • 4.13 kB
JavaScript
;
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 });
//******************************************************************************************************
// HeartBeatCheck.tsx - Gbtc
//
// Copyright (c) 2024, 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 may license 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:
// ----------------------------------------------------------------------------------------------------
// 06/26/2026 - Preston Crawford
// Generated original version of source code.
//
//******************************************************************************************************
var React = __importStar(require("react"));
var react_interactive_1 = require("@gpa-gemstone/react-interactive");
/**
* Periodically calls HeartBeat to verify connectivity to the server and, when a
* check fails, displays a blocking modal indicating the application is trying to
* reconnect. Renders nothing while the server is reachable.
*/
var HeartBeatCheck = function (props) {
var _a = React.useState(false), showError = _a[0], setShowError = _a[1];
//Effect to call heartbeat on consumer defined interval
React.useEffect(function () {
var updateServiceStatus = null;
var checkServiceStatus = function () {
updateServiceStatus = props.HeartBeat();
updateServiceStatus.then(function () {
setShowError(false);
}, function () {
setShowError(true);
});
};
checkServiceStatus();
var interval = setInterval(checkServiceStatus, props.IntervalMS);
return function () {
clearInterval(interval);
if ((updateServiceStatus === null || updateServiceStatus === void 0 ? void 0 : updateServiceStatus.abort) != null)
updateServiceStatus.abort();
};
}, [props.HeartBeat, props.IntervalMS]);
if (!showError)
return null;
return (React.createElement(react_interactive_1.Modal, { Show: true, Title: "Error Communicating with Application", Size: 'sm', ShowCancel: false, ShowConfirm: false, ShowX: false, CallBack: function () { } },
React.createElement("p", null, " The application is trying to reconnect to the server..."),
React.createElement(react_interactive_1.LoadingIcon, { Show: true })));
};
exports.default = HeartBeatCheck;