Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/main' into qwen
Browse files Browse the repository at this point in the history
  • Loading branch information
niuguy committed Dec 25, 2024
2 parents e984116 + d31be29 commit bd5283c
Show file tree
Hide file tree
Showing 48 changed files with 119 additions and 2,364 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
import { usePostLikeComponent } from "@/controllers/API/queries/store";
import { useState } from "react";
import { getComponent } from "../../../controllers/API";
import IOModalOld from "../../../modals/IOModal";
import IOModalNew from "../../../modals/IOModal/newModal";
import useAlertStore from "../../../stores/alertStore";
import useFlowsManagerStore from "../../../stores/flowsManagerStore";
import { useStoreStore } from "../../../stores/storeStore";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import ForwardedIconComponent from "@/components/common/genericIconComponent";
import ShadTooltip from "@/components/common/shadTooltipComponent";
import IOModal from "@/modals/IOModal/newModal";
import IOModal from "@/modals/IOModal/new-modal";

const PlaygroundButton = ({ hasIO, open, setOpen, canvasOpen }) => {
const PlayIcon = () => (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {
SelectItem,
SelectTrigger,
SelectValue,
} from "../../../../../../components/ui/select";
} from "../../../../../components/ui/select";

export default function CsvSelect({ node, handleChangeSelect }): JSX.Element {
return (
Expand Down
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
import { Button } from "../../../../../../components/ui/button";
import { Button } from "../../../../../components/ui/button";

import { usePostUploadFile } from "@/controllers/API/queries/files/use-post-upload-file";
import { createFileUpload } from "@/helpers/create-file-upload";
import useFileSizeValidator from "@/shared/hooks/use-file-size-validator";
import useAlertStore from "@/stores/alertStore";
import { useEffect, useState } from "react";
import IconComponent from "../../../../../../components/common/genericIconComponent";
import IconComponent from "../../../../../components/common/genericIconComponent";
import {
ALLOWED_IMAGE_INPUT_EXTENSIONS,
BASE_URL_API,
} from "../../../../../../constants/constants";
import useFlowsManagerStore from "../../../../../../stores/flowsManagerStore";
import { IOFileInputProps } from "../../../../../../types/components";
} from "../../../../../constants/constants";
import useFlowsManagerStore from "../../../../../stores/flowsManagerStore";
import { IOFileInputProps } from "../../../../../types/components";

export default function IOFileInput({ field, updateValue }: IOFileInputProps) {
//component to handle file upload from chatIO
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { IOJSONInputComponentType } from "@/types/components";
import { useEffect, useRef } from "react";
import JsonView from "react18-json-view";
import { useDarkStore } from "../../../../../../stores/darkStore";
import { useDarkStore } from "../../../../../stores/darkStore";

export default function IoJsonInput({
value = [],
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import _ from "lodash";
import { useRef } from "react";
import IconComponent from "../../../../../../components/common/genericIconComponent";
import { Input } from "../../../../../../components/ui/input";
import { classNames } from "../../../../../../utils/utils";
import IconComponent from "../../../../../components/common/genericIconComponent";
import { Input } from "../../../../../components/ui/input";
import { classNames } from "../../../../../utils/utils";

export type IOKeyPairInputProps = {
value: any;
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ import {
convertValuesToNumbers,
hasDuplicateKeys,
} from "../../../../utils/reactflowUtils";
import IOFileInput from "./components/FileInput";
import IoJsonInput from "./components/JSONInput";
import CsvSelect from "./components/csvSelect";
import IOKeyPairInput from "./components/keyPairInput";
import CsvSelect from "./components/csv-selected";
import IOFileInput from "./components/file-input";
import IoJsonInput from "./components/json-input";
import IOKeyPairInput from "./components/key-pair-input";

export default function IOFieldView({
type,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ import ShadTooltip from "@/components/common/shadTooltipComponent";
import { Button } from "@/components/ui/button";
import { Separator } from "@/components/ui/separator";
import { cn } from "@/utils/utils";
import IconComponent from "../../../../components/common/genericIconComponent";
import { ChatViewWrapperProps } from "../../types/chat-view-wrapper";
import ChatView from "../chatView/newChatView";
import IconComponent from "../../../components/common/genericIconComponent";
import { ChatViewWrapperProps } from "../types/chat-view-wrapper";
import ChatView from "./chatView/chat-view";

export const ChatViewWrapper = ({
selectedViewField,
Expand All @@ -19,8 +19,6 @@ export const ChatViewWrapper = ({
messagesFetched,
sessionId,
sendMessage,
chatValue,
setChatValue,
lockChat,
setLockChat,
canvasOpen,
Expand Down Expand Up @@ -95,8 +93,6 @@ export const ChatViewWrapper = ({
<ChatView
focusChat={sessionId}
sendMessage={sendMessage}
chatValue={chatValue}
setChatValue={setChatValue}
lockChat={lockChat}
setLockChat={setLockChat}
visibleSession={visibleSession}
Expand Down
Loading

0 comments on commit bd5283c

Please sign in to comment.