Merge remote-tracking branch 'origin/dev' into feature/CTLE-434-oms-update-business-logic

This commit is contained in:
2023-05-19 14:57:51 -05:00
6 changed files with 215 additions and 16 deletions

View File

@ -64,14 +64,24 @@ public class NoCodeWidgetVelocityUtils
/*******************************************************************************
**
*******************************************************************************/
public String icon(String iconName, String color)
{
return String.format("""
<span class="material-icons-round notranslate MuiIcon-root MuiIcon-fontSizeInherit" style="color: %s; position: relative; top: 6px;" aria-hidden="true">%s</span>
""", color, iconName);
}
/*******************************************************************************
**
*******************************************************************************/
public String helpIcon()
{
return ("""
<span class="material-icons-round notranslate MuiIcon-root MuiIcon-fontSizeInherit" style="color: blue; position: relative; top: 6px;" aria-hidden="true">help_outline</span>
""");
return (icon("help_outline", "blue"));
}
@ -81,9 +91,7 @@ public class NoCodeWidgetVelocityUtils
*******************************************************************************/
public String errorIcon()
{
return ("""
<span class="material-icons-round notranslate MuiIcon-root MuiIcon-fontSizeInherit" style="color: red; position: relative; top: 6px;" aria-hidden="true">error_outline</span>
""");
return (icon("error_outline", "red"));
}
@ -93,9 +101,7 @@ public class NoCodeWidgetVelocityUtils
*******************************************************************************/
public String warningIcon()
{
return ("""
<span class="material-icons-round notranslate MuiIcon-root MuiIcon-fontSizeInherit" style="color: orange; position: relative; top: 6px;" aria-hidden="true">warning</span>
""");
return (icon("warning", "orange"));
}
@ -105,9 +111,7 @@ public class NoCodeWidgetVelocityUtils
*******************************************************************************/
public String checkIcon()
{
return ("""
<span class="material-icons-round notranslate MuiIcon-root MuiIcon-fontSizeInherit" style="color: green; position: relative; top: 6px;" aria-hidden="true">check</span>
""");
return (icon("check", "green"));
}
@ -117,9 +121,7 @@ public class NoCodeWidgetVelocityUtils
*******************************************************************************/
public String pendingIcon()
{
return ("""
<span class="material-icons-round notranslate MuiIcon-root MuiIcon-fontSizeInherit" style="color: #0062ff; position: relative; top: 6px;" aria-hidden="true">pending</span>
""");
return (icon("pending", "#0062ff"));
}

View File

@ -35,6 +35,9 @@ public class QBrandingMetaData
private String icon;
private String accentColor;
private String environmentBannerText;
private String environmentBannerColor;
/*******************************************************************************
@ -244,4 +247,66 @@ public class QBrandingMetaData
return (this);
}
/*******************************************************************************
** Getter for environmentBannerText
*******************************************************************************/
public String getEnvironmentBannerText()
{
return (this.environmentBannerText);
}
/*******************************************************************************
** Setter for environmentBannerText
*******************************************************************************/
public void setEnvironmentBannerText(String environmentBannerText)
{
this.environmentBannerText = environmentBannerText;
}
/*******************************************************************************
** Fluent setter for environmentBannerText
*******************************************************************************/
public QBrandingMetaData withEnvironmentBannerText(String environmentBannerText)
{
this.environmentBannerText = environmentBannerText;
return (this);
}
/*******************************************************************************
** Getter for environmentBannerColor
*******************************************************************************/
public String getEnvironmentBannerColor()
{
return (this.environmentBannerColor);
}
/*******************************************************************************
** Setter for environmentBannerColor
*******************************************************************************/
public void setEnvironmentBannerColor(String environmentBannerColor)
{
this.environmentBannerColor = environmentBannerColor;
}
/*******************************************************************************
** Fluent setter for environmentBannerColor
*******************************************************************************/
public QBrandingMetaData withEnvironmentBannerColor(String environmentBannerColor)
{
this.environmentBannerColor = environmentBannerColor;
return (this);
}
}

View File

