mirror of
https://github.com/Kingsrook/qqq-frontend-material-dashboard.git
synced 2025-07-18 13:20:43 +00:00
140 lines
4.7 KiB
TypeScript
140 lines
4.7 KiB
TypeScript
/*
|
|
* QQQ - Low-code Application Framework for Engineers.
|
|
* Copyright (C) 2021-2023. Kingsrook, LLC
|
|
* 651 N Broad St Ste 205 # 6917 | Middletown DE 19709 | United States
|
|
* contact@kingsrook.com
|
|
* https://github.com/Kingsrook/
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
* License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
import {QHelpContent} from "@kingsrook/qqq-frontend-core/lib/model/metaData/QHelpContent";
|
|
import Box from "@mui/material/Box";
|
|
import parse from "html-react-parser";
|
|
import React, {useContext} from "react";
|
|
import Markdown from "react-markdown";
|
|
import QContext from "QContext";
|
|
|
|
interface Props
|
|
{
|
|
helpContents: QHelpContent[];
|
|
roles: string[];
|
|
heading?: string;
|
|
helpContentKey?: string;
|
|
}
|
|
|
|
HelpContent.defaultProps = {};
|
|
|
|
|
|
/*******************************************************************************
|
|
** format some content - meaning, change it from string to JSX element(s) or string.
|
|
** does a parse() for HTML, and a <Markdown> for markdown, else just text.
|
|
*******************************************************************************/
|
|
const formatHelpContent = (content: string, format: string): string | JSX.Element | JSX.Element[] =>
|
|
{
|
|
if (format == "HTML")
|
|
{
|
|
return parse(content);
|
|
}
|
|
else if (format == "MARKDOWN")
|
|
{
|
|
return (<Markdown>{content}</Markdown>)
|
|
}
|
|
|
|
return content;
|
|
}
|
|
|
|
|
|
/*******************************************************************************
|
|
** return the first help content from the list that matches the first role
|
|
** in the roles list.
|
|
*******************************************************************************/
|
|
const getMatchingHelpContent = (helpContents: QHelpContent[], roles: string[]): QHelpContent =>
|
|
{
|
|
if (helpContents)
|
|
{
|
|
if (helpContents.length == 1 && helpContents[0].roles.size == 0)
|
|
{
|
|
//////////////////////////////////////////////////////////////////////////////////////////////////
|
|
// if there's only 1 entry, and it has no roles, then assume user wanted it globally and use it //
|
|
//////////////////////////////////////////////////////////////////////////////////////////////////
|
|
return (helpContents[0]);
|
|
}
|
|
else
|
|
{
|
|
for (let i = 0; i < roles.length; i++)
|
|
{
|
|
for (let j = 0; j < helpContents.length; j++)
|
|
{
|
|
if (helpContents[j].roles.has(roles[i]))
|
|
{
|
|
return(helpContents[j])
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
return (null);
|
|
}
|
|
|
|
|
|
/*******************************************************************************
|
|
** test if a list of help contents would find any matches from a list of roles.
|
|
*******************************************************************************/
|
|
export const hasHelpContent = (helpContents: QHelpContent[], roles: string[]) =>
|
|
{
|
|
return getMatchingHelpContent(helpContents, roles) != null;
|
|
}
|
|
|
|
|
|
/*******************************************************************************
|
|
** component that renders a box of formatted help content, from a list of
|
|
** helpContents (from meta-data), and for a list of roles (based on what screen
|
|
*******************************************************************************/
|
|
function HelpContent({helpContents, roles, heading, helpContentKey}: Props): JSX.Element
|
|
{
|
|
const {helpHelpActive} = useContext(QContext);
|
|
let selectedHelpContent = getMatchingHelpContent(helpContents, roles);
|
|
|
|
let content = null;
|
|
if (helpHelpActive)
|
|
{
|
|
if (!selectedHelpContent)
|
|
{
|
|
selectedHelpContent = new QHelpContent({content: ""});
|
|
}
|
|
content = selectedHelpContent.content + ` [${helpContentKey ?? "?"}]`;
|
|
}
|
|
else if(selectedHelpContent)
|
|
{
|
|
content = selectedHelpContent.content;
|
|
}
|
|
|
|
///////////////////////////////////////////////////
|
|
// if content was found, format it and return it //
|
|
///////////////////////////////////////////////////
|
|
if (content)
|
|
{
|
|
return <Box display="inline" className="helpContent">
|
|
{heading && <span className="header">{heading}</span>}
|
|
{formatHelpContent(content, selectedHelpContent.format)}
|
|
</Box>;
|
|
}
|
|
|
|
return (null);
|
|
}
|
|
|
|
export default HelpContent;
|