Minor fixes for 2.0

This commit is contained in:
Frikky
2025-02-27 15:05:48 +01:00
parent 1ade1993b2
commit 395e1bacc2
7 changed files with 124 additions and 124 deletions
+3 -3
View File
@@ -1,8 +1,8 @@
import React, { useEffect, useState, useContext } from 'react'; import React, { useEffect, useState, useContext } from 'react';
import OrgHeaderexpanded from "./OrgHeaderexpandedNew.jsx"; import OrgHeaderexpanded from "../components/OrgHeaderexpandedNew.jsx";
import OrgHeader from './OrgHeaderNew.jsx'; import OrgHeader from '../components/OrgHeaderNew.jsx';
import { toast } from "react-toastify"; import { toast } from "react-toastify";
import CloudSyncTab from './CloudSyncTab.jsx'; import CloudSyncTab from '../components/CloudSyncTab.jsx';
import { import {
FileCopy as FileCopyIcon, FileCopy as FileCopyIcon,
} from "@mui/icons-material"; } from "@mui/icons-material";
+1 -1
View File
@@ -579,7 +579,7 @@ const EditWorkflow = (props) => {
</Typography> </Typography>
<Typography variant="body2" color="textSecondary" style={{ marginTop: 30, marginBottom: 10, }}> <Typography variant="body2" color="textSecondary" style={{ marginTop: 30, marginBottom: 10, }}>
Multi-Tenant Workflows. Make one workflow, and keep a separate, synced copy in all your tenants. Control distributed auth, runtime locations, files, datastore keys etc. (<b>late beta</b> - contact support@shuffler.io if you want a demo. Please try it!) Multi-Tenant Workflows. Make one workflow, and keep a separate, synced copy in all your tenants. Control distributed auth, runtime locations, files, datastore keys etc. (contact support@shuffler.io if you want a demo. Please try it!)
</Typography> </Typography>
{userdata !== undefined && userdata !== null && userdata.orgs !== undefined && userdata.orgs !== null && userdata.orgs.length > 0 ? {userdata !== undefined && userdata !== null && userdata.orgs !== undefined && userdata.orgs !== null && userdata.orgs.length > 0 ?
+1 -1
View File
@@ -421,7 +421,7 @@ const EnvironmentTab = memo((props) => {
-e AUTH="${auth}" \\ -e AUTH="${auth}" \\
-e ENVIRONMENT_NAME="${environment.Name}" \\ -e ENVIRONMENT_NAME="${environment.Name}" \\
-e ORG="${environment.org_id}" \\ -e ORG="${environment.org_id}" \\
-e SHUFFLE_WORKER_IMAGE="ghcr.io/shuffle/shuffle-worker:nightly" \\ -e SHUFFLE_WORKER_IMAGE="ghcr.io/shuffle/shuffle-worker:latest" \\
-e SHUFFLE_SWARM_CONFIG=run \\ -e SHUFFLE_SWARM_CONFIG=run \\
-e SHUFFLE_LOGS_DISABLED=true \\ -e SHUFFLE_LOGS_DISABLED=true \\
-e BASE_URL="${newUrl}" \\${addProxy ? ` -e BASE_URL="${newUrl}" \\${addProxy ? `
@@ -549,7 +549,7 @@ const OrgHeaderexpandedNew = (props) => {
{isCloud ? ( {isCloud ? (
<div style={{ marginLeft: 13, fontSize: 16, color: "#9E9E9E" }} > <div style={{ marginLeft: 13, fontSize: 16, color: "#9E9E9E" }} >
Region Change Region
<RegionChangeModal selectedOrganization={selectedOrganization} setSelectedRegion={setSelectedRegion} userdata={userdata} handleSendChangeRegionMail={handleSendChangeRegionMail} /> <RegionChangeModal selectedOrganization={selectedOrganization} setSelectedRegion={setSelectedRegion} userdata={userdata} handleSendChangeRegionMail={handleSendChangeRegionMail} />
</div> </div>
) : null} ) : null}
+13 -6
View File
@@ -657,6 +657,7 @@ const CodeEditor = (props) => {
} }
if (!inputvariable.includes(".")) { if (!inputvariable.includes(".")) {
inputvariable = inputvariable.toLowerCase()
return inputvariable return inputvariable
} }
@@ -665,6 +666,9 @@ const CodeEditor = (props) => {
var removedIndexes = 0 var removedIndexes = 0
for (var key in itemsplit) { for (var key in itemsplit) {
var tmpitem = itemsplit[key] var tmpitem = itemsplit[key]
if (key == 0) {
tmpitem = tmpitem.toLowerCase()
}
// Makes sure #0 and # are same, as we only visualize first one anyway // Makes sure #0 and # are same, as we only visualize first one anyway
if (tmpitem.startsWith("#")) { if (tmpitem.startsWith("#")) {
@@ -695,20 +699,24 @@ const CodeEditor = (props) => {
var variable_occurence = current_code_line.match(/[\\]{0,1}[$]{1}([a-zA-Z0-9_@-]+\.?){1}([a-zA-Z0-9#_@-]+\.?){0,}/g) var variable_occurence = current_code_line.match(/[\\]{0,1}[$]{1}([a-zA-Z0-9_@-]+\.?){1}([a-zA-Z0-9#_@-]+\.?){0,}/g)
if (!variable_occurence) { if (!variable_occurence) {
continue; continue
} }
var new_occurences = variable_occurence.filter((occurrence) => occurrence[0]); //var new_occurences = variable_occurence.filter((occurrence) => occurrence[0]);
variable_occurence = new_occurences //variable_occurence = new_occurences
variable_occurence = variable_occurence.filter((occurrence) => occurrence[0]);
// Checks code lines, not variable occurences. Then remaps later
var dollar_occurence = []; var dollar_occurence = [];
for (let ch = 0; ch < current_code_line.length; ch++) { for (let ch = 0; ch < current_code_line.length; ch++) {
//if (current_code_line[ch] === '$' && (ch === 0)) { //if (current_code_line[ch] === '$' && (ch === 0)) {
if (current_code_line[ch] === '$') { if (current_code_line[ch] === '$') {
dollar_occurence.push(ch); dollar_occurence.push(ch)
} }
} }
// Lowercase anything between the $ and first .
var dollar_occurence_len = [] var dollar_occurence_len = []
try { try {
for (let occ = 0; occ < variable_occurence.length; occ++) { for (let occ = 0; occ < variable_occurence.length; occ++) {
@@ -1005,7 +1013,6 @@ const CodeEditor = (props) => {
// Replace quotes with nothing // Replace quotes with nothing
} else { } else {
console.log("NO TYPE? ", typeof new_input)
try { try {
new_input = new_input.toString() new_input = new_input.toString()
} catch (e) { } catch (e) {
@@ -1897,7 +1904,7 @@ const CodeEditor = (props) => {
overflow: "hidden", overflow: "hidden",
}} }}
onClick={() => { onClick={() => {
console.log(innerdata.example) //console.log(innerdata.example)
//const handleClick = (item) => { //const handleClick = (item) => {
handleItemClick([innerdata]); handleItemClick([innerdata]);
+1 -1
View File
@@ -13457,7 +13457,7 @@ const AngularWorkflow = (defaultprops) => {
Shuffle AI Shuffle AI
</Typography> </Typography>
<Typography variant="body2" color="textSecondary"> <Typography variant="body2" color="textSecondary">
What you write here will be fed to the Shuffle AI to generate a change for the selected action or field. Best used for when you are stuck with formatting. Uses your AI credits (resets monthly). Alpha feature. Please give feedback to support@shuffler.io {"<"}3 What you write here will be fed to the Shuffle AI to generate a change for the selected action or field. Best used for when you are stuck with formatting. Uses your AI credits (resets monthly). <b>Beta feature.</b> Please give feedback to support@shuffler.io {"<"}3
</Typography> </Typography>
<TextField <TextField
+2 -9
View File
@@ -509,7 +509,7 @@ export const validateJson = (showResult) => {
var result = showResult; var result = showResult;
try { try {
result = jsonvalid ? JSON.parse(showResult, { "storeAsString": true }) : showResult; result = jsonvalid ? JSON.parse(showResult, {"storeAsString": true}) : showResult;
} catch (e) { } catch (e) {
////console.log("Failed parsing JSON even though its valid: ", e) ////console.log("Failed parsing JSON even though its valid: ", e)
jsonvalid = false; jsonvalid = false;
@@ -557,10 +557,6 @@ export const validateJson = (showResult) => {
// Check fields if they can be parsed too // Check fields if they can be parsed too
try { try {
for (const [key, value] of Object.entries(result)) { for (const [key, value] of Object.entries(result)) {
if (typeof value === "string") {
value = value.replaceAll(" ", "_")
}
if (typeof value === "string" && (value.startsWith("{") || value.startsWith("["))) { if (typeof value === "string" && (value.startsWith("{") || value.startsWith("["))) {
//console.log("CHECKING STRING: ", value) //console.log("CHECKING STRING: ", value)
@@ -581,10 +577,6 @@ export const validateJson = (showResult) => {
// Usually only reaches here if raw array > dict > value // Usually only reaches here if raw array > dict > value
if (typeof showResult !== "array") { if (typeof showResult !== "array") {
for (const [subkey, subvalue] of Object.entries(value)) { for (const [subkey, subvalue] of Object.entries(value)) {
if (typeof subvalue === "string") {
subvalue = subvalue.replaceAll(" ", "_")
}
if (typeof subvalue === "string" && (subvalue.startsWith("{") || subvalue.startsWith("["))) { if (typeof subvalue === "string" && (subvalue.startsWith("{") || subvalue.startsWith("["))) {
const inside_result = validateJson(subvalue) const inside_result = validateJson(subvalue)
if (inside_result.valid) { if (inside_result.valid) {
@@ -612,6 +604,7 @@ export const validateJson = (showResult) => {
}; };
}; };
//Custom hook for handling styling of the dropzone //Custom hook for handling styling of the dropzone
const useDropzoneStyles = () => { const useDropzoneStyles = () => {
const { leftSideBarOpenByClick } = useContext(Context); const { leftSideBarOpenByClick } = useContext(Context);