@ -52,6 +52,9 @@ public class QWidgetMetaData implements QWidgetMetaDataInterface
private List<WidgetDropdownData> dropdowns;
private boolean storeDropdownSelections;
private boolean showReloadButton = true;
private boolean showExportButton = true;
protected Map<String, Serializable> defaultValues = new LinkedHashMap<>();
@ -529,4 +532,66 @@ public class QWidgetMetaData implements QWidgetMetaDataInterface
return (this);
}
/*******************************************************************************
** Getter for showReloadButton
*******************************************************************************/
public boolean getShowReloadButton()
{
return (this.showReloadButton);
}
/*******************************************************************************
** Setter for showReloadButton
*******************************************************************************/
public void setShowReloadButton(boolean showReloadButton)
{
this.showReloadButton = showReloadButton;
}
/*******************************************************************************
** Fluent setter for showReloadButton
*******************************************************************************/
public QWidgetMetaData withShowReloadButton(boolean showReloadButton)
{
this.showReloadButton = showReloadButton;
return (this);
}
/*******************************************************************************
** Getter for showExportButton
*******************************************************************************/
public boolean getShowExportButton()
{
return (this.showExportButton);
}
/*******************************************************************************
** Setter for showExportButton
*******************************************************************************/
public void setShowExportButton(boolean showExportButton)
{
this.showExportButton = showExportButton;
}
/*******************************************************************************
** Fluent setter for showExportButton
*******************************************************************************/
public QWidgetMetaData withShowExportButton(boolean showExportButton)
{
this.showExportButton = showExportButton;
return (this);
}
}

View File

@ -27,6 +27,7 @@ import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonInclude.Include;
import com.kingsrook.qqq.backend.core.actions.permissions.PermissionsHelper;
import com.kingsrook.qqq.backend.core.model.actions.AbstractActionInput;
import com.kingsrook.qqq.backend.core.model.metadata.dashboard.QWidgetMetaData;
import com.kingsrook.qqq.backend.core.model.metadata.dashboard.QWidgetMetaDataInterface;
import com.kingsrook.qqq.backend.core.model.metadata.dashboard.WidgetDropdownData;
@ -50,6 +51,9 @@ public class QFrontendWidgetMetaData
private final boolean storeDropdownSelections;
private final List<WidgetDropdownData> dropdowns;
private boolean showReloadButton = false;
private boolean showExportButton = false;
private final boolean hasPermission;
//////////////////////////////////////////////////////////////////////////////////
@ -74,6 +78,12 @@ public class QFrontendWidgetMetaData
this.dropdowns = widgetMetaData.getDropdowns();
this.storeDropdownSelections = widgetMetaData.getStoreDropdownSelections();
if(widgetMetaData instanceof QWidgetMetaData qWidgetMetaData)
{
this.showExportButton = qWidgetMetaData.getShowExportButton();
this.showReloadButton = qWidgetMetaData.getShowReloadButton();
}
hasPermission = PermissionsHelper.hasWidgetPermission(actionInput, name);
}
@ -198,4 +208,25 @@ public class QFrontendWidgetMetaData
return storeDropdownSelections;
}
/*******************************************************************************
** Getter for showReloadButton
**
*******************************************************************************/
public boolean getShowReloadButton()
{
return showReloadButton;
}
/*******************************************************************************
** Getter for showExportButton
**
*******************************************************************************/
public boolean getShowExportButton()
{
return showExportButton;
}
}

View File

@ -91,6 +91,7 @@ public class StreamedETLWithFrontendProcess
public static final String DEFAULT_PREVIEW_MESSAGE_FOR_UPDATE = "This is a preview of the records that will be updated.";
public static final String DEFAULT_PREVIEW_MESSAGE_FOR_INSERT_OR_UPDATE = "This is a preview of the records that will be inserted or updated.";
public static final String DEFAULT_PREVIEW_MESSAGE_FOR_DELETE = "This is a preview of the records that will be deleted.";
public static final String DEFAULT_PREVIEW_MESSAGE_PREFIX = "This is a preview of the records that will be ";
public static final String FIELD_PREVIEW_MESSAGE = "previewMessage";
public static final String FIELD_TRANSACTION_LEVEL = "transactionLevel";