Compare commits

..

4 Commits

54 changed files with 3861 additions and 6760 deletions

View File

@ -2,12 +2,12 @@ version: 2.1
orbs: orbs:
node: circleci/node@5.1.0 node: circleci/node@5.1.0
browser-tools: circleci/browser-tools@1.4.7 browser-tools: circleci/browser-tools@1.4.6
executors: executors:
java17: java17:
docker: docker:
- image: 'cimg/openjdk:17.0.9' - image: 'cimg/openjdk:17.0'
commands: commands:
install_java17: install_java17:

View File

@ -28,7 +28,8 @@
}, },
"plugins": [ "plugins": [
"react", "react",
"@typescript-eslint" "@typescript-eslint",
"import"
], ],
"rules": { "rules": {
"brace-style": [ "brace-style": [
@ -42,6 +43,41 @@
"SwitchCase": 1 "SwitchCase": 1
} }
], ],
"import/extensions": [
"error",
"ignorePackages",
{
"ts": "never",
"tsx": "never",
"js": "never"
}
],
"import/no-extraneous-dependencies": [
"error",
{
"devDependencies": true
}
],
"import/order": [
"error",
{
"groups": [
"builtin", // Built-in imports (come from NodeJS native) go first
"external", // <- External imports
"internal", // <- Absolute imports
["sibling", "parent"], // <- Relative imports, the sibling and parent types they can be mingled together
"index", // <- index imports
"unknown"
],
"newlines-between": "never",
"alphabetize": {
/* sort in ascending order. Options: ["ignore", "asc", "desc"] */
"order": "asc",
/* ignore case. Options: [true, false] */
"caseInsensitive": true
}
}
],
"jsx-one-expression-per-line": "off", "jsx-one-expression-per-line": "off",
"max-len": "off", "max-len": "off",
"no-console": "off", "no-console": "off",
@ -78,6 +114,15 @@
"quotes": [ "quotes": [
"error", "error",
"double" "double"
],
"sort-imports": [
"error",
{
"ignoreCase": false,
"ignoreDeclarationSort": true,
"ignoreMemberSort": true,
"allowSeparatedGroups": false
}
] ]
}, },
"settings": { "settings": {

6820
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -6,7 +6,7 @@
"@auth0/auth0-react": "1.10.2", "@auth0/auth0-react": "1.10.2",
"@emotion/react": "11.7.1", "@emotion/react": "11.7.1",
"@emotion/styled": "11.6.0", "@emotion/styled": "11.6.0",
"@kingsrook/qqq-frontend-core": "1.0.89", "@kingsrook/qqq-frontend-core": "1.0.85",
"@mui/icons-material": "5.4.1", "@mui/icons-material": "5.4.1",
"@mui/material": "5.11.1", "@mui/material": "5.11.1",
"@mui/styles": "5.11.1", "@mui/styles": "5.11.1",

View File

@ -66,7 +66,7 @@
<dependency> <dependency>
<groupId>com.kingsrook.qqq</groupId> <groupId>com.kingsrook.qqq</groupId>
<artifactId>qqq-backend-core</artifactId> <artifactId>qqq-backend-core</artifactId>
<version>0.20.0-20240308.165846-65</version> <version>feature-CE-798-quick-filters-20240123.205854-1</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.slf4j</groupId> <groupId>org.slf4j</groupId>

View File

@ -36,7 +36,7 @@ import Icon from "@mui/material/Icon";
import Typography from "@mui/material/Typography"; import Typography from "@mui/material/Typography";
import {makeStyles} from "@mui/styles"; import {makeStyles} from "@mui/styles";
import {Command} from "cmdk"; import {Command} from "cmdk";
import React, {useContext, useEffect, useRef} from "react"; import React, {useContext, useEffect, useRef, useState} from "react";
import {useNavigate} from "react-router-dom"; import {useNavigate} from "react-router-dom";
import QContext from "QContext"; import QContext from "QContext";
import HistoryUtils, {QHistoryEntry} from "qqq/utils/HistoryUtils"; import HistoryUtils, {QHistoryEntry} from "qqq/utils/HistoryUtils";
@ -174,9 +174,7 @@ const CommandMenu = ({metaData}: Props) =>
}) })
tableNames = tableNames.sort((a: string, b:string) => tableNames = tableNames.sort((a: string, b:string) =>
{ {
const labelA = metaData.tables.get(a).label ?? ""; return (metaData.tables.get(a).label.localeCompare(metaData.tables.get(b).label));
const labelB = metaData.tables.get(b).label ?? "";
return (labelA.localeCompare(labelB));
}) })
const path = location.pathname; const path = location.pathname;
@ -224,9 +222,7 @@ const CommandMenu = ({metaData}: Props) =>
}) })
tableNames = tableNames.sort((a: string, b:string) => tableNames = tableNames.sort((a: string, b:string) =>
{ {
const labelA = metaData.tables.get(a).label ?? ""; return (metaData.tables.get(a).label.localeCompare(metaData.tables.get(b).label));
const labelB = metaData.tables.get(b).label ?? "";
return (labelA.localeCompare(labelB));
}) })
return( return(
<Command.Group heading="Tables"> <Command.Group heading="Tables">
@ -256,9 +252,7 @@ const CommandMenu = ({metaData}: Props) =>
appNames = appNames.sort((a: string, b:string) => appNames = appNames.sort((a: string, b:string) =>
{ {
const labelA = getFullAppLabel(metaData.appTree, a, 1, "") ?? ""; return (getFullAppLabel(metaData.appTree, a, 1, "").localeCompare(getFullAppLabel(metaData.appTree, b, 1, "")));
const labelB = getFullAppLabel(metaData.appTree, b, 1, "") ?? "";
return (labelA.localeCompare(labelB));
}) })
return( return(
@ -292,9 +286,7 @@ const CommandMenu = ({metaData}: Props) =>
appNames = appNames.sort((a: string, b:string) => appNames = appNames.sort((a: string, b:string) =>
{ {
const labelA = metaData.apps.get(a).label ?? ""; return (metaData.apps.get(a).label.localeCompare(metaData.apps.get(b).label));
const labelB = metaData.apps.get(b).label ?? "";
return (labelA.localeCompare(labelB));
}) })
const entryMap = new Map<string, boolean>(); const entryMap = new Map<string, boolean>();
@ -362,7 +354,8 @@ const CommandMenu = ({metaData}: Props) =>
<Grid container columnSpacing={5} rowSpacing={1}> <Grid container columnSpacing={5} rowSpacing={1}>
<Grid item xs={6} className={classes.item}><span className={classes.keyboardKey}>n</span>Create a New Record</Grid> <Grid item xs={6} className={classes.item}><span className={classes.keyboardKey}>n</span>Create a New Record</Grid>
<Grid item xs={6} className={classes.item}><span className={classes.keyboardKey}>r</span>Refresh the Query</Grid> <Grid item xs={6} className={classes.item}><span className={classes.keyboardKey}>r</span>Refresh the Query</Grid>
<Grid item xs={6} className={classes.item}><span className={classes.keyboardKey}>f</span>Open the Filter Builder (Advanced mode only)</Grid> <Grid item xs={6} className={classes.item}><span className={classes.keyboardKey}>c</span>Open the Columns Panel</Grid>
<Grid item xs={6} className={classes.item}><span className={classes.keyboardKey}>f</span>Open the Filter Panel</Grid>
</Grid> </Grid>
<Typography variant="h6" pt={3}>Record View</Typography> <Typography variant="h6" pt={3}>Record View</Typography>

View File

@ -1,153 +0,0 @@
/*
* 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/>.
*/
package com.kingsrook.qqq.frontend.materialdashboard.model.metadata;
import com.kingsrook.qqq.backend.core.model.metadata.layout.QAppMetaData;
import com.kingsrook.qqq.backend.core.model.metadata.layout.QSupplementalAppMetaData;
import com.kingsrook.qqq.backend.core.utils.CollectionUtils;
/*******************************************************************************
** app-level meta-data for this module (handled as QSupplementalTableMetaData)
*******************************************************************************/
public class MaterialDashboardAppMetaData extends QSupplementalAppMetaData
{
public static final String TYPE_NAME = "materialDashboard";
private Boolean showAppLabelOnHomeScreen = true;
private Boolean includeTableCountsOnHomeScreen = true;
/*******************************************************************************
**
*******************************************************************************/
public static MaterialDashboardAppMetaData of(QAppMetaData app)
{
return ((MaterialDashboardAppMetaData) CollectionUtils.nonNullMap(app.getSupplementalMetaData()).get(TYPE_NAME));
}
/*******************************************************************************
** either get the supplemental meta dat attached to an app - or create a new one
** and attach it to the app, and return that.
*******************************************************************************/
public static MaterialDashboardAppMetaData ofOrWithNew(QAppMetaData app)
{
MaterialDashboardAppMetaData materialDashboardAppMetaData = of(app);
if(materialDashboardAppMetaData == null)
{
materialDashboardAppMetaData = new MaterialDashboardAppMetaData();
app.withSupplementalMetaData(materialDashboardAppMetaData);
}
return (materialDashboardAppMetaData);
}
/*******************************************************************************
**
*******************************************************************************/
@Override
public boolean includeInFullFrontendMetaData()
{
return (true);
}
/*******************************************************************************
**
*******************************************************************************/
@Override
public String getType()
{
return TYPE_NAME;
}
/*******************************************************************************
** Getter for showAppLabelOnHomeScreen
*******************************************************************************/
public Boolean getShowAppLabelOnHomeScreen()
{
return (this.showAppLabelOnHomeScreen);
}
/*******************************************************************************
** Setter for showAppLabelOnHomeScreen
*******************************************************************************/
public void setShowAppLabelOnHomeScreen(Boolean showAppLabelOnHomeScreen)
{
this.showAppLabelOnHomeScreen = showAppLabelOnHomeScreen;
}
/*******************************************************************************
** Fluent setter for showAppLabelOnHomeScreen
*******************************************************************************/
public MaterialDashboardAppMetaData withShowAppLabelOnHomeScreen(Boolean showAppLabelOnHomeScreen)
{
this.showAppLabelOnHomeScreen = showAppLabelOnHomeScreen;
return (this);
}
/*******************************************************************************
** Getter for includeTableCountsOnHomeScreen
*******************************************************************************/
public Boolean getIncludeTableCountsOnHomeScreen()
{
return (this.includeTableCountsOnHomeScreen);
}
/*******************************************************************************
** Setter for includeTableCountsOnHomeScreen
*******************************************************************************/
public void setIncludeTableCountsOnHomeScreen(Boolean includeTableCountsOnHomeScreen)
{
this.includeTableCountsOnHomeScreen = includeTableCountsOnHomeScreen;
}
/*******************************************************************************
** Fluent setter for includeTableCountsOnHomeScreen
*******************************************************************************/
public MaterialDashboardAppMetaData withIncludeTableCountsOnHomeScreen(Boolean includeTableCountsOnHomeScreen)
{
this.includeTableCountsOnHomeScreen = includeTableCountsOnHomeScreen;
return (this);
}
}

View File

@ -28,5 +28,4 @@ package com.kingsrook.qqq.frontend.materialdashboard.model.metadata;
public interface MaterialDashboardIconRoleNames public interface MaterialDashboardIconRoleNames
{ {
String TOP_RIGHT_INSIDE_CARD = "topRightInsideCard"; String TOP_RIGHT_INSIDE_CARD = "topRightInsideCard";
String TOP_LEFT_INSIDE_CARD = "topLeftInsideCard";
} }

View File

@ -34,7 +34,7 @@ import ToggleButton from "@mui/material/ToggleButton";
import ToggleButtonGroup from "@mui/material/ToggleButtonGroup"; import ToggleButtonGroup from "@mui/material/ToggleButtonGroup";
import Tooltip from "@mui/material/Tooltip"; import Tooltip from "@mui/material/Tooltip";
import Typography from "@mui/material/Typography"; import Typography from "@mui/material/Typography";
import React, {useContext, useEffect, useState} from "react"; import React, {JSXElementConstructor, useContext, useEffect, useState} from "react";
import QContext from "QContext"; import QContext from "QContext";
import Client from "qqq/utils/qqq/Client"; import Client from "qqq/utils/qqq/Client";
import ValueUtils from "qqq/utils/qqq/ValueUtils"; import ValueUtils from "qqq/utils/qqq/ValueUtils";
@ -58,19 +58,19 @@ function AuditBody({tableMetaData, recordId, record}: Props): JSX.Element
const [limit, setLimit] = useState(1000); const [limit, setLimit] = useState(1000);
const [statusString, setStatusString] = useState("Loading audits..."); const [statusString, setStatusString] = useState("Loading audits...");
const [auditsByDate, setAuditsByDate] = useState([] as QRecord[][]); const [auditsByDate, setAuditsByDate] = useState([] as QRecord[][]);
const [auditDetailMap, setAuditDetailMap] = useState(null as Map<number, JSX.Element[]>); const [auditDetailMap, setAuditDetailMap] = useState(null as Map<number, JSX.Element[]>)
const [fieldChangeMap, setFieldChangeMap] = useState(null as Map<number, JSX.Element>); const [fieldChangeMap, setFieldChangeMap] = useState(null as Map<number, JSX.Element>)
const [sortDirection, setSortDirection] = useState(localStorage.getItem("audit.sortDirection") === "true"); const [sortDirection, setSortDirection] = useState(localStorage.getItem("audit.sortDirection") === "true");
const {accentColor} = useContext(QContext); const {accentColor} = useContext(QContext);
function wrapValue(value: any): JSX.Element function wrapValue(value: any): JSX.Element
{ {
return <span style={{fontWeight: "500", color: " rgb(123, 128, 154)"}}>{value}</span>; return <span style={{fontWeight: "500", color: " rgb(123, 128, 154)"}}>{value}</span>
} }
function wasValue(value: any): JSX.Element function wasValue(value: any): JSX.Element
{ {
return <span style={{fontWeight: "100", color: " rgb(123, 128, 154)"}}>{value}</span>; return <span style={{fontWeight: "100", color: " rgb(123, 128, 154)"}}>{value}</span>
} }
function getAuditDetailFieldChangeRow(qRecord: QRecord): JSX.Element | null function getAuditDetailFieldChangeRow(qRecord: QRecord): JSX.Element | null
@ -79,14 +79,10 @@ function AuditBody({tableMetaData, recordId, record}: Props): JSX.Element
const fieldName = qRecord.values.get("auditDetail.fieldName"); const fieldName = qRecord.values.get("auditDetail.fieldName");
const oldValue = qRecord.values.get("auditDetail.oldValue"); const oldValue = qRecord.values.get("auditDetail.oldValue");
const newValue = qRecord.values.get("auditDetail.newValue"); const newValue = qRecord.values.get("auditDetail.newValue");
if (fieldName && (oldValue !== null || newValue !== null)) if(fieldName && (oldValue !== null || newValue !== null))
{ {
const fieldLabel = tableMetaData?.fields?.get(fieldName)?.label ?? fieldName; const fieldLabel = tableMetaData?.fields?.get(fieldName)?.label ?? fieldName
return (<tr> return (<tr><td>{fieldLabel}</td><td>{oldValue}</td><td>{newValue}</td></tr>)
<td>{fieldLabel}</td>
<td>{oldValue}</td>
<td>{newValue}</td>
</tr>);
} }
return (null); return (null);
} }
@ -97,22 +93,22 @@ function AuditBody({tableMetaData, recordId, record}: Props): JSX.Element
const fieldName = qRecord.values.get("auditDetail.fieldName"); const fieldName = qRecord.values.get("auditDetail.fieldName");
const oldValue = qRecord.values.get("auditDetail.oldValue"); const oldValue = qRecord.values.get("auditDetail.oldValue");
const newValue = qRecord.values.get("auditDetail.newValue"); const newValue = qRecord.values.get("auditDetail.newValue");
if (fieldName && (oldValue !== null || newValue !== null)) if(fieldName && (oldValue !== null || newValue !== null))
{ {
const fieldLabel = tableMetaData?.fields?.get(fieldName)?.label ?? fieldName; const fieldLabel = tableMetaData?.fields?.get(fieldName)?.label ?? fieldName;
if (oldValue !== undefined && newValue !== undefined) if(oldValue !== undefined && newValue !== undefined)
{ {
return (<>{fieldLabel}: Changed from {(oldValue)} to <b>{(newValue)}</b></>); return (<>{fieldLabel}: Changed from {(oldValue)} to <b>{(newValue)}</b></>);
} }
else if (newValue !== undefined) else if(newValue !== undefined)
{ {
return (<>{fieldLabel}: Set to <b>{(newValue)}</b></>); return (<>{fieldLabel}: Set to <b>{(newValue)}</b></>);
} }
else if (oldValue !== undefined) else if(oldValue !== undefined)
{ {
return (<>{fieldLabel}: Removed value {(oldValue)}</>); return (<>{fieldLabel}: Removed value {(oldValue)}</>);
} }
else if (message) else if(message)
{ {
return (<>{message}</>); return (<>{message}</>);
} }
@ -181,7 +177,7 @@ function AuditBody({tableMetaData, recordId, record}: Props): JSX.Element
} }
*/ */
} }
else if (message) else if(message)
{ {
return (<>{message}</>); return (<>{message}</>);
} }
@ -202,18 +198,18 @@ function AuditBody({tableMetaData, recordId, record}: Props): JSX.Element
new QFilterOrderBy("timestamp", sortDirection), new QFilterOrderBy("timestamp", sortDirection),
new QFilterOrderBy("id", sortDirection), new QFilterOrderBy("id", sortDirection),
new QFilterOrderBy("auditDetail.id", true) new QFilterOrderBy("auditDetail.id", true)
], null, "AND", 0, limit); ], "AND", 0, limit);
/////////////////////////////// ///////////////////////////////
// fetch audits in try-catch // // fetch audits in try-catch //
/////////////////////////////// ///////////////////////////////
let audits = [] as QRecord[]; let audits = [] as QRecord[]
try try
{ {
audits = await qController.query("audit", filter, [new QueryJoin("auditDetail", true, "LEFT")]); audits = await qController.query("audit", filter, [new QueryJoin("auditDetail", true, "LEFT")]);
setAudits(audits); setAudits(audits);
} }
catch (e) catch(e)
{ {
if (e instanceof QException) if (e instanceof QException)
{ {
@ -237,33 +233,33 @@ function AuditBody({tableMetaData, recordId, record}: Props): JSX.Element
////////////////////////////////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////////////////////////////////
// group the audits by auditId (e.g., this is a list that joined audit & auditDetail, so un-flatten it) // // group the audits by auditId (e.g., this is a list that joined audit & auditDetail, so un-flatten it) //
////////////////////////////////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////////////////////////////////
const unflattenedAudits: QRecord[] = []; const unflattenedAudits: QRecord[] = []
const detailMap: Map<number, JSX.Element[]> = new Map(); const detailMap: Map<number, JSX.Element[]> = new Map();
const fieldChangeRowsMap: Map<number, JSX.Element[]> = new Map(); const fieldChangeRowsMap: Map<number, JSX.Element[]> = new Map();
for (let i = 0; i < audits.length; i++) for (let i = 0; i < audits.length; i++)
{ {
let id = audits[i].values.get("id"); let id = audits[i].values.get("id");
if (i == 0 || unflattenedAudits[unflattenedAudits.length - 1].values.get("id") != id) if(i == 0 || unflattenedAudits[unflattenedAudits.length-1].values.get("id") != id)
{ {
unflattenedAudits.push(audits[i]); unflattenedAudits.push(audits[i]);
} }
let auditDetail = getAuditDetailElement(audits[i]); let auditDetail = getAuditDetailElement(audits[i]);
if (auditDetail) if(auditDetail)
{ {
if (!detailMap.has(id)) if(!detailMap.has(id))
{ {
detailMap.set(id, []); detailMap.set(id, []);
} }
detailMap.get(id).push(auditDetail); detailMap.get(id).push(auditDetail)
} }
// table version, probably not to commit // table version, probably not to commit
let fieldChangeRow = getAuditDetailFieldChangeRow(audits[i]); let fieldChangeRow = getAuditDetailFieldChangeRow(audits[i]);
if (auditDetail) if(auditDetail)
{ {
if (!fieldChangeRowsMap.has(id)) if(!fieldChangeRowsMap.has(id))
{ {
fieldChangeRowsMap.set(id, []); fieldChangeRowsMap.set(id, []);
} }
@ -277,7 +273,7 @@ function AuditBody({tableMetaData, recordId, record}: Props): JSX.Element
for (let i = 0; i < unflattenedAudits.length; i++) for (let i = 0; i < unflattenedAudits.length; i++)
{ {
let id = unflattenedAudits[i].values.get("id"); let id = unflattenedAudits[i].values.get("id");
if (fieldChangeRowsMap.has(id) && fieldChangeRowsMap.get(id).length > 0) if(fieldChangeRowsMap.has(id) && fieldChangeRowsMap.get(id).length > 0)
{ {
const fieldChangeTable = ( const fieldChangeTable = (
<table style={{fontSize: "0.875rem"}} className="auditDetailTable" cellSpacing="0"> <table style={{fontSize: "0.875rem"}} className="auditDetailTable" cellSpacing="0">
@ -292,11 +288,11 @@ function AuditBody({tableMetaData, recordId, record}: Props): JSX.Element
{fieldChangeRowsMap.get(id).map((row, key) => <React.Fragment key={key}>{row}</React.Fragment>)} {fieldChangeRowsMap.get(id).map((row, key) => <React.Fragment key={key}>{row}</React.Fragment>)}
</tbody> </tbody>
</table> </table>
); )
fieldChangeMap.set(id, fieldChangeTable); fieldChangeMap.set(id, fieldChangeTable);
} }
} }
setFieldChangeMap(fieldChangeMap); setFieldChangeMap(fieldChangeMap)
////////////////////////////// //////////////////////////////
// group the audits by date // // group the audits by date //
@ -354,7 +350,7 @@ function AuditBody({tableMetaData, recordId, record}: Props): JSX.Element
const changeSortDirection = () => const changeSortDirection = () =>
{ {
setAudits([]); setAudits([]);
const newSortDirection = !sortDirection; const newSortDirection = !sortDirection
setSortDirection(newSortDirection); setSortDirection(newSortDirection);
localStorage.setItem("audit.sortDirection", String(newSortDirection)); localStorage.setItem("audit.sortDirection", String(newSortDirection));
}; };

View File

@ -24,38 +24,27 @@ import {QFieldMetaData} from "@kingsrook/qqq-frontend-core/lib/model/metaData/QF
import {QFieldType} from "@kingsrook/qqq-frontend-core/lib/model/metaData/QFieldType"; import {QFieldType} from "@kingsrook/qqq-frontend-core/lib/model/metaData/QFieldType";
import * as Yup from "yup"; import * as Yup from "yup";
type DisabledFields = { [fieldName: string]: boolean } | string[];
/******************************************************************************* /*******************************************************************************
** Meta-data to represent a single field in a table. ** Meta-data to represent a single field in a table.
** **
*******************************************************************************/ *******************************************************************************/
class DynamicFormUtils class DynamicFormUtils
{ {
public static getFormData(qqqFormFields: QFieldMetaData[])
/*******************************************************************************
**
*******************************************************************************/
public static getFormData(qqqFormFields: QFieldMetaData[], disabledFields?: DisabledFields)
{ {
const dynamicFormFields: any = {}; const dynamicFormFields: any = {};
const formValidations: any = {}; const formValidations: any = {};
qqqFormFields.forEach((field) => qqqFormFields.forEach((field) =>
{ {
dynamicFormFields[field.name] = this.getDynamicField(field, disabledFields); dynamicFormFields[field.name] = this.getDynamicField(field);
formValidations[field.name] = this.getValidationForField(field, disabledFields); formValidations[field.name] = this.getValidationForField(field);
}); });
return {dynamicFormFields, formValidations}; return {dynamicFormFields, formValidations};
} }
public static getDynamicField(field: QFieldMetaData)
/*******************************************************************************
**
*******************************************************************************/
public static getDynamicField(field: QFieldMetaData, disabledFields?: DisabledFields)
{ {
let fieldType: string; let fieldType: string;
switch (field.type.toString()) switch (field.type.toString())
@ -96,21 +85,15 @@ class DynamicFormUtils
} }
} }
////////////////////////////////////////////////////////////
// this feels right, but... might be cases where it isn't //
////////////////////////////////////////////////////////////
const effectiveIsEditable = field.isEditable && !this.isFieldDynamicallyDisabled(field.name, disabledFields);
const effectivelyIsRequired = field.isRequired && effectiveIsEditable;
let label = field.label ? field.label : field.name; let label = field.label ? field.label : field.name;
label += effectivelyIsRequired ? " *" : ""; label += field.isRequired ? " *" : "";
return ({ return ({
fieldMetaData: field, fieldMetaData: field,
name: field.name, name: field.name,
label: label, label: label,
isRequired: effectivelyIsRequired, isRequired: field.isRequired,
isEditable: effectiveIsEditable, isEditable: field.isEditable,
type: fieldType, type: fieldType,
displayFormat: field.displayFormat, displayFormat: field.displayFormat,
// todo invalidMsg: "Zipcode is not valid (e.g. 70000).", // todo invalidMsg: "Zipcode is not valid (e.g. 70000).",
@ -118,18 +101,11 @@ class DynamicFormUtils
}); });
} }
public static getValidationForField(field: QFieldMetaData)
/*******************************************************************************
**
*******************************************************************************/
public static getValidationForField(field: QFieldMetaData, disabledFields?: DisabledFields)
{ {
const effectiveIsEditable = field.isEditable && !this.isFieldDynamicallyDisabled(field.name, disabledFields); if (field.isRequired)
const effectivelyIsRequired = field.isRequired && effectiveIsEditable;
if (effectivelyIsRequired)
{ {
if (field.possibleValueSourceName) if(field.possibleValueSourceName)
{ {
//////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////
// the "nullable(true)" here doesn't mean that you're allowed to set the field to null... // // the "nullable(true)" here doesn't mean that you're allowed to set the field to null... //
@ -145,10 +121,6 @@ class DynamicFormUtils
return (null); return (null);
} }
/*******************************************************************************
**
*******************************************************************************/
public static addPossibleValueProps(dynamicFormFields: any, qFields: QFieldMetaData[], tableName: string, processName: string, displayValues: Map<string, string>) public static addPossibleValueProps(dynamicFormFields: any, qFields: QFieldMetaData[], tableName: string, processName: string, displayValues: Map<string, string>)
{ {
for (let i = 0; i < qFields.length; i++) for (let i = 0; i < qFields.length; i++)
@ -187,29 +159,6 @@ class DynamicFormUtils
} }
} }
} }
/*******************************************************************************
** private helper - check the disabled fields object (array or map), and return
** true iff fieldName is in it.
*******************************************************************************/
private static isFieldDynamicallyDisabled(fieldName: string, disabledFields?: DisabledFields): boolean
{
if (!disabledFields)
{
return (false);
}
if (Array.isArray(disabledFields))
{
return (disabledFields.indexOf(fieldName) > -1)
}
else
{
return (disabledFields[fieldName]);
}
}
} }
export default DynamicFormUtils; export default DynamicFormUtils;

View File

@ -22,10 +22,8 @@
import {Capability} from "@kingsrook/qqq-frontend-core/lib/model/metaData/Capability"; import {Capability} from "@kingsrook/qqq-frontend-core/lib/model/metaData/Capability";
import {QFieldMetaData} from "@kingsrook/qqq-frontend-core/lib/model/metaData/QFieldMetaData"; import {QFieldMetaData} from "@kingsrook/qqq-frontend-core/lib/model/metaData/QFieldMetaData";
import {QFieldType} from "@kingsrook/qqq-frontend-core/lib/model/metaData/QFieldType"; import {QFieldType} from "@kingsrook/qqq-frontend-core/lib/model/metaData/QFieldType";
import {QInstance} from "@kingsrook/qqq-frontend-core/lib/model/metaData/QInstance";
import {QTableMetaData} from "@kingsrook/qqq-frontend-core/lib/model/metaData/QTableMetaData"; import {QTableMetaData} from "@kingsrook/qqq-frontend-core/lib/model/metaData/QTableMetaData";
import {QTableSection} from "@kingsrook/qqq-frontend-core/lib/model/metaData/QTableSection"; import {QTableSection} from "@kingsrook/qqq-frontend-core/lib/model/metaData/QTableSection";
import {QWidgetMetaData} from "@kingsrook/qqq-frontend-core/lib/model/metaData/QWidgetMetaData";
import {QPossibleValue} from "@kingsrook/qqq-frontend-core/lib/model/QPossibleValue"; import {QPossibleValue} from "@kingsrook/qqq-frontend-core/lib/model/QPossibleValue";
import {QRecord} from "@kingsrook/qqq-frontend-core/lib/model/QRecord"; import {QRecord} from "@kingsrook/qqq-frontend-core/lib/model/QRecord";
import {Alert} from "@mui/material"; import {Alert} from "@mui/material";
@ -34,24 +32,22 @@ import Box from "@mui/material/Box";
import Card from "@mui/material/Card"; import Card from "@mui/material/Card";
import Grid from "@mui/material/Grid"; import Grid from "@mui/material/Grid";
import Icon from "@mui/material/Icon"; import Icon from "@mui/material/Icon";
import Modal from "@mui/material/Modal"; import {Form, Formik, useFormikContext} from "formik";
import {Form, Formik, FormikErrors, FormikTouched, FormikValues, useFormikContext} from "formik"; import React, {useContext, useEffect, useReducer, useState} from "react";
import {useLocation, useNavigate, useParams} from "react-router-dom";
import * as Yup from "yup";
import QContext from "QContext"; import QContext from "QContext";
import colors from "qqq/assets/theme/base/colors";
import {QCancelButton, QSaveButton} from "qqq/components/buttons/DefaultButtons"; import {QCancelButton, QSaveButton} from "qqq/components/buttons/DefaultButtons";
import QDynamicForm from "qqq/components/forms/DynamicForm"; import QDynamicForm from "qqq/components/forms/DynamicForm";
import DynamicFormUtils from "qqq/components/forms/DynamicFormUtils"; import DynamicFormUtils from "qqq/components/forms/DynamicFormUtils";
import MDTypography from "qqq/components/legacy/MDTypography"; import MDTypography from "qqq/components/legacy/MDTypography";
import HelpContent from "qqq/components/misc/HelpContent"; import HelpContent from "qqq/components/misc/HelpContent";
import QRecordSidebar from "qqq/components/misc/RecordSidebar"; import QRecordSidebar from "qqq/components/misc/RecordSidebar";
import RecordGridWidget, {ChildRecordListData} from "qqq/components/widgets/misc/RecordGridWidget";
import HtmlUtils from "qqq/utils/HtmlUtils"; import HtmlUtils from "qqq/utils/HtmlUtils";
import Client from "qqq/utils/qqq/Client"; import Client from "qqq/utils/qqq/Client";
import TableUtils from "qqq/utils/qqq/TableUtils"; import TableUtils from "qqq/utils/qqq/TableUtils";
import ValueUtils from "qqq/utils/qqq/ValueUtils"; import ValueUtils from "qqq/utils/qqq/ValueUtils";
import React, {useContext, useEffect, useReducer, useState} from "react";
import {useLocation, useNavigate, useParams} from "react-router-dom";
import {Value} from "sass";
import * as Yup from "yup";
interface Props interface Props
{ {
@ -62,8 +58,6 @@ interface Props
defaultValues: { [key: string]: string }; defaultValues: { [key: string]: string };
disabledFields: { [key: string]: boolean } | string[]; disabledFields: { [key: string]: boolean } | string[];
isCopy?: boolean; isCopy?: boolean;
onSubmitCallback?: (values: any) => void;
overrideHeading?: string
} }
EntityForm.defaultProps = { EntityForm.defaultProps = {
@ -73,8 +67,7 @@ EntityForm.defaultProps = {
closeModalHandler: null, closeModalHandler: null,
defaultValues: {}, defaultValues: {},
disabledFields: {}, disabledFields: {},
isCopy: false, isCopy: false
onSubmitCallback: null,
}; };
function EntityForm(props: Props): JSX.Element function EntityForm(props: Props): JSX.Element
@ -97,15 +90,10 @@ function EntityForm(props: Props): JSX.Element
const [asyncLoadInited, setAsyncLoadInited] = useState(false); const [asyncLoadInited, setAsyncLoadInited] = useState(false);
const [tableMetaData, setTableMetaData] = useState(null as QTableMetaData); const [tableMetaData, setTableMetaData] = useState(null as QTableMetaData);
const [metaData, setMetaData] = useState(null as QInstance);
const [record, setRecord] = useState(null as QRecord); const [record, setRecord] = useState(null as QRecord);
const [tableSections, setTableSections] = useState(null as QTableSection[]); const [tableSections, setTableSections] = useState(null as QTableSection[]);
const [renderedWidgetSections, setRenderedWidgetSections] = useState({} as {[name: string]: JSX.Element});
const [childListWidgetData, setChildListWidgetData] = useState({} as {[name: string]: ChildRecordListData});
const [, forceUpdate] = useReducer((x) => x + 1, 0); const [, forceUpdate] = useReducer((x) => x + 1, 0);
const [showEditChildForm, setShowEditChildForm] = useState(null as any);
const [notAllowedError, setNotAllowedError] = useState(null as string); const [notAllowedError, setNotAllowedError] = useState(null as string);
const {pageHeader, setPageHeader} = useContext(QContext); const {pageHeader, setPageHeader} = useContext(QContext);
@ -113,8 +101,6 @@ function EntityForm(props: Props): JSX.Element
const navigate = useNavigate(); const navigate = useNavigate();
const location = useLocation(); const location = useLocation();
const cardElevation = props.isModal ? 3 : 0;
//////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////
// first take defaultValues and disabledFields from props // // first take defaultValues and disabledFields from props //
// but, also allow them to be sent in the hash, in the format of: // // but, also allow them to be sent in the hash, in the format of: //
@ -143,131 +129,7 @@ function EntityForm(props: Props): JSX.Element
{} {}
} }
function getFormSection(values: any, touched: any, formFields: any, errors: any): JSX.Element
/*******************************************************************************
**
*******************************************************************************/
function openAddChildRecord(name: string, widgetData: any)
{
let defaultValues = widgetData.defaultValuesForNewChildRecords;
let disabledFields = widgetData.disabledFieldsForNewChildRecords;
if(!disabledFields)
{
disabledFields = widgetData.defaultValuesForNewChildRecords;
}
doOpenEditChildForm(name, widgetData.childTableMetaData, null, defaultValues, disabledFields);
}
/*******************************************************************************
**
*******************************************************************************/
function openEditChildRecord(name: string, widgetData: any, rowIndex: number)
{
let defaultValues = widgetData.queryOutput.records[rowIndex].values;
let disabledFields = widgetData.disabledFieldsForNewChildRecords;
if(!disabledFields)
{
disabledFields = widgetData.defaultValuesForNewChildRecords;
}
doOpenEditChildForm(name, widgetData.childTableMetaData, rowIndex, defaultValues, disabledFields);
}
/*******************************************************************************
**
*******************************************************************************/
const deleteChildRecord = (name: string, widgetData: any, rowIndex: number) =>
{
updateChildRecordList(name, "delete", rowIndex);
};
/*******************************************************************************
**
*******************************************************************************/
function doOpenEditChildForm(widgetName: string, table: QTableMetaData, rowIndex: number, defaultValues: any, disabledFields: any)
{
const showEditChildForm: any = {};
showEditChildForm.widgetName = widgetName;
showEditChildForm.table = table;
showEditChildForm.rowIndex = rowIndex;
showEditChildForm.defaultValues = defaultValues;
showEditChildForm.disabledFields = disabledFields;
setShowEditChildForm(showEditChildForm);
}
/*******************************************************************************
**
*******************************************************************************/
const closeEditChildForm = (event: object, reason: string) =>
{
if (reason === "backdropClick" || reason === "escapeKeyDown")
{
return;
}
setShowEditChildForm(null);
};
/*******************************************************************************
**
*******************************************************************************/
function submitEditChildForm(values: any)
{
updateChildRecordList(showEditChildForm.widgetName, showEditChildForm.rowIndex == null ? "insert" : "edit", showEditChildForm.rowIndex, values);
}
/*******************************************************************************
**
*******************************************************************************/
async function updateChildRecordList(widgetName: string, action: "insert" | "edit" | "delete", rowIndex?: number, values?: any)
{
const metaData = await qController.loadMetaData();
const widgetMetaData = metaData.widgets.get(widgetName);
const newChildListWidgetData: {[name: string]: ChildRecordListData} = Object.assign({}, childListWidgetData)
if(!newChildListWidgetData[widgetName].queryOutput.records)
{
newChildListWidgetData[widgetName].queryOutput.records = [];
}
switch(action)
{
case "insert":
newChildListWidgetData[widgetName].queryOutput.records.push(new QRecord({values: values}))
break;
case "edit":
newChildListWidgetData[widgetName].queryOutput.records[rowIndex] = new QRecord({values: values});
break;
case "delete":
newChildListWidgetData[widgetName].queryOutput.records.splice(rowIndex, 1);
break;
}
newChildListWidgetData[widgetName].totalRows = newChildListWidgetData[widgetName].queryOutput.records.length;
setChildListWidgetData(newChildListWidgetData);
const newRenderedWidgetSections = Object.assign({}, renderedWidgetSections)
newRenderedWidgetSections[widgetName] = getWidgetSection(widgetMetaData, newChildListWidgetData[widgetName]);
setRenderedWidgetSections(newRenderedWidgetSections);
forceUpdate();
setShowEditChildForm(null);
}
/*******************************************************************************
** render a section (full of fields) as a form
*******************************************************************************/
function getFormSection(section: QTableSection, values: any, touched: any, formFields: any, errors: any, omitWrapper = false): JSX.Element
{ {
const formData: any = {}; const formData: any = {};
formData.values = values; formData.values = values;
@ -290,68 +152,13 @@ function EntityForm(props: Props): JSX.Element
if (!Object.keys(formFields).length) if (!Object.keys(formFields).length)
{ {
return <div>Error: No form fields in section {section.name}</div>; return <div>Loading...</div>;
} }
const helpRoles = [props.id ? "EDIT_SCREEN" : "INSERT_SCREEN", "WRITE_SCREENS", "ALL_SCREENS"] const helpRoles = [props.id ? "EDIT_SCREEN" : "INSERT_SCREEN", "WRITE_SCREENS", "ALL_SCREENS"]
return <QDynamicForm formData={formData} record={record} helpRoles={helpRoles} helpContentKeyPrefix={`table:${tableName};`} />;
if(omitWrapper)
{
return <QDynamicForm formData={formData} record={record} helpRoles={helpRoles} helpContentKeyPrefix={`table:${tableName};`} />
}
return <Card id={section.name} sx={{overflow: "visible", scrollMarginTop: "100px"}} elevation={cardElevation}>
<MDTypography variant="h6" p={3} pb={1}>
{section.label}
</MDTypography>
{getSectionHelp(section)}
<Box pb={1} px={3}>
<Box pb={"0.75rem"} width="100%">
<QDynamicForm formData={formData} record={record} helpRoles={helpRoles} helpContentKeyPrefix={`table:${tableName};`} />
</Box>
</Box>
</Card>
} }
/*******************************************************************************
** render a section as a widget
*******************************************************************************/
function getWidgetSection(widgetMetaData: QWidgetMetaData, widgetData: any): JSX.Element
{
widgetData.viewAllLink = null;
widgetMetaData.showExportButton = false;
return <RecordGridWidget
key={new Date().getTime()} // added so that editing values actually re-renders...
widgetMetaData={widgetMetaData}
data={widgetData}
disableRowClick
allowRecordEdit
allowRecordDelete
addNewRecordCallback={() => openAddChildRecord(widgetMetaData.name, widgetData)}
editRecordCallback={(rowIndex) => openEditChildRecord(widgetMetaData.name, widgetData, rowIndex)}
deleteRecordCallback={(rowIndex) => deleteChildRecord(widgetMetaData.name, widgetData, rowIndex)}
/>
}
/*******************************************************************************
** render a form section
*******************************************************************************/
function renderSection(section: QTableSection, values: FormikValues | Value, touched: FormikTouched<FormikValues> | Value, formFields: Map<string, any>, errors: FormikErrors<FormikValues> | Value)
{
if(section.fieldNames && section.fieldNames.length > 0)
{
return getFormSection(section, values, touched, formFields.get(section.name), errors);
}
else
{
return renderedWidgetSections[section.widgetName] ?? <Box>Loading {section.label}...</Box>
}
}
if (!asyncLoadInited) if (!asyncLoadInited)
{ {
setAsyncLoadInited(true); setAsyncLoadInited(true);
@ -360,16 +167,10 @@ function EntityForm(props: Props): JSX.Element
const tableMetaData = await qController.loadTableMetaData(tableName); const tableMetaData = await qController.loadTableMetaData(tableName);
setTableMetaData(tableMetaData); setTableMetaData(tableMetaData);
const metaData = await qController.loadMetaData();
setMetaData(metaData);
///////////////////////////////////////////////// /////////////////////////////////////////////////
// define the sections, e.g., for the left-bar // // define the sections, e.g., for the left-bar //
///////////////////////////////////////////////// /////////////////////////////////////////////////
const tableSections = TableUtils.getSectionsForRecordSidebar(tableMetaData, [...tableMetaData.fields.keys()], (section: QTableSection) => const tableSections = TableUtils.getSectionsForRecordSidebar(tableMetaData, [...tableMetaData.fields.keys()]);
{
return section.widgetName && metaData.widgets.get(section.widgetName)?.type == "childRecordList" && metaData.widgets.get(section.widgetName)?.defaultValues?.has("manageAssociationName")
});
setTableSections(tableSections); setTableSections(tableSections);
const fieldArray = [] as QFieldMetaData[]; const fieldArray = [] as QFieldMetaData[];
@ -462,18 +263,6 @@ function EntityForm(props: Props): JSX.Element
} }
} }
///////////////////////////////////////////////////
// if an override heading was passed in, use it. //
///////////////////////////////////////////////////
if(props.overrideHeading)
{
setFormTitle(props.overrideHeading);
if (!props.isModal)
{
setPageHeader(props.overrideHeading);
}
}
////////////////////////////////////// //////////////////////////////////////
// check capabilities & permissions // // check capabilities & permissions //
////////////////////////////////////// //////////////////////////////////////
@ -520,9 +309,27 @@ function EntityForm(props: Props): JSX.Element
const { const {
dynamicFormFields, dynamicFormFields,
formValidations, formValidations,
} = DynamicFormUtils.getFormData(fieldArray, disabledFields); } = DynamicFormUtils.getFormData(fieldArray);
DynamicFormUtils.addPossibleValueProps(dynamicFormFields, fieldArray, tableName, null, record ? record.displayValues : defaultDisplayValues); DynamicFormUtils.addPossibleValueProps(dynamicFormFields, fieldArray, tableName, null, record ? record.displayValues : defaultDisplayValues);
if(disabledFields)
{
if(Array.isArray(disabledFields))
{
for (let i = 0; i < disabledFields.length; i++)
{
dynamicFormFields[disabledFields[i]].isEditable = false;
}
}
else
{
for (let fieldName in disabledFields)
{
dynamicFormFields[fieldName].isEditable = false;
}
}
}
///////////////////////////////////// /////////////////////////////////////
// group the formFields by section // // group the formFields by section //
///////////////////////////////////// /////////////////////////////////////
@ -530,70 +337,51 @@ function EntityForm(props: Props): JSX.Element
let t1sectionName; let t1sectionName;
let t1section; let t1section;
const nonT1Sections: QTableSection[] = []; const nonT1Sections: QTableSection[] = [];
const newRenderedWidgetSections: {[name: string]: JSX.Element} = {};
const newChildListWidgetData: {[name: string]: ChildRecordListData} = {};
for (let i = 0; i < tableSections.length; i++) for (let i = 0; i < tableSections.length; i++)
{ {
const section = tableSections[i]; const section = tableSections[i];
const sectionDynamicFormFields: any[] = []; const sectionDynamicFormFields: any[] = [];
if (section.isHidden) if (section.isHidden || !section.fieldNames)
{ {
continue; continue;
} }
const hasFields = section.fieldNames && section.fieldNames.length > 0; for (let j = 0; j < section.fieldNames.length; j++)
const hasChildRecordListWidget = section.widgetName && metaData.widgets.get(section.widgetName)?.type == "childRecordList"
if(!hasFields && !hasChildRecordListWidget)
{ {
continue; const fieldName = section.fieldNames[j];
} const field = tableMetaData.fields.get(fieldName);
if(hasFields) if(!field)
{
for (let j = 0; j < section.fieldNames.length; j++)
{ {
const fieldName = section.fieldNames[j]; console.log(`Omitting un-found field ${fieldName} from form`);
const field = tableMetaData.fields.get(fieldName);
if (!field)
{
console.log(`Omitting un-found field ${fieldName} from form`);
continue;
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// if id !== null (and we're not copying) - means we're on the edit screen -- show all fields on the edit screen. //
// || (or) we're on the insert screen in which case, only show editable fields. //
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
if ((props.id !== null && !props.isCopy) || field.isEditable)
{
sectionDynamicFormFields.push(dynamicFormFields[fieldName]);
}
}
if (sectionDynamicFormFields.length === 0)
{
////////////////////////////////////////////////////////////////////////////////////////////////
// in case there are no active fields in this section, remove it from the tableSections array //
////////////////////////////////////////////////////////////////////////////////////////////////
tableSections.splice(i, 1);
i--;
continue; continue;
} }
else
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// if id !== null (and we're not copying) - means we're on the edit screen -- show all fields on the edit screen. //
// || (or) we're on the insert screen in which case, only show editable fields. //
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
if ((props.id !== null && !props.isCopy) || field.isEditable)
{ {
dynamicFormFieldsBySection.set(section.name, sectionDynamicFormFields); sectionDynamicFormFields.push(dynamicFormFields[fieldName]);
} }
} }
if (sectionDynamicFormFields.length === 0)
{
////////////////////////////////////////////////////////////////////////////////////////////////
// in case there are no active fields in this section, remove it from the tableSections array //
////////////////////////////////////////////////////////////////////////////////////////////////
tableSections.splice(i, 1);
i--;
continue;
}
else else
{ {
const widgetMetaData = metaData.widgets.get(section.widgetName); dynamicFormFieldsBySection.set(section.name, sectionDynamicFormFields);
const widgetData = await qController.widget(widgetMetaData.name, props.id ? `${tableMetaData.primaryKeyField}=${props.id}` : "");
newRenderedWidgetSections[section.widgetName] = getWidgetSection(widgetMetaData, widgetData);
newChildListWidgetData[section.widgetName] = widgetData;
} }
////////////////////////////////////// //////////////////////////////////////
// capture the tier1 section's name // // capture the tier1 section's name //
////////////////////////////////////// //////////////////////////////////////
@ -607,38 +395,16 @@ function EntityForm(props: Props): JSX.Element
nonT1Sections.push(section); nonT1Sections.push(section);
} }
} }
setT1SectionName(t1sectionName); setT1SectionName(t1sectionName);
setT1Section(t1section); setT1Section(t1section);
setNonT1Sections(nonT1Sections); setNonT1Sections(nonT1Sections);
setFormFields(dynamicFormFieldsBySection); setFormFields(dynamicFormFieldsBySection);
setValidations(Yup.object().shape(formValidations)); setValidations(Yup.object().shape(formValidations));
setRenderedWidgetSections(newRenderedWidgetSections);
setChildListWidgetData(newChildListWidgetData);
forceUpdate(); forceUpdate();
})(); })();
} }
//////////////////////////////////////////////////////////////////
// watch widget data - if they change, re-render those sections //
//////////////////////////////////////////////////////////////////
useEffect(() =>
{
if(childListWidgetData)
{
const newRenderedWidgetSections: {[name: string]: JSX.Element} = {};
for(let name in childListWidgetData)
{
const widgetMetaData = metaData.widgets.get(name);
newRenderedWidgetSections[name] = getWidgetSection(widgetMetaData, childListWidgetData[name]);
}
setRenderedWidgetSections(newRenderedWidgetSections);
}
}, [childListWidgetData]);
const handleCancelClicked = () => const handleCancelClicked = () =>
{ {
/////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////
@ -663,23 +429,9 @@ function EntityForm(props: Props): JSX.Element
} }
}; };
/*******************************************************************************
** event handler for the (Formik) Form.
*******************************************************************************/
const handleSubmit = async (values: any, actions: any) => const handleSubmit = async (values: any, actions: any) =>
{ {
actions.setSubmitting(true); actions.setSubmitting(true);
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// if there's a callback (e.g., for a modal nested on another create/edit screen), then just pass our data back there anre return. //
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
if(props.onSubmitCallback)
{
props.onSubmitCallback(values);
return;
}
await (async () => await (async () =>
{ {
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
@ -734,29 +486,6 @@ function EntityForm(props: Props): JSX.Element
} }
} }
// todo - associations + copy might be a "bad time"
const associationsToPost: any = {}
let haveAssociationsToPost = false;
for (let name of Object.keys(childListWidgetData))
{
const manageAssociationName = metaData.widgets.get(name)?.defaultValues?.get("manageAssociationName")
if(!manageAssociationName)
{
console.log(`Cannot send association data to backend - missing a manageAssociationName defaultValue in widget meta data for widget name ${name}`);
}
associationsToPost[manageAssociationName] = [];
haveAssociationsToPost = true;
for(let i=0; i<childListWidgetData[name].queryOutput.records.length; i++)
{
associationsToPost[manageAssociationName].push(childListWidgetData[name].queryOutput.records[i].values);
}
}
if(haveAssociationsToPost)
{
valuesToPost["associations"] = JSON.stringify(associationsToPost);
}
if (props.id !== null && !props.isCopy) if (props.id !== null && !props.isCopy)
{ {
// todo - audit that it's a dupe // todo - audit that it's a dupe
@ -865,6 +594,7 @@ function EntityForm(props: Props): JSX.Element
} }
else else
{ {
const cardElevation = props.isModal ? 3 : 0;
body = ( body = (
<Box mb={3}> <Box mb={3}>
{ {
@ -926,7 +656,7 @@ function EntityForm(props: Props): JSX.Element
t1sectionName && formFields ? ( t1sectionName && formFields ? (
<Box px={3}> <Box px={3}>
<Box pb={"0.25rem"} width="100%"> <Box pb={"0.25rem"} width="100%">
{getFormSection(t1section, values, touched, formFields.get(t1sectionName), errors, true)} {getFormSection(values, touched, formFields.get(t1sectionName), errors)}
</Box> </Box>
</Box> </Box>
) : null ) : null
@ -935,7 +665,17 @@ function EntityForm(props: Props): JSX.Element
</Box> </Box>
{formFields && nonT1Sections.length ? nonT1Sections.map((section: QTableSection) => ( {formFields && nonT1Sections.length ? nonT1Sections.map((section: QTableSection) => (
<Box key={`edit-card-${section.name}`} pb={3}> <Box key={`edit-card-${section.name}`} pb={3}>
{renderSection(section, values, touched, formFields, errors)} <Card id={section.name} sx={{overflow: "visible", scrollMarginTop: "100px"}} elevation={cardElevation}>
<MDTypography variant="h6" p={3} pb={1}>
{section.label}
</MDTypography>
{getSectionHelp(section)}
<Box pb={1} px={3}>
<Box pb={"0.75rem"} width="100%">
{getFormSection(values, touched, formFields.get(section.name), errors)}
</Box>
</Box>
</Card>
</Box> </Box>
)) : null} )) : null}
@ -950,23 +690,6 @@ function EntityForm(props: Props): JSX.Element
)} )}
</Formik> </Formik>
{
showEditChildForm &&
<Modal open={showEditChildForm as boolean} onClose={(event, reason) => closeEditChildForm(event, reason)}>
<div className="modalEditForm">
<EntityForm
isModal={true}
closeModalHandler={closeEditChildForm}
table={showEditChildForm.table}
defaultValues={showEditChildForm.defaultValues}
disabledFields={showEditChildForm.disabledFields}
onSubmitCallback={submitEditChildForm}
overrideHeading={`${showEditChildForm.rowIndex != null ? "Editing" : "Creating New"} ${showEditChildForm.table.label}`}
/>
</div>
</Modal>
}
</Grid> </Grid>
</Grid> </Grid>
</Box> </Box>

View File

@ -61,7 +61,7 @@ const qController = Client.getInstance();
function hasGotoFieldNames(tableMetaData: QTableMetaData): boolean function hasGotoFieldNames(tableMetaData: QTableMetaData): boolean
{ {
const mdbMetaData = tableMetaData?.supplementalTableMetaData?.get("materialDashboard"); const mdbMetaData = tableMetaData?.supplementalTableMetaData?.get("materialDashboard");
if (mdbMetaData && mdbMetaData.gotoFieldNames) if(mdbMetaData && mdbMetaData.gotoFieldNames)
{ {
return (true); return (true);
} }
@ -71,25 +71,25 @@ function hasGotoFieldNames(tableMetaData: QTableMetaData): boolean
function GotoRecordDialog(props: Props): JSX.Element function GotoRecordDialog(props: Props): JSX.Element
{ {
const fields: QFieldMetaData[] = []; const fields: QFieldMetaData[] = []
let pkey = props?.tableMetaData?.fields.get(props?.tableMetaData?.primaryKeyField); let pkey = props?.tableMetaData?.fields.get(props?.tableMetaData?.primaryKeyField);
let addedPkey = false; let addedPkey = false;
const mdbMetaData = props?.tableMetaData?.supplementalTableMetaData?.get("materialDashboard"); const mdbMetaData = props?.tableMetaData?.supplementalTableMetaData?.get("materialDashboard");
if (mdbMetaData) if(mdbMetaData)
{ {
if (mdbMetaData.gotoFieldNames) if(mdbMetaData.gotoFieldNames)
{ {
for (let i = 0; i < mdbMetaData.gotoFieldNames.length; i++) for(let i = 0; i<mdbMetaData.gotoFieldNames.length; i++)
{ {
// todo - multi-field keys!! // todo - multi-field keys!!
let fieldName = mdbMetaData.gotoFieldNames[i][0]; let fieldName = mdbMetaData.gotoFieldNames[i][0];
let field = props.tableMetaData.fields.get(fieldName); let field = props.tableMetaData.fields.get(fieldName);
if (field) if(field)
{ {
fields.push(field); fields.push(field);
if (field.name == pkey.name) if(field.name == pkey.name)
{ {
addedPkey = true; addedPkey = true;
} }
@ -98,17 +98,17 @@ function GotoRecordDialog(props: Props): JSX.Element
} }
} }
if (pkey && !addedPkey) if(pkey && !addedPkey)
{ {
fields.unshift(pkey); fields.unshift(pkey);
} }
const makeInitialValues = () => const makeInitialValues = () =>
{ {
const rs = {} as { [field: string]: string }; const rs = {} as {[field: string]: string};
fields.forEach((field) => rs[field.name] = ""); fields.forEach((field) => rs[field.name] = "");
return (rs); return (rs);
}; }
const [error, setError] = useState(""); const [error, setError] = useState("");
const [values, setValues] = useState(makeInitialValues()); const [values, setValues] = useState(makeInitialValues());
@ -118,49 +118,49 @@ function GotoRecordDialog(props: Props): JSX.Element
{ {
values[fieldName] = newValue; values[fieldName] = newValue;
setValues(JSON.parse(JSON.stringify(values))); setValues(JSON.parse(JSON.stringify(values)));
}; }
const close = () => const close = () =>
{ {
setError(""); setError("");
setValues(makeInitialValues()); setValues(makeInitialValues());
props.closeHandler(); props.closeHandler();
}; }
const keyPressed = (e: React.KeyboardEvent<HTMLDivElement>) => const keyPressed = (e: React.KeyboardEvent<HTMLDivElement>) =>
{ {
// @ts-ignore // @ts-ignore
const targetId: string = e.target?.id; const targetId: string = e.target?.id;
if (e.key == "Esc") if(e.key == "Esc")
{ {
if (props.mayClose) if(props.mayClose)
{ {
close(); close();
} }
} }
else if (e.key == "Enter" && targetId?.startsWith("gotoInput-")) else if(e.key == "Enter" && targetId?.startsWith("gotoInput-"))
{ {
const index = targetId?.replaceAll("gotoInput-", ""); const index = targetId?.replaceAll("gotoInput-", "");
document.getElementById("gotoButton-" + index).click(); document.getElementById("gotoButton-" + index).click();
} }
}; }
const closeRequested = () => const closeRequested = () =>
{ {
if (props.mayClose) if(props.mayClose)
{ {
close(); close();
} }
}; }
const goClicked = async (fieldName: string) => const goClicked = async (fieldName: string) =>
{ {
setError(""); setError("");
const filter = new QQueryFilter([new QFilterCriteria(fieldName, QCriteriaOperator.EQUALS, [values[fieldName]])], null, null, "AND", null, 10); const filter = new QQueryFilter([new QFilterCriteria(fieldName, QCriteriaOperator.EQUALS, [values[fieldName]])], null, "AND", null, 10);
try try
{ {
const queryResult = await qController.query(props.tableMetaData.name, filter, null, props.tableVariant); const queryResult = await qController.query(props.tableMetaData.name, filter, null, props.tableVariant)
if (queryResult.length == 0) if (queryResult.length == 0)
{ {
setError("Record not found."); setError("Record not found.");
@ -177,19 +177,19 @@ function GotoRecordDialog(props: Props): JSX.Element
setTimeout(() => setError(""), 3000); setTimeout(() => setError(""), 3000);
} }
} }
catch (e) catch(e)
{ {
// @ts-ignore // @ts-ignore
setError(`Error: ${(e && e.message) ? e.message : e}`); setError(`Error: ${(e && e.message) ? e.message : e}`);
setTimeout(() => setError(""), 6000); setTimeout(() => setError(""), 6000);
} }
}; }
if (props.tableMetaData) if(props.tableMetaData)
{ {
if (fields.length == 0 && !error) if (fields.length == 0 && !error)
{ {
setError("This table is not configured for this feature."); setError("This table is not configured for this feature.")
} }
} }
@ -244,7 +244,7 @@ function GotoRecordDialog(props: Props): JSX.Element
: <Box>&nbsp;</Box> : <Box>&nbsp;</Box>
} }
</Dialog> </Dialog>
); )
} }
interface GotoRecordButtonProps interface GotoRecordButtonProps
@ -266,7 +266,7 @@ GotoRecordButton.defaultProps = {
export function GotoRecordButton(props: GotoRecordButtonProps): JSX.Element export function GotoRecordButton(props: GotoRecordButtonProps): JSX.Element
{ {
const [gotoIsOpen, setGotoIsOpen] = useState(props.autoOpen); const [gotoIsOpen, setGotoIsOpen] = useState(props.autoOpen)
function openGoto() function openGoto()
{ {
@ -282,7 +282,7 @@ export function GotoRecordButton(props: GotoRecordButtonProps): JSX.Element
return ( return (
<React.Fragment> <React.Fragment>
{ {
props.buttonVisible && hasGotoFieldNames(props.tableMetaData) && <Button onClick={openGoto}>Go To...</Button> props.buttonVisible && hasGotoFieldNames(props.tableMetaData) && <Button onClick={openGoto} >Go To...</Button>
} }
<GotoRecordDialog metaData={props.metaData} tableMetaData={props.tableMetaData} tableVariant={props.tableVariant} isOpen={gotoIsOpen} closeHandler={closeGoto} mayClose={props.mayClose} subHeader={props.subHeader} /> <GotoRecordDialog metaData={props.metaData} tableMetaData={props.tableMetaData} tableVariant={props.tableVariant} isOpen={gotoIsOpen} closeHandler={closeGoto} mayClose={props.mayClose} subHeader={props.subHeader} />
</React.Fragment> </React.Fragment>

View File

@ -28,7 +28,7 @@ import QContext from "QContext";
interface Props interface Props
{ {
helpContents: null | QHelpContent | QHelpContent[]; helpContents: QHelpContent[];
roles: string[]; roles: string[];
heading?: string; heading?: string;
helpContentKey?: string; helpContentKey?: string;
@ -93,27 +93,9 @@ const getMatchingHelpContent = (helpContents: QHelpContent[], roles: string[]):
/******************************************************************************* /*******************************************************************************
** test if a list of help contents would find any matches from a list of roles. ** test if a list of help contents would find any matches from a list of roles.
*******************************************************************************/ *******************************************************************************/
export const hasHelpContent = (helpContents: null | QHelpContent | QHelpContent[], roles: string[]) => export const hasHelpContent = (helpContents: QHelpContent[], roles: string[]) =>
{ {
return getMatchingHelpContent(nullOrSingletonOrArrayToArray(helpContents), roles) != null; return getMatchingHelpContent(helpContents, roles) != null;
}
/*******************************************************************************
**
*******************************************************************************/
const nullOrSingletonOrArrayToArray = (helpContents: null | QHelpContent | QHelpContent[]): QHelpContent[] =>
{
let array: QHelpContent[] = [];
if(Array.isArray(helpContents))
{
array = helpContents;
}
else if(helpContents != null)
{
array.push(helpContents);
}
return (array);
} }
@ -124,8 +106,7 @@ const nullOrSingletonOrArrayToArray = (helpContents: null | QHelpContent | QHelp
function HelpContent({helpContents, roles, heading, helpContentKey}: Props): JSX.Element function HelpContent({helpContents, roles, heading, helpContentKey}: Props): JSX.Element
{ {
const {helpHelpActive} = useContext(QContext); const {helpHelpActive} = useContext(QContext);
const helpContentsArray = nullOrSingletonOrArrayToArray(helpContents); let selectedHelpContent = getMatchingHelpContent(helpContents, roles);
let selectedHelpContent = getMatchingHelpContent(helpContentsArray, roles);
let content = null; let content = null;
if (helpHelpActive) if (helpHelpActive)

View File

@ -29,6 +29,7 @@ import {QCriteriaOperator} from "@kingsrook/qqq-frontend-core/lib/model/query/QC
import {QFilterCriteria} from "@kingsrook/qqq-frontend-core/lib/model/query/QFilterCriteria"; import {QFilterCriteria} from "@kingsrook/qqq-frontend-core/lib/model/query/QFilterCriteria";
import {QFilterOrderBy} from "@kingsrook/qqq-frontend-core/lib/model/query/QFilterOrderBy"; import {QFilterOrderBy} from "@kingsrook/qqq-frontend-core/lib/model/query/QFilterOrderBy";
import {QQueryFilter} from "@kingsrook/qqq-frontend-core/lib/model/query/QQueryFilter"; import {QQueryFilter} from "@kingsrook/qqq-frontend-core/lib/model/query/QQueryFilter";
import {Badge, ToggleButton, ToggleButtonGroup} from "@mui/material";
import Box from "@mui/material/Box"; import Box from "@mui/material/Box";
import Button from "@mui/material/Button"; import Button from "@mui/material/Button";
import Dialog from "@mui/material/Dialog"; import Dialog from "@mui/material/Dialog";
@ -37,10 +38,9 @@ import DialogContent from "@mui/material/DialogContent";
import DialogContentText from "@mui/material/DialogContentText"; import DialogContentText from "@mui/material/DialogContentText";
import DialogTitle from "@mui/material/DialogTitle"; import DialogTitle from "@mui/material/DialogTitle";
import Icon from "@mui/material/Icon"; import Icon from "@mui/material/Icon";
import ToggleButton from "@mui/material/ToggleButton";
import ToggleButtonGroup from "@mui/material/ToggleButtonGroup";
import Tooltip from "@mui/material/Tooltip"; import Tooltip from "@mui/material/Tooltip";
import {GridApiPro} from "@mui/x-data-grid-pro/models/gridApiPro"; import {GridApiPro} from "@mui/x-data-grid-pro/models/gridApiPro";
import React, {forwardRef, useContext, useImperativeHandle, useReducer, useState} from "react";
import QContext from "QContext"; import QContext from "QContext";
import colors from "qqq/assets/theme/base/colors"; import colors from "qqq/assets/theme/base/colors";
import {QCancelButton, QSaveButton} from "qqq/components/buttons/DefaultButtons"; import {QCancelButton, QSaveButton} from "qqq/components/buttons/DefaultButtons";
@ -51,7 +51,6 @@ import QuickFilter, {quickFilterButtonStyles} from "qqq/components/query/QuickFi
import XIcon from "qqq/components/query/XIcon"; import XIcon from "qqq/components/query/XIcon";
import FilterUtils from "qqq/utils/qqq/FilterUtils"; import FilterUtils from "qqq/utils/qqq/FilterUtils";
import TableUtils from "qqq/utils/qqq/TableUtils"; import TableUtils from "qqq/utils/qqq/TableUtils";
import React, {forwardRef, useContext, useImperativeHandle, useReducer, useState} from "react";
interface BasicAndAdvancedQueryControlsProps interface BasicAndAdvancedQueryControlsProps
{ {
@ -90,14 +89,14 @@ let debounceTimeout: string | number | NodeJS.Timeout;
*******************************************************************************/ *******************************************************************************/
const BasicAndAdvancedQueryControls = forwardRef((props: BasicAndAdvancedQueryControlsProps, ref) => const BasicAndAdvancedQueryControls = forwardRef((props: BasicAndAdvancedQueryControlsProps, ref) =>
{ {
const {metaData, tableMetaData, savedViewsComponent, columnMenuComponent, quickFilterFieldNames, setQuickFilterFieldNames, setQueryFilter, queryFilter, gridApiRef, queryFilterJSON, mode, setMode} = props; const {metaData, tableMetaData, savedViewsComponent, columnMenuComponent, quickFilterFieldNames, setQuickFilterFieldNames, setQueryFilter, queryFilter, gridApiRef, queryFilterJSON, mode, setMode} = props
///////////////////// /////////////////////
// state variables // // state variables //
///////////////////// /////////////////////
const [defaultQuickFilterFieldNames, setDefaultQuickFilterFieldNames] = useState(getDefaultQuickFilterFieldNames(tableMetaData)); const [defaultQuickFilterFieldNames, setDefaultQuickFilterFieldNames] = useState(getDefaultQuickFilterFieldNames(tableMetaData));
const [defaultQuickFilterFieldNameMap, setDefaultQuickFilterFieldNameMap] = useState(Object.fromEntries(defaultQuickFilterFieldNames.map(k => [k, true]))); const [defaultQuickFilterFieldNameMap, setDefaultQuickFilterFieldNameMap] = useState(Object.fromEntries(defaultQuickFilterFieldNames.map(k => [k, true])));
const [addQuickFilterMenu, setAddQuickFilterMenu] = useState(null); const [addQuickFilterMenu, setAddQuickFilterMenu] = useState(null)
const [addQuickFilterOpenCounter, setAddQuickFilterOpenCounter] = useState(0); const [addQuickFilterOpenCounter, setAddQuickFilterOpenCounter] = useState(0);
const [showClearFiltersWarning, setShowClearFiltersWarning] = useState(false); const [showClearFiltersWarning, setShowClearFiltersWarning] = useState(false);
const [mouseOverElement, setMouseOverElement] = useState(null as string); const [mouseOverElement, setMouseOverElement] = useState(null as string);
@ -105,11 +104,6 @@ const BasicAndAdvancedQueryControls = forwardRef((props: BasicAndAdvancedQueryCo
const {accentColor} = useContext(QContext); const {accentColor} = useContext(QContext);
/////////////////////////////////////////////////
// temporary, until we implement sub-filtering //
/////////////////////////////////////////////////
const [isQueryTooComplex, setIsQueryTooComplex] = useState(false);
////////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////////
// make some functions available to our parent - so it can tell us to do things // // make some functions available to our parent - so it can tell us to do things //
////////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////////
@ -128,7 +122,7 @@ const BasicAndAdvancedQueryControls = forwardRef((props: BasicAndAdvancedQueryCo
{ {
return (mode); return (mode);
} }
}; }
}); });
@ -182,7 +176,7 @@ const BasicAndAdvancedQueryControls = forwardRef((props: BasicAndAdvancedQueryCo
let foundIndex = null; let foundIndex = null;
for (let i = 0; i < queryFilter?.criteria?.length; i++) for (let i = 0; i < queryFilter?.criteria?.length; i++)
{ {
if (queryFilter.criteria[i].fieldName == newCriteria.fieldName) if(queryFilter.criteria[i].fieldName == newCriteria.fieldName)
{ {
queryFilter.criteria[i] = newCriteria; queryFilter.criteria[i] = newCriteria;
found = true; found = true;
@ -191,9 +185,9 @@ const BasicAndAdvancedQueryControls = forwardRef((props: BasicAndAdvancedQueryCo
} }
} }
if (doClearCriteria) if(doClearCriteria)
{ {
if (found) if(found)
{ {
queryFilter.criteria.splice(foundIndex, 1); queryFilter.criteria.splice(foundIndex, 1);
setQueryFilter(queryFilter); setQueryFilter(queryFilter);
@ -201,9 +195,9 @@ const BasicAndAdvancedQueryControls = forwardRef((props: BasicAndAdvancedQueryCo
return; return;
} }
if (!found) if(!found)
{ {
if (!queryFilter.criteria) if(!queryFilter.criteria)
{ {
queryFilter.criteria = []; queryFilter.criteria = [];
} }
@ -211,9 +205,9 @@ const BasicAndAdvancedQueryControls = forwardRef((props: BasicAndAdvancedQueryCo
found = true; found = true;
} }
if (found) if(found)
{ {
clearTimeout(debounceTimeout); clearTimeout(debounceTimeout)
debounceTimeout = setTimeout(() => debounceTimeout = setTimeout(() =>
{ {
setQueryFilter(queryFilter); setQueryFilter(queryFilter);
@ -233,17 +227,17 @@ const BasicAndAdvancedQueryControls = forwardRef((props: BasicAndAdvancedQueryCo
const matches: QFilterCriteriaWithId[] = []; const matches: QFilterCriteriaWithId[] = [];
for (let i = 0; i < queryFilter?.criteria?.length; i++) for (let i = 0; i < queryFilter?.criteria?.length; i++)
{ {
if (queryFilter.criteria[i].fieldName == fieldName) if(queryFilter.criteria[i].fieldName == fieldName)
{ {
matches.push(queryFilter.criteria[i] as QFilterCriteriaWithId); matches.push(queryFilter.criteria[i] as QFilterCriteriaWithId);
} }
} }
if (matches.length == 0) if(matches.length == 0)
{ {
return (null); return (null);
} }
else if (matches.length == 1) else if(matches.length == 1)
{ {
return (matches[0]); return (matches[0]);
} }
@ -260,8 +254,8 @@ const BasicAndAdvancedQueryControls = forwardRef((props: BasicAndAdvancedQueryCo
*******************************************************************************/ *******************************************************************************/
const handleRemoveQuickFilterField = (fieldName: string): void => const handleRemoveQuickFilterField = (fieldName: string): void =>
{ {
const index = quickFilterFieldNames.indexOf(fieldName); const index = quickFilterFieldNames.indexOf(fieldName)
if (index >= 0) if(index >= 0)
{ {
////////////////////////////////////// //////////////////////////////////////
// remove this field from the query // // remove this field from the query //
@ -282,7 +276,7 @@ const BasicAndAdvancedQueryControls = forwardRef((props: BasicAndAdvancedQueryCo
{ {
setAddQuickFilterMenu(event.currentTarget); setAddQuickFilterMenu(event.currentTarget);
setAddQuickFilterOpenCounter(addQuickFilterOpenCounter + 1); setAddQuickFilterOpenCounter(addQuickFilterOpenCounter + 1);
}; }
/******************************************************************************* /*******************************************************************************
@ -291,7 +285,7 @@ const BasicAndAdvancedQueryControls = forwardRef((props: BasicAndAdvancedQueryCo
const closeAddQuickFilterMenu = () => const closeAddQuickFilterMenu = () =>
{ {
setAddQuickFilterMenu(null); setAddQuickFilterMenu(null);
}; }
/******************************************************************************* /*******************************************************************************
@ -312,7 +306,7 @@ const BasicAndAdvancedQueryControls = forwardRef((props: BasicAndAdvancedQueryCo
const fieldName = newValue ? newValue.fieldName : null; const fieldName = newValue ? newValue.fieldName : null;
if (fieldName) if (fieldName)
{ {
if (defaultQuickFilterFieldNameMap[fieldName]) if(defaultQuickFilterFieldNameMap[fieldName])
{ {
return; return;
} }
@ -328,12 +322,12 @@ const BasicAndAdvancedQueryControls = forwardRef((props: BasicAndAdvancedQueryCo
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// only do this when user has added the field (e.g., not when adding it because of a selected view or filter-in-url) // // only do this when user has added the field (e.g., not when adding it because of a selected view or filter-in-url) //
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
if (reason != "modeToggleClicked" && reason != "defaultFilterLoaded" && reason != "savedFilterSelected" && reason != "activatedView") if(reason != "modeToggleClicked" && reason != "defaultFilterLoaded" && reason != "savedFilterSelected" && reason != "activatedView")
{ {
setTimeout(() => document.getElementById(`quickFilter.${fieldName}`)?.click(), 5); setTimeout(() => document.getElementById(`quickFilter.${fieldName}`)?.click(), 5);
} }
} }
else if (reason == "columnMenu") else if(reason == "columnMenu")
{ {
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// if field was already on-screen, but user clicked an option from the columnMenu, then open the quick-filter field // // if field was already on-screen, but user clicked an option from the columnMenu, then open the quick-filter field //
@ -352,13 +346,13 @@ const BasicAndAdvancedQueryControls = forwardRef((props: BasicAndAdvancedQueryCo
const handleFieldListMenuSelection = (field: QFieldMetaData, table: QTableMetaData): void => const handleFieldListMenuSelection = (field: QFieldMetaData, table: QTableMetaData): void =>
{ {
let fullFieldName = field.name; let fullFieldName = field.name;
if (table && table.name != tableMetaData.name) if(table && table.name != tableMetaData.name)
{ {
fullFieldName = `${table.name}.${field.name}`; fullFieldName = `${table.name}.${field.name}`;
} }
addQuickFilterField({fieldName: fullFieldName}, "selectedFromAddFilterMenu"); addQuickFilterField({fieldName: fullFieldName}, "selectedFromAddFilterMenu");
}; }
/******************************************************************************* /*******************************************************************************
@ -367,10 +361,7 @@ const BasicAndAdvancedQueryControls = forwardRef((props: BasicAndAdvancedQueryCo
*******************************************************************************/ *******************************************************************************/
const openFilterBuilder = (e: React.MouseEvent<HTMLAnchorElement> | React.MouseEvent<HTMLButtonElement>) => const openFilterBuilder = (e: React.MouseEvent<HTMLAnchorElement> | React.MouseEvent<HTMLButtonElement>) =>
{ {
if (!isQueryTooComplex) gridApiRef.current.showFilterPanel();
{
gridApiRef.current.showFilterPanel();
}
}; };
@ -394,15 +385,15 @@ const BasicAndAdvancedQueryControls = forwardRef((props: BasicAndAdvancedQueryCo
{ {
queryFilter.criteria.splice(index, 1); queryFilter.criteria.splice(index, 1);
setQueryFilter(queryFilter); setQueryFilter(queryFilter);
}; }
/******************************************************************************* /*******************************************************************************
** format the current query as a string for showing on-screen as a preview. ** format the current query as a string for showing on-screen as a preview.
*******************************************************************************/ *******************************************************************************/
const queryToAdvancedString = (thisQueryFilter: QQueryFilter) => const queryToAdvancedString = () =>
{ {
if (queryFilter == null || !queryFilter.criteria) if(queryFilter == null || !queryFilter.criteria)
{ {
return (<span></span>); return (<span></span>);
} }
@ -411,21 +402,18 @@ const BasicAndAdvancedQueryControls = forwardRef((props: BasicAndAdvancedQueryCo
return ( return (
<Box display="flex" flexWrap="wrap" fontSize="0.875rem"> <Box display="flex" flexWrap="wrap" fontSize="0.875rem">
{thisQueryFilter.criteria?.map((criteria, i) => {queryFilter.criteria.map((criteria, i) =>
{ {
const {criteriaIsValid} = validateCriteria(criteria, null); const {criteriaIsValid} = validateCriteria(criteria, null);
if (criteriaIsValid) if(criteriaIsValid)
{ {
counter++; counter++;
return ( return (
<span key={i} style={{marginBottom: "0.125rem"}} onMouseOver={() => handleMouseOverElement(`queryPreview-${i}`)} onMouseOut={() => handleMouseOutElement()}> <span key={i} style={{marginBottom: "0.125rem"}} onMouseOver={() => handleMouseOverElement(`queryPreview-${i}`)} onMouseOut={() => handleMouseOutElement()}>
{counter > 1 ? <span style={{marginLeft: "0.25rem", marginRight: "0.25rem"}}>{thisQueryFilter.booleanOperator}&nbsp;</span> : <span />} {counter > 1 ? <span style={{marginLeft: "0.25rem", marginRight: "0.25rem"}}>{queryFilter.booleanOperator}&nbsp;</span> : <span/>}
{FilterUtils.criteriaToHumanString(tableMetaData, criteria, true)} {FilterUtils.criteriaToHumanString(tableMetaData, criteria, true)}
{!isQueryTooComplex && ( {mouseOverElement == `queryPreview-${i}` && <span className={`advancedQueryPreviewX-${counter - 1}`}><XIcon position="forAdvancedQueryPreview" onClick={() => removeCriteriaByIndex(i)} /></span>}
mouseOverElement == `queryPreview-${i}` && <span className={`advancedQueryPreviewX-${counter - 1}`}>
<XIcon position="forAdvancedQueryPreview" onClick={() => removeCriteriaByIndex(i)} /></span>
)}
{counter > 1 && i == thisQueryFilter.criteria?.length - 1 && thisQueryFilter.subFilters?.length > 0 ? <span style={{marginLeft: "0.25rem", marginRight: "0.25rem"}}>{thisQueryFilter.booleanOperator}&nbsp;</span> : <span />}
</span> </span>
); );
} }
@ -434,18 +422,6 @@ const BasicAndAdvancedQueryControls = forwardRef((props: BasicAndAdvancedQueryCo
return (<span />); return (<span />);
} }
})} })}
{thisQueryFilter.subFilters?.length > 0 && (thisQueryFilter.subFilters.map((filter: QQueryFilter, j) =>
{
return (
<React.Fragment key={j}>
{j > 0 ? <span style={{marginLeft: "0.25rem", marginRight: "0.25rem"}}>{thisQueryFilter.booleanOperator}&nbsp;</span> : <span></span>}
<span style={{display: "flex", marginRight: "0.20rem"}}>(</span>
{queryToAdvancedString(filter)}
<span style={{display: "flex", marginRight: "0.20rem"}}>)</span>
</React.Fragment>
);
}))}
</Box> </Box>
); );
}; };
@ -458,7 +434,7 @@ const BasicAndAdvancedQueryControls = forwardRef((props: BasicAndAdvancedQueryCo
{ {
if (newValue) if (newValue)
{ {
if (newValue == "basic") if(newValue == "basic")
{ {
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// we're always allowed to go to advanced - // // we're always allowed to go to advanced - //
@ -467,7 +443,7 @@ const BasicAndAdvancedQueryControls = forwardRef((props: BasicAndAdvancedQueryCo
const {canFilterWorkAsBasic} = FilterUtils.canFilterWorkAsBasic(tableMetaData, queryFilter); const {canFilterWorkAsBasic} = FilterUtils.canFilterWorkAsBasic(tableMetaData, queryFilter);
if (!canFilterWorkAsBasic) if (!canFilterWorkAsBasic)
{ {
console.log("Query cannot work as basic - so - not allowing toggle to basic."); console.log("Query cannot work as basic - so - not allowing toggle to basic.")
return; return;
} }
@ -494,16 +470,11 @@ const BasicAndAdvancedQueryControls = forwardRef((props: BasicAndAdvancedQueryCo
*******************************************************************************/ *******************************************************************************/
const ensureAllFilterCriteriaAreActiveQuickFilters = (tableMetaData: QTableMetaData, queryFilter: QQueryFilter, reason: "modeToggleClicked" | "defaultFilterLoaded" | "savedFilterSelected" | string, newMode?: string) => const ensureAllFilterCriteriaAreActiveQuickFilters = (tableMetaData: QTableMetaData, queryFilter: QQueryFilter, reason: "modeToggleClicked" | "defaultFilterLoaded" | "savedFilterSelected" | string, newMode?: string) =>
{ {
if (!tableMetaData || !queryFilter) if(!tableMetaData || !queryFilter)
{ {
return; return;
} }
//////////////////////////////////////////////
// set a flag if the query is 'too complex' //
//////////////////////////////////////////////
setIsQueryTooComplex(queryFilter.subFilters?.length > 0);
const {canFilterWorkAsBasic} = FilterUtils.canFilterWorkAsBasic(tableMetaData, queryFilter); const {canFilterWorkAsBasic} = FilterUtils.canFilterWorkAsBasic(tableMetaData, queryFilter);
if (!canFilterWorkAsBasic) if (!canFilterWorkAsBasic)
{ {
@ -514,7 +485,7 @@ const BasicAndAdvancedQueryControls = forwardRef((props: BasicAndAdvancedQueryCo
} }
const modeToUse = newMode ?? mode; const modeToUse = newMode ?? mode;
if (modeToUse == "basic") if(modeToUse == "basic")
{ {
for (let i = 0; i < queryFilter?.criteria?.length; i++) for (let i = 0; i < queryFilter?.criteria?.length; i++)
{ {
@ -525,7 +496,7 @@ const BasicAndAdvancedQueryControls = forwardRef((props: BasicAndAdvancedQueryCo
} }
} }
} }
}; }
/******************************************************************************* /*******************************************************************************
@ -537,22 +508,13 @@ const BasicAndAdvancedQueryControls = forwardRef((props: BasicAndAdvancedQueryCo
for (let i = 0; i < queryFilter?.criteria?.length; i++) for (let i = 0; i < queryFilter?.criteria?.length; i++)
{ {
const {criteriaIsValid} = validateCriteria(queryFilter.criteria[i], null); const {criteriaIsValid} = validateCriteria(queryFilter.criteria[i], null);
if (criteriaIsValid) if(criteriaIsValid)
{ {
count++; count++;
} }
} }
/////////////////////////////////////////////////////////////
// recursively add any children filters to the total count //
/////////////////////////////////////////////////////////////
for (let i = 0; i < queryFilter.subFilters?.length; i++)
{
count += countValidCriteria(queryFilter.subFilters[i]);
}
return count; return count;
}; }
/******************************************************************************* /*******************************************************************************
@ -561,11 +523,11 @@ const BasicAndAdvancedQueryControls = forwardRef((props: BasicAndAdvancedQueryCo
const handleSetSort = (field: QFieldMetaData, table: QTableMetaData, isAscending: boolean = true): void => const handleSetSort = (field: QFieldMetaData, table: QTableMetaData, isAscending: boolean = true): void =>
{ {
const fullFieldName = table && table.name != tableMetaData.name ? `${table.name}.${field.name}` : field.name; const fullFieldName = table && table.name != tableMetaData.name ? `${table.name}.${field.name}` : field.name;
queryFilter.orderBys = [new QFilterOrderBy(fullFieldName, isAscending)]; queryFilter.orderBys = [new QFilterOrderBy(fullFieldName, isAscending)]
setQueryFilter(queryFilter); setQueryFilter(queryFilter);
forceUpdate(); forceUpdate();
}; }
/******************************************************************************* /*******************************************************************************
@ -580,11 +542,11 @@ const BasicAndAdvancedQueryControls = forwardRef((props: BasicAndAdvancedQueryCo
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
const isAscending = event.target.innerHTML == "arrow_upward"; const isAscending = event.target.innerHTML == "arrow_upward";
const isDescending = event.target.innerHTML == "arrow_downward"; const isDescending = event.target.innerHTML == "arrow_downward";
if (isAscending || isDescending) if(isAscending || isDescending)
{ {
handleSetSort(field, table, isAscending); handleSetSort(field, table, isAscending);
} }
}; }
/******************************************************************************* /*******************************************************************************
@ -599,30 +561,30 @@ const BasicAndAdvancedQueryControls = forwardRef((props: BasicAndAdvancedQueryCo
setQueryFilter(queryFilter); setQueryFilter(queryFilter);
forceUpdate(); forceUpdate();
} }
catch (e) catch(e)
{ {
console.log(`Error toggling sort: ${e}`); console.log(`Error toggling sort: ${e}`)
} }
} }
///////////////////////////////// /////////////////////////////////
// set up the sort menu button // // set up the sort menu button //
///////////////////////////////// /////////////////////////////////
let sortButtonContents = <>Sort...</>; let sortButtonContents = <>Sort...</>
if (queryFilter && queryFilter.orderBys && queryFilter.orderBys.length > 0) if(queryFilter && queryFilter.orderBys && queryFilter.orderBys.length > 0)
{ {
const orderBy = queryFilter.orderBys[0]; const orderBy = queryFilter.orderBys[0];
const orderByFieldName = orderBy.fieldName; const orderByFieldName = orderBy.fieldName;
const [field, fieldTable] = TableUtils.getFieldAndTable(tableMetaData, orderByFieldName); const [field, fieldTable] = TableUtils.getFieldAndTable(tableMetaData, orderByFieldName);
const fieldLabel = fieldTable.name == tableMetaData.name ? field.label : `${fieldTable.label}: ${field.label}`; const fieldLabel = fieldTable.name == tableMetaData.name ? field.label : `${fieldTable.label}: ${field.label}`;
sortButtonContents = <>Sort: {fieldLabel} <Icon onClick={toggleSortDirection} sx={{ml: "0.5rem"}}>{orderBy.isAscending ? "arrow_upward" : "arrow_downward"}</Icon></>; sortButtonContents = <>Sort: {fieldLabel} <Icon onClick={toggleSortDirection} sx={{ml: "0.5rem"}}>{orderBy.isAscending ? "arrow_upward" : "arrow_downward"}</Icon></>
} }
//////////////////////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////////////////////
// this is being used as a version of like forcing that we get re-rendered if the query filter changes... // // this is being used as a version of like forcing that we get re-rendered if the query filter changes... //
//////////////////////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////////////////////
const [lastIndex, setLastIndex] = useState(queryFilterJSON); const [lastIndex, setLastIndex] = useState(queryFilterJSON);
if (queryFilterJSON != lastIndex) if(queryFilterJSON != lastIndex)
{ {
ensureAllFilterCriteriaAreActiveQuickFilters(tableMetaData, queryFilter, "defaultFilterLoaded"); ensureAllFilterCriteriaAreActiveQuickFilters(tableMetaData, queryFilter, "defaultFilterLoaded");
setLastIndex(queryFilterJSON); setLastIndex(queryFilterJSON);
@ -632,22 +594,16 @@ const BasicAndAdvancedQueryControls = forwardRef((props: BasicAndAdvancedQueryCo
// set some status flags based on current filter // // set some status flags based on current filter //
/////////////////////////////////////////////////// ///////////////////////////////////////////////////
const hasValidFilters = queryFilter && countValidCriteria(queryFilter) > 0; const hasValidFilters = queryFilter && countValidCriteria(queryFilter) > 0;
const {canFilterWorkAsBasic, canFilterWorkAsAdvanced, reasonsWhyItCannot} = FilterUtils.canFilterWorkAsBasic(tableMetaData, queryFilter); const {canFilterWorkAsBasic, reasonsWhyItCannot} = FilterUtils.canFilterWorkAsBasic(tableMetaData, queryFilter);
let reasonWhyBasicIsDisabled = null; let reasonWhyBasicIsDisabled = null;
if (canFilterWorkAsAdvanced && reasonsWhyItCannot && reasonsWhyItCannot.length > 0) if(reasonsWhyItCannot && reasonsWhyItCannot.length > 0)
{ {
reasonWhyBasicIsDisabled = <> reasonWhyBasicIsDisabled = <>
Your current Filter cannot be managed using Basic mode because: Your current Filter cannot be managed using Basic mode because:
<ul style={{marginLeft: "1rem"}}> <ul style={{marginLeft: "1rem"}}>
{reasonsWhyItCannot.map((reason, i) => <li key={i}>{reason}</li>)} {reasonsWhyItCannot.map((reason, i) => <li key={i}>{reason}</li>)}
</ul> </ul>
</>; </>
}
if (isQueryTooComplex)
{
reasonWhyBasicIsDisabled = <>
Your current Filter is too complex to modify because it contains Sub-filters.
</>;
} }
const borderGray = colors.grayLines.main; const borderGray = colors.grayLines.main;
@ -775,20 +731,20 @@ const BasicAndAdvancedQueryControls = forwardRef((props: BasicAndAdvancedQueryCo
<Button <Button
className="filterBuilderButton" className="filterBuilderButton"
onClick={(e) => openFilterBuilder(e)} onClick={(e) => openFilterBuilder(e)}
{...filterBuilderMouseEvents} {... filterBuilderMouseEvents}
startIcon={<Icon>build</Icon>} startIcon={<Icon>build</Icon>}
sx={{borderRadius: "0.75rem", padding: "0.5rem", pl: "1rem", fontSize: "0.875rem", fontWeight: 500, border: `1px solid ${accentColor}`, textTransform: "none"}} sx={{borderRadius: "0.75rem", padding: "0.5rem", pl: "1rem", fontSize: "0.875rem", fontWeight: 500, border: `1px solid ${accentColor}`, textTransform: "none"}}
> >
Filter Builder Filter Builder
{ {
countValidCriteria(queryFilter) > 0 && countValidCriteria(queryFilter) > 0 &&
<Box {...filterBuilderMouseEvents} sx={{backgroundColor: accentColor, marginLeft: "0.25rem", minWidth: "1rem", fontSize: "0.75rem"}} borderRadius="50%" color="#FFFFFF" position="relative" top="-2px" className="filterBuilderCountBadge"> <Box {... filterBuilderMouseEvents} sx={{backgroundColor: accentColor, marginLeft: "0.25rem", minWidth: "1rem", fontSize: "0.75rem"}} borderRadius="50%" color="#FFFFFF" position="relative" top="-2px" className="filterBuilderCountBadge">
{countValidCriteria(queryFilter)} {countValidCriteria(queryFilter) }
</Box> </Box>
} }
</Button> </Button>
{ {
hasValidFilters && mouseOverElement == "filterBuilderButton" && <span {...filterBuilderMouseEvents} className="filterBuilderXIcon"><XIcon shade="accent" position="default" onClick={() => setShowClearFiltersWarning(true)} /></span> hasValidFilters && mouseOverElement == "filterBuilderButton" && <span {... filterBuilderMouseEvents} className="filterBuilderXIcon"><XIcon shade="accent" position="default" onClick={() => setShowClearFiltersWarning(true)} /></span>
} }
</> </>
</Tooltip> </Tooltip>
@ -821,7 +777,7 @@ const BasicAndAdvancedQueryControls = forwardRef((props: BasicAndAdvancedQueryCo
pb={"0.125rem"} pb={"0.125rem"}
boxShadow={"inset 0px 0px 4px 2px #EFEFED"} boxShadow={"inset 0px 0px 4px 2px #EFEFED"}
> >
{queryToAdvancedString(queryFilter)} {queryToAdvancedString()}
</Box> </Box>
} }
</Box> </Box>

View File

@ -398,7 +398,7 @@ export function FilterCriteriaRow({id, index, tableMetaData, metaData, criteria,
criteria.values = []; criteria.values = [];
} }
if(newValue.valueMode && !newValue.implicitValues) if(newValue.valueMode)
{ {
const requiredValueCount = getValueModeRequiredCount(newValue.valueMode); const requiredValueCount = getValueModeRequiredCount(newValue.valueMode);
if(requiredValueCount != null && criteria.values.length > requiredValueCount) if(requiredValueCount != null && criteria.values.length > requiredValueCount)

View File

@ -94,24 +94,6 @@ export const makeTextField = (field: QFieldMetaData, criteria: QFilterCriteriaWi
document.getElementById(`${idPrefix}${criteria.id}`).focus(); document.getElementById(`${idPrefix}${criteria.id}`).focus();
}; };
/*******************************************************************************
** Event handler for key-down events - specifically added here, to stop pressing
** 'tab' in a date or date-time from closing the quick-filter...
*******************************************************************************/
const handleKeyDown = (e: any) =>
{
if (field.type == QFieldType.DATE || field.type == QFieldType.DATE_TIME)
{
if(e.code == "Tab")
{
console.log("Tab on date or date-time - don't close me, just move to the next sub-field!...");
e.stopPropagation();
}
}
};
const inputProps: any = {}; const inputProps: any = {};
inputProps.endAdornment = ( inputProps.endAdornment = (
<InputAdornment position="end"> <InputAdornment position="end">
@ -128,7 +110,6 @@ export const makeTextField = (field: QFieldMetaData, criteria: QFilterCriteriaWi
autoComplete="off" autoComplete="off"
type={type} type={type}
onChange={(event) => valueChangeHandler(event, valueIndex)} onChange={(event) => valueChangeHandler(event, valueIndex)}
onKeyDown={handleKeyDown}
value={value} value={value}
InputLabelProps={inputLabelProps} InputLabelProps={inputLabelProps}
InputProps={inputProps} InputProps={inputProps}

View File

@ -30,7 +30,7 @@ import Box from "@mui/material/Box";
import Button from "@mui/material/Button"; import Button from "@mui/material/Button";
import Menu from "@mui/material/Menu"; import Menu from "@mui/material/Menu";
import TextField from "@mui/material/TextField"; import TextField from "@mui/material/TextField";
import React, {SyntheticEvent, useContext, useReducer, useState} from "react"; import React, {SyntheticEvent, useContext, useState} from "react";
import QContext from "QContext"; import QContext from "QContext";
import {QFilterCriteriaWithId} from "qqq/components/query/CustomFilterPanel"; import {QFilterCriteriaWithId} from "qqq/components/query/CustomFilterPanel";
import {getDefaultCriteriaValue, getOperatorOptions, getValueModeRequiredCount, OperatorOption, validateCriteria} from "qqq/components/query/FilterCriteriaRow"; import {getDefaultCriteriaValue, getOperatorOptions, getValueModeRequiredCount, OperatorOption, validateCriteria} from "qqq/components/query/FilterCriteriaRow";
@ -148,10 +148,7 @@ export default function QuickFilter({tableMetaData, fullFieldName, fieldMetaData
const [anchorEl, setAnchorEl] = useState(null); const [anchorEl, setAnchorEl] = useState(null);
const [isMouseOver, setIsMouseOver] = useState(false); const [isMouseOver, setIsMouseOver] = useState(false);
//////////////////////////////////////////////////////////////////////////////////////////////////////// const [criteria, setCriteria] = useState(criteriaParamIsCriteria(criteriaParam) ? criteriaParam as QFilterCriteriaWithId : null);
// copy the criteriaParam to a new object in here - so changes won't apply until user closes the menu //
////////////////////////////////////////////////////////////////////////////////////////////////////////
const [criteria, setCriteria] = useState(criteriaParamIsCriteria(criteriaParam) ? Object.assign({}, criteriaParam) as QFilterCriteriaWithId : null);
const [id, setId] = useState(criteriaParamIsCriteria(criteriaParam) ? (criteriaParam as QFilterCriteriaWithId).id : ++seedId); const [id, setId] = useState(criteriaParamIsCriteria(criteriaParam) ? (criteriaParam as QFilterCriteriaWithId).id : ++seedId);
const [operatorSelectedValue, setOperatorSelectedValue] = useState(getOperatorSelectedValue(operatorOptions, criteria, defaultOperator)); const [operatorSelectedValue, setOperatorSelectedValue] = useState(getOperatorSelectedValue(operatorOptions, criteria, defaultOperator));
@ -161,11 +158,6 @@ export default function QuickFilter({tableMetaData, fullFieldName, fieldMetaData
const {accentColor} = useContext(QContext); const {accentColor} = useContext(QContext);
//////////////////////
// ole' faithful... //
//////////////////////
const [, forceUpdate] = useReducer((x) => x + 1, 0);
/******************************************************************************* /*******************************************************************************
** **
@ -190,30 +182,15 @@ export default function QuickFilter({tableMetaData, fullFieldName, fieldMetaData
////////////////////////////////////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////////////////////////////////////
if (criteriaParamIsCriteria(criteriaParam) && JSON.stringify(criteriaParam) !== JSON.stringify(criteria)) if (criteriaParamIsCriteria(criteriaParam) && JSON.stringify(criteriaParam) !== JSON.stringify(criteria))
{ {
if(isOpen) const newCriteria = criteriaParam as QFilterCriteriaWithId;
{ setCriteria(newCriteria);
//////////////////////////////////////////////////////////////////////////////// const operatorOption = operatorOptions.filter(o => o.value == newCriteria.operator)[0];
// this was firing too-often for case where: there was a criteria originally // setOperatorSelectedValue(operatorOption);
//////////////////////////////////////////////////////////////////////////////// setOperatorInputValue(operatorOption.label);
console.log("Not handling outside change (A), because dropdown is-open");
}
else
{
////////////////////////////////////////////////////////////////////////////////////////////////////////
// copy the criteriaParam to a new object in here - so changes won't apply until user closes the menu //
////////////////////////////////////////////////////////////////////////////////////////////////////////
const newCriteria = Object.assign({}, criteriaParam) as QFilterCriteriaWithId;
setCriteria(newCriteria);
const operatorOption = operatorOptions.filter(o => o.value == newCriteria.operator)[0];
setOperatorSelectedValue(operatorOption);
setOperatorInputValue(operatorOption.label);
}
} }
/******************************************************************************* /*******************************************************************************
** Test if we need to construct a new criteria object ** Test if we need to construct a new criteria object
** This is (at least for some cases) for when the criteria gets changed
** from outside of this component - e.g., a reset on the query screen
*******************************************************************************/ *******************************************************************************/
const criteriaNeedsReset = (): boolean => const criteriaNeedsReset = (): boolean =>
{ {
@ -222,16 +199,6 @@ export default function QuickFilter({tableMetaData, fullFieldName, fieldMetaData
const defaultOperatorOption = operatorOptions.filter(o => o.value == defaultOperator)[0]; const defaultOperatorOption = operatorOptions.filter(o => o.value == defaultOperator)[0];
if(criteria.operator !== defaultOperatorOption?.value || JSON.stringify(criteria.values) !== JSON.stringify(getDefaultCriteriaValue())) if(criteria.operator !== defaultOperatorOption?.value || JSON.stringify(criteria.values) !== JSON.stringify(getDefaultCriteriaValue()))
{ {
if(isOpen)
{
//////////////////////////////////////////////////////////////////////////////////
// this was firing too-often for case where: there was no criteria originally, //
// so, by adding this is-open check, we eliminated those. //
//////////////////////////////////////////////////////////////////////////////////
console.log("Not handling outside change (B), because dropdown is-open");
return (false);
}
return (true); return (true);
} }
} }
@ -240,7 +207,7 @@ export default function QuickFilter({tableMetaData, fullFieldName, fieldMetaData
} }
/******************************************************************************* /*******************************************************************************
** Construct a new criteria object - resetting the values tied to the operator ** Construct a new criteria object - resetting the values tied to the oprator
** autocomplete at the same time. ** autocomplete at the same time.
*******************************************************************************/ *******************************************************************************/
const makeNewCriteria = (): QFilterCriteria => const makeNewCriteria = (): QFilterCriteria =>
@ -274,11 +241,6 @@ export default function QuickFilter({tableMetaData, fullFieldName, fieldMetaData
*******************************************************************************/ *******************************************************************************/
const closeMenu = () => const closeMenu = () =>
{ {
//////////////////////////////////////////////////////////////////////////////////
// when closing the menu, that's when we'll update the criteria from the caller //
//////////////////////////////////////////////////////////////////////////////////
updateCriteria(criteria, false, false);
setIsOpen(false); setIsOpen(false);
setAnchorEl(null); setAnchorEl(null);
}; };
@ -309,7 +271,7 @@ export default function QuickFilter({tableMetaData, fullFieldName, fieldMetaData
criteria.values = []; criteria.values = [];
} }
if(newValue.valueMode && !newValue.implicitValues) if(newValue.valueMode)
{ {
const requiredValueCount = getValueModeRequiredCount(newValue.valueMode); const requiredValueCount = getValueModeRequiredCount(newValue.valueMode);
if(requiredValueCount != null && criteria.values.length > requiredValueCount) if(requiredValueCount != null && criteria.values.length > requiredValueCount)
@ -324,8 +286,7 @@ export default function QuickFilter({tableMetaData, fullFieldName, fieldMetaData
setOperatorInputValue(""); setOperatorInputValue("");
} }
setCriteria(criteria); updateCriteria(criteria, false, false);
forceUpdate();
}; };
/******************************************************************************* /*******************************************************************************
@ -359,8 +320,7 @@ export default function QuickFilter({tableMetaData, fullFieldName, fieldMetaData
criteria.values[valueIndex] = value; criteria.values[valueIndex] = value;
} }
setCriteria(criteria); updateCriteria(criteria, true, false);
forceUpdate();
}; };
/******************************************************************************* /*******************************************************************************
@ -440,18 +400,16 @@ export default function QuickFilter({tableMetaData, fullFieldName, fieldMetaData
buttonAdditionalStyles.color = "white !important"; buttonAdditionalStyles.color = "white !important";
buttonClassName = "filterActive"; buttonClassName = "filterActive";
let valuesString = FilterUtils.getValuesString(fieldMetaData, criteria, 1, "+N"); let valuesString = FilterUtils.getValuesString(fieldMetaData, criteria);
if(fieldMetaData.type == QFieldType.BOOLEAN)
///////////////////////////////////////////
// don't show the Equals or In operators //
///////////////////////////////////////////
let operatorString = (<>{operatorSelectedValue.label}&nbsp;</>);
if(operatorSelectedValue.value == QCriteriaOperator.EQUALS || operatorSelectedValue.value == QCriteriaOperator.IN)
{ {
operatorString = (<></>) //////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// for booleans, in here, the operator-label is "equals yes" or "equals no", so we don't want the values string //
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////
valuesString = "";
} }
buttonContent = (<><span style={{fontWeight: 700}}>{buttonContent}:</span>&nbsp;<span style={{fontWeight: 400}}>{operatorString}{valuesString}</span></>); buttonContent = (<><span style={{fontWeight: 700}}>{buttonContent}:</span>&nbsp;<span style={{fontWeight: 400}}>{operatorSelectedValue.label}&nbsp;{valuesString}</span></>);
} }
const mouseEvents = const mouseEvents =
@ -504,7 +462,7 @@ export default function QuickFilter({tableMetaData, fullFieldName, fieldMetaData
////////////////////////////// //////////////////////////////
// return the button & menu // // return the button & menu //
////////////////////////////// //////////////////////////////
const widthAndMaxWidth = fieldMetaData?.type == QFieldType.DATE_TIME ? 275 : 250 const widthAndMaxWidth = 250
return ( return (
<> <>
{button} {button}
@ -520,12 +478,7 @@ export default function QuickFilter({tableMetaData, fullFieldName, fieldMetaData
<Box display="inline-block" width={widthAndMaxWidth} maxWidth={widthAndMaxWidth} className="operatorColumn"> <Box display="inline-block" width={widthAndMaxWidth} maxWidth={widthAndMaxWidth} className="operatorColumn">
<Autocomplete <Autocomplete
id={"criteriaOperator"} id={"criteriaOperator"}
//////////////////////////////////////////////////////////////////////////////////////////////////// renderInput={(params) => (<TextField {...params} label={"Operator"} variant="standard" autoComplete="off" type="search" InputProps={{...params.InputProps}} />)}
// ok, so, by default, if you type an 'o' as the first letter in the FilterCriteriaRowValues box, //
// something is causing THIS element to become selected, if the first letter in its label is 'O'. //
// ... work around is to put invisible &zwnj; entity as first character in label instead... //
////////////////////////////////////////////////////////////////////////////////////////////////////
renderInput={(params) => (<TextField {...params} label={<>&zwnj;Operator</>} variant="standard" autoComplete="off" type="search" InputProps={{...params.InputProps}} />)}
options={operatorOptions} options={operatorOptions}
value={operatorSelectedValue as any} value={operatorSelectedValue as any}
inputValue={operatorInputValue} inputValue={operatorInputValue}

View File

@ -1,109 +0,0 @@
/*
* QQQ - Low-code Application Framework for Engineers.
* Copyright (C) 2021-2024. 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 {QWidgetMetaData} from "@kingsrook/qqq-frontend-core/lib/model/metaData/QWidgetMetaData";
import {Box, Skeleton} from "@mui/material";
import React from "react";
import {BlockData} from "qqq/components/widgets/blocks/BlockModels";
import WidgetBlock from "qqq/components/widgets/WidgetBlock";
interface CompositeData
{
blocks: BlockData[];
styleOverrides?: any;
layout?: string
}
interface CompositeWidgetProps
{
widgetMetaData: QWidgetMetaData;
data: CompositeData;
}
/*******************************************************************************
** Widget which is a list of Blocks.
*******************************************************************************/
export default function CompositeWidget({widgetMetaData, data}: CompositeWidgetProps): JSX.Element
{
if (!data || !data.blocks)
{
return (<Skeleton />);
}
////////////////////////////////////////////////////////////////////////////////////
// note - these layouts are defined in qqq in the CompositeWidgetData.Layout enum //
////////////////////////////////////////////////////////////////////////////////////
let layout = data?.layout;
let boxStyle: any = {};
if (layout == "FLEX_ROW_WRAPPED")
{
boxStyle.display = "flex";
boxStyle.flexDirection = "row";
boxStyle.flexWrap = "wrap";
boxStyle.gap = "0.5rem";
}
else if (layout == "FLEX_ROW_SPACE_BETWEEN")
{
boxStyle.display = "flex";
boxStyle.flexDirection = "row";
boxStyle.justifyContent = "space-between"
boxStyle.gap = "0.25rem";
}
else if (layout == "TABLE_SUB_ROW_DETAILS")
{
boxStyle.display = "flex";
boxStyle.flexDirection = "column";
boxStyle.fontSize = "0.875rem";
boxStyle.fontWeight = 400;
boxStyle.borderRight = "1px solid #D0D0D0";
}
else if (layout == "BADGES_WRAPPER")
{
boxStyle.display = "flex";
boxStyle.gap = "0.25rem";
boxStyle.padding = "0 0.25rem";
boxStyle.fontSize = "0.875rem";
boxStyle.fontWeight = 400;
boxStyle.border = "1px solid gray";
boxStyle.borderRadius = "0.5rem";
boxStyle.background = "#FFFFFF";
}
if (data?.styleOverrides)
{
boxStyle = {...boxStyle, ...data.styleOverrides};
}
return (<Box sx={boxStyle} className="compositeWidget">
{
data.blocks.map((block: BlockData, index) => (
<React.Fragment key={index}>
<WidgetBlock widgetMetaData={widgetMetaData} block={block} />
</React.Fragment>
))
}
</Box>);
}

View File

@ -35,7 +35,6 @@ import DefaultLineChart from "qqq/components/widgets/charts/linechart/DefaultLin
import SmallLineChart from "qqq/components/widgets/charts/linechart/SmallLineChart"; import SmallLineChart from "qqq/components/widgets/charts/linechart/SmallLineChart";
import PieChart from "qqq/components/widgets/charts/piechart/PieChart"; import PieChart from "qqq/components/widgets/charts/piechart/PieChart";
import StackedBarChart from "qqq/components/widgets/charts/StackedBarChart"; import StackedBarChart from "qqq/components/widgets/charts/StackedBarChart";
import CompositeWidget from "qqq/components/widgets/CompositeWidget";
import DataBagViewer from "qqq/components/widgets/misc/DataBagViewer"; import DataBagViewer from "qqq/components/widgets/misc/DataBagViewer";
import DividerWidget from "qqq/components/widgets/misc/Divider"; import DividerWidget from "qqq/components/widgets/misc/Divider";
import FieldValueListWidget from "qqq/components/widgets/misc/FieldValueListWidget"; import FieldValueListWidget from "qqq/components/widgets/misc/FieldValueListWidget";
@ -48,7 +47,6 @@ import ParentWidget from "qqq/components/widgets/ParentWidget";
import MultiStatisticsCard from "qqq/components/widgets/statistics/MultiStatisticsCard"; import MultiStatisticsCard from "qqq/components/widgets/statistics/MultiStatisticsCard";
import StatisticsCard from "qqq/components/widgets/statistics/StatisticsCard"; import StatisticsCard from "qqq/components/widgets/statistics/StatisticsCard";
import Widget, {HeaderIcon, WIDGET_DROPDOWN_SELECTION_LOCAL_STORAGE_KEY_ROOT, LabelComponent} from "qqq/components/widgets/Widget"; import Widget, {HeaderIcon, WIDGET_DROPDOWN_SELECTION_LOCAL_STORAGE_KEY_ROOT, LabelComponent} from "qqq/components/widgets/Widget";
import WidgetBlock from "qqq/components/widgets/WidgetBlock";
import ProcessRun from "qqq/pages/processes/ProcessRun"; import ProcessRun from "qqq/pages/processes/ProcessRun";
import Client from "qqq/utils/qqq/Client"; import Client from "qqq/utils/qqq/Client";
import TableWidget from "./tables/TableWidget"; import TableWidget from "./tables/TableWidget";
@ -256,17 +254,7 @@ function DashboardWidgets({widgetMetaDataList, tableName, entityPrimaryKey, omit
const topRightInsideCardIcon = widgetMetaData.icons.get("topRightInsideCard"); const topRightInsideCardIcon = widgetMetaData.icons.get("topRightInsideCard");
if (topRightInsideCardIcon) if (topRightInsideCardIcon)
{ {
labelAdditionalComponentsRight.push(new HeaderIcon(topRightInsideCardIcon.name, topRightInsideCardIcon.path, topRightInsideCardIcon.color, "topRightInsideCard")); labelAdditionalComponentsRight.push(new HeaderIcon(topRightInsideCardIcon.name, topRightInsideCardIcon.path, topRightInsideCardIcon.color));
}
}
const labelAdditionalComponentsLeft: LabelComponent[] = [];
if (widgetMetaData && widgetMetaData.icons)
{
const topLeftInsideCardIcon = widgetMetaData.icons.get("topLeftInsideCard");
if (topLeftInsideCardIcon)
{
labelAdditionalComponentsLeft.push(new HeaderIcon(topLeftInsideCardIcon.name, topLeftInsideCardIcon.path, topLeftInsideCardIcon.color, "topLeftInsideCard"));
} }
} }
@ -314,7 +302,6 @@ function DashboardWidgets({widgetMetaDataList, tableName, entityPrimaryKey, omit
reloadWidgetCallback={(data) => reloadWidget(i, data)} reloadWidgetCallback={(data) => reloadWidget(i, data)}
isChild={areChildren} isChild={areChildren}
labelAdditionalComponentsRight={labelAdditionalComponentsRight} labelAdditionalComponentsRight={labelAdditionalComponentsRight}
labelAdditionalComponentsLeft={labelAdditionalComponentsLeft}
> >
<StackedBarChart data={widgetData[i]?.chartData} chartSubheaderData={widgetData[i]?.chartSubheaderData} /> <StackedBarChart data={widgetData[i]?.chartData} chartSubheaderData={widgetData[i]?.chartSubheaderData} />
</Widget> </Widget>
@ -327,8 +314,6 @@ function DashboardWidgets({widgetMetaDataList, tableName, entityPrimaryKey, omit
widgetData={widgetData[i]} widgetData={widgetData[i]}
reloadWidgetCallback={(data) => reloadWidget(i, data)} reloadWidgetCallback={(data) => reloadWidget(i, data)}
showReloadControl={false} showReloadControl={false}
labelAdditionalComponentsRight={labelAdditionalComponentsRight}
labelAdditionalComponentsLeft={labelAdditionalComponentsLeft}
> >
<div className="widgetProcessMidDiv" style={{height: "100%"}}> <div className="widgetProcessMidDiv" style={{height: "100%"}}>
<ProcessRun process={widgetData[i]?.processMetaData} defaultProcessValues={widgetData[i]?.defaultValues} isWidget={true} forceReInit={widgetCounter} /> <ProcessRun process={widgetData[i]?.processMetaData} defaultProcessValues={widgetData[i]?.defaultValues} isWidget={true} forceReInit={widgetCounter} />
@ -342,8 +327,6 @@ function DashboardWidgets({widgetMetaDataList, tableName, entityPrimaryKey, omit
widgetMetaData={widgetMetaData} widgetMetaData={widgetMetaData}
widgetData={widgetData[i]} widgetData={widgetData[i]}
reloadWidgetCallback={(data) => reloadWidget(i, data)} reloadWidgetCallback={(data) => reloadWidget(i, data)}
labelAdditionalComponentsRight={labelAdditionalComponentsRight}
labelAdditionalComponentsLeft={labelAdditionalComponentsLeft}
> >
<Box sx={{alignItems: "stretch", flexGrow: 1, display: "flex", marginTop: "0px", paddingTop: "0px"}}> <Box sx={{alignItems: "stretch", flexGrow: 1, display: "flex", marginTop: "0px", paddingTop: "0px"}}>
<Box padding="1rem" sx={{width: "100%"}}> <Box padding="1rem" sx={{width: "100%"}}>
@ -359,8 +342,6 @@ function DashboardWidgets({widgetMetaDataList, tableName, entityPrimaryKey, omit
widgetMetaData={widgetMetaData} widgetMetaData={widgetMetaData}
reloadWidgetCallback={(data) => reloadWidget(i, data)} reloadWidgetCallback={(data) => reloadWidget(i, data)}
widgetData={widgetData[i]} widgetData={widgetData[i]}
labelAdditionalComponentsRight={labelAdditionalComponentsRight}
labelAdditionalComponentsLeft={labelAdditionalComponentsLeft}
> >
<Box> <Box>
<MDTypography component="div" variant="button" color="text" fontWeight="light"> <MDTypography component="div" variant="button" color="text" fontWeight="light">
@ -392,11 +373,8 @@ function DashboardWidgets({widgetMetaDataList, tableName, entityPrimaryKey, omit
widgetData={widgetData[i]} widgetData={widgetData[i]}
isChild={areChildren} isChild={areChildren}
reloadWidgetCallback={(data) => reloadWidget(i, data)} reloadWidgetCallback={(data) => reloadWidget(i, data)}
labelAdditionalComponentsRight={labelAdditionalComponentsRight}
labelAdditionalComponentsLeft={labelAdditionalComponentsLeft}
> >
<StatisticsCard <StatisticsCard
widgetMetaData={widgetMetaData}
data={widgetData[i]} data={widgetData[i]}
increaseIsGood={true} increaseIsGood={true}
/> />
@ -436,7 +414,6 @@ function DashboardWidgets({widgetMetaDataList, tableName, entityPrimaryKey, omit
reloadWidgetCallback={(data) => reloadWidget(i, data)} reloadWidgetCallback={(data) => reloadWidget(i, data)}
isChild={areChildren} isChild={areChildren}
labelAdditionalComponentsRight={labelAdditionalComponentsRight} labelAdditionalComponentsRight={labelAdditionalComponentsRight}
labelAdditionalComponentsLeft={labelAdditionalComponentsLeft}
> >
<div> <div>
<PieChart <PieChart
@ -472,8 +449,6 @@ function DashboardWidgets({widgetMetaDataList, tableName, entityPrimaryKey, omit
widgetData={widgetData[i]} widgetData={widgetData[i]}
reloadWidgetCallback={(data) => reloadWidget(i, data)} reloadWidgetCallback={(data) => reloadWidget(i, data)}
isChild={areChildren} isChild={areChildren}
labelAdditionalComponentsRight={labelAdditionalComponentsRight}
labelAdditionalComponentsLeft={labelAdditionalComponentsLeft}
> >
<DefaultLineChart sx={{alignItems: "center"}} <DefaultLineChart sx={{alignItems: "center"}}
data={widgetData[i]?.chartData} data={widgetData[i]?.chartData}
@ -502,34 +477,6 @@ function DashboardWidgets({widgetMetaDataList, tableName, entityPrimaryKey, omit
/> />
) )
} }
{
widgetMetaData.type === "composite" && (
<Widget
widgetMetaData={widgetMetaData}
widgetData={widgetData[i]}
reloadWidgetCallback={(data) => reloadWidget(i, data)}
isChild={areChildren}
labelAdditionalComponentsRight={labelAdditionalComponentsRight}
labelAdditionalComponentsLeft={labelAdditionalComponentsLeft}
>
<CompositeWidget widgetMetaData={widgetMetaData} data={widgetData[i]} />
</Widget>
)
}
{
widgetMetaData.type === "block" && (
<Widget
widgetMetaData={widgetMetaData}
widgetData={widgetData[i]}
reloadWidgetCallback={(data) => reloadWidget(i, data)}
isChild={areChildren}
labelAdditionalComponentsRight={labelAdditionalComponentsRight}
labelAdditionalComponentsLeft={labelAdditionalComponentsLeft}
>
<WidgetBlock widgetMetaData={widgetMetaData} block={widgetData[i]} />
</Widget>
)
}
{ {
widgetMetaData.type === "dataBagViewer" && ( widgetMetaData.type === "dataBagViewer" && (
widgetData && widgetData[i] && widgetData[i].queryParams && widgetData && widgetData[i] && widgetData[i].queryParams &&
@ -576,6 +523,7 @@ function DashboardWidgets({widgetMetaDataList, tableName, entityPrimaryKey, omit
renderedWidget = (<TabPanel index={i} value={selectedTab} style={{ renderedWidget = (<TabPanel index={i} value={selectedTab} style={{
padding: 0, padding: 0,
margin: "-1rem", margin: "-1rem",
marginBottom: "-3.5rem",
width: "calc(100% + 2rem)" width: "calc(100% + 2rem)"
}}> }}>
{renderedWidget} {renderedWidget}

View File

@ -33,7 +33,6 @@ import Client from "qqq/utils/qqq/Client";
////////////////////////////////////////////// //////////////////////////////////////////////
export interface ParentWidgetData export interface ParentWidgetData
{ {
label?: string;
dropdownLabelList: string[]; dropdownLabelList: string[];
dropdownNameList: string[]; dropdownNameList: string[];
dropdownDataList: { dropdownDataList: {
@ -43,7 +42,6 @@ export interface ParentWidgetData
childWidgetNameList: string[]; childWidgetNameList: string[];
dropdownNeedsSelectedText?: string; dropdownNeedsSelectedText?: string;
storeDropdownSelections?: boolean; storeDropdownSelections?: boolean;
csvData?: any[][];
icon?: string; icon?: string;
layoutType: string; layoutType: string;
} }
@ -66,8 +64,7 @@ interface Props
const qController = Client.getInstance(); const qController = Client.getInstance();
function ParentWidget({urlParams, widgetMetaData, widgetIndex, data, reloadWidgetCallback, entityPrimaryKey, tableName, storeDropdownSelections}: Props, ): JSX.Element
function ParentWidget({urlParams, widgetMetaData, widgetIndex, data, reloadWidgetCallback, entityPrimaryKey, tableName, storeDropdownSelections}: Props,): JSX.Element
{ {
const [childUrlParams, setChildUrlParams] = useState((urlParams) ? urlParams : ""); const [childUrlParams, setChildUrlParams] = useState((urlParams) ? urlParams : "");
const [qInstance, setQInstance] = useState(null as QInstance); const [qInstance, setQInstance] = useState(null as QInstance);
@ -84,27 +81,27 @@ function ParentWidget({urlParams, widgetMetaData, widgetIndex, data, reloadWidge
useEffect(() => useEffect(() =>
{ {
if (qInstance && data && data.childWidgetNameList) if(qInstance && data && data.childWidgetNameList)
{ {
let widgetMetaDataList = [] as QWidgetMetaData[]; let widgetMetaDataList = [] as QWidgetMetaData[];
data?.childWidgetNameList.forEach((widgetName: string) => data?.childWidgetNameList.forEach((widgetName: string) =>
{ {
widgetMetaDataList.push(qInstance.widgets.get(widgetName)); widgetMetaDataList.push(qInstance.widgets.get(widgetName));
}); })
setWidgets(widgetMetaDataList); setWidgets(widgetMetaDataList);
} }
}, [qInstance, data, childUrlParams]); }, [qInstance, data, childUrlParams]);
useEffect(() => useEffect(() =>
{ {
setChildUrlParams(urlParams); setChildUrlParams(urlParams)
}, [urlParams]); }, [urlParams]);
const parentReloadWidgetCallback = (data: string) => const parentReloadWidgetCallback = (data: string) =>
{ {
setChildUrlParams(data); setChildUrlParams(data);
reloadWidgetCallback(data); reloadWidgetCallback(data);
}; }
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
// if this parent widget is in card form, and its children are too, then we need some px // // if this parent widget is in card form, and its children are too, then we need some px //
@ -128,7 +125,7 @@ function ParentWidget({urlParams, widgetMetaData, widgetIndex, data, reloadWidge
omitPadding={omitPadding} omitPadding={omitPadding}
> >
<Box sx={{height: "100%", width: "100%"}} px={px}> <Box sx={{height: "100%", width: "100%"}} px={px}>
<DashboardWidgets widgetMetaDataList={widgets} entityPrimaryKey={entityPrimaryKey} tableName={tableName} childUrlParams={childUrlParams} areChildren={true} parentWidgetMetaData={widgetMetaData} wrapWidgetsInTabPanels={data.layoutType?.toLowerCase() == "tabs"} /> <DashboardWidgets widgetMetaDataList={widgets} entityPrimaryKey={entityPrimaryKey} tableName={tableName} childUrlParams={childUrlParams} areChildren={true} parentWidgetMetaData={widgetMetaData} wrapWidgetsInTabPanels={data.layoutType == "TABS"}/>
</Box> </Box>
</Widget> </Widget>
) : null ) : null

View File

@ -28,14 +28,10 @@ import Icon from "@mui/material/Icon";
import Tooltip from "@mui/material/Tooltip/Tooltip"; import Tooltip from "@mui/material/Tooltip/Tooltip";
import Typography from "@mui/material/Typography"; import Typography from "@mui/material/Typography";
import parse from "html-react-parser"; import parse from "html-react-parser";
import React, {useContext, useEffect, useState} from "react"; import React, {useEffect, useState} from "react";
import {NavigateFunction, useNavigate} from "react-router-dom"; import {NavigateFunction, useNavigate} from "react-router-dom";
import QContext from "QContext";
import colors from "qqq/assets/theme/base/colors"; import colors from "qqq/assets/theme/base/colors";
import HelpContent, {hasHelpContent} from "qqq/components/misc/HelpContent";
import WidgetDropdownMenu, {DropdownOption} from "qqq/components/widgets/components/WidgetDropdownMenu"; import WidgetDropdownMenu, {DropdownOption} from "qqq/components/widgets/components/WidgetDropdownMenu";
import {WidgetUtils} from "qqq/components/widgets/WidgetUtils";
import HtmlUtils from "qqq/utils/HtmlUtils";
export interface WidgetData export interface WidgetData
{ {
@ -113,18 +109,16 @@ export class HeaderIcon extends LabelComponent
iconPath: string; iconPath: string;
color: string; color: string;
coloredBG: boolean; coloredBG: boolean;
role: string;
iconColor: string; iconColor: string;
bgColor: string; bgColor: string;
constructor(iconName: string, iconPath: string, color: string, role?: string, coloredBG: boolean = true) constructor(iconName: string, iconPath: string, color: string, coloredBG: boolean = true)
{ {
super(); super();
this.iconName = iconName; this.iconName = iconName;
this.iconPath = iconPath; this.iconPath = iconPath;
this.color = color; this.color = color;
this.role = role;
this.coloredBG = coloredBG; this.coloredBG = coloredBG;
this.iconColor = this.coloredBG ? "#FFFFFF" : this.color; this.iconColor = this.coloredBG ? "#FFFFFF" : this.color;
@ -134,7 +128,7 @@ export class HeaderIcon extends LabelComponent
render = (args: LabelComponentRenderArgs): JSX.Element => render = (args: LabelComponentRenderArgs): JSX.Element =>
{ {
const styles: any = { const styles = {
width: "1.75rem", width: "1.75rem",
height: "1.75rem", height: "1.75rem",
color: this.iconColor, color: this.iconColor,
@ -142,12 +136,6 @@ export class HeaderIcon extends LabelComponent
borderRadius: "0.25rem" borderRadius: "0.25rem"
}; };
if (this.role == "topLeftInsideCard")
{
styles["order"] = -1;
styles["marginRight"] = "0.5rem";
}
if (this.iconPath) if (this.iconPath)
{ {
return (<Box sx={{textAlign: "center", ...styles}}><img src={this.iconPath} width="16" height="16" /></Box>); return (<Box sx={{textAlign: "center", ...styles}}><img src={this.iconPath} width="16" height="16" /></Box>);
@ -169,17 +157,15 @@ export class AddNewRecordButton extends LabelComponent
label: string; label: string;
defaultValues: any; defaultValues: any;
disabledFields: any; disabledFields: any;
addNewRecordCallback?: () => void;
constructor(table: QTableMetaData, defaultValues: any, label: string = "Add new", disabledFields: any = defaultValues, addNewRecordCallback?: () => void) constructor(table: QTableMetaData, defaultValues: any, label: string = "Add new", disabledFields: any = defaultValues)
{ {
super(); super();
this.table = table; this.table = table;
this.label = label; this.label = label;
this.defaultValues = defaultValues; this.defaultValues = defaultValues;
this.disabledFields = disabledFields; this.disabledFields = disabledFields;
this.addNewRecordCallback = addNewRecordCallback;
} }
openEditForm = (navigate: any, table: QTableMetaData, id: any = null, defaultValues: any, disabledFields: any) => openEditForm = (navigate: any, table: QTableMetaData, id: any = null, defaultValues: any, disabledFields: any) =>
@ -191,7 +177,7 @@ export class AddNewRecordButton extends LabelComponent
{ {
return ( return (
<Typography variant="body2" p={2} pr={0} display="inline" position="relative" top="-0.5rem"> <Typography variant="body2" p={2} pr={0} display="inline" position="relative" top="-0.5rem">
<Button sx={{mt: 0.75}} onClick={() => this.addNewRecordCallback ? this.addNewRecordCallback() : this.openEditForm(args.navigate, this.table, null, this.defaultValues, this.disabledFields)}>{this.label}</Button> <Button sx={{mt: 0.75}} onClick={() => this.openEditForm(args.navigate, this.table, null, this.defaultValues, this.disabledFields)}>{this.label}</Button>
</Typography> </Typography>
); );
}; };
@ -237,22 +223,22 @@ export class Dropdown extends LabelComponent
try try
{ {
const localStorageOption = JSON.parse(localStorage.getItem(localStorageKey)); const localStorageOption = JSON.parse(localStorage.getItem(localStorageKey));
if (localStorageOption) if(localStorageOption)
{ {
const id = localStorageOption.id; const id = localStorageOption.id;
for (let i = 0; i < this.options.length; i++) for (let i = 0; i < this.options.length; i++)
{ {
if (this.options[i].id == id) if (this.options[i].id == id)
{ {
defaultValue = this.options[i]; defaultValue = this.options[i]
args.dropdownData[args.componentIndex] = defaultValue?.id; args.dropdownData[args.componentIndex] = defaultValue?.id;
} }
} }
} }
} }
catch (e) catch(e)
{ {
console.log(`Error getting default value for dropdown [${this.dropdownName}] from local storage`, e); console.log(`Error getting default value for dropdown [${this.dropdownName}] from local storage`, e)
} }
} }
@ -263,7 +249,7 @@ export class Dropdown extends LabelComponent
{ {
for (let i = 0; i < this.options.length; i++) for (let i = 0; i < this.options.length; i++)
{ {
if (this.options[i].id == this.dropdownDefaultValue) if(this.options[i].id == this.dropdownDefaultValue)
{ {
defaultValue = this.options[i]; defaultValue = this.options[i];
args.dropdownData[args.componentIndex] = defaultValue?.id; args.dropdownData[args.componentIndex] = defaultValue?.id;
@ -331,13 +317,11 @@ export class ReloadControl extends LabelComponent
render = (args: LabelComponentRenderArgs): JSX.Element => render = (args: LabelComponentRenderArgs): JSX.Element =>
{ {
return (<Typography key={1} variant="body2" py={0} px={0} display="inline" position="relative" top="-0.25rem"> return (
<Tooltip title="Refresh"> <Typography variant="body2" py={2} px={0} display="inline" position="relative" top="-0.175rem">
<Button sx={{px: 1, py: 0, minWidth: "initial"}} onClick={() => this.callback()}> <Tooltip title="Refresh"><Button sx={{px: 1, py: 0, minWidth: "initial"}} onClick={() => this.callback()}><Icon sx={{color: colors.gray.main, fontSize: 1.125}}>refresh</Icon></Button></Tooltip>
<Icon sx={{color: colors.gray.main, fontSize: 1.125}}>refresh</Icon> </Typography>
</Button> );
</Tooltip>
</Typography>);
}; };
} }
@ -352,31 +336,15 @@ function Widget(props: React.PropsWithChildren<Props>): JSX.Element
{ {
const navigate = useNavigate(); const navigate = useNavigate();
const [dropdownData, setDropdownData] = useState([]); const [dropdownData, setDropdownData] = useState([]);
const [fullScreenWidgetClassName, setFullScreenWidgetClassName] = useState("");
const [reloading, setReloading] = useState(false); const [reloading, setReloading] = useState(false);
const [dropdownDataJSON, setDropdownDataJSON] = useState(""); const [dropdownDataJSON, setDropdownDataJSON] = useState("");
const [labelComponentsLeft, setLabelComponentsLeft] = useState([] as LabelComponent[]); const [labelComponentsLeft, setLabelComponentsLeft] = useState([] as LabelComponent[]);
const [labelComponentsRight, setLabelComponentsRight] = useState([] as LabelComponent[]); const [labelComponentsRight, setLabelComponentsRight] = useState([] as LabelComponent[]);
////////////////////////////////////////////////////////////////////////////////////////////////////////
// support for using widget (data) label as page header, w/o it disappearing if dropdowns are changed //
////////////////////////////////////////////////////////////////////////////////////////////////////////
const [lastSeenLabel, setLastSeenLabel] = useState("");
const [usingLabelAsTitle, setUsingLabelAsTitle] = useState(false);
const {helpHelpActive} = useContext(QContext);
function renderComponent(component: LabelComponent, componentIndex: number) function renderComponent(component: LabelComponent, componentIndex: number)
{ {
if (component && component.render) return component.render({navigate: navigate, widgetProps: props, dropdownData: dropdownData, componentIndex: componentIndex, reloadFunction: doReload});
{
return component.render({navigate: navigate, widgetProps: props, dropdownData: dropdownData, componentIndex: componentIndex, reloadFunction: doReload});
}
else
{
console.log("Request to render a null component or component without a render function...");
console.log(JSON.stringify(component));
return (<></>);
}
} }
useEffect(() => useEffect(() =>
@ -403,7 +371,7 @@ function Widget(props: React.PropsWithChildren<Props>): JSX.Element
// for initial render, put right-components from props into the state variable // // for initial render, put right-components from props into the state variable //
///////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////////
const stateLabelComponentsRight = [] as LabelComponent[]; const stateLabelComponentsRight = [] as LabelComponent[];
// console.log(`${props.widgetMetaData.name} initiating right-components`); // console.log(`${props.widgetMetaData.name} init'ing right-components`);
if (props.labelAdditionalComponentsRight) if (props.labelAdditionalComponentsRight)
{ {
props.labelAdditionalComponentsRight.map((component) => stateLabelComponentsRight.push(component)); props.labelAdditionalComponentsRight.map((component) => stateLabelComponentsRight.push(component));
@ -437,14 +405,11 @@ function Widget(props: React.PropsWithChildren<Props>): JSX.Element
{ {
// console.log(`${props.widgetMetaData.name} building a Dropdown, data is: ${dropdownData}`); // console.log(`${props.widgetMetaData.name} building a Dropdown, data is: ${dropdownData}`);
let defaultValue = null; let defaultValue = null;
if (props.widgetData.dropdownDefaultValueList && props.widgetData.dropdownDefaultValueList.length >= index) if(props.widgetData.dropdownDefaultValueList && props.widgetData.dropdownDefaultValueList.length >= index)
{ {
defaultValue = props.widgetData.dropdownDefaultValueList[index]; defaultValue = props.widgetData.dropdownDefaultValueList[index];
} }
if (props.widgetData?.dropdownLabelList && props.widgetData?.dropdownLabelList[index] && props.widgetMetaData?.dropdowns && props.widgetMetaData?.dropdowns[index] && props.widgetData?.dropdownNameList && props.widgetData?.dropdownNameList[index]) updatedStateLabelComponentsRight.push(new Dropdown(props.widgetData.dropdownLabelList[index], props.widgetMetaData.dropdowns[index], dropdownData, defaultValue, props.widgetData.dropdownNameList[index], handleDataChange));
{
updatedStateLabelComponentsRight.push(new Dropdown(props.widgetData.dropdownLabelList[index], props.widgetMetaData.dropdowns[index], dropdownData, defaultValue, props.widgetData.dropdownNameList[index], handleDataChange));
}
}); });
setLabelComponentsRight(updatedStateLabelComponentsRight); setLabelComponentsRight(updatedStateLabelComponentsRight);
} }
@ -535,35 +500,18 @@ function Widget(props: React.PropsWithChildren<Props>): JSX.Element
} }
}; };
const onExportClick = () => const toggleFullScreenWidget = () =>
{ {
if (props.widgetData?.csvData) if (fullScreenWidgetClassName)
{ {
const csv = WidgetUtils.widgetCsvDataToString(props.widgetData); setFullScreenWidgetClassName("");
const fileName = WidgetUtils.makeExportFileName(props.widgetData, props.widgetMetaData);
HtmlUtils.download(fileName, csv);
} }
else else
{ {
alert("There is no data available to export."); setFullScreenWidgetClassName("fullScreenWidget");
} }
}; };
///////////////////////////////////////////////////////////////////////////////////////////////////////
// add the export button to the label's left elements, if the meta-data says to show it //
// don't do this for 2 types which themselves add the button (and have custom code to do the export) //
///////////////////////////////////////////////////////////////////////////////////////////////////////
let localLabelAdditionalElementsLeft = [...props.labelAdditionalElementsLeft];
if (props.widgetMetaData?.showExportButton && props.widgetMetaData?.type !== "table" && props.widgetMetaData?.type !== "childRecordList")
{
if (!localLabelAdditionalElementsLeft)
{
localLabelAdditionalElementsLeft = [];
}
localLabelAdditionalElementsLeft.push(WidgetUtils.generateExportButton(onExportClick));
}
const hasPermission = props.widgetData?.hasPermission === undefined || props.widgetData?.hasPermission === true; const hasPermission = props.widgetData?.hasPermission === undefined || props.widgetData?.hasPermission === true;
const isSet = (v: any): boolean => const isSet = (v: any): boolean =>
@ -578,129 +526,85 @@ function Widget(props: React.PropsWithChildren<Props>): JSX.Element
if (hasPermission) if (hasPermission)
{ {
needLabelBox ||= (labelComponentsLeft && labelComponentsLeft.length > 0); needLabelBox ||= (labelComponentsLeft && labelComponentsLeft.length > 0);
needLabelBox ||= (localLabelAdditionalElementsLeft && localLabelAdditionalElementsLeft.length > 0); needLabelBox ||= (props.labelAdditionalElementsLeft && props.labelAdditionalElementsLeft.length > 0);
needLabelBox ||= (labelComponentsRight && labelComponentsRight.length > 0); needLabelBox ||= (labelComponentsRight && labelComponentsRight.length > 0);
needLabelBox ||= isSet(props.widgetData?.icon); needLabelBox ||= isSet(props.widgetMetaData?.icon);
needLabelBox ||= isSet(props.widgetData?.label); needLabelBox ||= isSet(props.widgetData?.label);
needLabelBox ||= isSet(props.widgetMetaData?.label); needLabelBox ||= isSet(props.widgetMetaData?.label);
} }
////////////////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////////////////
// first look for a label in the widget data, which would override that in the metadata // // first look for a label in the widget data, which would override that in the metadata //
// note - previously this had a ?: and one was pl={2}, the other was pl={3}... //
////////////////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////////////////
const isParentWidget = props.widgetMetaData.type == "parentWidget"; // todo - do we need to know top-level parent, vs. a nested parent? const labelToUse = props.widgetData?.label ?? props.widgetMetaData?.label;
let labelToUse = props.widgetData?.label ?? props.widgetMetaData?.label;
if (!labelToUse)
{
/////////////////////////////////////////////////////////////////////////////////////////////
// prevent the label from disappearing, especially when it's being used as the page header //
/////////////////////////////////////////////////////////////////////////////////////////////
if (lastSeenLabel && isParentWidget && usingLabelAsTitle)
{
labelToUse = lastSeenLabel;
}
}
let labelElement = ( let labelElement = (
<Typography sx={{cursor: "default", pl: "auto", fontWeight: 600}} variant={isParentWidget && (props.widgetData.isLabelPageTitle || usingLabelAsTitle) ? "h3" : "h6"} display="inline"> <Typography sx={{cursor: "default", pl: "auto", pt: props.widgetMetaData.type == "parentWidget" ? "1rem" : "auto", fontWeight: 600}} variant="h6" display="inline">
{labelToUse} {labelToUse}
</Typography> </Typography>
); );
let sublabelElement = ( if (props.widgetMetaData.tooltip)
<Box height="20px">
<Typography sx={{position: "relative", top: "-18px"}} variant="caption">
{props.widgetData?.sublabel}
</Typography>
</Box>
);
if (labelToUse && labelToUse != lastSeenLabel)
{ {
setLastSeenLabel(labelToUse); labelElement = <Tooltip title={props.widgetMetaData.tooltip} arrow={false} followCursor={true} placement="bottom-start">{labelElement}</Tooltip>;
setUsingLabelAsTitle(props.widgetData.isLabelPageTitle);
} }
const helpRoles = ["ALL_SCREENS"]
const slotName = "label";
const showHelp = helpHelpActive || hasHelpContent(props.widgetMetaData?.helpContent?.get(slotName), helpRoles);
if(showHelp)
{
const formattedHelpContent = <HelpContent helpContents={props.widgetMetaData?.helpContent?.get(slotName)} roles={helpRoles} helpContentKey={`widget:${props.widgetMetaData?.name};slot:${slotName}`} />;
labelElement = <Tooltip title={formattedHelpContent} arrow={true} placement="bottom-start">{labelElement}</Tooltip>;
}
else if (props.widgetMetaData?.tooltip)
{
labelElement = <Tooltip title={props.widgetMetaData.tooltip} arrow={true} placement="bottom-start">{labelElement}</Tooltip>;
}
const isTable = props.widgetMetaData.type == "table";
const errorLoading = props.widgetData?.errorLoading !== undefined && props.widgetData?.errorLoading === true; const errorLoading = props.widgetData?.errorLoading !== undefined && props.widgetData?.errorLoading === true;
const widgetContent = const widgetContent =
<Box sx={{width: "100%", height: "100%", minHeight: props.widgetMetaData?.minHeight ? props.widgetMetaData?.minHeight : "initial"}}> <Box sx={{width: "100%", height: "100%", minHeight: props.widgetMetaData?.minHeight ? props.widgetMetaData?.minHeight : "initial"}}>
{ {
needLabelBox && needLabelBox &&
<Box display="flex" justifyContent="space-between" alignItems="flex-start" sx={{width: "100%", ...props.labelBoxAdditionalSx}} minHeight={"2.5rem"}> <Box display="flex" justifyContent="space-between" alignItems="flex-start" sx={{width: "100%", ...props.labelBoxAdditionalSx}} minHeight={"2.5rem"}>
<Box display="flex" flexDirection="column"> <Box>
<Box display="flex" alignItems="baseline"> {
{ hasPermission ?
hasPermission ? props.widgetMetaData?.icon && (
props.widgetMetaData?.icon && ( <Box ml={1} mr={2} mt={-4} sx={{
<Box ml={1} mr={2} mt={-4} sx={{ display: "flex",
display: "flex", justifyContent: "center",
justifyContent: "center", alignItems: "center",
alignItems: "center", width: "64px",
width: "64px", height: "64px",
height: "64px", borderRadius: "8px",
borderRadius: "8px", background: colors.info.main,
background: colors.info.main, color: "#ffffff",
color: "#ffffff", float: "left"
float: "left" }}
}} >
> <Icon fontSize="medium" color="inherit">
<Icon fontSize="medium" color="inherit"> {props.widgetMetaData.icon}
{props.widgetMetaData.icon} </Icon>
</Icon> </Box>
</Box> ) :
) : (
( <Box ml={3} mt={-4} sx={{
<Box ml={3} mt={-4} sx={{ display: "flex",
display: "flex", justifyContent: "center",
justifyContent: "center", alignItems: "center",
alignItems: "center", width: "64px",
width: "64px", height: "64px",
height: "64px", borderRadius: "8px",
borderRadius: "8px", background: colors.info.main,
background: colors.info.main, color: "#ffffff",
color: "#ffffff", float: "left"
float: "left" }}
}} >
> <Icon fontSize="medium" color="inherit">lock</Icon>
<Icon fontSize="medium" color="inherit">lock</Icon> </Box>
</Box>
)
}
{
hasPermission && labelToUse && (labelElement)
}
{
hasPermission && (
labelComponentsLeft.map((component, i) =>
{
return (<React.Fragment key={i}>{renderComponent(component, i)}</React.Fragment>);
})
) )
} }
{localLabelAdditionalElementsLeft} {
</Box> hasPermission && labelToUse && (labelElement)
<Box display="flex"> }
{ {
hasPermission && props.widgetData?.sublabel && (sublabelElement) hasPermission && (
} labelComponentsLeft.map((component, i) =>
</Box> {
return (<span key={i}>{renderComponent(component, i)}</span>);
})
)
}
{props.labelAdditionalElementsLeft}
</Box> </Box>
<Box> <Box>
{ {
@ -746,27 +650,17 @@ function Widget(props: React.PropsWithChildren<Props>): JSX.Element
} }
{ {
!errorLoading && props?.footerHTML && ( !errorLoading && props?.footerHTML && (
<Box mt={isTable ? "36px" : 1} ml={isTable ? 0 : 3} mr={isTable ? 0 : 3} mb={isTable ? "-12px" : 2} sx={{fontWeight: 300, color: "#7b809a", display: "flex", alignContent: "flex-end", fontSize: "14px"}}>{parse(props.footerHTML)}</Box> <Box mt={1} ml={3} mr={3} mb={2} sx={{fontWeight: 300, color: "#7b809a", display: "flex", alignContent: "flex-end", fontSize: "14px"}}>{parse(props.footerHTML)}</Box>
) )
} }
</Box>; </Box>;
const padding = props.omitPadding ? "auto" : "24px 16px"; const padding = props.omitPadding ? "auto" : "24px 16px";
///////////////////////////////////////////////////
// try to make tables fill their entire "parent" //
///////////////////////////////////////////////////
let noCardMarginBottom = "unset";
if (isTable)
{
noCardMarginBottom = "-8px";
}
return props.widgetMetaData?.isCard return props.widgetMetaData?.isCard
? <Card sx={{marginTop: props.widgetMetaData?.icon ? 2 : 0, width: "100%", p: padding}} className="widget inCard"> ? <Card sx={{marginTop: props.widgetMetaData?.icon ? 2 : 0, width: "100%", p: padding}} className={fullScreenWidgetClassName}>
{widgetContent} {widgetContent}
</Card> </Card>
: <span style={{width: "100%", padding: padding, marginBottom: noCardMarginBottom}} className="widget noCard">{widgetContent}</span>; : <span style={{width: "100%", padding: padding}}>{widgetContent}</span>;
} }
export default Widget; export default Widget;

View File

@ -1,90 +0,0 @@
/*
* QQQ - Low-code Application Framework for Engineers.
* Copyright (C) 2021-2024. 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 {QWidgetMetaData} from "@kingsrook/qqq-frontend-core/lib/model/metaData/QWidgetMetaData";
import {Alert, Skeleton} from "@mui/material";
import React from "react";
import BigNumberBlock from "qqq/components/widgets/blocks/BigNumberBlock";
import {BlockData} from "qqq/components/widgets/blocks/BlockModels";
import DividerBlock from "qqq/components/widgets/blocks/DividerBlock";
import NumberIconBadgeBlock from "qqq/components/widgets/blocks/NumberIconBadgeBlock";
import ProgressBarBlock from "qqq/components/widgets/blocks/ProgressBarBlock";
import TableSubRowDetailRowBlock from "qqq/components/widgets/blocks/TableSubRowDetailRowBlock";
import TextBlock from "qqq/components/widgets/blocks/TextBlock";
import UpOrDownNumberBlock from "qqq/components/widgets/blocks/UpOrDownNumberBlock";
import CompositeWidget from "qqq/components/widgets/CompositeWidget";
interface WidgetBlockProps
{
widgetMetaData: QWidgetMetaData;
block: BlockData;
}
/*******************************************************************************
** Component to render a single Block in the widget framework!
*******************************************************************************/
export default function WidgetBlock({widgetMetaData, block}: WidgetBlockProps): JSX.Element
{
if(!block)
{
return (<Skeleton />);
}
if(!block.values)
{
block.values = {};
}
if(!block.styles)
{
block.styles = {};
}
if(block.blockTypeName == "COMPOSITE")
{
// @ts-ignore - special case for composite type block...
return (<CompositeWidget widgetMetaData={widgetMetaData} data={block} />);
}
switch(block.blockTypeName)
{
case "TEXT":
return (<TextBlock widgetMetaData={widgetMetaData} data={block} />);
case "NUMBER_ICON_BADGE":
return (<NumberIconBadgeBlock widgetMetaData={widgetMetaData} data={block} />);
case "UP_OR_DOWN_NUMBER":
return (<UpOrDownNumberBlock widgetMetaData={widgetMetaData} data={block} />);
case "TABLE_SUB_ROW_DETAIL_ROW":
return (<TableSubRowDetailRowBlock widgetMetaData={widgetMetaData} data={block} />);
case "PROGRESS_BAR":
return (<ProgressBarBlock widgetMetaData={widgetMetaData} data={block} />);
case "DIVIDER":
return (<DividerBlock widgetMetaData={widgetMetaData} data={block} />);
case "BIG_NUMBER":
return (<BigNumberBlock widgetMetaData={widgetMetaData} data={block} />);
default:
return (<Alert sx={{m: "0.5rem"}} color="warning">Unsupported block type: {block.blockTypeName}</Alert>)
}
}

View File

@ -1,100 +0,0 @@
/*
* QQQ - Low-code Application Framework for Engineers.
* Copyright (C) 2021-2024. 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 {QWidgetMetaData} from "@kingsrook/qqq-frontend-core/lib/model/metaData/QWidgetMetaData";
import Button from "@mui/material/Button";
import Icon from "@mui/material/Icon";
import Tooltip from "@mui/material/Tooltip/Tooltip";
import Typography from "@mui/material/Typography";
import React from "react";
import colors from "qqq/assets/theme/base/colors";
import {WidgetData} from "qqq/components/widgets/Widget";
import ValueUtils from "qqq/utils/qqq/ValueUtils";
/*******************************************************************************
** Utility class used by Widgets
**
*******************************************************************************/
export class WidgetUtils
{
/*******************************************************************************
**
*******************************************************************************/
public static generateExportButton = (onExportClick: () => void): JSX.Element =>
{
return (<Typography key={1} variant="body2" py={0} px={0} display="inline" position="relative" top="-0.25rem">
<Tooltip title="Export">
<Button sx={{px: 1, py: 0, minWidth: "initial"}} onClick={onExportClick} disabled={false}>
<Icon sx={{color: colors.gray.main, fontSize: 1.125}}>save_alt</Icon>
</Button>
</Tooltip>
</Typography>);
};
/*******************************************************************************
**
*******************************************************************************/
public static widgetCsvDataToString = (data: WidgetData): string =>
{
function isNumeric(x: any)
{
return !isNaN(Number(x));
}
let csv = "";
for (let i = 0; i < data.csvData.length; i++)
{
for (let j = 0; j < data.csvData[i].length; j++)
{
if (j > 0)
{
csv += ",";
}
let cell = data.csvData[i][j];
if (cell && isNumeric(String(cell)))
{
csv += cell;
}
else
{
csv += `"${ValueUtils.cleanForCsv(cell)}"`;
}
}
csv += "\n";
}
return (csv);
};
/*******************************************************************************
**
*******************************************************************************/
public static makeExportFileName = (data: WidgetData, widgetMetaData: QWidgetMetaData): string =>
{
const fileName = (data?.label ?? widgetMetaData.label) + " " + ValueUtils.formatDateTimeForFileName(new Date()) + ".csv";
return (fileName);
};
}

View File

@ -1,67 +0,0 @@
/*
* QQQ - Low-code Application Framework for Engineers.
* Copyright (C) 2021-2024. 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 BlockElementWrapper from "qqq/components/widgets/blocks/BlockElementWrapper";
import {StandardBlockComponentProps} from "qqq/components/widgets/blocks/BlockModels";
/*******************************************************************************
** Block that renders ... a big number, optionally with some other stuff.
**
** ${heading}
** ${number} ${context}
*******************************************************************************/
export default function BigNumberBlock({widgetMetaData, data}: StandardBlockComponentProps): JSX.Element
{
let flexJustifyContent = "normal";
let flexAlignItems = "baseline";
return (
<div style={{width: data.styles.width ?? "auto"}}>
<div style={{fontWeight: "700", fontSize: "0.875rem", color: "#3D3D3D", marginBottom: "-0.5rem"}}>
<BlockElementWrapper metaData={widgetMetaData} data={data} slot="heading">
<span>{data.values.heading}</span>
</BlockElementWrapper>
</div>
<div style={{display: "flex", alignItems: flexAlignItems, justifyContent: flexJustifyContent}}>
<div style={{display: "flex", alignItems: "baseline"}}>
<div style={{fontWeight: "700", fontSize: "2rem", marginRight: "0.25rem"}}>
<BlockElementWrapper metaData={widgetMetaData} data={data} slot="number">
<span style={{color: data.styles.numberColor}}>{data.values.number}</span>
</BlockElementWrapper>
</div>
{
data.values.context &&
<div style={{fontWeight: "500", fontSize: "0.875rem", color: "#7b809a"}}>
<BlockElementWrapper metaData={widgetMetaData} data={data} slot="context">
<span>{data.values.context}</span>
</BlockElementWrapper>
</div>
}
</div>
</div>
</div>
);
}

View File

@ -1,106 +0,0 @@
/*
* QQQ - Low-code Application Framework for Engineers.
* Copyright (C) 2021-2024. 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 {QWidgetMetaData} from "@kingsrook/qqq-frontend-core/lib/model/metaData/QWidgetMetaData";
import {Tooltip} from "@mui/material";
import React, {ReactElement, useContext} from "react";
import {Link} from "react-router-dom";
import QContext from "QContext";
import HelpContent, {hasHelpContent} from "qqq/components/misc/HelpContent";
import {BlockData, BlockLink, BlockTooltip} from "qqq/components/widgets/blocks/BlockModels";
interface BlockElementWrapperProps
{
data: BlockData;
metaData: QWidgetMetaData;
slot: string
linkProps?: any;
children: ReactElement;
}
/*******************************************************************************
** For Blocks - wrap their "slot" elements with an optional tooltip and/or link
*******************************************************************************/
export default function BlockElementWrapper({data, metaData, slot, linkProps, children}: BlockElementWrapperProps): JSX.Element
{
const {helpHelpActive} = useContext(QContext);
let link: BlockLink;
let tooltip: BlockTooltip;
if(slot)
{
link = data.linkMap && data.linkMap[slot.toUpperCase()];
if(!link)
{
link = data.link;
}
tooltip = data.tooltipMap && data.tooltipMap[slot.toUpperCase()];
if(!tooltip)
{
tooltip = data.tooltip;
}
}
else
{
link = data.link;
tooltip = data.tooltip;
}
if(!tooltip)
{
const helpRoles = ["ALL_SCREENS"]
///////////////////////////////////////////////////////////////////////////////////////////////
// the full keys in the helpContent table will look like: //
// widget:MyCoolWidget;slot=myBlockId,label (if the block has a blockId in data) //
// widget:MyCoolWidget;slot=label (no blockId; note, label is slot name here) //
// in the widget metaData, the map of helpContent will just have the "slot" portion as a key //
///////////////////////////////////////////////////////////////////////////////////////////////
const key = data.blockId ? `${data.blockId},${slot}` : slot;
const showHelp = helpHelpActive || hasHelpContent(metaData?.helpContent?.get(key), helpRoles);
if(showHelp)
{
const formattedHelpContent = <HelpContent helpContents={metaData?.helpContent?.get(key)} roles={helpRoles} helpContentKey={`widget:${metaData?.name};slot:${key}`} />;
tooltip = {title: formattedHelpContent, placement: "bottom"}
}
}
let rs = children;
if(link)
{
rs = <Link to={link.href} target={link.target} style={{color: "#546E7A"}} {...linkProps}>{rs}</Link>
}
if(tooltip)
{
let placement = tooltip.placement ? tooltip.placement.toLowerCase() : "bottom"
// @ts-ignore - placement possible values
rs = <Tooltip title={tooltip.title} placement={placement}>{rs}</Tooltip>
}
return (rs);
}

View File

@ -1,59 +0,0 @@
/*
* QQQ - Low-code Application Framework for Engineers.
* Copyright (C) 2021-2024. 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 {QWidgetMetaData} from "@kingsrook/qqq-frontend-core/lib/model/metaData/QWidgetMetaData";
export interface BlockData
{
blockId?: string;
blockTypeName: string;
tooltip?: BlockTooltip;
link?: BlockLink;
tooltipMap?: {[slot: string]: BlockTooltip};
linkMap?: {[slot: string]: BlockLink};
values: any;
styles?: any;
}
export interface BlockTooltip
{
title: string | JSX.Element;
placement: string;
}
export interface BlockLink
{
href: string;
target: string;
}
export interface StandardBlockComponentProps
{
widgetMetaData: QWidgetMetaData;
data: BlockData;
}

View File

@ -1,33 +0,0 @@
/*
* QQQ - Low-code Application Framework for Engineers.
* Copyright (C) 2021-2024. 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 {StandardBlockComponentProps} from "qqq/components/widgets/blocks/BlockModels";
/*******************************************************************************
** Block that renders a simple dividing line
** margins & width are set such that it covers the padding of a card.
** if we need to use it differently, a style attribute should be added to its backend data.
*******************************************************************************/
export default function DividerBlock({}: StandardBlockComponentProps): JSX.Element
{
return (<div style={{margin: "1rem -1rem", width: "calc(100% + 2rem)", borderBottom: "1px solid #E0E0E0"}} />);
}

View File

@ -1,48 +0,0 @@
/*
* QQQ - Low-code Application Framework for Engineers.
* Copyright (C) 2021-2024. 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 Icon from "@mui/material/Icon";
import BlockElementWrapper from "qqq/components/widgets/blocks/BlockElementWrapper";
import {StandardBlockComponentProps} from "qqq/components/widgets/blocks/BlockModels";
/*******************************************************************************
** Block that renders ... a number, and an icon, like a badge.
**
** ${number} ${icon}
*******************************************************************************/
export default function NumberIconBadgeBlock({widgetMetaData, data}: StandardBlockComponentProps): JSX.Element
{
return (
<div style={{display: "inline-block", whiteSpace: "nowrap", color: data.styles.color}}>
{
data.values.number &&
<BlockElementWrapper metaData={widgetMetaData} data={data} slot="number">
<span style={{color: data.styles.color, fontSize: "0.875rem"}}>{data.values.number}</span>
</BlockElementWrapper>
}
{
data.values.iconName &&
<BlockElementWrapper metaData={widgetMetaData} data={data} slot="icon">
<Icon style={{color: data.styles.color, fontSize: "1rem", position: "relative", top: "3px"}}>{data.values.iconName}</Icon>
</BlockElementWrapper>
}
</div>);
}

View File

@ -1,70 +0,0 @@
/*
* QQQ - Low-code Application Framework for Engineers.
* Copyright (C) 2021-2024. 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 Typography from "@mui/material/Typography";
import BlockElementWrapper from "qqq/components/widgets/blocks/BlockElementWrapper";
import {StandardBlockComponentProps} from "qqq/components/widgets/blocks/BlockModels";
/*******************************************************************************
** Block that renders a progress bar!
**
** Values:
** ${heading}
** [${percent}===___] ${value ?? percent}
**
** Slots:
** ${heading}
** ${bar} ${value}
*******************************************************************************/
export default function ProgressBarBlock({widgetMetaData, data}: StandardBlockComponentProps): JSX.Element
{
return (
<Typography component="div" variant="button" color="text" fontWeight="light" sx={{textTransform: "none"}}>
{
data.values.heading &&
<div style={{marginBottom: "0.25rem", fontWeight: 500, color: "#3D3D3D"}}>
<BlockElementWrapper metaData={widgetMetaData} data={data} slot="heading">
<span>{data.values.heading}</span>
</BlockElementWrapper>
</div>
}
<div style={{display: "flex", alignItems: "center", marginBottom: "0.75rem"}}>
<BlockElementWrapper metaData={widgetMetaData} data={data} slot="bar" linkProps={{style: {width: "100%"}}}>
<div style={{background: "#E0E0E0", width: "100%", borderRadius: "0.5rem", height: "1rem"}}>
{
data.values.percent > 0 ? <div style={{background: data.styles.barColor ?? "#0062ff", minWidth: "1rem", width: `${data.values.percent}%`, borderRadius: "0.5rem", height: "1rem"}}></div> : <></>
}
</div>
</BlockElementWrapper>
<div style={{width: "60px", textAlign: "right", fontWeight: 600, color: "#3D3D3D"}}>
<BlockElementWrapper metaData={widgetMetaData} data={data} slot="value">
<span>{data.values.value ?? `${(data.values.percent as number).toFixed(1)}%`}</span>
</BlockElementWrapper>
</div>
</div>
</Typography>);
}

View File

@ -1,54 +0,0 @@
/*
* QQQ - Low-code Application Framework for Engineers.
* Copyright (C) 2021-2024. 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 BlockElementWrapper from "qqq/components/widgets/blocks/BlockElementWrapper";
import {StandardBlockComponentProps} from "qqq/components/widgets/blocks/BlockModels";
/*******************************************************************************
** Block that renders a label & value, meant to be used as a detail-row in a
** sub-row within a table widget
**
** ${label} ${value}
*******************************************************************************/
export default function TableSubRowDetailRowBlock({widgetMetaData, data}: StandardBlockComponentProps): JSX.Element
{
return (
<div style={{display: "flex", maxWidth: "calc(100% - 24px)", justifyContent: "space-between"}}>
{
data.values.label &&
<div style={{overflow: "hidden", whiteSpace: "nowrap", textOverflow: "ellipsis"}}>
<BlockElementWrapper metaData={widgetMetaData} data={data} slot="label">
<span style={{color: data.styles.labelColor}}>{data.values.label}</span>
</BlockElementWrapper>
</div>
}
{
data.values.value &&
<BlockElementWrapper metaData={widgetMetaData} data={data} slot="value">
<span style={{color: data.styles.valueColor}}>{data.values.value}</span>
</BlockElementWrapper>
}
</div>
);
}

View File

@ -1,37 +0,0 @@
/*
* QQQ - Low-code Application Framework for Engineers.
* Copyright (C) 2021-2024. 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 BlockElementWrapper from "qqq/components/widgets/blocks/BlockElementWrapper";
import {StandardBlockComponentProps} from "qqq/components/widgets/blocks/BlockModels";
/*******************************************************************************
** Block that renders ... just some text.
**
** ${text}
*******************************************************************************/
export default function TextBlock({widgetMetaData, data}: StandardBlockComponentProps): JSX.Element
{
return (
<BlockElementWrapper metaData={widgetMetaData} data={data} slot="">
<span>{data.values.text}</span>
</BlockElementWrapper>
);
}

View File

@ -1,81 +0,0 @@
/*
* QQQ - Low-code Application Framework for Engineers.
* Copyright (C) 2021-2024. 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 Icon from "@mui/material/Icon";
import React from "react";
import BlockElementWrapper from "qqq/components/widgets/blocks/BlockElementWrapper";
import {StandardBlockComponentProps} from "qqq/components/widgets/blocks/BlockModels";
/*******************************************************************************
** Block that renders an up/down icon, a number, and some context
**
** ${icon} ${number} ${context}
*
** or, if style.isStacked:
*
** ${icon} ${number}
** ${context}
*******************************************************************************/
export default function UpOrDownNumberBlock({widgetMetaData, data}: StandardBlockComponentProps): JSX.Element
{
if (!data.styles)
{
data.styles = {};
}
if (!data.values)
{
data.values = {};
}
const UP_ICON = "arrow_drop_up";
const DOWN_ICON = "arrow_drop_down";
const defaultGreenColor = "#2BA83F";
const defaultRedColor = "#FB4141";
const goodOrBadColor = data.styles.colorOverride ?? (data.values.isGood ? defaultGreenColor : defaultRedColor);
const iconName = data.values.isUp ? UP_ICON : DOWN_ICON;
return (
<>
<div style={{display: "flex", flexDirection: data.styles.isStacked ? "column" : "row", alignItems: data.styles.isStacked ? "flex-end" : "baseline"}}>
<div style={{display: "flex", alignItems: "baseline", fontWeight: 700, fontSize: ".875rem"}}>
<BlockElementWrapper metaData={widgetMetaData} data={data} slot="number">
<>
<Icon sx={{color: goodOrBadColor, alignSelf: "flex-end", fontSize: "2.25rem !important", lineHeight: "0.875rem", height: "1rem", width: "2rem",}}>{iconName}</Icon>
<span style={{color: goodOrBadColor}}>{data.values.number}</span>
</>
</BlockElementWrapper>
</div>
<div style={{fontWeight: 500, fontSize: "0.875rem", color: "#7b809a", marginLeft: "0.25rem"}}>
<BlockElementWrapper metaData={widgetMetaData} data={data} slot="context">
<span>{data.values.context}</span>
</BlockElementWrapper>
</div>
</div>
</>
);
}

View File

@ -39,79 +39,65 @@ ChartJS.register(
Legend Legend
); );
export const makeOptions = (data: DefaultChartData) => export const options = {
{ maintainAspectRatio: false,
return({ responsive: true,
maintainAspectRatio: false, animation: {
responsive: true, duration: 0
animation: { },
duration: 0 elements: {
}, bar: {
elements: { borderRadius: 4
bar: { }
borderRadius: 4 },
} plugins: {
}, tooltip: {
onHover: function (event: any, elements: any[], chart: any) // todo - some configs around this
{ callbacks: {
if(event.type == "mousemove" && elements.length > 0 && data.urls && data.urls.length > elements[0].index && data.urls[elements[0].index]) title: function(context: any)
{ {
chart.canvas.style.cursor = "pointer"; return ("");
} },
else label: function(context: any)
{ {
chart.canvas.style.cursor = "default"; if(context.dataset.label.startsWith(context.label))
} {
}, return `${context.label}: ${context.formattedValue}`;
plugins: { }
tooltip: { else
// todo - some configs around this
callbacks: {
title: function(context: any)
{ {
return (""); return ("");
},
label: function(context: any)
{
if(context.dataset.label.startsWith(context.label))
{
return `${context.label}: ${context.formattedValue}`;
}
else
{
return ("");
}
}
}
},
legend: {
position: "bottom",
labels: {
usePointStyle: true,
pointStyle: "circle",
boxHeight: 6,
boxWidth: 6,
padding: 12,
font: {
size: 14
} }
} }
} }
}, },
scales: { legend: {
x: { position: "bottom",
stacked: true, labels: {
grid: {display: false}, usePointStyle: true,
ticks: {autoSkip: false, maxRotation: 90} pointStyle: "circle",
}, boxHeight: 6,
y: { boxWidth: 6,
stacked: true, padding: 12,
position: "right", font: {
ticks: {precision: 0} size: 14
}, }
}
}
},
scales: {
x: {
stacked: true,
grid: {display: false},
ticks: {autoSkip: false, maxRotation: 90}
}, },
}); y: {
} stacked: true,
position: "right",
ticks: {precision: 0}
},
},
};
interface Props interface Props
{ {
@ -165,7 +151,7 @@ function StackedBarChart({data, chartSubheaderData}: Props): JSX.Element
<Box> <Box>
{chartSubheaderData && (<ChartSubheaderWithData chartSubheaderData={chartSubheaderData} />)} {chartSubheaderData && (<ChartSubheaderWithData chartSubheaderData={chartSubheaderData} />)}
<Box width="100%" height="300px"> <Box width="100%" height="300px">
<Bar data={data} options={makeOptions(data)} getElementsAtEvent={handleClick} /> <Bar data={data} options={options} getElementsAtEvent={handleClick} />
</Box> </Box>
</Box> </Box>
) : <Skeleton sx={{marginLeft: "20px", marginRight: "20px", height: "200px"}} />; ) : <Skeleton sx={{marginLeft: "20px", marginRight: "20px", height: "200px"}} />;

View File

@ -70,7 +70,7 @@ function PieChart({description, chartData, chartSubheaderData}: Props): JSX.Elem
chartData.dataset.backgroundColors = chartColors; chartData.dataset.backgroundColors = chartColors;
} }
} }
const {data, options} = configs(chartData?.labels || [], chartData?.dataset || {}, chartData?.dataset?.urls); const {data, options} = configs(chartData?.labels || [], chartData?.dataset || {});
useEffect(() => useEffect(() =>
{ {

View File

@ -23,7 +23,7 @@ import colors from "qqq/assets/theme/base/colors";
const {gradients, dark} = colors; const {gradients, dark} = colors;
function configs(labels: any, datasets: any, urls: string[] | undefined) function configs(labels: any, datasets: any)
{ {
const backgroundColors = []; const backgroundColors = [];
@ -66,17 +66,6 @@ function configs(labels: any, datasets: any, urls: string[] | undefined)
options: { options: {
maintainAspectRatio: false, maintainAspectRatio: false,
responsive: true, responsive: true,
onHover: function (event: any, elements: any[], chart: any)
{
if(event.type == "mousemove" && elements.length > 0 && urls && urls.length > elements[0].index && urls[elements[0].index])
{
chart.canvas.style.cursor = "pointer";
}
else
{
chart.canvas.style.cursor = "default";
}
},
plugins: { plugins: {
tooltip: { tooltip: {
callbacks: { callbacks: {

View File

@ -25,13 +25,14 @@ import {QCriteriaOperator} from "@kingsrook/qqq-frontend-core/lib/model/query/QC
import {QFilterCriteria} from "@kingsrook/qqq-frontend-core/lib/model/query/QFilterCriteria"; import {QFilterCriteria} from "@kingsrook/qqq-frontend-core/lib/model/query/QFilterCriteria";
import {QFilterOrderBy} from "@kingsrook/qqq-frontend-core/lib/model/query/QFilterOrderBy"; import {QFilterOrderBy} from "@kingsrook/qqq-frontend-core/lib/model/query/QFilterOrderBy";
import {QQueryFilter} from "@kingsrook/qqq-frontend-core/lib/model/query/QQueryFilter"; import {QQueryFilter} from "@kingsrook/qqq-frontend-core/lib/model/query/QQueryFilter";
import {Chip} from "@mui/material";
import Alert from "@mui/material/Alert"; import Alert from "@mui/material/Alert";
import Avatar from "@mui/material/Avatar"; import Avatar from "@mui/material/Avatar";
import Box from "@mui/material/Box"; import Box from "@mui/material/Box";
import Button from "@mui/material/Button"; import Button from "@mui/material/Button";
import Chip from "@mui/material/Chip";
import Divider from "@mui/material/Divider"; import Divider from "@mui/material/Divider";
import Grid from "@mui/material/Grid"; import Grid from "@mui/material/Grid";
import Icon from "@mui/material/Icon";
import List from "@mui/material/List"; import List from "@mui/material/List";
import ListItem from "@mui/material/ListItem"; import ListItem from "@mui/material/ListItem";
import ListItemAvatar from "@mui/material/ListItemAvatar"; import ListItemAvatar from "@mui/material/ListItemAvatar";
@ -41,6 +42,8 @@ import Snackbar from "@mui/material/Snackbar";
import Tab from "@mui/material/Tab"; import Tab from "@mui/material/Tab";
import Tabs from "@mui/material/Tabs"; import Tabs from "@mui/material/Tabs";
import Typography from "@mui/material/Typography"; import Typography from "@mui/material/Typography";
import React, {useReducer, useState} from "react";
import AceEditor from "react-ace";
import DataBagDataEditor, {DataBagDataEditorProps} from "qqq/components/databags/DataBagDataEditor"; import DataBagDataEditor, {DataBagDataEditorProps} from "qqq/components/databags/DataBagDataEditor";
import DataBagPreview from "qqq/components/databags/DataBagPreview"; import DataBagPreview from "qqq/components/databags/DataBagPreview";
import TabPanel from "qqq/components/misc/TabPanel"; import TabPanel from "qqq/components/misc/TabPanel";
@ -54,8 +57,6 @@ import "ace-builds/src-noconflict/mode-java";
import "ace-builds/src-noconflict/mode-javascript"; import "ace-builds/src-noconflict/mode-javascript";
import "ace-builds/src-noconflict/mode-json"; import "ace-builds/src-noconflict/mode-json";
import "ace-builds/src-noconflict/theme-github"; import "ace-builds/src-noconflict/theme-github";
import React, {useReducer, useState} from "react";
import AceEditor from "react-ace";
import "ace-builds/src-noconflict/ext-language_tools"; import "ace-builds/src-noconflict/ext-language_tools";
const qController = Client.getInstance(); const qController = Client.getInstance();
@ -63,11 +64,12 @@ const qController = Client.getInstance();
// Declaring props types for ViewForm // Declaring props types for ViewForm
interface Props interface Props
{ {
dataBagId: number; dataBagId: number
} }
DataBagViewer.defaultProps = DataBagViewer.defaultProps =
{}; {
};
export default function DataBagViewer({dataBagId}: Props): JSX.Element export default function DataBagViewer({dataBagId}: Props): JSX.Element
{ {
@ -75,12 +77,12 @@ export default function DataBagViewer({dataBagId}: Props): JSX.Element
const [asyncLoadInited, setAsyncLoadInited] = useState(false); const [asyncLoadInited, setAsyncLoadInited] = useState(false);
const [versionRecordList, setVersionRecordList] = useState(null as QRecord[]); const [versionRecordList, setVersionRecordList] = useState(null as QRecord[]);
const [selectedVersionRecord, setSelectedVersionRecord] = useState(null as QRecord); const [selectedVersionRecord, setSelectedVersionRecord] = useState(null as QRecord);
const [currentVersionId, setCurrentVersionId] = useState(null as number); const [currentVersionId , setCurrentVersionId] = useState(null as number);
const [notFoundMessage, setNotFoundMessage] = useState(null); const [notFoundMessage, setNotFoundMessage] = useState(null);
const [selectedTab, setSelectedTab] = useState(0); const [selectedTab, setSelectedTab] = useState(0);
const [editorProps, setEditorProps] = useState(null as DataBagDataEditorProps); const [editorProps, setEditorProps] = useState(null as DataBagDataEditorProps);
const [successText, setSuccessText] = useState(null as string); const [successText, setSuccessText] = useState(null as string);
const [failText, setFailText] = useState(null as string); const [failText, setFailText] = useState(null as string)
const [, forceUpdate] = useReducer((x) => x + 1, 0); const [, forceUpdate] = useReducer((x) => x + 1, 0);
const [loadingSelectedVersion, _] = useState(new LoadingState(forceUpdate, "loading")); const [loadingSelectedVersion, _] = useState(new LoadingState(forceUpdate, "loading"));
@ -98,13 +100,13 @@ export default function DataBagViewer({dataBagId}: Props): JSX.Element
const criteria = [new QFilterCriteria("dataBagId", QCriteriaOperator.EQUALS, [dataBagId])]; const criteria = [new QFilterCriteria("dataBagId", QCriteriaOperator.EQUALS, [dataBagId])];
const orderBys = [new QFilterOrderBy("sequenceNo", false)]; const orderBys = [new QFilterOrderBy("sequenceNo", false)];
const filter = new QQueryFilter(criteria, orderBys, null, "AND", 0, 25); const filter = new QQueryFilter(criteria, orderBys, "AND", 0, 25);
const versions = await qController.query("dataBagVersion", filter); const versions = await qController.query("dataBagVersion", filter);
console.log("Fetched versions:"); console.log("Fetched versions:");
console.log(versions); console.log(versions);
setVersionRecordList(versions); setVersionRecordList(versions);
if (versions && versions.length > 0) if(versions && versions.length > 0)
{ {
setCurrentVersionId(versions[0].values.get("id")); setCurrentVersionId(versions[0].values.get("id"));
const latestVersion = await qController.get("dataBagVersion", versions[0].values.get("id")); const latestVersion = await qController.get("dataBagVersion", versions[0].values.get("id"));
@ -360,7 +362,7 @@ export default function DataBagViewer({dataBagId}: Props): JSX.Element
<Typography variant="h6" pl={3}>Data Preview (Version {selectedVersionRecord?.values?.get("sequenceNo")})</Typography> <Typography variant="h6" pl={3}>Data Preview (Version {selectedVersionRecord?.values?.get("sequenceNo")})</Typography>
</Box> </Box>
<Box height="400px" overflow="auto" ml={1} fontSize="14px"> <Box height="400px" overflow="auto" ml={1} fontSize="14px">
{loadingSelectedVersion.isNotLoading() && selectedTab == 1 && selectedVersionRecord?.values?.get("data") && <DataBagPreview json={selectedVersionRecord?.values?.get("data")} />} {loadingSelectedVersion.isNotLoading() && selectedTab == 1 && selectedVersionRecord?.values?.get("data") && <DataBagPreview json={selectedVersionRecord?.values?.get("data")} /> }
{loadingSelectedVersion.isLoadingSlow() && <Box pl={3}>Loading...</Box>} {loadingSelectedVersion.isLoadingSlow() && <Box pl={3}>Loading...</Box>}
</Box> </Box>
</Grid> </Grid>
@ -375,7 +377,7 @@ export default function DataBagViewer({dataBagId}: Props): JSX.Element
<Modal open={editorProps !== null} onClose={(event, reason) => closeEditingScript(event, reason)}> <Modal open={editorProps !== null} onClose={(event, reason) => closeEditingScript(event, reason)}>
<DataBagDataEditor <DataBagDataEditor
closeCallback={closeEditingScript} closeCallback={closeEditingScript}
{...editorProps} {... editorProps}
/> />
</Modal> </Modal>
} }

View File

@ -25,53 +25,28 @@ import {QRecord} from "@kingsrook/qqq-frontend-core/lib/model/QRecord";
import Box from "@mui/material/Box"; import Box from "@mui/material/Box";
import Button from "@mui/material/Button"; import Button from "@mui/material/Button";
import Icon from "@mui/material/Icon"; import Icon from "@mui/material/Icon";
import IconButton from "@mui/material/IconButton";
import Tooltip from "@mui/material/Tooltip/Tooltip"; import Tooltip from "@mui/material/Tooltip/Tooltip";
import Typography from "@mui/material/Typography"; import Typography from "@mui/material/Typography";
import {DataGridPro, GridCallbackDetails, GridEventListener, GridRenderCellParams, GridRowParams, GridToolbarContainer, MuiEvent, useGridApiContext, useGridApiEventHandler} from "@mui/x-data-grid-pro"; import {DataGridPro, GridCallbackDetails, GridEventListener, GridFilterModel, gridPreferencePanelStateSelector, GridRowParams, GridSelectionModel, GridToolbarColumnsButton, GridToolbarContainer, GridToolbarDensitySelector, GridToolbarExportContainer, GridToolbarFilterButton, MuiEvent, useGridApiContext, useGridApiEventHandler, useGridSelector} from "@mui/x-data-grid-pro";
import Widget, {AddNewRecordButton, LabelComponent, WidgetData} from "qqq/components/widgets/Widget"; import React, {useEffect, useRef, useState} from "react";
import {useNavigate, Link} from "react-router-dom";
import Widget, {AddNewRecordButton, LabelComponent} from "qqq/components/widgets/Widget";
import DataGridUtils from "qqq/utils/DataGridUtils"; import DataGridUtils from "qqq/utils/DataGridUtils";
import HtmlUtils from "qqq/utils/HtmlUtils"; import HtmlUtils from "qqq/utils/HtmlUtils";
import Client from "qqq/utils/qqq/Client"; import Client from "qqq/utils/qqq/Client";
import ValueUtils from "qqq/utils/qqq/ValueUtils"; import ValueUtils from "qqq/utils/qqq/ValueUtils";
import React, {useEffect, useRef, useState} from "react";
import {Link, useNavigate} from "react-router-dom";
export interface ChildRecordListData extends WidgetData
{
title: string;
queryOutput: {records: QRecord[]}
childTableMetaData: QTableMetaData;
tablePath: string;
viewAllLink: string;
totalRows: number;
canAddChildRecord: boolean;
defaultValuesForNewChildRecords: {[fieldName: string]: any};
disabledFieldsForNewChildRecords: {[fieldName: string]: any};
}
interface Props interface Props
{ {
widgetMetaData: QWidgetMetaData; widgetMetaData: QWidgetMetaData;
data: ChildRecordListData; data: any;
addNewRecordCallback?: () => void;
disableRowClick: boolean;
allowRecordEdit: boolean;
editRecordCallback?: (rowIndex: number) => void;
allowRecordDelete: boolean;
deleteRecordCallback?: (rowIndex: number) => void;
} }
RecordGridWidget.defaultProps = RecordGridWidget.defaultProps = {};
{
disableRowClick: false,
allowRecordEdit: false,
allowRecordDelete: false
};
const qController = Client.getInstance(); const qController = Client.getInstance();
function RecordGridWidget({widgetMetaData, data, addNewRecordCallback, disableRowClick, allowRecordEdit, editRecordCallback, allowRecordDelete, deleteRecordCallback}: Props): JSX.Element function RecordGridWidget({widgetMetaData, data}: Props): JSX.Element
{ {
const instance = useRef({timer: null}); const instance = useRef({timer: null});
const [rows, setRows] = useState([]); const [rows, setRows] = useState([]);
@ -99,7 +74,7 @@ function RecordGridWidget({widgetMetaData, data, addNewRecordCallback, disableRo
} }
const tableMetaData = new QTableMetaData(data.childTableMetaData); const tableMetaData = new QTableMetaData(data.childTableMetaData);
const rows = DataGridUtils.makeRows(records, tableMetaData, true); const rows = DataGridUtils.makeRows(records, tableMetaData);
///////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////////
// note - tablePath may be null, if the user doesn't have access to the table. // // note - tablePath may be null, if the user doesn't have access to the table. //
@ -128,28 +103,6 @@ function RecordGridWidget({widgetMetaData, data, addNewRecordCallback, disableRo
} }
} }
////////////////////////////////////
// add actions cell, if available //
////////////////////////////////////
if(allowRecordEdit || allowRecordDelete)
{
columns.unshift({
field: "_actions",
type: "string",
headerName: "Actions",
sortable: false,
filterable: false,
width: allowRecordEdit && allowRecordDelete ? 80 : 50,
renderCell: ((params: GridRenderCellParams) =>
{
return <Box>
{allowRecordEdit && <IconButton onClick={() => editRecordCallback(params.row.__rowIndex)}><Icon>edit</Icon></IconButton>}
{allowRecordDelete && <IconButton onClick={() => deleteRecordCallback(params.row.__rowIndex)}><Icon>delete</Icon></IconButton>}
</Box>
})
})
}
setRows(rows); setRows(rows);
setRecords(records) setRecords(records)
setColumns(columns); setColumns(columns);
@ -225,7 +178,7 @@ function RecordGridWidget({widgetMetaData, data, addNewRecordCallback, disableRo
if(widgetMetaData?.showExportButton) if(widgetMetaData?.showExportButton)
{ {
labelAdditionalElementsLeft.push( labelAdditionalElementsLeft.push(
<Typography key={1} variant="body2" px={0} display="inline" position="relative"> <Typography key={1} variant="body2" py={2} px={0} display="inline" position="relative">
<Tooltip title={tooltipTitle}><Button sx={{px: 1, py: 0, minWidth: "initial"}} onClick={onExportClick} disabled={isExportDisabled}><Icon sx={{color: "#757575", fontSize: 1.25}}>save_alt</Icon></Button></Tooltip> <Tooltip title={tooltipTitle}><Button sx={{px: 1, py: 0, minWidth: "initial"}} onClick={onExportClick} disabled={isExportDisabled}><Icon sx={{color: "#757575", fontSize: 1.25}}>save_alt</Icon></Button></Tooltip>
</Typography> </Typography>
); );
@ -242,7 +195,7 @@ function RecordGridWidget({widgetMetaData, data, addNewRecordCallback, disableRo
{ {
disabledFields = data.defaultValuesForNewChildRecords; disabledFields = data.defaultValuesForNewChildRecords;
} }
labelAdditionalComponentsRight.push(new AddNewRecordButton(data.childTableMetaData, data.defaultValuesForNewChildRecords, "Add new", disabledFields, addNewRecordCallback)) labelAdditionalComponentsRight.push(new AddNewRecordButton(data.childTableMetaData, data.defaultValuesForNewChildRecords, "Add new", disabledFields))
} }
@ -251,18 +204,13 @@ function RecordGridWidget({widgetMetaData, data, addNewRecordCallback, disableRo
///////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////
const handleRowClick = (params: GridRowParams, event: MuiEvent<React.MouseEvent>, details: GridCallbackDetails) => const handleRowClick = (params: GridRowParams, event: MuiEvent<React.MouseEvent>, details: GridCallbackDetails) =>
{ {
if(disableRowClick)
{
return;
}
(async () => (async () =>
{ {
const qInstance = await qController.loadMetaData() const qInstance = await qController.loadMetaData()
let tablePath = qInstance.getTablePathByName(data.childTableMetaData.name) let tablePath = qInstance.getTablePathByName(data.childTableMetaData.name)
if(tablePath) if(tablePath)
{ {
tablePath = `${tablePath}/${params.row[data.childTableMetaData.primaryKeyField]}`; tablePath = `${tablePath}/${params.id}`;
DataGridUtils.handleRowClick(tablePath, event, gridMouseDownX, gridMouseDownY, navigate, instance); DataGridUtils.handleRowClick(tablePath, event, gridMouseDownX, gridMouseDownY, navigate, instance);
} }
})(); })();
@ -318,7 +266,6 @@ function RecordGridWidget({widgetMetaData, data, addNewRecordCallback, disableRo
rowBuffer={10} rowBuffer={10}
getRowClassName={(params) => (params.indexRelativeToCurrentPage % 2 === 0 ? "even" : "odd")} getRowClassName={(params) => (params.indexRelativeToCurrentPage % 2 === 0 ? "even" : "odd")}
onRowClick={handleRowClick} onRowClick={handleRowClick}
getRowId={(row) => row.__rowIndex}
// getRowHeight={() => "auto"} // maybe nice? wraps values in cells... // getRowHeight={() => "auto"} // maybe nice? wraps values in cells...
components={{ components={{
Toolbar: CustomToolbar Toolbar: CustomToolbar

View File

@ -46,6 +46,9 @@ import Snackbar from "@mui/material/Snackbar";
import Tab from "@mui/material/Tab"; import Tab from "@mui/material/Tab";
import Tabs from "@mui/material/Tabs"; import Tabs from "@mui/material/Tabs";
import Typography from "@mui/material/Typography"; import Typography from "@mui/material/Typography";
import React, {useReducer, useState} from "react";
import AceEditor from "react-ace";
import {Link} from "react-router-dom";
import TabPanel from "qqq/components/misc/TabPanel"; import TabPanel from "qqq/components/misc/TabPanel";
import ScriptDocsForm from "qqq/components/scripts/ScriptDocsForm"; import ScriptDocsForm from "qqq/components/scripts/ScriptDocsForm";
import ScriptEditor, {ScriptEditorProps} from "qqq/components/scripts/ScriptEditor"; import ScriptEditor, {ScriptEditorProps} from "qqq/components/scripts/ScriptEditor";
@ -62,9 +65,6 @@ import "ace-builds/src-noconflict/mode-javascript";
import "ace-builds/src-noconflict/mode-velocity"; import "ace-builds/src-noconflict/mode-velocity";
import "ace-builds/src-noconflict/mode-json"; import "ace-builds/src-noconflict/mode-json";
import "ace-builds/src-noconflict/theme-github"; import "ace-builds/src-noconflict/theme-github";
import React, {useReducer, useState} from "react";
import AceEditor from "react-ace";
import {Link} from "react-router-dom";
import "ace-builds/src-noconflict/ext-language_tools"; import "ace-builds/src-noconflict/ext-language_tools";
const qController = Client.getInstance(); const qController = Client.getInstance();
@ -97,16 +97,16 @@ export default function ScriptViewer({scriptId, associatedScriptTableName, assoc
const [versionRecordList, setVersionRecordList] = useState(null as QRecord[]); const [versionRecordList, setVersionRecordList] = useState(null as QRecord[]);
const [selectedVersionRecord, setSelectedVersionRecord] = useState(null as QRecord); const [selectedVersionRecord, setSelectedVersionRecord] = useState(null as QRecord);
const [scriptLogs, setScriptLogs] = useState({} as any); const [scriptLogs, setScriptLogs] = useState({} as any);
const [scriptTypeRecord, setScriptTypeRecord] = useState(null as QRecord); const [scriptTypeRecord, setScriptTypeRecord] = useState(null as QRecord)
const [scriptTypeFileSchemaList, setScriptTypeFileSchemaList] = useState(null as QRecord[]); const [scriptTypeFileSchemaList, setScriptTypeFileSchemaList] = useState(null as QRecord[])
const [availableFileNames, setAvailableFileNames] = useState([] as string[]); const [availableFileNames, setAvailableFileNames] = useState([] as string[]);
const [selectedFileName, setSelectedFileName] = useState(""); const [selectedFileName, setSelectedFileName] = useState("");
const [currentVersionId, setCurrentVersionId] = useState(null as number); const [currentVersionId , setCurrentVersionId] = useState(null as number);
const [notFoundMessage, setNotFoundMessage] = useState(null); const [notFoundMessage, setNotFoundMessage] = useState(null);
const [selectedTab, setSelectedTab] = useState(0); const [selectedTab, setSelectedTab] = useState(0);
const [editorProps, setEditorProps] = useState(null as ScriptEditorProps); const [editorProps, setEditorProps] = useState(null as ScriptEditorProps);
const [successText, setSuccessText] = useState(null as string); const [successText, setSuccessText] = useState(null as string);
const [failText, setFailText] = useState(null as string); const [failText, setFailText] = useState(null as string)
const [, forceUpdate] = useReducer((x) => x + 1, 0); const [, forceUpdate] = useReducer((x) => x + 1, 0);
const [loadingSelectedVersion, _] = useState(new LoadingState(forceUpdate, "loading")); const [loadingSelectedVersion, _] = useState(new LoadingState(forceUpdate, "loading"));
@ -129,13 +129,13 @@ export default function ScriptViewer({scriptId, associatedScriptTableName, assoc
let fileMode = scriptTypeRecord.values.get("fileMode"); let fileMode = scriptTypeRecord.values.get("fileMode");
let scriptTypeFileSchemaList: QRecord[] = null; let scriptTypeFileSchemaList: QRecord[] = null;
if (fileMode == 1) // SINGLE if(fileMode == 1) // SINGLE
{ {
scriptTypeFileSchemaList = [new QRecord({values: {name: "Script.js", fileType: "javascript"}})]; scriptTypeFileSchemaList = [new QRecord({values: {name: "Script.js", fileType: "javascript"}})];
} }
else if (fileMode == 2) // MULTI_PRE_DEFINED else if(fileMode == 2) // MULTI_PRE_DEFINED
{ {
const filter = new QQueryFilter([new QFilterCriteria("scriptTypeId", QCriteriaOperator.EQUALS, [scriptRecord.values.get("scriptTypeId")])], [new QFilterOrderBy("id")]); const filter = new QQueryFilter([new QFilterCriteria("scriptTypeId", QCriteriaOperator.EQUALS, [scriptRecord.values.get("scriptTypeId")])], [new QFilterOrderBy("id")])
scriptTypeFileSchemaList = await qController.query("scriptTypeFileSchema", filter); scriptTypeFileSchemaList = await qController.query("scriptTypeFileSchema", filter);
} }
else // MULTI AD_HOC else // MULTI AD_HOC
@ -145,22 +145,22 @@ export default function ScriptViewer({scriptId, associatedScriptTableName, assoc
} }
setScriptTypeFileSchemaList(scriptTypeFileSchemaList); setScriptTypeFileSchemaList(scriptTypeFileSchemaList);
if (scriptTypeFileSchemaList) if(scriptTypeFileSchemaList)
{ {
const availableFileNames = scriptTypeFileSchemaList.map((fileSchemaRecord) => fileSchemaRecord.values.get("name")); const availableFileNames = scriptTypeFileSchemaList.map((fileSchemaRecord) => fileSchemaRecord.values.get("name"))
setAvailableFileNames(availableFileNames); setAvailableFileNames(availableFileNames);
setSelectedFileName(availableFileNames[0]); setSelectedFileName(availableFileNames[0])
} }
const criteria = [new QFilterCriteria("scriptId", QCriteriaOperator.EQUALS, [scriptId])]; const criteria = [new QFilterCriteria("scriptId", QCriteriaOperator.EQUALS, [scriptId])];
const orderBys = [new QFilterOrderBy("sequenceNo", false)]; const orderBys = [new QFilterOrderBy("sequenceNo", false)];
const filter = new QQueryFilter(criteria, orderBys, null, "AND", 0, 25); const filter = new QQueryFilter(criteria, orderBys, "AND", 0, 25);
const versions = await qController.query("scriptRevision", filter); const versions = await qController.query("scriptRevision", filter);
console.log("Fetched versions:"); console.log("Fetched versions:");
console.log(versions); console.log(versions);
setVersionRecordList(versions); setVersionRecordList(versions);
if (versions && versions.length > 0) if(versions && versions.length > 0)
{ {
selectVersion(versions[0]); selectVersion(versions[0]);
} }
@ -253,31 +253,31 @@ export default function ScriptViewer({scriptId, associatedScriptTableName, assoc
const handleSelectFile = (event: SelectChangeEvent) => const handleSelectFile = (event: SelectChangeEvent) =>
{ {
setSelectedFileName(event.target.value); setSelectedFileName(event.target.value);
}; }
const getSelectedFileCode = (): string => const getSelectedFileCode = (): string =>
{ {
return (getSelectedVersionCode()[selectedFileName] ?? ""); return (getSelectedVersionCode()[selectedFileName] ?? "");
}; }
const getSelectedFileType = (): string => const getSelectedFileType = (): string =>
{ {
for (let i = 0; i < scriptTypeFileSchemaList.length; i++) for (let i = 0; i < scriptTypeFileSchemaList.length; i++)
{ {
let name = scriptTypeFileSchemaList[i].values.get("name"); let name = scriptTypeFileSchemaList[i].values.get("name");
if (name == selectedFileName) if(name == selectedFileName)
{ {
return (scriptTypeFileSchemaList[i].values.get("fileType")); return (scriptTypeFileSchemaList[i].values.get("fileType"));
} }
} }
return ("javascript"); // have some default... return ("javascript"); // have some default...
}; }
const getSelectedVersionCode = (): { [name: string]: string } => const getSelectedVersionCode = (): {[name: string]: string} =>
{ {
let rs: { [name: string]: string } = {}; let rs: {[name: string]: string} = {}
let files = selectedVersionRecord?.associatedRecords?.get("files"); let files = selectedVersionRecord?.associatedRecords?.get("files")
for (let j = 0; j < files?.length; j++) for (let j = 0; j < files?.length; j++)
{ {
@ -286,7 +286,7 @@ export default function ScriptViewer({scriptId, associatedScriptTableName, assoc
} }
return (rs); return (rs);
}; }
function getVersionsList(versionRecordList: QRecord[], selectedVersionRecord: QRecord) function getVersionsList(versionRecordList: QRecord[], selectedVersionRecord: QRecord)
{ {
@ -344,11 +344,11 @@ export default function ScriptViewer({scriptId, associatedScriptTableName, assoc
const getScriptLogs = (scriptRevisionId: number) => const getScriptLogs = (scriptRevisionId: number) =>
{ {
if (!scriptLogs[scriptRevisionId]) if(!scriptLogs[scriptRevisionId])
{ {
(async () => (async () =>
{ {
let filter = new QQueryFilter([new QFilterCriteria("scriptRevisionId", QCriteriaOperator.EQUALS, [scriptRevisionId])], [new QFilterOrderBy("id", false)], null, "AND", 0, 100); let filter = new QQueryFilter([new QFilterCriteria("scriptRevisionId", QCriteriaOperator.EQUALS, [scriptRevisionId])], [new QFilterOrderBy("id", false)], "AND", 0, 100);
scriptLogs[scriptRevisionId] = await qController.query("scriptLog", filter); scriptLogs[scriptRevisionId] = await qController.query("scriptLog", filter);
setScriptLogs(scriptLogs); setScriptLogs(scriptLogs);
forceUpdate(); forceUpdate();
@ -368,7 +368,7 @@ export default function ScriptViewer({scriptId, associatedScriptTableName, assoc
} }
return (<ScriptLogsView logs={logs} />); return (<ScriptLogsView logs={logs} />);
}; }
let editButtonTooltip = ""; let editButtonTooltip = "";
let editButtonText = "Create New Version"; let editButtonText = "Create New Version";
@ -556,7 +556,7 @@ export default function ScriptViewer({scriptId, associatedScriptTableName, assoc
<Modal open={editorProps !== null} onClose={(event, reason) => closeEditingScript(event, reason)}> <Modal open={editorProps !== null} onClose={(event, reason) => closeEditingScript(event, reason)}>
<ScriptEditor <ScriptEditor
closeCallback={closeEditingScript} closeCallback={closeEditingScript}
{...editorProps} {... editorProps}
/> />
</Modal> </Modal>
} }

View File

@ -18,7 +18,6 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import {QWidgetMetaData} from "@kingsrook/qqq-frontend-core/lib/model/metaData/QWidgetMetaData";
import {tooltipClasses, TooltipProps} from "@mui/material"; import {tooltipClasses, TooltipProps} from "@mui/material";
import Autocomplete from "@mui/material/Autocomplete"; import Autocomplete from "@mui/material/Autocomplete";
import Box from "@mui/material/Box"; import Box from "@mui/material/Box";
@ -30,19 +29,17 @@ import TableContainer from "@mui/material/TableContainer";
import TableRow from "@mui/material/TableRow"; import TableRow from "@mui/material/TableRow";
import Tooltip from "@mui/material/Tooltip"; import Tooltip from "@mui/material/Tooltip";
import parse from "html-react-parser"; import parse from "html-react-parser";
import React, {useEffect, useMemo, useState} from "react"; import {useEffect, useMemo, useState} from "react";
import {useAsyncDebounce, useExpanded, useGlobalFilter, usePagination, useSortBy, useTable} from "react-table"; import {useAsyncDebounce, useGlobalFilter, usePagination, useSortBy, useTable, useExpanded} from "react-table";
import colors from "qqq/assets/theme/base/colors"; import colors from "qqq/assets/theme/base/colors";
import MDInput from "qqq/components/legacy/MDInput"; import MDInput from "qqq/components/legacy/MDInput";
import MDPagination from "qqq/components/legacy/MDPagination"; import MDPagination from "qqq/components/legacy/MDPagination";
import MDTypography from "qqq/components/legacy/MDTypography"; import MDTypography from "qqq/components/legacy/MDTypography";
import CompositeWidget from "qqq/components/widgets/CompositeWidget";
import DataTableBodyCell from "qqq/components/widgets/tables/cells/DataTableBodyCell"; import DataTableBodyCell from "qqq/components/widgets/tables/cells/DataTableBodyCell";
import DataTableHeadCell from "qqq/components/widgets/tables/cells/DataTableHeadCell"; import DataTableHeadCell from "qqq/components/widgets/tables/cells/DataTableHeadCell";
import DefaultCell from "qqq/components/widgets/tables/cells/DefaultCell"; import DefaultCell from "qqq/components/widgets/tables/cells/DefaultCell";
import ImageCell from "qqq/components/widgets/tables/cells/ImageCell"; import ImageCell from "qqq/components/widgets/tables/cells/ImageCell";
import {TableDataInput} from "qqq/components/widgets/tables/TableCard"; import {TableDataInput} from "qqq/components/widgets/tables/TableCard";
import WidgetBlock from "qqq/components/widgets/WidgetBlock";
interface Props interface Props
{ {
@ -60,7 +57,6 @@ interface Props
}; };
isSorted?: boolean; isSorted?: boolean;
noEndBorder?: boolean; noEndBorder?: boolean;
widgetMetaData: QWidgetMetaData;
} }
DataTable.defaultProps = { DataTable.defaultProps = {
@ -96,7 +92,6 @@ function DataTable({
pagination, pagination,
isSorted, isSorted,
noEndBorder, noEndBorder,
widgetMetaData
}: Props): JSX.Element }: Props): JSX.Element
{ {
let defaultValue: any; let defaultValue: any;
@ -173,17 +168,6 @@ function DataTable({
); );
} }
if(table.columnHeaderTooltips)
{
for (let column of columnsToMemo)
{
if(table.columnHeaderTooltips[column.accessor])
{
column.tooltip = table.columnHeaderTooltips[column.accessor];
}
}
}
const columns = useMemo<any>(() => columnsToMemo, [table]); const columns = useMemo<any>(() => columnsToMemo, [table]);
const data = useMemo<any>(() => table.rows, [table]); const data = useMemo<any>(() => table.rows, [table]);
const gridTemplateColumns = widths.join(" "); const gridTemplateColumns = widths.join(" ");
@ -296,36 +280,21 @@ function DataTable({
entriesEnd = pageSize * (pageIndex + 1); entriesEnd = pageSize * (pageIndex + 1);
} }
let visibleFooterRows = 1;
if(expanded && expanded[`${table.rows.length-1}`])
{
//////////////////////////////////////////////////
// todo - should count how many are expanded... //
//////////////////////////////////////////////////
visibleFooterRows = 2;
}
function getTable(includeHead: boolean, rows: any, isFooter: boolean) function getTable(includeHead: boolean, rows: any, isFooter: boolean)
{ {
let boxStyle = {}; let boxStyle = {};
if(fixedStickyLastRow) if(fixedStickyLastRow)
{ {
boxStyle = isFooter boxStyle = isFooter
? {borderTop: `0.0625rem solid ${colors.grayLines.main};`, backgroundColor: "#EEEEEE"} ? {borderTop: `0.0625rem solid ${colors.grayLines.main};`, overflow: "auto", scrollbarGutter: "stable"}
: {flexGrow: 1, overflowY: "scroll", scrollbarGutter: "stable", marginBottom: "-1px"}; : {height: fixedHeight ? `${fixedHeight}px` : "360px", overflowY: "scroll", scrollbarGutter: "stable", marginBottom: "-1px"};
} }
let innerBoxStyle = {}; return <Box sx={boxStyle}>
if(fixedStickyLastRow && isFooter)
{
innerBoxStyle = {overflowY: "auto", scrollbarGutter: "stable"};
}
return <Box sx={boxStyle}><Box sx={innerBoxStyle}>
<Table {...getTableProps()}> <Table {...getTableProps()}>
{ {
includeHead && ( includeHead && (
<Box component="thead" sx={{position: "sticky", top: 0, background: "white", zIndex: 10}}> <Box component="thead" sx={{position: "sticky", top: 0, background: "white"}}>
{headerGroups.map((headerGroup: any, i: number) => ( {headerGroups.map((headerGroup: any, i: number) => (
<TableRow key={i} {...headerGroup.getHeaderGroupProps()} sx={{display: "grid", gridTemplateColumns: gridTemplateColumns}}> <TableRow key={i} {...headerGroup.getHeaderGroupProps()} sx={{display: "grid", gridTemplateColumns: gridTemplateColumns}}>
{headerGroup.headers.map((column: any) => ( {headerGroup.headers.map((column: any) => (
@ -335,7 +304,6 @@ function DataTable({
{...column.getHeaderProps(isSorted && column.getSortByToggleProps())} {...column.getHeaderProps(isSorted && column.getSortByToggleProps())}
align={column.align ? column.align : "left"} align={column.align ? column.align : "left"}
sorted={setSortedValue(column)} sorted={setSortedValue(column)}
tooltip={column.tooltip}
> >
{column.render("header")} {column.render("header")}
</DataTableHeadCell> </DataTableHeadCell>
@ -373,23 +341,13 @@ function DataTable({
overrideNoEndBorder = true; overrideNoEndBorder = true;
} }
let background = "initial";
if(isFooter)
{
background = "#EEEEEE";
}
else if(row.depth > 0 || row.isExpanded)
{
background = "#FAFAFA";
}
return ( return (
<TableRow sx={{verticalAlign: "top", display: "grid", gridTemplateColumns: gridTemplateColumns, background: background}} key={key} {...row.getRowProps()}> <TableRow sx={{verticalAlign: "top", display: "grid", gridTemplateColumns: gridTemplateColumns, background: (row.depth > 0 ? "#FAFAFA" : "initial")}} key={key} {...row.getRowProps()}>
{row.cells.map((cell: any) => ( {row.cells.map((cell: any) => (
cell.column.type !== "hidden" && ( cell.column.type !== "hidden" && (
<DataTableBodyCell <DataTableBodyCell
key={key} key={key}
noBorder={noEndBorder || overrideNoEndBorder || row.isExpanded} noBorder={noEndBorder || overrideNoEndBorder}
depth={row.depth} depth={row.depth}
align={cell.column.align ? cell.column.align : "left"} align={cell.column.align ? cell.column.align : "left"}
{...cell.getCellProps()} {...cell.getCellProps()}
@ -414,21 +372,7 @@ function DataTable({
} }
{ {
cell.column.type === "html" && ( cell.column.type === "html" && (
<DefaultCell isFooter={isFooter}>{parse(cell.value ?? "")}</DefaultCell> <DefaultCell isFooter={isFooter}>{parse(cell.value)}</DefaultCell>
)
}
{
cell.column.type === "composite" && (
<DefaultCell isFooter={isFooter}>
<CompositeWidget widgetMetaData={widgetMetaData} data={cell.value} />
</DefaultCell>
)
}
{
cell.column.type === "block" && (
<DefaultCell isFooter={isFooter}>
<WidgetBlock widgetMetaData={widgetMetaData} block={cell.value} />
</DefaultCell>
) )
} }
{ {
@ -453,11 +397,11 @@ function DataTable({
</TableBody> </TableBody>
</Table> </Table>
</Box></Box> </Box>
} }
return ( return (
<TableContainer sx={{boxShadow: "none", height: fixedHeight ? `${fixedHeight}px` : "auto"}}> <TableContainer sx={{boxShadow: "none"}}>
{entriesPerPage && ((hidePaginationDropdown !== undefined && !hidePaginationDropdown) || canSearch) ? ( {entriesPerPage && ((hidePaginationDropdown !== undefined && !hidePaginationDropdown) || canSearch) ? (
<Box display="flex" justifyContent="space-between" alignItems="center" p={3}> <Box display="flex" justifyContent="space-between" alignItems="center" p={3}>
{entriesPerPage && (hidePaginationDropdown === undefined || !hidePaginationDropdown) && ( {entriesPerPage && (hidePaginationDropdown === undefined || !hidePaginationDropdown) && (
@ -504,16 +448,14 @@ function DataTable({
</Box> </Box>
) : null} ) : null}
<Box display="flex" justifyContent="space-between" flexDirection="column" height="100%"> {
{ fixedStickyLastRow ? (
fixedStickyLastRow ? ( <>
<> {getTable(true, page.slice(0, page.length -1), false)}
{getTable(true, page.slice(0, page.length - visibleFooterRows), false)} {getTable(false, page.slice(page.length-1), true)}
{getTable(false, page.slice(page.length - visibleFooterRows), true)} </>
</> ) : getTable(true, page, false)
) : getTable(true, page, false) }
}
</Box>
<Box <Box
display="flex" display="flex"

View File

@ -20,7 +20,6 @@
*/ */
import {QInstance} from "@kingsrook/qqq-frontend-core/lib/model/metaData/QInstance"; import {QInstance} from "@kingsrook/qqq-frontend-core/lib/model/metaData/QInstance";
import {QWidgetMetaData} from "@kingsrook/qqq-frontend-core/lib/model/metaData/QWidgetMetaData";
import {Skeleton} from "@mui/material"; import {Skeleton} from "@mui/material";
import Box from "@mui/material/Box"; import Box from "@mui/material/Box";
import Table from "@mui/material/Table"; import Table from "@mui/material/Table";
@ -43,7 +42,6 @@ import Client from "qqq/utils/qqq/Client";
export interface TableDataInput export interface TableDataInput
{ {
columns: { [key: string]: any }[]; columns: { [key: string]: any }[];
columnHeaderTooltips?: { [columnName: string]: string | JSX.Element }
rows: { [key: string]: any }[]; rows: { [key: string]: any }[];
} }
@ -59,11 +57,10 @@ interface Props
fixedStickyLastRow?: boolean; fixedStickyLastRow?: boolean;
fixedHeight?: number; fixedHeight?: number;
data: TableDataInput; data: TableDataInput;
widgetMetaData: QWidgetMetaData;
} }
const qController = Client.getInstance(); const qController = Client.getInstance();
function TableCard({noRowsFoundHTML, data, rowsPerPage, hidePaginationDropdown, fixedStickyLastRow, fixedHeight, widgetMetaData}: Props): JSX.Element function TableCard({noRowsFoundHTML, data, rowsPerPage, hidePaginationDropdown, fixedStickyLastRow, fixedHeight}: Props): JSX.Element
{ {
const [qInstance, setQInstance] = useState(null as QInstance); const [qInstance, setQInstance] = useState(null as QInstance);
@ -77,7 +74,7 @@ function TableCard({noRowsFoundHTML, data, rowsPerPage, hidePaginationDropdown,
}, []); }, []);
return ( return (
<Box className="tableCard" mx={-2} mb="-28px" pt="11px" pb="0.25rem"> <Box py={1} mx={-2}>
{ {
data && data.columns && !noRowsFoundHTML ? data && data.columns && !noRowsFoundHTML ?
<DataTable <DataTable
@ -88,10 +85,9 @@ function TableCard({noRowsFoundHTML, data, rowsPerPage, hidePaginationDropdown,
fixedHeight={fixedHeight} fixedHeight={fixedHeight}
showTotalEntries={false} showTotalEntries={false}
isSorted={false} isSorted={false}
widgetMetaData={widgetMetaData}
/> />
: noRowsFoundHTML ? : noRowsFoundHTML ?
<Box p={3} pt={0} pb={3} sx={{textAlign: "center"}}> <Box p={3} pt={1} pb={1} sx={{textAlign: "center"}}>
<MDTypography <MDTypography
variant="subtitle2" variant="subtitle2"
color="secondary" color="secondary"

View File

@ -21,14 +21,16 @@
import {QWidgetMetaData} from "@kingsrook/qqq-frontend-core/lib/model/metaData/QWidgetMetaData"; import {QWidgetMetaData} from "@kingsrook/qqq-frontend-core/lib/model/metaData/QWidgetMetaData";
import Button from "@mui/material/Button";
import Icon from "@mui/material/Icon";
import Tooltip from "@mui/material/Tooltip/Tooltip";
import Typography from "@mui/material/Typography";
// @ts-ignore // @ts-ignore
import {htmlToText} from "html-to-text"; import {htmlToText} from "html-to-text";
import React, {useContext, useEffect, useState} from "react"; import React, {useEffect, useState} from "react";
import QContext from "QContext"; import colors from "qqq/assets/theme/base/colors";
import HelpContent, {hasHelpContent} from "qqq/components/misc/HelpContent";
import TableCard from "qqq/components/widgets/tables/TableCard"; import TableCard from "qqq/components/widgets/tables/TableCard";
import Widget, {WidgetData} from "qqq/components/widgets/Widget"; import Widget, {WidgetData} from "qqq/components/widgets/Widget";
import {WidgetUtils} from "qqq/components/widgets/WidgetUtils";
import HtmlUtils from "qqq/utils/HtmlUtils"; import HtmlUtils from "qqq/utils/HtmlUtils";
import ValueUtils from "qqq/utils/qqq/ValueUtils"; import ValueUtils from "qqq/utils/qqq/ValueUtils";
@ -48,7 +50,6 @@ function TableWidget(props: Props): JSX.Element
const [isExportDisabled, setIsExportDisabled] = useState(false); // hmm, would like true here, but it broke... const [isExportDisabled, setIsExportDisabled] = useState(false); // hmm, would like true here, but it broke...
const [csv, setCsv] = useState(null as string); const [csv, setCsv] = useState(null as string);
const [fileName, setFileName] = useState(null as string); const [fileName, setFileName] = useState(null as string);
const {helpHelpActive} = useContext(QContext);
const rows = props.widgetData?.rows; const rows = props.widgetData?.rows;
const columns = props.widgetData?.columns; const columns = props.widgetData?.columns;
@ -104,7 +105,7 @@ function TableWidget(props: Props): JSX.Element
setCsv(csv); setCsv(csv);
const fileName = WidgetUtils.makeExportFileName(props.widgetData, props.widgetMetaData); const fileName = (props.widgetData.label ?? props.widgetMetaData.label) + " " + ValueUtils.formatDateTimeForFileName(new Date()) + ".csv";
setFileName(fileName) setFileName(fileName)
console.log(`useEffect, setting fileName ${fileName}`); console.log(`useEffect, setting fileName ${fileName}`);
@ -114,13 +115,7 @@ function TableWidget(props: Props): JSX.Element
const onExportClick = () => const onExportClick = () =>
{ {
if(props.widgetData?.csvData) if(csv)
{
const csv = WidgetUtils.widgetCsvDataToString(props.widgetData);
const fileName = WidgetUtils.makeExportFileName(props.widgetData, props.widgetMetaData);
HtmlUtils.download(fileName, csv);
}
else if(csv)
{ {
HtmlUtils.download(fileName, csv); HtmlUtils.download(fileName, csv);
} }
@ -133,24 +128,11 @@ function TableWidget(props: Props): JSX.Element
const labelAdditionalElementsLeft: JSX.Element[] = []; const labelAdditionalElementsLeft: JSX.Element[] = [];
if(props.widgetMetaData?.showExportButton) if(props.widgetMetaData?.showExportButton)
{ {
labelAdditionalElementsLeft.push(WidgetUtils.generateExportButton(onExportClick)); labelAdditionalElementsLeft.push(
} <Typography key={1} variant="body2" py={2} px={0} display="inline" position="relative" top="-0.25rem">
<Tooltip title="Export"><Button sx={{px: 1, py: 0, minWidth: "initial"}} onClick={onExportClick} disabled={false}><Icon sx={{color: colors.gray.main, fontSize: 1.125}}>save_alt</Icon></Button></Tooltip>
////////////////////////////////////////////////////// </Typography>
// look for column-header tooltips from helpContent // );
//////////////////////////////////////////////////////
const columnHeaderTooltips: {[columnName: string]: JSX.Element} = {}
for (let column of props.widgetData?.columns ?? [])
{
const helpRoles = ["ALL_SCREENS"]
const slotName = `columnHeader=${column.accessor}`;
const showHelp = helpHelpActive || hasHelpContent(props.widgetMetaData?.helpContent?.get(slotName), helpRoles);
if(showHelp)
{
const formattedHelpContent = <HelpContent helpContents={props.widgetMetaData?.helpContent?.get(slotName)} roles={helpRoles} helpContentKey={`widget:${props.widgetMetaData?.name};slot:${slotName}`} />;
columnHeaderTooltips[column.accessor] = formattedHelpContent;
}
} }
return ( return (
@ -168,8 +150,7 @@ function TableWidget(props: Props): JSX.Element
hidePaginationDropdown={props.widgetData?.hidePaginationDropdown} hidePaginationDropdown={props.widgetData?.hidePaginationDropdown}
fixedStickyLastRow={props.widgetData?.fixedStickyLastRow} fixedStickyLastRow={props.widgetData?.fixedStickyLastRow}
fixedHeight={props.widgetData?.fixedHeight} fixedHeight={props.widgetData?.fixedHeight}
data={{columns: props.widgetData?.columns, rows: props.widgetData?.rows, columnHeaderTooltips: columnHeaderTooltips}} data={{columns: props.widgetData?.columns, rows: props.widgetData?.rows}}
widgetMetaData={props.widgetMetaData}
/> />
</Widget> </Widget>
); );

View File

@ -39,7 +39,7 @@ function DataTableBodyCell({noBorder, align, children}: Props): JSX.Element
component="td" component="td"
textAlign={align} textAlign={align}
py={1.5} py={1.5}
px={1.5} px={3}
sx={({palette: {light}, typography: {size}, borders: {borderWidth}}: Theme) => ({ sx={({palette: {light}, typography: {size}, borders: {borderWidth}}: Theme) => ({
borderBottom: noBorder ? "none" : `${borderWidth[1]} solid ${colors.grayLines.main}`, borderBottom: noBorder ? "none" : `${borderWidth[1]} solid ${colors.grayLines.main}`,
fontSize: "0.875rem", fontSize: "0.875rem",

View File

@ -22,7 +22,6 @@
import Box from "@mui/material/Box"; import Box from "@mui/material/Box";
import Icon from "@mui/material/Icon"; import Icon from "@mui/material/Icon";
import {Theme} from "@mui/material/styles"; import {Theme} from "@mui/material/styles";
import Tooltip from "@mui/material/Tooltip";
import {ReactNode} from "react"; import {ReactNode} from "react";
import colors from "qqq/assets/theme/base/colors"; import colors from "qqq/assets/theme/base/colors";
import {useMaterialUIController} from "qqq/context"; import {useMaterialUIController} from "qqq/context";
@ -34,10 +33,9 @@ interface Props
children: ReactNode; children: ReactNode;
sorted?: false | "none" | "asce" | "desc"; sorted?: false | "none" | "asce" | "desc";
align?: "left" | "right" | "center"; align?: "left" | "right" | "center";
tooltip?: string | JSX.Element;
} }
function DataTableHeadCell({width, children, sorted, align, tooltip, ...rest}: Props): JSX.Element function DataTableHeadCell({width, children, sorted, align, ...rest}: Props): JSX.Element
{ {
const [controller] = useMaterialUIController(); const [controller] = useMaterialUIController();
const {darkMode} = controller; const {darkMode} = controller;
@ -47,7 +45,7 @@ function DataTableHeadCell({width, children, sorted, align, tooltip, ...rest}: P
component="th" component="th"
width={width} width={width}
py={1.5} py={1.5}
px={1.5} px={3}
sx={({palette: {light}, borders: {borderWidth}}: Theme) => ({ sx={({palette: {light}, borders: {borderWidth}}: Theme) => ({
borderBottom: `${borderWidth[1]} solid ${colors.grayLines.main}`, borderBottom: `${borderWidth[1]} solid ${colors.grayLines.main}`,
"&:nth-child(1)": { "&:nth-child(1)": {
@ -75,43 +73,39 @@ function DataTableHeadCell({width, children, sorted, align, tooltip, ...rest}: P
userSelect: sorted && "none", userSelect: sorted && "none",
})} })}
> >
<> {children}
{ {sorted && (
tooltip ? <Tooltip title={tooltip}><span style={{cursor: "default"}}>{children}</span></Tooltip> : children <Box
} position="absolute"
{sorted && ( top={0}
right={align !== "right" ? "16px" : 0}
left={align === "right" ? "-5px" : "unset"}
sx={({typography: {size}}: any) => ({
fontSize: size.lg,
})}
>
<Box <Box
position="absolute" sx={{
top={0} position: "absolute",
right={align !== "right" ? "16px" : 0} top: -6,
left={align === "right" ? "-5px" : "unset"} color: sorted === "asce" ? "text" : "secondary",
sx={({typography: {size}}: any) => ({ opacity: sorted === "asce" ? 1 : 0.5
fontSize: size.lg, }}
})}
> >
<Box <Icon>arrow_drop_up</Icon>
sx={{
position: "absolute",
top: -6,
color: sorted === "asce" ? "text" : "secondary",
opacity: sorted === "asce" ? 1 : 0.5
}}
>
<Icon>arrow_drop_up</Icon>
</Box>
<Box
sx={{
position: "absolute",
top: 0,
color: sorted === "desc" ? "text" : "secondary",
opacity: sorted === "desc" ? 1 : 0.5
}}
>
<Icon>arrow_drop_down</Icon>
</Box>
</Box> </Box>
)} <Box
</> sx={{
position: "absolute",
top: 0,
color: sorted === "desc" ? "text" : "secondary",
opacity: sorted === "desc" ? 1 : 0.5
}}
>
<Icon>arrow_drop_down</Icon>
</Box>
</Box>
)}
</Box> </Box>
</Box> </Box>
); );

View File

@ -75,19 +75,9 @@ function AppHome({app}: Props): JSX.Element
})(); })();
}, []); }, []);
const mdbMetaData = app?.supplementalAppMetaData?.get("materialDashboard");
let showAppLabelOnHomeScreen = true;
let includeTableCountsOnHomeScreen = true;
if(mdbMetaData)
{
showAppLabelOnHomeScreen = mdbMetaData.showAppLabelOnHomeScreen;
includeTableCountsOnHomeScreen = mdbMetaData.includeTableCountsOnHomeScreen;
}
useEffect(() => useEffect(() =>
{ {
// setPageHeader(app.label); setPageHeader(app.label);
setPageHeader(null);
if (!qInstance) if (!qInstance)
{ {
@ -131,60 +121,48 @@ function AppHome({app}: Props): JSX.Element
const tableCountTexts = new Map<string, string>(); const tableCountTexts = new Map<string, string>();
newTables.forEach((table) => newTables.forEach((table) =>
{ {
if(includeTableCountsOnHomeScreen) tableCounts.set(table.name, {isLoading: true, value: null});
{
tableCounts.set(table.name, {isLoading: true, value: null});
setTimeout(async () =>
{
const tableMetaData = await qController.loadTableMetaData(table.name);
let countResult = null;
if (tableMetaData.capabilities.has(Capability.TABLE_COUNT) && tableMetaData.readPermission)
{
try
{
[countResult] = await qController.count(table.name);
if (countResult !== null && countResult !== undefined) setTimeout(async () =>
{ {
tableCountNumbers.set(table.name, countResult.toLocaleString()); const tableMetaData = await qController.loadTableMetaData(table.name);
tableCountTexts.set(table.name, countResult === 1 ? "total record" : "total records"); let countResult = null;
} if(tableMetaData.capabilities.has(Capability.TABLE_COUNT) && tableMetaData.readPermission)
else {
{ try
tableCountNumbers.set(table.name, ""); {
tableCountTexts.set(table.name, " "); [countResult] = await qController.count(table.name);
}
} if (countResult !== null && countResult !== undefined)
catch (e) {
tableCountNumbers.set(table.name, countResult.toLocaleString());
tableCountTexts.set(table.name, countResult === 1 ? "total record" : "total records");
}
else
{ {
console.log("Caught: " + e);
tableCountNumbers.set(table.name, ""); tableCountNumbers.set(table.name, "");
tableCountTexts.set(table.name, " "); tableCountTexts.set(table.name, " ");
} }
} }
else catch(e)
{ {
console.log("Caught: " + e);
tableCountNumbers.set(table.name, ""); tableCountNumbers.set(table.name, "");
tableCountTexts.set(table.name, " "); tableCountTexts.set(table.name, " ");
} }
}
else
{
tableCountNumbers.set(table.name, "");
tableCountTexts.set(table.name, " ");
}
tableCounts.set(table.name, {isLoading: false, value: countResult}); tableCounts.set(table.name, {isLoading: false, value: countResult});
setTableCounts(tableCounts);
setTableCountNumbers(tableCountNumbers);
setTableCountTexts(tableCountTexts);
setUpdatedTableCounts(new Date());
}, 1);
}
else
{
tableCounts.set(table.name, {isLoading: false, value: null});
tableCountNumbers.set(table.name, " ");
tableCountTexts.set(table.name, " ");
setTableCounts(tableCounts); setTableCounts(tableCounts);
setTableCountNumbers(tableCountNumbers); setTableCountNumbers(tableCountNumbers);
setTableCountTexts(tableCountTexts); setTableCountTexts(tableCountTexts);
} setUpdatedTableCounts(new Date());
}, 1);
}); });
setTableCounts(tableCounts); setTableCounts(tableCounts);
@ -230,12 +208,6 @@ function AppHome({app}: Props): JSX.Element
{ {
return ( return (
<BaseLayout> <BaseLayout>
{
showAppLabelOnHomeScreen &&
<Typography textTransform="capitalize" variant="h3">
{app.label}
</Typography>
}
<Grid container spacing={3}> <Grid container spacing={3}>
<Grid item xs={12} lg={12}> <Grid item xs={12} lg={12}>
<Card sx={{overflow: "visible"}}> <Card sx={{overflow: "visible"}}>
@ -281,19 +253,13 @@ function AppHome({app}: Props): JSX.Element
return ( return (
<BaseLayout> <BaseLayout>
{
showAppLabelOnHomeScreen &&
<Typography textTransform="capitalize" variant="h3">
{app.label}
</Typography>
}
<Box> <Box>
{app.widgets && app.widgets.length > 0 && ( {app.widgets && app.widgets.length > 0 && (
<Box pb={app.sections ? 2.375 : 4} pt={"0.5rem"}> <Box pb={app.sections ? 2.375 : 0}>
<DashboardWidgets widgetMetaDataList={widgets} /> <DashboardWidgets widgetMetaDataList={widgets} />
</Box> </Box>
)} )}
<Grid container spacing={3} mt={"-1rem"}> <Grid container spacing={3}>
{ {
app.sections ? ( app.sections ? (
<Grid item xs={12} lg={12}> <Grid item xs={12} lg={12}>
@ -313,7 +279,7 @@ function AppHome({app}: Props): JSX.Element
</Box> </Box>
{ {
section.processes ? ( section.processes ? (
<Box p={3} pl={3} pt={0} pb={1}> <Box p={3} pl={5} pt={0} pb={1}>
<MDTypography variant="h6">Actions</MDTypography> <MDTypography variant="h6">Actions</MDTypography>
</Box> </Box>
) : null ) : null
@ -354,7 +320,7 @@ function AppHome({app}: Props): JSX.Element
} }
{ {
section.reports ? ( section.reports ? (
<Box p={3} pl={3} pt={0} pb={1}> <Box p={3} pl={5} pt={0} pb={1}>
<MDTypography variant="h6">Reports</MDTypography> <MDTypography variant="h6">Reports</MDTypography>
</Box> </Box>
) : null ) : null
@ -397,7 +363,7 @@ function AppHome({app}: Props): JSX.Element
} }
{ {
section.tables ? ( section.tables ? (
<Box p={3} pl={3} pb={1} pt={0}> <Box p={3} pl={5} pb={1} pt={0}>
<MDTypography variant="h6">Data</MDTypography> <MDTypography variant="h6">Data</MDTypography>
</Box> </Box>
) : null ) : null
@ -409,13 +375,6 @@ function AppHome({app}: Props): JSX.Element
section.tables.map((tableName) => section.tables.map((tableName) =>
{ {
let table = app.childMap.get(tableName); let table = app.childMap.get(tableName);
let count = "";
let percentage = "";
if(includeTableCountsOnHomeScreen)
{
count = !tableCounts.has(table.name) || tableCounts.get(table.name).isLoading ? "..." : (tableCountNumbers.get(table.name));
percentage = !tableCounts.has(table.name) || tableCounts.get(table.name).isLoading ? "" : (tableCountTexts.get(table.name));
}
return ( return (
<Grid key={table.name} item xs={12} md={12} lg={tileSizeLg}> <Grid key={table.name} item xs={12} md={12} lg={tileSizeLg}>
{hasTablePermission(tableName) ? {hasTablePermission(tableName) ?
@ -423,8 +382,8 @@ function AppHome({app}: Props): JSX.Element
<Box className="big-icon" mb={3}> <Box className="big-icon" mb={3}>
<MiniStatisticsCard <MiniStatisticsCard
title={{fontWeight: "bold", text: table.label}} title={{fontWeight: "bold", text: table.label}}
count={count} count={!tableCounts.has(table.name) || tableCounts.get(table.name).isLoading ? "..." : (tableCountNumbers.get(table.name))}
percentage={{color: "info", text: percentage}} percentage={{color: "info", text: (!tableCounts.has(table.name) || tableCounts.get(table.name).isLoading ? "" : (tableCountTexts.get(table.name)))}}
icon={{color: "info", component: <Icon>{table.iconName || app.iconName}</Icon>}} icon={{color: "info", component: <Icon>{table.iconName || app.iconName}</Icon>}}
/> />
</Box> </Box>
@ -432,8 +391,8 @@ function AppHome({app}: Props): JSX.Element
<Box mb={3} title="You do not have permission to access this table"> <Box mb={3} title="You do not have permission to access this table">
<MiniStatisticsCard <MiniStatisticsCard
title={{fontWeight: "bold", text: table.label}} title={{fontWeight: "bold", text: table.label}}
count={count} count={!tableCounts.has(table.name) || tableCounts.get(table.name).isLoading ? "..." : (tableCountNumbers.get(table.name))}
percentage={{color: "info", text: percentage}} percentage={{color: "info", text: (!tableCounts.has(table.name) || tableCounts.get(table.name).isLoading ? "" : (tableCountTexts.get(table.name)))}}
icon={{color: "info", component: <Icon>{table.iconName || app.iconName}</Icon>}} icon={{color: "info", component: <Icon>{table.iconName || app.iconName}</Icon>}}
isDisabled={true} isDisabled={true}
/> />

View File

@ -21,7 +21,6 @@
import {QController} from "@kingsrook/qqq-frontend-core/lib/controllers/QController"; import {QController} from "@kingsrook/qqq-frontend-core/lib/controllers/QController";
import {QFieldMetaData} from "@kingsrook/qqq-frontend-core/lib/model/metaData/QFieldMetaData"; import {QFieldMetaData} from "@kingsrook/qqq-frontend-core/lib/model/metaData/QFieldMetaData";
import {QFieldType} from "@kingsrook/qqq-frontend-core/lib/model/metaData/QFieldType";
import {QTableMetaData} from "@kingsrook/qqq-frontend-core/lib/model/metaData/QTableMetaData"; import {QTableMetaData} from "@kingsrook/qqq-frontend-core/lib/model/metaData/QTableMetaData";
import {QTableSection} from "@kingsrook/qqq-frontend-core/lib/model/metaData/QTableSection"; import {QTableSection} from "@kingsrook/qqq-frontend-core/lib/model/metaData/QTableSection";
import {QJobComplete} from "@kingsrook/qqq-frontend-core/lib/model/processes/QJobComplete"; import {QJobComplete} from "@kingsrook/qqq-frontend-core/lib/model/processes/QJobComplete";
@ -147,11 +146,6 @@ function ColumnStats({tableMetaData, fieldMetaData, fieldTableName, filter}: Pro
const rows = DataGridUtils.makeRows(valueCounts, fakeTableMetaData); const rows = DataGridUtils.makeRows(valueCounts, fakeTableMetaData);
const columns = DataGridUtils.setupGridColumns(fakeTableMetaData, null, null, "bySection"); const columns = DataGridUtils.setupGridColumns(fakeTableMetaData, null, null, "bySection");
if(fieldMetaData.type == QFieldType.DATE_TIME)
{
columns[0].headerName = fieldMetaData.label + " (grouped by hour)"
}
columns.forEach((c) => columns.forEach((c) =>
{ {
c.filterable = false; c.filterable = false;

View File

@ -44,9 +44,11 @@ import LinearProgress from "@mui/material/LinearProgress";
import MenuItem from "@mui/material/MenuItem"; import MenuItem from "@mui/material/MenuItem";
import Modal from "@mui/material/Modal"; import Modal from "@mui/material/Modal";
import Tooltip from "@mui/material/Tooltip"; import Tooltip from "@mui/material/Tooltip";
import {ColumnHeaderFilterIconButtonProps, DataGridPro, GridCallbackDetails, GridColDef, GridColumnHeaderParams, GridColumnMenuContainer, GridColumnMenuProps, GridColumnOrderChangeParams, GridColumnPinningMenuItems, GridColumnResizeParams, GridColumnVisibilityModel, GridDensity, GridEventListener, GridPinnedColumns, gridPreferencePanelStateSelector, GridPreferencePanelsValue, GridRowId, GridRowParams, GridRowsProp, GridSelectionModel, GridSortItem, GridSortModel, GridState, GridToolbarContainer, GridToolbarDensitySelector, HideGridColMenuItem, MuiEvent, SortGridMenuItems, useGridApiContext, useGridApiEventHandler, useGridApiRef, useGridSelector} from "@mui/x-data-grid-pro"; import {ColumnHeaderFilterIconButtonProps, DataGridPro, GridCallbackDetails, GridColDef, GridColumnHeaderParams, GridColumnMenuContainer, GridColumnMenuProps, GridColumnOrderChangeParams, GridColumnPinningMenuItems, GridColumnResizeParams, GridColumnsMenuItem, GridColumnVisibilityModel, GridDensity, GridEventListener, GridFilterMenuItem, GridPinnedColumns, gridPreferencePanelStateSelector, GridPreferencePanelsValue, GridRowId, GridRowParams, GridRowsProp, GridSelectionModel, GridSortItem, GridSortModel, GridState, GridToolbarColumnsButton, GridToolbarContainer, GridToolbarDensitySelector, GridToolbarExportContainer, HideGridColMenuItem, MuiEvent, SortGridMenuItems, useGridApiContext, useGridApiEventHandler, useGridApiRef, useGridSelector} from "@mui/x-data-grid-pro";
import {GridRowModel} from "@mui/x-data-grid/models/gridRows"; import {GridRowModel} from "@mui/x-data-grid/models/gridRows";
import FormData from "form-data"; import FormData from "form-data";
import React, {forwardRef, useContext, useEffect, useReducer, useRef, useState} from "react";
import {useLocation, useNavigate, useSearchParams} from "react-router-dom";
import QContext from "QContext"; import QContext from "QContext";
import colors from "qqq/assets/theme/base/colors"; import colors from "qqq/assets/theme/base/colors";
import {QCancelButton, QCreateNewButton} from "qqq/components/buttons/DefaultButtons"; import {QCancelButton, QCreateNewButton} from "qqq/components/buttons/DefaultButtons";
@ -76,8 +78,6 @@ import ProcessUtils from "qqq/utils/qqq/ProcessUtils";
import {SavedViewUtils} from "qqq/utils/qqq/SavedViewUtils"; import {SavedViewUtils} from "qqq/utils/qqq/SavedViewUtils";
import TableUtils from "qqq/utils/qqq/TableUtils"; import TableUtils from "qqq/utils/qqq/TableUtils";
import ValueUtils from "qqq/utils/qqq/ValueUtils"; import ValueUtils from "qqq/utils/qqq/ValueUtils";
import React, {forwardRef, useContext, useEffect, useReducer, useRef, useState} from "react";
import {useLocation, useNavigate, useSearchParams} from "react-router-dom";
const CURRENT_SAVED_VIEW_ID_LOCAL_STORAGE_KEY_ROOT = "qqq.currentSavedViewId"; const CURRENT_SAVED_VIEW_ID_LOCAL_STORAGE_KEY_ROOT = "qqq.currentSavedViewId";
const DENSITY_LOCAL_STORAGE_KEY_ROOT = "qqq.density"; const DENSITY_LOCAL_STORAGE_KEY_ROOT = "qqq.density";
@ -112,7 +112,7 @@ const getLoadingScreen = () =>
return (<BaseLayout> return (<BaseLayout>
&nbsp; &nbsp;
</BaseLayout>); </BaseLayout>);
}; }
/******************************************************************************* /*******************************************************************************
@ -139,16 +139,16 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// manage "state" being passed from some screens (like delete) into query screen - by grabbing, and then deleting // // manage "state" being passed from some screens (like delete) into query screen - by grabbing, and then deleting //
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
if (location.state) if(location.state)
{ {
let state: any = location.state; let state: any = location.state;
if (state["deleteSuccess"]) if(state["deleteSuccess"])
{ {
setShowSuccessfullyDeletedAlert(true); setShowSuccessfullyDeletedAlert(true);
delete state["deleteSuccess"]; delete state["deleteSuccess"];
} }
if (state["warning"]) if(state["warning"])
{ {
setWarningAlert(state["warning"]); setWarningAlert(state["warning"]);
delete state["warning"]; delete state["warning"];
@ -168,7 +168,7 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
// define some default values (e.g., to be used if nothing in local storage or no active view) // // define some default values (e.g., to be used if nothing in local storage or no active view) //
///////////////////////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////////////////////////
let defaultSort = [] as GridSortItem[]; let defaultSort = [] as GridSortItem[];
let defaultRowsPerPage = 50; let defaultRowsPerPage = 10;
let defaultDensity = "standard" as GridDensity; let defaultDensity = "standard" as GridDensity;
let defaultTableVariant: QTableVariant = null; let defaultTableVariant: QTableVariant = null;
let defaultMode = "basic"; let defaultMode = "basic";
@ -181,7 +181,7 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
const densityLocalStorageKey = `${DENSITY_LOCAL_STORAGE_KEY_ROOT}`; const densityLocalStorageKey = `${DENSITY_LOCAL_STORAGE_KEY_ROOT}`;
// only load things out of local storage on the first render // only load things out of local storage on the first render
if (firstRender) if(firstRender)
{ {
console.log("This is firstRender, so reading defaults from local storage..."); console.log("This is firstRender, so reading defaults from local storage...");
if (localStorage.getItem(densityLocalStorageKey)) if (localStorage.getItem(densityLocalStorageKey))
@ -200,7 +200,7 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
setFirstRender(false); setFirstRender(false);
} }
if (defaultView == null) if(defaultView == null)
{ {
defaultView = new RecordQueryView(); defaultView = new RecordQueryView();
defaultView.queryFilter = new QQueryFilter(); defaultView.queryFilter = new QQueryFilter();
@ -214,15 +214,15 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
///////////////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////////////////
// in case the view is missing any of these attributes, give them a reasonable default // // in case the view is missing any of these attributes, give them a reasonable default //
///////////////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////////////////
if (!defaultView.rowsPerPage) if(!defaultView.rowsPerPage)
{ {
defaultView.rowsPerPage = defaultRowsPerPage; defaultView.rowsPerPage = defaultRowsPerPage;
} }
if (!defaultView.mode) if(!defaultView.mode)
{ {
defaultView.mode = defaultMode; defaultView.mode = defaultMode;
} }
if (!defaultView.quickFilterFieldNames) if(!defaultView.quickFilterFieldNames)
{ {
defaultView.quickFilterFieldNames = []; defaultView.quickFilterFieldNames = [];
} }
@ -246,7 +246,7 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// state of the page - e.g., have we loaded meta data? what about the initial view? or are we ready to render records. // // state of the page - e.g., have we loaded meta data? what about the initial view? or are we ready to render records. //
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
const [pageState, setPageState] = useState("initial" as PageState); const [pageState, setPageState] = useState("initial" as PageState)
///////////////////////////////// /////////////////////////////////
// meta-data and derived state // // meta-data and derived state //
@ -260,8 +260,8 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
/////////////////////////////////////////// ///////////////////////////////////////////
// state of the view of the query screen // // state of the view of the query screen //
/////////////////////////////////////////// ///////////////////////////////////////////
const [view, setView] = useState(defaultView); const [view, setView] = useState(defaultView)
const [viewAsJson, setViewAsJson] = useState(JSON.stringify(defaultView)); const [viewAsJson, setViewAsJson] = useState(JSON.stringify(defaultView))
const [queryFilter, setQueryFilter] = useState(defaultView.queryFilter); const [queryFilter, setQueryFilter] = useState(defaultView.queryFilter);
const [queryColumns, setQueryColumns] = useState(defaultView.queryColumns); const [queryColumns, setQueryColumns] = useState(defaultView.queryColumns);
const [lastFetchedQFilterJSON, setLastFetchedQFilterJSON] = useState(""); const [lastFetchedQFilterJSON, setLastFetchedQFilterJSON] = useState("");
@ -309,7 +309,7 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
///////////////////////////////////////// /////////////////////////////////////////
const [columnStatsFieldName, setColumnStatsFieldName] = useState(null as string); const [columnStatsFieldName, setColumnStatsFieldName] = useState(null as string);
const [columnStatsField, setColumnStatsField] = useState(null as QFieldMetaData); const [columnStatsField, setColumnStatsField] = useState(null as QFieldMetaData);
const [columnStatsFieldTableName, setColumnStatsFieldTableName] = useState(null as string); const [columnStatsFieldTableName, setColumnStatsFieldTableName] = useState(null as string)
const [filterForColumnStats, setFilterForColumnStats] = useState(null as QQueryFilter); const [filterForColumnStats, setFilterForColumnStats] = useState(null as QQueryFilter);
/////////////////////////////////////////////////// ///////////////////////////////////////////////////
@ -353,14 +353,14 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
// add a LoadingState object, in case the initial loads (of meta data and view) are slow // // add a LoadingState object, in case the initial loads (of meta data and view) are slow //
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
const [pageLoadingState, _] = useState(new LoadingState(forceUpdate)); const [pageLoadingState, _] = useState(new LoadingState(forceUpdate))
if (isFirstRenderAfterChangingTables) if(isFirstRenderAfterChangingTables)
{ {
setIsFirstRenderAfterChangingTables(false); setIsFirstRenderAfterChangingTables(false);
console.log("This is the first render after changing tables - so - setting state based on 'defaults' from localStorage"); console.log("This is the first render after changing tables - so - setting state based on 'defaults' from localStorage");
setView(defaultView); setView(defaultView)
} }
/******************************************************************************* /*******************************************************************************
@ -386,7 +386,7 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
const criteria = queryFilter.criteria[i]; const criteria = queryFilter.criteria[i];
const {criteriaIsValid} = validateCriteria(criteria, null); const {criteriaIsValid} = validateCriteria(criteria, null);
const fieldName = criteria.fieldName; const fieldName = criteria.fieldName;
if (criteriaIsValid && fieldName && fieldName.indexOf(".") > -1) if(criteriaIsValid && fieldName && fieldName.indexOf(".") > -1)
{ {
visibleJoinTables.add(fieldName.split(".")[0]); visibleJoinTables.add(fieldName.split(".")[0]);
} }
@ -407,7 +407,7 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
const join = tableMetaData.exposedJoins[i]; const join = tableMetaData.exposedJoins[i];
if (visibleJoinTables.has(join.joinTable.name)) if (visibleJoinTables.has(join.joinTable.name))
{ {
if (join.isMany) if(join.isMany)
{ {
return (true); return (true);
} }
@ -415,7 +415,7 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
} }
} }
return (false); return (false);
}; }
/******************************************************************************* /*******************************************************************************
@ -423,7 +423,7 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
*******************************************************************************/ *******************************************************************************/
const prepQueryFilterForBackend = (sourceFilter: QQueryFilter) => const prepQueryFilterForBackend = (sourceFilter: QQueryFilter) =>
{ {
const filterForBackend = new QQueryFilter([], sourceFilter.orderBys, sourceFilter.subFilters, sourceFilter.booleanOperator); const filterForBackend = new QQueryFilter([], sourceFilter.orderBys, sourceFilter.booleanOperator);
for (let i = 0; i < sourceFilter?.criteria?.length; i++) for (let i = 0; i < sourceFilter?.criteria?.length; i++)
{ {
const criteria = sourceFilter.criteria[i]; const criteria = sourceFilter.criteria[i];
@ -442,7 +442,7 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
/////////////////////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////////////
// else push a clone of the criteria - since it may get manipulated below (convertFilterPossibleValuesToIds) // // else push a clone of the criteria - since it may get manipulated below (convertFilterPossibleValuesToIds) //
/////////////////////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////////////
const [field] = FilterUtils.getField(tableMetaData, criteria.fieldName); const [field] = FilterUtils.getField(tableMetaData, criteria.fieldName)
filterForBackend.criteria.push(new QFilterCriteria(criteria.fieldName, criteria.operator, FilterUtils.cleanseCriteriaValueForQQQ(criteria.values, field))); filterForBackend.criteria.push(new QFilterCriteria(criteria.fieldName, criteria.operator, FilterUtils.cleanseCriteriaValueForQQQ(criteria.values, field)));
} }
} }
@ -451,7 +451,7 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
filterForBackend.limit = rowsPerPage; filterForBackend.limit = rowsPerPage;
return filterForBackend; return filterForBackend;
}; }
/******************************************************************************* /*******************************************************************************
@ -475,7 +475,7 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
/////////////////////////////////////////// ///////////////////////////////////////////
// build the export menu, for the header // // build the export menu, for the header //
/////////////////////////////////////////// ///////////////////////////////////////////
let exportMenu = <></>; let exportMenu = <></>
try try
{ {
const exportMenuItemRestProps = const exportMenuItemRestProps =
@ -485,7 +485,7 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
columnsModel: columnsModel, columnsModel: columnsModel,
columnVisibilityModel: columnVisibilityModel, columnVisibilityModel: columnVisibilityModel,
queryFilter: prepQueryFilterForBackend(queryFilter) queryFilter: prepQueryFilterForBackend(queryFilter)
}; }
exportMenu = (<> exportMenu = (<>
<IconButton sx={{p: 0, fontSize: "0.75rem", mb: 1, color: colors.secondary.main, fontVariationSettings: "'wght' 100"}} onClick={openExportMenu}><Icon fontSize="small">save_alt</Icon></IconButton> <IconButton sx={{p: 0, fontSize: "0.75rem", mb: 1, color: colors.secondary.main, fontVariationSettings: "'wght' 100"}} onClick={openExportMenu}><Icon fontSize="small">save_alt</Icon></IconButton>
@ -503,7 +503,7 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
</Menu> </Menu>
</>); </>);
} }
catch (e) catch(e)
{ {
console.log("Error preparing export menu for page header: " + e); console.log("Error preparing export menu for page header: " + e);
} }
@ -515,7 +515,7 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
{ {
let label: string = tableMetaData?.label ?? ""; let label: string = tableMetaData?.label ?? "";
if (currentSavedView?.values?.get("label")) if(currentSavedView?.values?.get("label"))
{ {
label += " / " + currentSavedView?.values?.get("label"); label += " / " + currentSavedView?.values?.get("label");
} }
@ -536,12 +536,12 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
} }
let joinLabelsString = joinLabels.join(", "); let joinLabelsString = joinLabels.join(", ");
if (joinLabels.length == 2) if(joinLabels.length == 2)
{ {
let lastCommaIndex = joinLabelsString.lastIndexOf(","); let lastCommaIndex = joinLabelsString.lastIndexOf(",");
joinLabelsString = joinLabelsString.substring(0, lastCommaIndex) + " and " + joinLabelsString.substring(lastCommaIndex + 1); joinLabelsString = joinLabelsString.substring(0, lastCommaIndex) + " and " + joinLabelsString.substring(lastCommaIndex + 1);
} }
if (joinLabels.length > 2) if(joinLabels.length > 2)
{ {
let lastCommaIndex = joinLabelsString.lastIndexOf(","); let lastCommaIndex = joinLabelsString.lastIndexOf(",");
joinLabelsString = joinLabelsString.substring(0, lastCommaIndex) + ", and " + joinLabelsString.substring(lastCommaIndex + 1); joinLabelsString = joinLabelsString.substring(0, lastCommaIndex) + ", and " + joinLabelsString.substring(lastCommaIndex + 1);
@ -552,9 +552,9 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
<ul style={{marginLeft: "1rem"}}> <ul style={{marginLeft: "1rem"}}>
{joinLabels.map((name) => <li key={name}>{name}</li>)} {joinLabels.map((name) => <li key={name}>{name}</li>)}
</ul> </ul>
</div>; </div>
return ( return(
<div> <div>
{label} {exportMenu} {label} {exportMenu}
<CustomWidthTooltip title={tooltipHTML}> <CustomWidthTooltip title={tooltipHTML}>
@ -586,7 +586,7 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
</Tooltip> </Tooltip>
</Typography> </Typography>
); );
}; }
/////////////////////// ///////////////////////
// Keyboard handling // // Keyboard handling //
@ -598,45 +598,42 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
const type = (e.target as any).type; const type = (e.target as any).type;
const validType = (type !== "text" && type !== "textarea" && type !== "input" && type !== "search"); const validType = (type !== "text" && type !== "textarea" && type !== "input" && type !== "search");
if (validType && !dotMenuOpen && !keyboardHelpOpen && !activeModalProcess) if(validType && !dotMenuOpen && !keyboardHelpOpen && !activeModalProcess)
{ {
if (!e.metaKey && e.key === "n" && table.capabilities.has(Capability.TABLE_INSERT) && table.insertPermission) if (! e.metaKey && e.key === "n" && table.capabilities.has(Capability.TABLE_INSERT) && table.insertPermission)
{ {
e.preventDefault(); e.preventDefault()
navigate(`${metaData?.getTablePathByName(tableName)}/create`); navigate(`${metaData?.getTablePathByName(tableName)}/create`);
} }
else if (!e.metaKey && e.key === "r") else if (! e.metaKey && e.key === "r")
{ {
e.preventDefault(); e.preventDefault()
updateTable("'r' keyboard event"); updateTable("'r' keyboard event");
} }
/*
// disable until we add a ... ref down to let us programmatically open Columns button
else if (! e.metaKey && e.key === "c") else if (! e.metaKey && e.key === "c")
{ {
e.preventDefault() e.preventDefault()
gridApiRef.current.showPreferences(GridPreferencePanelsValue.columns) gridApiRef.current.showPreferences(GridPreferencePanelsValue.columns)
} }
*/ else if (! e.metaKey && e.key === "f")
else if (!e.metaKey && e.key === "f")
{ {
e.preventDefault(); e.preventDefault()
// @ts-ignore // @ts-ignore
if (basicAndAdvancedQueryControlsRef?.current?.getCurrentMode() == "advanced") if(basicAndAdvancedQueryControlsRef?.current?.getCurrentMode() == "advanced")
{ {
gridApiRef.current.showFilterPanel(); gridApiRef.current.showFilterPanel()
} }
} }
} }
}; }
document.addEventListener("keydown", down); document.addEventListener("keydown", down)
return () => return () =>
{ {
document.removeEventListener("keydown", down); document.removeEventListener("keydown", down)
}; }
}, [dotMenuOpen, keyboardHelpOpen, metaData, activeModalProcess]); }, [dotMenuOpen, keyboardHelpOpen, metaData, activeModalProcess])
/******************************************************************************* /*******************************************************************************
@ -645,7 +642,7 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
const urlLooksLikeProcess = (): boolean => const urlLooksLikeProcess = (): boolean =>
{ {
return (pathParts[pathParts.length - 2] === tableName); return (pathParts[pathParts.length - 2] === tableName);
}; }
////////////////////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////////////////////
// monitor location changes - if our url looks like a savedView, then load that view, kinda // // monitor location changes - if our url looks like a savedView, then load that view, kinda //
@ -703,7 +700,7 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
setView(view); setView(view);
setViewAsJson(JSON.stringify(view)); setViewAsJson(JSON.stringify(view));
localStorage.setItem(viewLocalStorageKey, JSON.stringify(view)); localStorage.setItem(viewLocalStorageKey, JSON.stringify(view));
}; }
/******************************************************************************* /*******************************************************************************
@ -712,10 +709,10 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
const handleColumnVisibilityChange = (columnVisibilityModel: GridColumnVisibilityModel) => const handleColumnVisibilityChange = (columnVisibilityModel: GridColumnVisibilityModel) =>
{ {
setColumnVisibilityModel(columnVisibilityModel); setColumnVisibilityModel(columnVisibilityModel);
queryColumns.updateVisibility(columnVisibilityModel); queryColumns.updateVisibility(columnVisibilityModel)
view.queryColumns = queryColumns; view.queryColumns = queryColumns;
doSetView(view); doSetView(view)
forceUpdate(); forceUpdate();
}; };
@ -730,12 +727,12 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
// set the field's value in the view // // set the field's value in the view //
/////////////////////////////////////// ///////////////////////////////////////
let fieldName = field.name; let fieldName = field.name;
if (table && table.name != tableMetaData.name) if(table && table.name != tableMetaData.name)
{ {
fieldName = `${table.name}.${field.name}`; fieldName = `${table.name}.${field.name}`;
} }
view.queryColumns.setIsVisible(fieldName, newValue); view.queryColumns.setIsVisible(fieldName, newValue)
///////////////////// /////////////////////
// update the grid // // update the grid //
@ -745,13 +742,13 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
///////////////////////////////////////////////// /////////////////////////////////////////////////
// update the view (e.g., write local storage) // // update the view (e.g., write local storage) //
///////////////////////////////////////////////// /////////////////////////////////////////////////
doSetView(view); doSetView(view)
/////////////////// ///////////////////
// ole' faithful // // ole' faithful //
/////////////////// ///////////////////
forceUpdate(); forceUpdate();
}; }
/******************************************************************************* /*******************************************************************************
@ -790,7 +787,7 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
setPinnedColumns(queryColumns.toGridPinnedColumns()); setPinnedColumns(queryColumns.toGridPinnedColumns());
setColumnVisibilityModel(queryColumns.toColumnVisibilityModel()); setColumnVisibilityModel(queryColumns.toColumnVisibilityModel());
setColumnsModel(columns); setColumnsModel(columns);
}; }
/******************************************************************************* /*******************************************************************************
@ -799,7 +796,7 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
const promptForTableVariantSelection = () => const promptForTableVariantSelection = () =>
{ {
setTableVariantPromptOpen(true); setTableVariantPromptOpen(true);
}; }
/******************************************************************************* /*******************************************************************************
@ -813,10 +810,10 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
for (let i = 0; i < queryFilter?.orderBys?.length; i++) for (let i = 0; i < queryFilter?.orderBys?.length; i++)
{ {
const fieldName = queryFilter.orderBys[i].fieldName; const fieldName = queryFilter.orderBys[i].fieldName;
if (fieldName.indexOf(".") > -1) if(fieldName.indexOf(".") > -1)
{ {
const joinTableName = fieldName.replaceAll(/\..*/g, ""); const joinTableName = fieldName.replaceAll(/\..*/g, "");
if (!vjtToUse.has(joinTableName)) if(!vjtToUse.has(joinTableName))
{ {
const [field, fieldTable] = TableUtils.getFieldAndTable(tableMetaData, fieldName); const [field, fieldTable] = TableUtils.getFieldAndTable(tableMetaData, fieldName);
handleChangeOneColumnVisibility(field, fieldTable, true); handleChangeOneColumnVisibility(field, fieldTable, true);
@ -826,7 +823,7 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
} }
return (rs); return (rs);
}; }
/******************************************************************************* /*******************************************************************************
@ -834,13 +831,13 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
*******************************************************************************/ *******************************************************************************/
const updateTable = (reason?: string) => const updateTable = (reason?: string) =>
{ {
if (pageState != "ready") if(pageState != "ready")
{ {
console.log(`In updateTable, but pageSate[${pageState}] is not ready, so returning with noop`); console.log(`In updateTable, but pageSate[${pageState}] is not ready, so returning with noop`);
return; return;
} }
if (tableMetaData?.usesVariants && (!tableVariant || tableVariantPromptOpen)) if(tableMetaData?.usesVariants && (!tableVariant || tableVariantPromptOpen))
{ {
console.log("In updateTable, but a variant is needed, so returning with noop"); console.log("In updateTable, but a variant is needed, so returning with noop");
return; return;
@ -894,7 +891,7 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
}); });
} }
if (!tableMetaData.capabilities.has(Capability.TABLE_QUERY)) if(!tableMetaData.capabilities.has(Capability.TABLE_QUERY))
{ {
console.log("Cannot update table - it does not have QUERY capability."); console.log("Cannot update table - it does not have QUERY capability.");
return; return;
@ -969,7 +966,7 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
setDistinctRecords(countResults[latestQueryId][1]); setDistinctRecords(countResults[latestQueryId][1]);
delete countResults[latestQueryId]; delete countResults[latestQueryId];
} }
catch (e) catch(e)
{ {
console.log(e); console.log(e);
} }
@ -999,7 +996,7 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
// count how many distinct primary keys are on this page // // count how many distinct primary keys are on this page //
/////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////
let distinctPrimaryKeySet = new Set<string>(); let distinctPrimaryKeySet = new Set<string>();
for (let i = 0; i < results.length; i++) for(let i = 0; i < results.length; i++)
{ {
distinctPrimaryKeySet.add(results[i].values.get(tableMetaData.primaryKeyField) as string); distinctPrimaryKeySet.add(results[i].values.get(tableMetaData.primaryKeyField) as string);
} }
@ -1055,7 +1052,7 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
setRowsPerPage(size); setRowsPerPage(size);
view.rowsPerPage = size; view.rowsPerPage = size;
doSetView(view); doSetView(view)
}; };
/******************************************************************************* /*******************************************************************************
@ -1064,11 +1061,11 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
const handlePinnedColumnsChange = (pinnedColumns: GridPinnedColumns) => const handlePinnedColumnsChange = (pinnedColumns: GridPinnedColumns) =>
{ {
setPinnedColumns(pinnedColumns); setPinnedColumns(pinnedColumns);
queryColumns.setPinnedLeftColumns(pinnedColumns.left); queryColumns.setPinnedLeftColumns(pinnedColumns.left)
queryColumns.setPinnedRightColumns(pinnedColumns.right); queryColumns.setPinnedRightColumns(pinnedColumns.right)
view.queryColumns = queryColumns; view.queryColumns = queryColumns;
doSetView(view); doSetView(view)
}; };
/******************************************************************************* /*******************************************************************************
@ -1121,7 +1118,7 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
let selectedPrimaryKeys = new Set<string>(); let selectedPrimaryKeys = new Set<string>();
selectionModel.forEach((value: GridRowId, index: number) => selectionModel.forEach((value: GridRowId, index: number) =>
{ {
checkboxesChecked++; checkboxesChecked++
const valueToPush = latestQueryResults[value as number].values.get(tableMetaData.primaryKeyField); const valueToPush = latestQueryResults[value as number].values.get(tableMetaData.primaryKeyField);
selectedPrimaryKeys.add(valueToPush as string); selectedPrimaryKeys.add(valueToPush as string);
}); });
@ -1150,7 +1147,7 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
queryColumns.updateColumnOrder(columnOrdering); queryColumns.updateColumnOrder(columnOrdering);
view.queryColumns = queryColumns; view.queryColumns = queryColumns;
doSetView(view); doSetView(view)
}; };
@ -1162,7 +1159,7 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
queryColumns.updateColumnWidth(params.colDef.field, params.width); queryColumns.updateColumnWidth(params.colDef.field, params.width);
view.queryColumns = queryColumns; view.queryColumns = queryColumns;
doSetView(view); doSetView(view)
}; };
@ -1185,13 +1182,13 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
{ {
const fieldName = gridSort[i].field; const fieldName = gridSort[i].field;
const isAscending = gridSort[i].sort == "asc"; const isAscending = gridSort[i].sort == "asc";
queryFilter.orderBys.push(new QFilterOrderBy(fieldName, isAscending)); queryFilter.orderBys.push(new QFilterOrderBy(fieldName, isAscending))
} }
////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////
// set a default order-by, if none is otherwise present // // set a default order-by, if none is otherwise present //
////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////
if (queryFilter.orderBys.length == 0) if(queryFilter.orderBys.length == 0)
{ {
queryFilter.orderBys.push(new QFilterOrderBy(tableMetaData.primaryKeyField, false)); queryFilter.orderBys.push(new QFilterOrderBy(tableMetaData.primaryKeyField, false));
} }
@ -1209,7 +1206,7 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
const handleColumnHeaderClick = (params: GridColumnHeaderParams, event: MuiEvent, details: GridCallbackDetails): void => const handleColumnHeaderClick = (params: GridColumnHeaderParams, event: MuiEvent, details: GridCallbackDetails): void =>
{ {
event.defaultMuiPrevented = true; event.defaultMuiPrevented = true;
}; }
/******************************************************************************* /*******************************************************************************
@ -1227,7 +1224,7 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
setRowsPerPage(view.rowsPerPage ?? defaultRowsPerPage); setRowsPerPage(view.rowsPerPage ?? defaultRowsPerPage);
setMode(view.mode ?? defaultMode); setMode(view.mode ?? defaultMode);
setQuickFilterFieldNames(view.quickFilterFieldNames ?? []); // todo not i think ?? getDefaultQuickFilterFieldNames(tableMetaData)); setQuickFilterFieldNames(view.quickFilterFieldNames ?? []) // todo not i think ?? getDefaultQuickFilterFieldNames(tableMetaData));
////////////////////////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////////////////////////
// do this last - in case anything in the view got modified in any of those other doSet methods // // do this last - in case anything in the view got modified in any of those other doSet methods //
@ -1240,7 +1237,7 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
/////////////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////
// @ts-ignore // @ts-ignore
setTimeout(() => basicAndAdvancedQueryControlsRef?.current?.ensureAllFilterCriteriaAreActiveQuickFilters(view.queryFilter, "activatedView")); setTimeout(() => basicAndAdvancedQueryControlsRef?.current?.ensureAllFilterCriteriaAreActiveQuickFilters(view.queryFilter, "activatedView"));
}; }
/******************************************************************************* /*******************************************************************************
@ -1258,7 +1255,7 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
/////////////////////////////////////////////////// ///////////////////////////////////////////////////
// in case there's no orderBys, set default here // // in case there's no orderBys, set default here //
/////////////////////////////////////////////////// ///////////////////////////////////////////////////
if (!queryFilter.orderBys || queryFilter.orderBys.length == 0) if(!queryFilter.orderBys || queryFilter.orderBys.length == 0)
{ {
queryFilter.orderBys = [new QFilterOrderBy(tableMetaData?.primaryKeyField, false)]; queryFilter.orderBys = [new QFilterOrderBy(tableMetaData?.primaryKeyField, false)];
view.queryFilter = queryFilter; view.queryFilter = queryFilter;
@ -1284,17 +1281,17 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
/////////////////////////////////////////////// ///////////////////////////////////////////////
// put this query filter in the current view // // put this query filter in the current view //
/////////////////////////////////////////////// ///////////////////////////////////////////////
if (!isFromActivateView) if(!isFromActivateView)
{ {
view.queryFilter = queryFilter; view.queryFilter = queryFilter;
doSetView(view); doSetView(view)
} }
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// this force-update causes a re-render that'll see the changed filter hash/json string, and make an updateTable run (if appropriate) // // this force-update causes a re-render that'll see the changed filter hash/json string, and make an updateTable run (if appropriate) //
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
forceUpdate(); forceUpdate();
}; }
/******************************************************************************* /*******************************************************************************
** Wrapper around setQueryColumns that also sets column models for the grid, puts ** Wrapper around setQueryColumns that also sets column models for the grid, puts
@ -1324,12 +1321,12 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
/////////////////////////////////////////// ///////////////////////////////////////////
// put these columns in the current view // // put these columns in the current view //
/////////////////////////////////////////// ///////////////////////////////////////////
if (!isFromActivateView) if(!isFromActivateView)
{ {
view.queryColumns = queryColumns; view.queryColumns = queryColumns;
doSetView(view); doSetView(view)
} }
}; }
/******************************************************************************* /*******************************************************************************
@ -1341,7 +1338,7 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
setQuickFilterFieldNames([...(names ?? [])]); setQuickFilterFieldNames([...(names ?? [])]);
view.quickFilterFieldNames = names; view.quickFilterFieldNames = names;
doSetView(view); doSetView(view)
}; };
@ -1354,7 +1351,7 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
view.mode = newValue; view.mode = newValue;
doSetView(view); doSetView(view);
}; }
/******************************************************************************* /*******************************************************************************
@ -1372,7 +1369,7 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
} }
return (selectedIds.length); return (selectedIds.length);
}; }
/******************************************************************************* /*******************************************************************************
@ -1383,18 +1380,12 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
{ {
if (selectFullFilterState === "filter") if (selectFullFilterState === "filter")
{ {
const filterForBackend = prepQueryFilterForBackend(queryFilter); return `?recordsParam=filterJSON&filterJSON=${encodeURIComponent(JSON.stringify(queryFilter))}`;
filterForBackend.skip = 0;
filterForBackend.limit = null;
return `?recordsParam=filterJSON&filterJSON=${encodeURIComponent(JSON.stringify(filterForBackend))}`;
} }
if (selectFullFilterState === "filterSubset") if (selectFullFilterState === "filterSubset")
{ {
const filterForBackend = prepQueryFilterForBackend(queryFilter); return `?recordsParam=filterJSON&filterJSON=${encodeURIComponent(JSON.stringify(queryFilter))}`;
filterForBackend.skip = 0;
filterForBackend.limit = selectionSubsetSize;
return `?recordsParam=filterJSON&filterJSON=${encodeURIComponent(JSON.stringify(filterForBackend))}`;
} }
if (selectedIds.length > 0) if (selectedIds.length > 0)
@ -1403,7 +1394,7 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
} }
return ""; return "";
}; }
/******************************************************************************* /*******************************************************************************
@ -1414,17 +1405,11 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
{ {
if (selectFullFilterState === "filter") if (selectFullFilterState === "filter")
{ {
const filterForBackend = prepQueryFilterForBackend(queryFilter); setRecordIdsForProcess(queryFilter);
filterForBackend.skip = 0;
filterForBackend.limit = null;
setRecordIdsForProcess(filterForBackend);
} }
else if (selectFullFilterState === "filterSubset") else if (selectFullFilterState === "filterSubset")
{ {
const filterForBackend = prepQueryFilterForBackend(queryFilter); setRecordIdsForProcess(new QQueryFilter(queryFilter.criteria, queryFilter.orderBys, queryFilter.booleanOperator, 0, selectionSubsetSize));
filterForBackend.skip = 0;
filterForBackend.limit = selectionSubsetSize;
setRecordIdsForProcess(filterForBackend);
} }
else if (selectedIds.length > 0) else if (selectedIds.length > 0)
{ {
@ -1559,7 +1544,7 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
*******************************************************************************/ *******************************************************************************/
const doSetCurrentSavedView = (savedViewRecord: QRecord) => const doSetCurrentSavedView = (savedViewRecord: QRecord) =>
{ {
if (savedViewRecord == null) if(savedViewRecord == null)
{ {
console.log("doSetCurrentView called with a null view record - calling doClearCurrentSavedView instead."); console.log("doSetCurrentView called with a null view record - calling doClearCurrentSavedView instead.");
doClearCurrentSavedView(); doClearCurrentSavedView();
@ -1568,7 +1553,7 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
setCurrentSavedView(savedViewRecord); setCurrentSavedView(savedViewRecord);
const viewJson = savedViewRecord.values.get("viewJson"); const viewJson = savedViewRecord.values.get("viewJson")
const newView = RecordQueryView.buildFromJSON(viewJson); const newView = RecordQueryView.buildFromJSON(viewJson);
activateView(newView); activateView(newView);
@ -1577,7 +1562,7 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
// todo can/should/does this move into the view's "identity"? // // todo can/should/does this move into the view's "identity"? //
//////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////
localStorage.setItem(currentSavedViewLocalStorageKey, `${savedViewRecord.values.get("id")}`); localStorage.setItem(currentSavedViewLocalStorageKey, `${savedViewRecord.values.get("id")}`);
}; }
/******************************************************************************* /*******************************************************************************
@ -1587,7 +1572,7 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
{ {
setCurrentSavedView(null); setCurrentSavedView(null);
localStorage.removeItem(currentSavedViewLocalStorageKey); localStorage.removeItem(currentSavedViewLocalStorageKey);
}; }
/******************************************************************************* /*******************************************************************************
@ -1603,7 +1588,7 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
newDefaultView.quickFilterFieldNames = []; newDefaultView.quickFilterFieldNames = [];
newDefaultView.mode = defaultMode; newDefaultView.mode = defaultMode;
return newDefaultView; return newDefaultView;
}; }
/******************************************************************************* /*******************************************************************************
** event handler for SavedViews component, to handle user selecting a view ** event handler for SavedViews component, to handle user selecting a view
@ -1638,9 +1623,9 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
/////////////////////////////////////////////// ///////////////////////////////////////////////
// activate a new default view for the table // // activate a new default view for the table //
/////////////////////////////////////////////// ///////////////////////////////////////////////
activateView(buildTableDefaultView(tableMetaData)); activateView(buildTableDefaultView(tableMetaData))
} }
}; }
/******************************************************************************* /*******************************************************************************
** utility function to fetch a saved view from the backend. ** utility function to fetch a saved view from the backend.
@ -1668,7 +1653,7 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
// such as, making values be what they'd be in the UI (not necessarily // // such as, making values be what they'd be in the UI (not necessarily //
// what they're like in the backend); similarly, set anything that's unset. // // what they're like in the backend); similarly, set anything that's unset. //
////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////
const viewJson = qRecord.values.get("viewJson"); const viewJson = qRecord.values.get("viewJson")
const newView = RecordQueryView.buildFromJSON(viewJson); const newView = RecordQueryView.buildFromJSON(viewJson);
setWarningAlert(null); setWarningAlert(null);
@ -1684,16 +1669,16 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
/////////////////////////// ///////////////////////////
// set columns if absent // // set columns if absent //
/////////////////////////// ///////////////////////////
if (!newView.queryColumns || !newView.queryColumns.columns || newView.queryColumns.columns?.length == 0) if(!newView.queryColumns || !newView.queryColumns.columns || newView.queryColumns.columns?.length == 0)
{ {
newView.queryColumns = QQueryColumns.buildDefaultForTable(tableMetaData); newView.queryColumns = QQueryColumns.buildDefaultForTable(tableMetaData);
} }
qRecord.values.set("viewJson", JSON.stringify(newView)); qRecord.values.set("viewJson", JSON.stringify(newView))
} }
return (qRecord); return (qRecord);
}; }
/******************************************************************************* /*******************************************************************************
@ -1793,12 +1778,12 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
} }
const removedFieldCount = removedFieldNames.size; const removedFieldCount = removedFieldNames.size;
if (removedFieldCount > 0) if(removedFieldCount > 0)
{ {
const plural = removedFieldCount > 1; const plural = removedFieldCount > 1;
setWarningAlert(`${removedFieldCount} field${plural ? "s" : ""} that ${plural ? "were" : "was"} part of this view ${plural ? "are" : "is"} no longer in this table, and ${plural ? "were" : "was"} removed from this view (${[...removedFieldNames.values()].join(", ")}).`); setWarningAlert(`${removedFieldCount} field${plural ? "s" : ""} that ${plural ? "were" : "was"} part of this view ${plural ? "are" : "is"} no longer in this table, and ${plural ? "were" : "was"} removed from this view (${[...removedFieldNames.values()].join(", ")}).`);
} }
}; }
/******************************************************************************* /*******************************************************************************
@ -1808,7 +1793,7 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
{ {
const newCriteria = new QFilterCriteria(fieldName, null, []); const newCriteria = new QFilterCriteria(fieldName, null, []);
if (!queryFilter.criteria) if(!queryFilter.criteria)
{ {
queryFilter.criteria = []; queryFilter.criteria = [];
} }
@ -1834,8 +1819,8 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
/////////////////////////// ///////////////////////////
// open the filter panel // // open the filter panel //
/////////////////////////// ///////////////////////////
gridApiRef.current.showPreferences(GridPreferencePanelsValue.filters); gridApiRef.current.showPreferences(GridPreferencePanelsValue.filters)
}; }
/******************************************************************************* /*******************************************************************************
@ -1930,7 +1915,7 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
<MenuItem onClick={(e) => <MenuItem onClick={(e) =>
{ {
hideMenu(e); hideMenu(e);
if (mode == "advanced") if(mode == "advanced")
{ {
handleColumnMenuAdvancedFilterSelection(currentColumn.field); handleColumnMenuAdvancedFilterSelection(currentColumn.field);
} }
@ -1989,24 +1974,24 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
for (let i = 0; i < queryFilter?.criteria?.length; i++) for (let i = 0; i < queryFilter?.criteria?.length; i++)
{ {
const criteria = queryFilter.criteria[i]; const criteria = queryFilter.criteria[i];
if (criteria.fieldName == props.field && validateCriteria(criteria, null).criteriaIsValid) if(criteria.fieldName == props.field && validateCriteria(criteria, null).criteriaIsValid)
{ {
showFilter = true; showFilter = true;
} }
} }
if (showFilter) if(showFilter)
{ {
return (<IconButton size="small" sx={{p: "2px"}} onClick={(event) => return (<IconButton size="small" sx={{p: "2px"}} onClick={(event) =>
{ {
if (mode == "basic") if(mode == "basic")
{ {
// @ts-ignore !? // @ts-ignore !?
basicAndAdvancedQueryControlsRef.current.addField(props.field); basicAndAdvancedQueryControlsRef.current.addField(props.field);
} }
else else
{ {
gridApiRef.current.showPreferences(GridPreferencePanelsValue.filters); gridApiRef.current.showPreferences(GridPreferencePanelsValue.filters)
} }
event.stopPropagation(); event.stopPropagation();
@ -2110,35 +2095,23 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
*******************************************************************************/ *******************************************************************************/
const selectionMenuCallback = (selectedIndex: number) => const selectionMenuCallback = (selectedIndex: number) =>
{ {
if (selectedIndex == 0) if(selectedIndex == 0)
{ {
///////////////
// this page //
///////////////
programmaticallySelectSomeOrAllRows(); programmaticallySelectSomeOrAllRows();
setSelectFullFilterState("checked"); setSelectFullFilterState("checked")
} }
else if (selectedIndex == 1) else if(selectedIndex == 1)
{ {
///////////////////////
// full query result //
///////////////////////
programmaticallySelectSomeOrAllRows(); programmaticallySelectSomeOrAllRows();
setSelectFullFilterState("filter"); setSelectFullFilterState("filter")
} }
else if (selectedIndex == 2) else if(selectedIndex == 2)
{ {
////////////////////////////
// subset of query result //
////////////////////////////
setSelectionSubsetSizePromptOpen(true); setSelectionSubsetSizePromptOpen(true);
} }
else if (selectedIndex == 3) else if(selectedIndex == 3)
{ {
///////////////////// setSelectFullFilterState("n/a")
// clear selection //
/////////////////////
setSelectFullFilterState("n/a");
setRowSelectionModel([]); setRowSelectionModel([]);
setSelectedIds([]); setSelectedIds([]);
} }
@ -2160,13 +2133,13 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
{ {
setSelectionSubsetSizePromptOpen(false); setSelectionSubsetSizePromptOpen(false);
if (value !== undefined) if(value !== undefined)
{ {
if (typeof value === "number" && value > 0) if(typeof value === "number" && value > 0)
{ {
programmaticallySelectSomeOrAllRows(value); programmaticallySelectSomeOrAllRows(value);
setSelectionSubsetSize(value); setSelectionSubsetSize(value);
setSelectFullFilterState("filterSubset"); setSelectFullFilterState("filterSubset")
} }
else else
{ {
@ -2270,7 +2243,7 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
///////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////////
const [filterHash, setFilterHash] = useState(""); const [filterHash, setFilterHash] = useState("");
if (pageState == "ready") if(pageState == "ready")
{ {
const newFilterHash = JSON.stringify(prepQueryFilterForBackend(queryFilter)); const newFilterHash = JSON.stringify(prepQueryFilterForBackend(queryFilter));
if (filterHash != newFilterHash) if (filterHash != newFilterHash)
@ -2383,7 +2356,7 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
for (let i = 0; i < queryFilter?.criteria?.length; i++) for (let i = 0; i < queryFilter?.criteria?.length; i++)
{ {
const criteria = queryFilter.criteria[i]; const criteria = queryFilter.criteria[i];
if (criteria.operator == QCriteriaOperator.NOT_EQUALS) if(criteria.operator == QCriteriaOperator.NOT_EQUALS)
{ {
criteria.operator = QCriteriaOperator.NOT_EQUALS_OR_IS_NULL; criteria.operator = QCriteriaOperator.NOT_EQUALS_OR_IS_NULL;
} }
@ -2401,14 +2374,14 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
///////////////////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////////////////////
doClearCurrentSavedView(); doClearCurrentSavedView();
} }
catch (e) catch(e)
{ {
setAlertContent("Error parsing filter from URL"); setAlertContent("Error parsing filter from URL");
} }
} }
else if (viewIdInLocation) else if (viewIdInLocation)
{ {
if (view.viewIdentity == `savedView:${viewIdInLocation}`) if(view.viewIdentity == `savedView:${viewIdInLocation}`)
{ {
///////////////////////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////////////////////////
// if the view id in the location is the same as the view that was most-recently active here, // // if the view id in the location is the same as the view that was most-recently active here, //
@ -2453,7 +2426,7 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
// so the useEffect that monitors location will see the change, and will set viewIdInLocation // // so the useEffect that monitors location will see the change, and will set viewIdInLocation //
// so upon a re-render we'll hit this block again. // // so upon a re-render we'll hit this block again. //
///////////////////////////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////////////////////////////
setPageState("loadedMetaData"); setPageState("loadedMetaData")
return; return;
} }
@ -2487,7 +2460,7 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
setTimeout(() => setTimeout(() =>
{ {
// @ts-ignore // @ts-ignore
basicAndAdvancedQueryControlsRef?.current?.ensureAllFilterCriteriaAreActiveQuickFilters(view.queryFilter, "defaultFilterLoaded"); basicAndAdvancedQueryControlsRef?.current?.ensureAllFilterCriteriaAreActiveQuickFilters(view.queryFilter, "defaultFilterLoaded")
}); });
console.log("finished preparing grid, going to page state ready"); console.log("finished preparing grid, going to page state ready");
@ -2509,13 +2482,13 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
//////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////
useEffect(() => useEffect(() =>
{ {
if (pageState == "ready") if(pageState == "ready")
{ {
pageLoadingState.setNotLoading(); pageLoadingState.setNotLoading()
if (!tableVariantPromptOpen) if(!tableVariantPromptOpen)
{ {
updateTable("pageState is now ready"); updateTable("pageState is now ready")
} }
} }
}, [pageState, tableVariantPromptOpen]); }, [pageState, tableVariantPromptOpen]);
@ -2544,7 +2517,7 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
///////////////////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////////////////////
if (tableMetaData && !tableMetaData.capabilities.has(Capability.TABLE_QUERY) && tableMetaData.capabilities.has(Capability.TABLE_GET)) if (tableMetaData && !tableMetaData.capabilities.has(Capability.TABLE_QUERY) && tableMetaData.capabilities.has(Capability.TABLE_GET))
{ {
if (tableMetaData?.usesVariants && (!tableVariant || tableVariantPromptOpen)) if(tableMetaData?.usesVariants && (!tableVariant || tableVariantPromptOpen))
{ {
return ( return (
<BaseLayout> <BaseLayout>
@ -2561,9 +2534,9 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
// if the table uses variants, then put the variant-selector into the goto dialog // // if the table uses variants, then put the variant-selector into the goto dialog //
//////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////
let gotoVariantSubHeader = <></>; let gotoVariantSubHeader = <></>;
if (tableMetaData?.usesVariants) if(tableMetaData?.usesVariants)
{ {
gotoVariantSubHeader = <Box mb={2}>{getTableVariantHeader(tableVariant)}</Box>; gotoVariantSubHeader = <Box mb={2}>{getTableVariantHeader(tableVariant)}</Box>
} }
return ( return (
@ -2576,7 +2549,7 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
/////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////
// render a loading screen if the page state isn't ready // // render a loading screen if the page state isn't ready //
/////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////
if (pageState != "ready") if(pageState != "ready")
{ {
console.log(`page state is ${pageState}... no-op while those complete async's run...`); console.log(`page state is ${pageState}... no-op while those complete async's run...`);
return (getLoadingScreen()); return (getLoadingScreen());
@ -2586,13 +2559,13 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
// if the table isn't loaded yet, display loading screen. // // if the table isn't loaded yet, display loading screen. //
// this shouldn't be possible, to be out-of-sync with pageState, but just as a fail-safe // // this shouldn't be possible, to be out-of-sync with pageState, but just as a fail-safe //
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
if (!tableMetaData) if(!tableMetaData)
{ {
return (getLoadingScreen()); return (getLoadingScreen());
} }
let savedViewsComponent = null; let savedViewsComponent = null;
if (metaData && metaData.processes.has("querySavedView")) if(metaData && metaData.processes.has("querySavedView"))
{ {
savedViewsComponent = (<SavedViews qController={qController} metaData={metaData} tableMetaData={tableMetaData} view={view} viewAsJson={viewAsJson} currentSavedView={currentSavedView} tableDefaultView={tableDefaultView} viewOnChangeCallback={handleSavedViewChange} loadingSavedView={loadingSavedView} />); savedViewsComponent = (<SavedViews qController={qController} metaData={metaData} tableMetaData={tableMetaData} view={view} viewAsJson={viewAsJson} currentSavedView={currentSavedView} tableDefaultView={tableDefaultView} viewOnChangeCallback={handleSavedViewChange} loadingSavedView={loadingSavedView} />);
} }
@ -2615,9 +2588,9 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
//////////////////////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////////////////////
const baseView = currentSavedView ? JSON.parse(currentSavedView.values.get("viewJson")) as RecordQueryView : tableDefaultView; const baseView = currentSavedView ? JSON.parse(currentSavedView.values.get("viewJson")) as RecordQueryView : tableDefaultView;
const viewDiffs: string[] = []; const viewDiffs: string[] = [];
SavedViewUtils.diffColumns(tableMetaData, baseView, view, viewDiffs); SavedViewUtils.diffColumns(tableMetaData, baseView, view, viewDiffs)
if (viewDiffs.length == 0 && currentSavedView) if(viewDiffs.length == 0 && currentSavedView)
{ {
///////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////
// if 's a saved view, and it's "clean", show it in main style // // if 's a saved view, and it's "clean", show it in main style //
@ -2626,7 +2599,7 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
buttonBorder = accentColor; buttonBorder = accentColor;
buttonColor = "#FFFFFF"; buttonColor = "#FFFFFF";
} }
else if (viewDiffs.length > 0) else if(viewDiffs.length > 0)
{ {
/////////////////////////////////////////////////// ///////////////////////////////////////////////////
// else if there are diffs, show alt/light style // // else if there are diffs, show alt/light style //
@ -2653,7 +2626,7 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
color: buttonColor, color: buttonColor,
backgroundColor: buttonBackground, backgroundColor: buttonBackground,
} }
}; }
return (<Box order="2"> return (<Box order="2">
<FieldListMenu <FieldListMenu
@ -2668,19 +2641,19 @@ function RecordQuery({table, launchProcess}: Props): JSX.Element
handleToggleField={handleChangeOneColumnVisibility} handleToggleField={handleChangeOneColumnVisibility}
/> />
</Box>); </Box>);
}; }
////////////////////////////////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////////////////////////////////
// these numbers help set the height of the grid (so page won't scroll) based on spcae above & below it // // these numbers help set the height of the grid (so page won't scroll) based on spcae above & below it //
////////////////////////////////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////////////////////////////////
let spaceBelowGrid = 40; let spaceBelowGrid = 40;
let spaceAboveGrid = 205; let spaceAboveGrid = 205;
if (tableMetaData?.usesVariants) if(tableMetaData?.usesVariants)
{ {
spaceAboveGrid += 30; spaceAboveGrid += 30;
} }
if (mode == "advanced") if(mode == "advanced")
{ {
spaceAboveGrid += 60; spaceAboveGrid += 60;
} }

View File

@ -29,11 +29,11 @@ import Tooltip from "@mui/material/Tooltip/Tooltip";
import {GridColDef, GridFilterItem, GridRowsProp, MuiEvent} from "@mui/x-data-grid-pro"; import {GridColDef, GridFilterItem, GridRowsProp, MuiEvent} from "@mui/x-data-grid-pro";
import {GridFilterOperator} from "@mui/x-data-grid/models/gridFilterOperator"; import {GridFilterOperator} from "@mui/x-data-grid/models/gridFilterOperator";
import {GridColumnHeaderParams} from "@mui/x-data-grid/models/params/gridColumnHeaderParams"; import {GridColumnHeaderParams} from "@mui/x-data-grid/models/params/gridColumnHeaderParams";
import React from "react";
import {Link, NavigateFunction} from "react-router-dom";
import HelpContent, {hasHelpContent} from "qqq/components/misc/HelpContent"; import HelpContent, {hasHelpContent} from "qqq/components/misc/HelpContent";
import {buildQGridPvsOperators, QGridBlobOperators, QGridBooleanOperators, QGridNumericOperators, QGridStringOperators} from "qqq/pages/records/query/GridFilterOperators"; import {buildQGridPvsOperators, QGridBlobOperators, QGridBooleanOperators, QGridNumericOperators, QGridStringOperators} from "qqq/pages/records/query/GridFilterOperators";
import ValueUtils from "qqq/utils/qqq/ValueUtils"; import ValueUtils from "qqq/utils/qqq/ValueUtils";
import React from "react";
import {Link, NavigateFunction} from "react-router-dom";
const emptyApplyFilterFn = (filterItem: GridFilterItem, column: GridColDef): null => null; const emptyApplyFilterFn = (filterItem: GridFilterItem, column: GridColDef): null => null;
@ -118,7 +118,7 @@ export default class DataGridUtils
/******************************************************************************* /*******************************************************************************
** **
*******************************************************************************/ *******************************************************************************/
public static makeRows = (results: QRecord[], tableMetaData: QTableMetaData, allowEmptyId = false): GridRowsProp[] => public static makeRows = (results: QRecord[], tableMetaData: QTableMetaData): GridRowsProp[] =>
{ {
const fields = [...tableMetaData.fields.values()]; const fields = [...tableMetaData.fields.values()];
const rows = [] as any[]; const rows = [] as any[];
@ -159,10 +159,7 @@ export default class DataGridUtils
///////////////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////////////////
// DataGrid gets very upset about a null or undefined here, so, try to make it happier // // DataGrid gets very upset about a null or undefined here, so, try to make it happier //
///////////////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////////////////
if(!allowEmptyId) row["id"] = "--";
{
row["id"] = "--";
}
} }
} }
@ -282,7 +279,7 @@ export default class DataGridUtils
if (key === tableMetaData.primaryKeyField && linkBase) if (key === tableMetaData.primaryKeyField && linkBase)
{ {
column.renderCell = (cellValues: any) => ( column.renderCell = (cellValues: any) => (
cellValues.value ? <Link to={`${linkBase}${encodeURIComponent(cellValues.value)}`} onClick={(e) => e.stopPropagation()}>{cellValues.value}</Link> : "" <Link to={`${linkBase}${encodeURIComponent(cellValues.value)}`} onClick={(e) => e.stopPropagation()}>{cellValues.value}</Link>
); );
} }
}); });

View File

@ -64,6 +64,7 @@ class FilterUtils
let rs = []; let rs = [];
for (let i = 0; i < param.length; i++) for (let i = 0; i < param.length; i++)
{ {
console.log(param[i]);
if (param[i] && param[i].id && param[i].label) if (param[i] && param[i].id && param[i].label)
{ {
///////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////
@ -114,11 +115,8 @@ class FilterUtils
// e.g., ...values=[1]... // // e.g., ...values=[1]... //
// but we need them to be possibleValue objects (w/ id & label) so the label // // but we need them to be possibleValue objects (w/ id & label) so the label //
// can be shown in the filter dropdown. So, make backend call to look them up. // // can be shown in the filter dropdown. So, make backend call to look them up. //
// also, there are cases where we can get a null or "" as the only value in the //
// values array - avoid sending that to the backend, as it comes back w/ all //
// possible values, and a general "bad time" //
////////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////////
if (values && values.length > 0 && values[0] !== null && values[0] !== undefined && values[0] !== "") if (values && values.length > 0)
{ {
values = await qController.possibleValues(fieldTable.name, null, field.name, "", values); values = await qController.possibleValues(fieldTable.name, null, field.name, "", values);
} }
@ -263,45 +261,39 @@ class FilterUtils
/******************************************************************************* /*******************************************************************************
** **
*******************************************************************************/ *******************************************************************************/
public static canFilterWorkAsBasic(tableMetaData: QTableMetaData, filter: QQueryFilter): { canFilterWorkAsBasic: boolean; canFilterWorkAsAdvanced: boolean, reasonsWhyItCannot?: string[] } public static canFilterWorkAsBasic(tableMetaData: QTableMetaData, filter: QQueryFilter): { canFilterWorkAsBasic: boolean; reasonsWhyItCannot?: string[] }
{ {
const reasonsWhyItCannot: string[] = []; const reasonsWhyItCannot: string[] = [];
if (filter == null) if(filter == null)
{ {
return ({canFilterWorkAsBasic: true, canFilterWorkAsAdvanced: true}); return ({canFilterWorkAsBasic: true});
} }
if (filter.booleanOperator == "OR") if(filter.booleanOperator == "OR")
{ {
reasonsWhyItCannot.push("Filter uses the 'OR' operator."); reasonsWhyItCannot.push("Filter uses the 'OR' operator.")
} }
if (filter.subFilters?.length > 0) if(filter.criteria)
{ {
reasonsWhyItCannot.push("Filter contains sub-filters."); const usedFields: {[name: string]: boolean} = {};
return ({canFilterWorkAsBasic: false, canFilterWorkAsAdvanced: false, reasonsWhyItCannot: reasonsWhyItCannot}); const warnedFields: {[name: string]: boolean} = {};
}
if (filter.criteria)
{
const usedFields: { [name: string]: boolean } = {};
const warnedFields: { [name: string]: boolean } = {};
for (let i = 0; i < filter.criteria.length; i++) for (let i = 0; i < filter.criteria.length; i++)
{ {
const criteriaName = filter.criteria[i].fieldName; const criteriaName = filter.criteria[i].fieldName;
if (!criteriaName) if(!criteriaName)
{ {
continue; continue;
} }
if (usedFields[criteriaName]) if(usedFields[criteriaName])
{ {
if (!warnedFields[criteriaName]) if(!warnedFields[criteriaName])
{ {
const [field, tableForField] = TableUtils.getFieldAndTable(tableMetaData, criteriaName); const [field, tableForField] = TableUtils.getFieldAndTable(tableMetaData, criteriaName);
let fieldLabel = field.label; let fieldLabel = field.label;
if (tableForField.name != tableMetaData.name) if(tableForField.name != tableMetaData.name)
{ {
let fieldLabel = `${tableForField.label}: ${field.label}`; let fieldLabel = `${tableForField.label}: ${field.label}`;
} }
@ -313,13 +305,13 @@ class FilterUtils
} }
} }
if (reasonsWhyItCannot.length == 0) if(reasonsWhyItCannot.length == 0)
{ {
return ({canFilterWorkAsBasic: true, canFilterWorkAsAdvanced: true}); return ({canFilterWorkAsBasic: true});
} }
else else
{ {
return ({canFilterWorkAsBasic: false, canFilterWorkAsAdvanced: true, reasonsWhyItCannot: reasonsWhyItCannot}); return ({canFilterWorkAsBasic: false, reasonsWhyItCannot: reasonsWhyItCannot});
} }
} }
@ -327,11 +319,11 @@ class FilterUtils
** get the values associated with a criteria as a string, e.g., for showing ** get the values associated with a criteria as a string, e.g., for showing
** in a tooltip. ** in a tooltip.
*******************************************************************************/ *******************************************************************************/
public static getValuesString(fieldMetaData: QFieldMetaData, criteria: QFilterCriteria, maxValuesToShow: number = 3, andMoreFormat: "andNOther" | "+N" = "andNOther"): string public static getValuesString(fieldMetaData: QFieldMetaData, criteria: QFilterCriteria, maxValuesToShow: number = 3): string
{ {
let valuesString = ""; let valuesString = "";
if (criteria.operator == QCriteriaOperator.IS_BLANK || criteria.operator == QCriteriaOperator.IS_NOT_BLANK) if(criteria.operator == QCriteriaOperator.IS_BLANK || criteria.operator == QCriteriaOperator.IS_NOT_BLANK)
{ {
/////////////////////////////////////////////// ///////////////////////////////////////////////
// we don't want values for these operators. // // we don't want values for these operators. //
@ -348,10 +340,6 @@ class FilterUtils
{ {
maxLoops = maxValuesToShow; maxLoops = maxValuesToShow;
} }
else if (maxValuesToShow == 1 && criteria.values.length > 1)
{
maxLoops = 1;
}
for (let i = 0; i < maxLoops; i++) for (let i = 0; i < maxLoops; i++)
{ {
@ -369,22 +357,17 @@ class FilterUtils
else if (value.type == "ThisOrLastPeriod") else if (value.type == "ThisOrLastPeriod")
{ {
const expression = new ThisOrLastPeriodExpression(value); const expression = new ThisOrLastPeriodExpression(value);
let startOfPrefix = ""; labels.push(expression.toString());
if (fieldMetaData.type == QFieldType.DATE_TIME || expression.timeUnit != "DAYS")
{
startOfPrefix = "start of ";
}
labels.push(`${startOfPrefix}${expression.toString()}`);
} }
else if (fieldMetaData.type == QFieldType.BOOLEAN) else if(fieldMetaData.type == QFieldType.BOOLEAN)
{ {
labels.push(value == true ? "yes" : "no"); labels.push(value == true ? "yes" : "no")
} }
else if (fieldMetaData.type == QFieldType.DATE_TIME) else if(fieldMetaData.type == QFieldType.DATE_TIME)
{ {
labels.push(ValueUtils.formatDateTime(value)); labels.push(ValueUtils.formatDateTime(value));
} }
else if (fieldMetaData.type == QFieldType.DATE) else if(fieldMetaData.type == QFieldType.DATE)
{ {
labels.push(ValueUtils.formatDate(value)); labels.push(ValueUtils.formatDate(value));
} }
@ -400,16 +383,7 @@ class FilterUtils
if (maxLoops < criteria.values.length) if (maxLoops < criteria.values.length)
{ {
const n = criteria.values.length - maxLoops; labels.push(" and " + (criteria.values.length - maxLoops) + " other values.");
switch (andMoreFormat)
{
case "andNOther":
labels.push(` and ${n} other value${n == 1 ? "" : "s"}.`);
break;
case "+N":
labels[labels.length - 1] += ` +${n}`;
break;
}
} }
valuesString = (labels.join(", ")); valuesString = (labels.join(", "));
@ -456,7 +430,7 @@ class FilterUtils
for (let i = 0; i < queryFilter?.orderBys?.length; i++) for (let i = 0; i < queryFilter?.orderBys?.length; i++)
{ {
const orderBy = queryFilter.orderBys[i]; const orderBy = queryFilter.orderBys[i];
gridSortModel.push({field: orderBy.fieldName, sort: orderBy.isAscending ? "asc" : "desc"}); gridSortModel.push({field: orderBy.fieldName, sort: orderBy.isAscending ? "asc" : "desc"})
} }
return (gridSortModel); return (gridSortModel);
} }
@ -467,7 +441,7 @@ class FilterUtils
*******************************************************************************/ *******************************************************************************/
public static operatorToHumanString(criteria: QFilterCriteria, field: QFieldMetaData): string public static operatorToHumanString(criteria: QFilterCriteria, field: QFieldMetaData): string
{ {
if (criteria == null || criteria.operator == null) if(criteria == null || criteria.operator == null)
{ {
return (null); return (null);
} }
@ -477,7 +451,7 @@ class FilterUtils
try try
{ {
switch (criteria.operator) switch(criteria.operator)
{ {
case QCriteriaOperator.EQUALS: case QCriteriaOperator.EQUALS:
return ("equals"); return ("equals");
@ -501,35 +475,35 @@ class FilterUtils
case QCriteriaOperator.NOT_CONTAINS: case QCriteriaOperator.NOT_CONTAINS:
return ("does not contain"); return ("does not contain");
case QCriteriaOperator.LESS_THAN: case QCriteriaOperator.LESS_THAN:
if (isDate || isDateTime) if(isDate || isDateTime)
{ {
return ("is before"); return ("is before")
} }
return ("less than"); return ("less than");
case QCriteriaOperator.LESS_THAN_OR_EQUALS: case QCriteriaOperator.LESS_THAN_OR_EQUALS:
if (isDate) if(isDate)
{ {
return ("is on or before"); return ("is on or before")
} }
if (isDateTime) if(isDateTime)
{ {
return ("is at or before"); return ("is at or before")
} }
return ("less than or equals"); return ("less than or equals");
case QCriteriaOperator.GREATER_THAN: case QCriteriaOperator.GREATER_THAN:
if (isDate || isDateTime) if(isDate || isDateTime)
{ {
return ("is after"); return ("is after")
} }
return ("greater than or equals"); return ("greater than or equals");
case QCriteriaOperator.GREATER_THAN_OR_EQUALS: case QCriteriaOperator.GREATER_THAN_OR_EQUALS:
if (isDate) if(isDate)
{ {
return ("is on or after"); return ("is on or after")
} }
if (isDateTime) if(isDateTime)
{ {
return ("is at or after"); return ("is at or after")
} }
return ("greater than or equals"); return ("greater than or equals");
case QCriteriaOperator.IS_BLANK: case QCriteriaOperator.IS_BLANK:
@ -542,10 +516,10 @@ class FilterUtils
return ("is not between"); return ("is not between");
} }
} }
catch (e) catch(e)
{ {
console.log(`Error getting operator human string for ${JSON.stringify(criteria)}: ${e}`); console.log(`Error getting operator human string for ${JSON.stringify(criteria)}: ${e}`);
return criteria?.operator; return criteria?.operator
} }
} }
@ -555,7 +529,7 @@ class FilterUtils
*******************************************************************************/ *******************************************************************************/
public static criteriaToHumanString(table: QTableMetaData, criteria: QFilterCriteria, styled = false): string | JSX.Element public static criteriaToHumanString(table: QTableMetaData, criteria: QFilterCriteria, styled = false): string | JSX.Element
{ {
if (criteria == null) if(criteria == null)
{ {
return (null); return (null);
} }
@ -564,7 +538,7 @@ class FilterUtils
const fieldLabel = TableUtils.getFieldFullLabel(table, criteria.fieldName); const fieldLabel = TableUtils.getFieldFullLabel(table, criteria.fieldName);
const valuesString = FilterUtils.getValuesString(field, criteria); const valuesString = FilterUtils.getValuesString(field, criteria);
if (styled) if(styled)
{ {
return ( return (
<Box display="inline" whiteSpace="nowrap" color="#FFFFFF" mb={"0.5rem"}> <Box display="inline" whiteSpace="nowrap" color="#FFFFFF" mb={"0.5rem"}>
@ -573,7 +547,7 @@ class FilterUtils
{valuesString && <Box display="inline" p="0.125rem" pr="0.5rem" sx={{background: "#009971"}} borderRadius="0 0.5rem 0.5rem 0"> {valuesString}</Box>} {valuesString && <Box display="inline" p="0.125rem" pr="0.5rem" sx={{background: "#009971"}} borderRadius="0 0.5rem 0.5rem 0"> {valuesString}</Box>}
&nbsp; &nbsp;
</Box> </Box>
); )
} }
else else
{ {

View File

@ -30,101 +30,61 @@ import {QueryJoin} from "@kingsrook/qqq-frontend-core/lib/model/query/QueryJoin"
*******************************************************************************/ *******************************************************************************/
class TableUtils class TableUtils
{ {
/******************************************************************************* /*******************************************************************************
** For a table, return a sub-set of sections (originally meant for display in
** the record-screen sidebars)
** **
** If the table has no sections, one big "all fields" section is created.
**
** a list of "allowed field names" may be given, in which case, a section is only
** included if it has a field in that list. e.g., an edit-screen, where disabled
** fields aren't to be shown - if a section only has disabled fields, don't include it.
**
** By default sections w/ widget names are excluded -- but -- to include them,
** provide the metaData plus list of allowedWidgetTypes.
*******************************************************************************/ *******************************************************************************/
public static getSectionsForRecordSidebar(tableMetaData: QTableMetaData, allowedFieldNames: any = null, additionalInclusionPredicate?: (section: QTableSection) => boolean): QTableSection[] public static getSectionsForRecordSidebar(tableMetaData: QTableMetaData, allowedKeys: any = null): QTableSection[]
{ {
/////////////////////////////////////////////////////////////////
// if the table has sections, then filter them and return some //
/////////////////////////////////////////////////////////////////
if (tableMetaData.sections) if (tableMetaData.sections)
{ {
////////////////////////////////////////////////////////////////////////////////////////////// if (allowedKeys)
// if there are filters (a list of allowed field names, or an additionalInclusionPredicate, //
// then only return a subset of sections matching the filters //
//////////////////////////////////////////////////////////////////////////////////////////////
if (allowedFieldNames || additionalInclusionPredicate)
{ {
//////////////////////////////////////////////////////////////// const allowedKeySet = new Set<string>();
// put the field names in a set, for better inclusion testing // allowedKeys.forEach((k: string) => allowedKeySet.add(k));
////////////////////////////////////////////////////////////////
const allowedFieldNameSet = new Set<string>();
if(allowedFieldNames)
{
allowedFieldNames.forEach((k: string) => allowedFieldNameSet.add(k));
}
///////////////////////////////////////////////////////////////////////////////
// loop over the sections, deciding which ones to include in the return list //
///////////////////////////////////////////////////////////////////////////////
const allowedSections: QTableSection[] = []; const allowedSections: QTableSection[] = [];
for (let i = 0; i < tableMetaData.sections.length; i++) for (let i = 0; i < tableMetaData.sections.length; i++)
{ {
const section = tableMetaData.sections[i]; const section = tableMetaData.sections[i];
let includeSection = false; if (section.fieldNames)
for (let j = 0; j < section.fieldNames?.length; j++)
{ {
if (allowedFieldNameSet.has(section.fieldNames[j])) for (let j = 0; j < section.fieldNames.length; j++)
{ {
includeSection = true; if (allowedKeySet.has(section.fieldNames[j]))
break; {
allowedSections.push(section);
break;
}
} }
} }
if (additionalInclusionPredicate && additionalInclusionPredicate(section))
{
includeSection = true;
}
if(includeSection)
{
allowedSections.push(section);
}
} }
console.log("allowedSections length: " + allowedSections.length);
return (allowedSections); return (allowedSections);
} }
else
////////////////////////////////////////////////////////////////
// if there are no filters to apply, then return all sections //
////////////////////////////////////////////////////////////////
return (tableMetaData.sections);
}
///////////////////////////////////////////////////////////////////////////////////////////////
// else, if the table had no sections, then make a pseudo-one with either all of the fields, //
// or a subset based on the allowedFieldNames //
///////////////////////////////////////////////////////////////////////////////////////////////
let fieldNames = [...tableMetaData.fields.keys()];
if (allowedFieldNames)
{
fieldNames = [];
for (const fieldName in tableMetaData.fields.keys())
{ {
if (allowedFieldNames[fieldName]) return (tableMetaData.sections);
{
fieldNames.push(fieldName);
}
} }
} }
else
return ([new QTableSection({ {
iconName: "description", label: "All Fields", name: "allFields", fieldNames: [...fieldNames], let fieldNames = [...tableMetaData.fields.keys()];
})]); if (allowedKeys)
{
fieldNames = [];
for (const fieldName in tableMetaData.fields.keys())
{
if (allowedKeys[fieldName])
{
fieldNames.push(fieldName);
}
}
}
return ([new QTableSection({
iconName: "description", label: "All Fields", name: "allFields", fieldNames: [...fieldNames],
})]);
}
} }

View File

@ -29,7 +29,6 @@ import java.util.Objects;
import java.util.Set; import java.util.Set;
import java.util.concurrent.CompletableFuture; import java.util.concurrent.CompletableFuture;
import java.util.concurrent.TimeUnit; import java.util.concurrent.TimeUnit;
import java.util.function.Function;
import com.kingsrook.qqq.backend.core.utils.SleepUtils; import com.kingsrook.qqq.backend.core.utils.SleepUtils;
import org.apache.commons.io.FileUtils; import org.apache.commons.io.FileUtils;
import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.LogManager;
@ -505,33 +504,7 @@ public class QSeleniumLib
*******************************************************************************/ *******************************************************************************/
public WebElement waitForSelectorContaining(String cssSelector, String textContains) public WebElement waitForSelectorContaining(String cssSelector, String textContains)
{ {
return (waitForSelectorMatchingPredicate(cssSelector, "containing text [" + textContains + "]", (WebElement element) -> LOG.debug("Waiting for element matching selector [" + cssSelector + "] containing text [" + textContains + "].");
{
return (element.getText() != null && element.getText().toLowerCase().contains(textContains.toLowerCase()));
}));
}
/*******************************************************************************
**
*******************************************************************************/
public WebElement waitForSelectorContainingTextMatchingRegex(String cssSelector, String regExp)
{
return (waitForSelectorMatchingPredicate(cssSelector, "matching regexp [" + regExp + "]", (WebElement element) ->
{
return (element.getText() != null && element.getText().matches(regExp));
}));
}
/*******************************************************************************
**
*******************************************************************************/
private WebElement waitForSelectorMatchingPredicate(String cssSelector, String description, Function<WebElement, Boolean> predicate)
{
LOG.debug("Waiting for element matching selector [" + cssSelector + "] " + description);
long start = System.currentTimeMillis(); long start = System.currentTimeMillis();
do do
@ -541,9 +514,9 @@ public class QSeleniumLib
{ {
try try
{ {
if(predicate.apply(element)) if(element.getText() != null && element.getText().toLowerCase().contains(textContains.toLowerCase()))
{ {
LOG.debug("Found element matching selector [" + cssSelector + "] " + description); LOG.debug("Found element matching selector [" + cssSelector + "] containing text [" + textContains + "].");
Actions actions = new Actions(driver); Actions actions = new Actions(driver);
actions.moveToElement(element); actions.moveToElement(element);
conditionallyAutoHighlight(element); conditionallyAutoHighlight(element);
@ -564,7 +537,7 @@ public class QSeleniumLib
} }
while(start + (1000 * WAIT_SECONDS) > System.currentTimeMillis()); while(start + (1000 * WAIT_SECONDS) > System.currentTimeMillis());
fail("Failed to find element matching selector [" + cssSelector + "] " + description + " after [" + WAIT_SECONDS + "] seconds."); fail("Failed to find element matching selector [" + cssSelector + "] containing text [" + textContains + "] after [" + WAIT_SECONDS + "] seconds.");
return (null); return (null);
} }

View File

@ -22,9 +22,6 @@
package com.kingsrook.qqq.frontend.materialdashboard.selenium.lib; package com.kingsrook.qqq.frontend.materialdashboard.selenium.lib;
import java.util.List;
import com.kingsrook.qqq.backend.core.utils.CollectionUtils;
import com.kingsrook.qqq.backend.core.utils.StringUtils;
import org.openqa.selenium.By; import org.openqa.selenium.By;
import org.openqa.selenium.Keys; import org.openqa.selenium.Keys;
import org.openqa.selenium.WebElement; import org.openqa.selenium.WebElement;
@ -106,7 +103,7 @@ public class QueryScreenLib
/******************************************************************************* /*******************************************************************************
** **
*******************************************************************************/ *******************************************************************************/
public void clickFilterBuilderButton() public void clickFilterButton()
{ {
qSeleniumLib.waitForSelectorContaining("BUTTON", "FILTER BUILDER").click(); qSeleniumLib.waitForSelectorContaining("BUTTON", "FILTER BUILDER").click();
} }
@ -184,11 +181,10 @@ public class QueryScreenLib
} }
/******************************************************************************* /*******************************************************************************
** **
*******************************************************************************/ *******************************************************************************/
public void addAdvancedQueryFilterInput(int index, String fieldLabel, String operator, String value, String booleanOperator) public void addAdvancedQueryFilterInput(QSeleniumLib qSeleniumLib, int index, String fieldLabel, String operator, String value, String booleanOperator)
{ {
if(index > 0) if(index > 0)
{ {
@ -225,91 +221,10 @@ public class QueryScreenLib
operatorInput.sendKeys("\n"); operatorInput.sendKeys("\n");
qSeleniumLib.waitForMillis(100); qSeleniumLib.waitForMillis(100);
if(StringUtils.hasContent(value)) WebElement valueInput = subFormForField.findElement(By.cssSelector(".filterValuesColumn INPUT"));
{ valueInput.click();
WebElement valueInput = subFormForField.findElement(By.cssSelector(".filterValuesColumn INPUT")); valueInput.sendKeys(value);
valueInput.click(); qSeleniumLib.waitForMillis(100);
valueInput.sendKeys(value);
qSeleniumLib.waitForMillis(100);
}
} }
/*******************************************************************************
**
*******************************************************************************/
public void addBasicFilter(String fieldLabel)
{
qSeleniumLib.waitForSelectorContaining("BUTTON", "Add Filter").click();
qSeleniumLib.waitForSelectorContaining(".fieldListMenuBody-addQuickFilter LI", fieldLabel).click();
qSeleniumLib.clickBackdrop();
}
/*******************************************************************************
**
*******************************************************************************/
public void setBasicFilter(String fieldLabel, String operatorLabel, String value)
{
qSeleniumLib.waitForSelectorContaining("BUTTON", fieldLabel).click();
qSeleniumLib.waitForMillis(250);
qSeleniumLib.waitForSelector("#criteriaOperator").click();
qSeleniumLib.waitForSelectorContaining("LI", operatorLabel).click();
if(StringUtils.hasContent(value))
{
qSeleniumLib.waitForSelector(".filterValuesColumn INPUT").click();
// todo - no, not in a listbox/LI here...
qSeleniumLib.waitForSelectorContaining(".MuiAutocomplete-listbox LI", value).click();
System.out.println(value);
}
qSeleniumLib.clickBackdrop();
}
/*******************************************************************************
**
*******************************************************************************/
public void setBasicFilterPossibleValues(String fieldLabel, String operatorLabel, List<String> values)
{
qSeleniumLib.waitForSelectorContaining("BUTTON", fieldLabel).click();
qSeleniumLib.waitForMillis(250);
qSeleniumLib.waitForSelector("#criteriaOperator").click();
qSeleniumLib.waitForSelectorContaining("LI", operatorLabel).click();
if(CollectionUtils.nullSafeHasContents(values))
{
qSeleniumLib.waitForSelector(".filterValuesColumn INPUT").click();
for(String value : values)
{
qSeleniumLib.waitForSelectorContaining(".MuiAutocomplete-listbox LI", value).click();
}
}
qSeleniumLib.clickBackdrop();
}
/*******************************************************************************
**
*******************************************************************************/
public void waitForAdvancedQueryStringMatchingRegex(String regEx)
{
qSeleniumLib.waitForSelectorContainingTextMatchingRegex(".advancedQueryString", regEx);
}
/*******************************************************************************
**
*******************************************************************************/
public void waitForBasicFilterButtonMatchingRegex(String regEx)
{
qSeleniumLib.waitForSelectorContainingTextMatchingRegex("BUTTON", regEx);
}
} }

View File

@ -27,7 +27,6 @@ import java.util.Collections;
import java.util.LinkedHashMap; import java.util.LinkedHashMap;
import java.util.List; import java.util.List;
import java.util.Map; import java.util.Map;
import java.util.stream.Collectors;
import com.kingsrook.qqq.frontend.materialdashboard.selenium.lib.QSeleniumLib; import com.kingsrook.qqq.frontend.materialdashboard.selenium.lib.QSeleniumLib;
import io.javalin.Javalin; import io.javalin.Javalin;
import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.LogManager;
@ -285,6 +284,7 @@ public class QSeleniumJavalin
do do
{ {
// LOG.debug(" captured paths: " + captured.stream().map(CapturedContext::getPath).collect(Collectors.joining(",")));
for(CapturedContext context : captured) for(CapturedContext context : captured)
{ {
if(context.getPath().equals(path)) if(context.getPath().equals(path))
@ -301,7 +301,6 @@ public class QSeleniumJavalin
} }
while(start + (1000 * WAIT_SECONDS) > System.currentTimeMillis()); while(start + (1000 * WAIT_SECONDS) > System.currentTimeMillis());
LOG.debug(" captured paths: \n " + captured.stream().map(cc -> cc.getPath() + "[" + cc.getBody() + "]").collect(Collectors.joining("\n ")));
fail("Failed to capture a request for path [" + path + "] with body containing [" + bodyContaining + "] after [" + WAIT_SECONDS + "] seconds."); fail("Failed to capture a request for path [" + path + "] with body containing [" + bodyContaining + "] after [" + WAIT_SECONDS + "] seconds.");
return (null); return (null);
} }

View File

@ -82,7 +82,7 @@ public class QueryScreenFilterInUrlAdvancedModeTest extends QBaseSeleniumTest
qSeleniumLib.gotoAndWaitForBreadcrumbHeaderToContain("/peopleApp/greetingsApp/person?filter=" + URLEncoder.encode(filterJSON, StandardCharsets.UTF_8), "Person"); qSeleniumLib.gotoAndWaitForBreadcrumbHeaderToContain("/peopleApp/greetingsApp/person?filter=" + URLEncoder.encode(filterJSON, StandardCharsets.UTF_8), "Person");
queryScreenLib.waitForQueryToHaveRan(); queryScreenLib.waitForQueryToHaveRan();
queryScreenLib.assertFilterButtonBadge(1); queryScreenLib.assertFilterButtonBadge(1);
queryScreenLib.clickFilterBuilderButton(); queryScreenLib.clickFilterButton();
qSeleniumLib.waitForSelector("input[value=\"is not empty\"]"); qSeleniumLib.waitForSelector("input[value=\"is not empty\"]");
/////////////////////////////// ///////////////////////////////
@ -93,7 +93,7 @@ public class QueryScreenFilterInUrlAdvancedModeTest extends QBaseSeleniumTest
qSeleniumLib.gotoAndWaitForBreadcrumbHeaderToContain("/peopleApp/greetingsApp/person?filter=" + URLEncoder.encode(filterJSON, StandardCharsets.UTF_8), "Person"); qSeleniumLib.gotoAndWaitForBreadcrumbHeaderToContain("/peopleApp/greetingsApp/person?filter=" + URLEncoder.encode(filterJSON, StandardCharsets.UTF_8), "Person");
queryScreenLib.waitForQueryToHaveRan(); queryScreenLib.waitForQueryToHaveRan();
queryScreenLib.assertFilterButtonBadge(1); queryScreenLib.assertFilterButtonBadge(1);
queryScreenLib.clickFilterBuilderButton(); queryScreenLib.clickFilterButton();
qSeleniumLib.waitForSelector("input[value=\"is between\"]"); qSeleniumLib.waitForSelector("input[value=\"is between\"]");
qSeleniumLib.waitForSelector("input[value=\"1701\"]"); qSeleniumLib.waitForSelector("input[value=\"1701\"]");
qSeleniumLib.waitForSelector("input[value=\"74656\"]"); qSeleniumLib.waitForSelector("input[value=\"74656\"]");
@ -116,7 +116,7 @@ public class QueryScreenFilterInUrlAdvancedModeTest extends QBaseSeleniumTest
qSeleniumLib.gotoAndWaitForBreadcrumbHeaderToContain("/peopleApp/greetingsApp/person?filter=" + URLEncoder.encode(filterJSON, StandardCharsets.UTF_8), "Person"); qSeleniumLib.gotoAndWaitForBreadcrumbHeaderToContain("/peopleApp/greetingsApp/person?filter=" + URLEncoder.encode(filterJSON, StandardCharsets.UTF_8), "Person");
queryScreenLib.waitForQueryToHaveRan(); queryScreenLib.waitForQueryToHaveRan();
queryScreenLib.assertFilterButtonBadge(1); queryScreenLib.assertFilterButtonBadge(1);
queryScreenLib.clickFilterBuilderButton(); queryScreenLib.clickFilterButton();
qSeleniumLib.waitForSelector("input[value=\"is any of\"]"); qSeleniumLib.waitForSelector("input[value=\"is any of\"]");
qSeleniumLib.waitForSelectorContaining(".MuiChip-label", "St. Louis"); qSeleniumLib.waitForSelectorContaining(".MuiChip-label", "St. Louis");
qSeleniumLib.waitForSelectorContaining(".MuiChip-label", "Chesterfield"); qSeleniumLib.waitForSelectorContaining(".MuiChip-label", "Chesterfield");
@ -129,7 +129,7 @@ public class QueryScreenFilterInUrlAdvancedModeTest extends QBaseSeleniumTest
qSeleniumLib.gotoAndWaitForBreadcrumbHeaderToContain("/peopleApp/greetingsApp/person?filter=" + URLEncoder.encode(filterJSON, StandardCharsets.UTF_8), "Person"); qSeleniumLib.gotoAndWaitForBreadcrumbHeaderToContain("/peopleApp/greetingsApp/person?filter=" + URLEncoder.encode(filterJSON, StandardCharsets.UTF_8), "Person");
queryScreenLib.waitForQueryToHaveRan(); queryScreenLib.waitForQueryToHaveRan();
queryScreenLib.assertFilterButtonBadge(1); queryScreenLib.assertFilterButtonBadge(1);
queryScreenLib.clickFilterBuilderButton(); queryScreenLib.clickFilterButton();
qSeleniumLib.waitForSelector("input[value=\"is after\"]"); qSeleniumLib.waitForSelector("input[value=\"is after\"]");
qSeleniumLib.waitForSelector("input[value=\"5 days ago\"]"); qSeleniumLib.waitForSelector("input[value=\"5 days ago\"]");
@ -142,7 +142,7 @@ public class QueryScreenFilterInUrlAdvancedModeTest extends QBaseSeleniumTest
qSeleniumLib.gotoAndWaitForBreadcrumbHeaderToContain("/peopleApp/greetingsApp/person?filter=" + URLEncoder.encode(filterJSON, StandardCharsets.UTF_8), "Person"); qSeleniumLib.gotoAndWaitForBreadcrumbHeaderToContain("/peopleApp/greetingsApp/person?filter=" + URLEncoder.encode(filterJSON, StandardCharsets.UTF_8), "Person");
queryScreenLib.waitForQueryToHaveRan(); queryScreenLib.waitForQueryToHaveRan();
queryScreenLib.assertFilterButtonBadge(2); queryScreenLib.assertFilterButtonBadge(2);
queryScreenLib.clickFilterBuilderButton(); queryScreenLib.clickFilterButton();
qSeleniumLib.waitForSelector("input[value=\"is at or before\"]"); qSeleniumLib.waitForSelector("input[value=\"is at or before\"]");
qSeleniumLib.waitForSelector("input[value=\"start of this year\"]"); qSeleniumLib.waitForSelector("input[value=\"start of this year\"]");
qSeleniumLib.waitForSelector("input[value=\"starts with\"]"); qSeleniumLib.waitForSelector("input[value=\"starts with\"]");
@ -165,7 +165,7 @@ public class QueryScreenFilterInUrlAdvancedModeTest extends QBaseSeleniumTest
qSeleniumLib.gotoAndWaitForBreadcrumbHeaderToContain("/peopleApp/greetingsApp/person?filter=" + URLEncoder.encode(filterJSON, StandardCharsets.UTF_8), "Person"); qSeleniumLib.gotoAndWaitForBreadcrumbHeaderToContain("/peopleApp/greetingsApp/person?filter=" + URLEncoder.encode(filterJSON, StandardCharsets.UTF_8), "Person");
queryScreenLib.waitForQueryToHaveRan(); queryScreenLib.waitForQueryToHaveRan();
queryScreenLib.assertFilterButtonBadge(1); queryScreenLib.assertFilterButtonBadge(1);
queryScreenLib.clickFilterBuilderButton(); queryScreenLib.clickFilterButton();
qSeleniumLib.waitForSelector("input[value=\"does not equal\"]"); qSeleniumLib.waitForSelector("input[value=\"does not equal\"]");
qSeleniumLib.waitForSelector("input[value=\"St. Louis\"]"); qSeleniumLib.waitForSelector("input[value=\"St. Louis\"]");

View File

@ -22,7 +22,6 @@
package com.kingsrook.qqq.frontend.materialdashboard.selenium.tests.query; package com.kingsrook.qqq.frontend.materialdashboard.selenium.tests.query;
import java.util.List;
import com.kingsrook.qqq.frontend.materialdashboard.selenium.lib.QBaseSeleniumTest; import com.kingsrook.qqq.frontend.materialdashboard.selenium.lib.QBaseSeleniumTest;
import com.kingsrook.qqq.frontend.materialdashboard.selenium.lib.QQQMaterialDashboardSelectors; import com.kingsrook.qqq.frontend.materialdashboard.selenium.lib.QQQMaterialDashboardSelectors;
import com.kingsrook.qqq.frontend.materialdashboard.selenium.lib.QueryScreenLib; import com.kingsrook.qqq.frontend.materialdashboard.selenium.lib.QueryScreenLib;
@ -49,7 +48,6 @@ public class QueryScreenTest extends QBaseSeleniumTest
.withRouteToFile("/data/person/count", "data/person/count.json") .withRouteToFile("/data/person/count", "data/person/count.json")
.withRouteToFile("/data/person/query", "data/person/index.json") .withRouteToFile("/data/person/query", "data/person/index.json")
.withRouteToFile("/data/person/variants", "data/person/variants.json") .withRouteToFile("/data/person/variants", "data/person/variants.json")
.withRouteToFile("/data/person/possibleValues/homeCityId", "data/person/possibleValues/homeCityId.json")
.withRouteToFile("/processes/querySavedView/init", "processes/querySavedView/init.json"); .withRouteToFile("/processes/querySavedView/init", "processes/querySavedView/init.json");
} }
@ -66,13 +64,13 @@ public class QueryScreenTest extends QBaseSeleniumTest
qSeleniumLib.gotoAndWaitForBreadcrumbHeaderToContain("/peopleApp/greetingsApp/person", "Person"); qSeleniumLib.gotoAndWaitForBreadcrumbHeaderToContain("/peopleApp/greetingsApp/person", "Person");
queryScreenLib.waitForQueryToHaveRan(); queryScreenLib.waitForQueryToHaveRan();
queryScreenLib.gotoAdvancedMode(); queryScreenLib.gotoAdvancedMode();
queryScreenLib.clickFilterBuilderButton(); queryScreenLib.clickFilterButton();
///////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////
// open the filter window, enter a value, wait for query to re-run // // open the filter window, enter a value, wait for query to re-run //
///////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////
qSeleniumJavalin.beginCapture(); qSeleniumJavalin.beginCapture();
queryScreenLib.addAdvancedQueryFilterInput(0, "Id", "equals", "1", null); queryScreenLib.addAdvancedQueryFilterInput(qSeleniumLib, 0, "Id", "equals", "1", null);
/////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////
// assert that query & count both have the expected filter value // // assert that query & count both have the expected filter value //
@ -119,11 +117,11 @@ public class QueryScreenTest extends QBaseSeleniumTest
qSeleniumLib.gotoAndWaitForBreadcrumbHeaderToContain("/peopleApp/greetingsApp/person", "Person"); qSeleniumLib.gotoAndWaitForBreadcrumbHeaderToContain("/peopleApp/greetingsApp/person", "Person");
queryScreenLib.waitForQueryToHaveRan(); queryScreenLib.waitForQueryToHaveRan();
queryScreenLib.gotoAdvancedMode(); queryScreenLib.gotoAdvancedMode();
queryScreenLib.clickFilterBuilderButton(); queryScreenLib.clickFilterButton();
qSeleniumJavalin.beginCapture(); qSeleniumJavalin.beginCapture();
queryScreenLib.addAdvancedQueryFilterInput(0, "First Name", "contains", "Dar", "Or"); queryScreenLib.addAdvancedQueryFilterInput(qSeleniumLib, 0, "First Name", "contains", "Dar", "Or");
queryScreenLib.addAdvancedQueryFilterInput(1, "First Name", "contains", "Jam", "Or"); queryScreenLib.addAdvancedQueryFilterInput(qSeleniumLib, 1, "First Name", "contains", "Jam", "Or");
String expectedFilterContents0 = """ String expectedFilterContents0 = """
{"fieldName":"firstName","operator":"CONTAINS","values":["Dar"]}"""; {"fieldName":"firstName","operator":"CONTAINS","values":["Dar"]}""";
@ -139,138 +137,6 @@ public class QueryScreenTest extends QBaseSeleniumTest
} }
/*******************************************************************************
**
*******************************************************************************/
@Test
void testBasicBooleanOperators()
{
QueryScreenLib queryScreenLib = new QueryScreenLib(qSeleniumLib);
qSeleniumLib.gotoAndWaitForBreadcrumbHeaderToContain("/peopleApp/greetingsApp/person", "Person");
queryScreenLib.waitForQueryToHaveRan();
queryScreenLib.addBasicFilter("Is Employed");
testBasicCriteria(queryScreenLib, "Is Employed", "equals yes", null, "(?s).*Is Employed:.*yes.*", """
{"fieldName":"isEmployed","operator":"EQUALS","values":[true]}""");
testBasicCriteria(queryScreenLib, "Is Employed", "equals no", null, "(?s).*Is Employed:.*no.*", """
{"fieldName":"isEmployed","operator":"EQUALS","values":[false]}""");
testBasicCriteria(queryScreenLib, "Is Employed", "is empty", null, "(?s).*Is Employed:.*is empty.*", """
{"fieldName":"isEmployed","operator":"IS_BLANK","values":[]}""");
testBasicCriteria(queryScreenLib, "Is Employed", "is not empty", null, "(?s).*Is Employed:.*is not empty.*", """
{"fieldName":"isEmployed","operator":"IS_NOT_BLANK","values":[]}""");
}
/*******************************************************************************
**
*******************************************************************************/
@Test
void testBasicPossibleValues()
{
QueryScreenLib queryScreenLib = new QueryScreenLib(qSeleniumLib);
qSeleniumLib.gotoAndWaitForBreadcrumbHeaderToContain("/peopleApp/greetingsApp/person", "Person");
queryScreenLib.waitForQueryToHaveRan();
String field = "Home City";
queryScreenLib.addBasicFilter(field);
testBasicCriteriaPossibleValues(queryScreenLib, field, "is any of", List.of("St. Louis", "Chesterfield"), "(?s).*" + field + ":.*St. Louis.*\\+1.*", """
{"fieldName":"homeCityId","operator":"IN","values":[1,2]}""");
testBasicCriteriaPossibleValues(queryScreenLib, field, "equals", List.of("Chesterfield"), "(?s).*" + field + ":.*Chesterfield.*", """
{"fieldName":"homeCityId","operator":"EQUALS","values":[2]}""");
testBasicCriteriaPossibleValues(queryScreenLib, field, "is empty", null, "(?s).*" + field + ":.*is empty.*", """
{"fieldName":"homeCityId","operator":"IS_BLANK","values":[]}""");
testBasicCriteriaPossibleValues(queryScreenLib, field, "does not equal", List.of("St. Louis"), "(?s).*" + field + ":.*does not equal.*St. Louis.*", """
{"fieldName":"homeCityId","operator":"NOT_EQUALS_OR_IS_NULL","values":[1]}""");
testBasicCriteriaPossibleValues(queryScreenLib, field, "is none of", List.of("Chesterfield"), "(?s).*" + field + ":.*is none of.*St. Louis.*\\+1", """
{"fieldName":"homeCityId","operator":"NOT_IN","values":[1,2]}""");
}
/*******************************************************************************
**
*******************************************************************************/
private void testBasicCriteria(QueryScreenLib queryScreenLib, String fieldLabel, String operatorLabel, String value, String expectButtonStringRegex, String expectFilterJsonContains)
{
qSeleniumJavalin.beginCapture();
queryScreenLib.setBasicFilter(fieldLabel, operatorLabel, value);
queryScreenLib.waitForBasicFilterButtonMatchingRegex(expectButtonStringRegex);
qSeleniumJavalin.waitForCapturedPathWithBodyContaining("/data/person/query", expectFilterJsonContains);
qSeleniumJavalin.endCapture();
}
/*******************************************************************************
**
*******************************************************************************/
private void testBasicCriteriaPossibleValues(QueryScreenLib queryScreenLib, String fieldLabel, String operatorLabel, List<String> values, String expectButtonStringRegex, String expectFilterJsonContains)
{
qSeleniumJavalin.beginCapture();
queryScreenLib.setBasicFilterPossibleValues(fieldLabel, operatorLabel, values);
queryScreenLib.waitForBasicFilterButtonMatchingRegex(expectButtonStringRegex);
qSeleniumJavalin.waitForCapturedPathWithBodyContaining("/data/person/query", expectFilterJsonContains);
qSeleniumJavalin.endCapture();
}
/*******************************************************************************
**
*******************************************************************************/
@Test
void testAdvancedBooleanOperators()
{
QueryScreenLib queryScreenLib = new QueryScreenLib(qSeleniumLib);
qSeleniumLib.gotoAndWaitForBreadcrumbHeaderToContain("/peopleApp/greetingsApp/person", "Person");
queryScreenLib.waitForQueryToHaveRan();
queryScreenLib.gotoAdvancedMode();
testAdvancedCriteria(queryScreenLib, "Is Employed", "equals yes", null, "(?s).*Is Employed.*equals yes.*", """
{"fieldName":"isEmployed","operator":"EQUALS","values":[true]}""");
testAdvancedCriteria(queryScreenLib, "Is Employed", "equals no", null, "(?s).*Is Employed.*equals no.*", """
{"fieldName":"isEmployed","operator":"EQUALS","values":[false]}""");
testAdvancedCriteria(queryScreenLib, "Is Employed", "is empty", null, "(?s).*Is Employed.*is empty.*", """
{"fieldName":"isEmployed","operator":"IS_BLANK","values":[]}""");
testAdvancedCriteria(queryScreenLib, "Is Employed", "is not empty", null, "(?s).*Is Employed.*is not empty.*", """
{"fieldName":"isEmployed","operator":"IS_NOT_BLANK","values":[]}""");
}
// todo - table requires variant - prompt for it, choose it, see query; change variant, change on-screen, re-query // todo - table requires variant - prompt for it, choose it, see query; change variant, change on-screen, re-query
/*******************************************************************************
**
*******************************************************************************/
private void testAdvancedCriteria(QueryScreenLib queryScreenLib, String fieldLabel, String operatorLabel, String value, String expectQueryStringRegex, String expectFilterJsonContains)
{
qSeleniumJavalin.beginCapture();
queryScreenLib.clickFilterBuilderButton();
queryScreenLib.addAdvancedQueryFilterInput(0, fieldLabel, operatorLabel, value, null);
qSeleniumLib.clickBackdrop();
queryScreenLib.waitForAdvancedQueryStringMatchingRegex(expectQueryStringRegex);
qSeleniumJavalin.waitForCapturedPathWithBodyContaining("/data/person/query", expectFilterJsonContains);
qSeleniumJavalin.endCapture();
queryScreenLib.clickAdvancedFilterClearIcon();
}
} }