Merge branch 'zustand/io/migration' of personal:logspace-ai/langflow into zustand/io/migration

This commit is contained in:
anovazzi1 2024-03-30 17:59:44 -03:00
commit f139ecb35d
5 changed files with 41 additions and 46 deletions

View file

@ -88,7 +88,6 @@ export default function ParameterComponent({
const myData = useTypesStore((state) => state.data);
const takeSnapshot = useFlowsManagerStore((state) => state.takeSnapshot);
console.log(title, color);
const handleRefreshButtonPress = async (name, data) => {
setIsLoading(true);
@ -359,7 +358,7 @@ export default function ParameterComponent({
!showNode ? "mt-0" : ""
)}
style={{
borderColor: color??nodeColors.unknown,
borderColor: color ?? nodeColors.unknown,
}}
onClick={() => {
setFilterEdge(groupedEdge.current);
@ -454,7 +453,7 @@ export default function ParameterComponent({
"h-3 w-3 rounded-full border-2 bg-background"
)}
style={{
borderColor: color?? nodeColors.unknown,
borderColor: color ?? nodeColors.unknown,
}}
onClick={() => {
setFilterEdge(groupedEdge.current);

View file

@ -232,7 +232,7 @@ export default function IOModal({
className="api-modal-tabs-content mt-4"
>
<div className="mx-2 mb-2 flex items-center gap-2 text-sm font-bold">
<IconComponent className="h-4 w-4" name={"FileType2"} />
<IconComponent className="h-4 w-4" name={"Type"} />
{OUTPUTS_MODAL_TITLE}
</div>
{nodes

View file

@ -276,21 +276,18 @@ export default function ExtraSidebar(): JSX.Element {
>
<IconComponent
name={search ? "X" : "Search"}
className={`h-5 w-5 stroke-[1.5] text-primary ${search ? "cursor-pointer" : "cursor-default"
}`}
className={`h-5 w-5 stroke-[1.5] text-primary ${
search ? "cursor-pointer" : "cursor-default"
}`}
aria-hidden="true"
/>
</div>
</div>
<Separator />
<div className="side-bar-components-div-arrangement">
<div
className="parent-disclosure-arrangement"
>
<div className="flex gap-4 items-center align-middle">
<span className="parent-disclosure-title">
Core Components
</span>
<div className="parent-disclosure-arrangement">
<div className="flex items-center gap-4 align-middle">
<span className="parent-disclosure-title">Core Components</span>
</div>
</div>
{Object.keys(dataFilter)
@ -351,7 +348,7 @@ export default function ExtraSidebar(): JSX.Element {
}
official={
dataFilter[SBSectionName][SBItemName].official ===
false
false
? false
: true
}
@ -443,33 +440,33 @@ export default function ExtraSidebar(): JSX.Element {
</DisclosureComponent>
{index ===
Object.keys(dataFilter).length -
PRIORITY_SIDEBAR_ORDER.length +
1 && (
<>
<a
target={"_blank"}
href="https://langflow.store"
className="components-disclosure-arrangement"
>
<div className="flex gap-4 pl-2">
{/* BUG ON THIS ICON */}
<SparklesIcon
strokeWidth={1.5}
className="w-[22px] text-primary"
/>
PRIORITY_SIDEBAR_ORDER.length +
1 && (
<>
<a
target={"_blank"}
href="https://langflow.store"
className="components-disclosure-arrangement"
>
<div className="flex gap-4 pl-2">
{/* BUG ON THIS ICON */}
<SparklesIcon
strokeWidth={1.5}
className="w-[22px] text-primary"
/>
<span className="components-disclosure-title">
Discover More
</span>
<span className="components-disclosure-title">
Discover More
</span>
</div>
<div className="components-disclosure-div">
<div>
<LinkIcon className="h-4 w-4 text-foreground" />
</div>
<div className="components-disclosure-div">
<div>
<LinkIcon className="h-4 w-4 text-foreground" />
</div>
</div>
</a>
</>
)}
</div>
</a>
</>
)}
</>
) : (
<div key={index}></div>

View file

@ -917,7 +917,7 @@
@apply mr-2 h-5 w-5 rotate-[44deg];
}
.form-modal-play-icon {
@apply mx-1 h-5 w-5;
@apply mx-1 h-5 w-5 fill-inherit;
}
.form-modal-chat-position {
@apply flex-max-width px-2 py-6 pl-4 pr-9;

View file

@ -204,12 +204,11 @@ export async function buildVertices({
if (stop) {
break;
}
if (onBuildComplete) {
const allNodesValid = buildResults.every((result) => result);
onBuildComplete(allNodesValid);
useFlowStore.getState().setIsBuilding(false);
}
}
if (onBuildComplete) {
const allNodesValid = buildResults.every((result) => result);
onBuildComplete(allNodesValid);
useFlowStore.getState().setIsBuilding(false);
}
}
async function buildVertex({