File size: 6,971 Bytes
246d201
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
import { useDisclosure } from "@nextui-org/react";
import React from "react";
import { Outlet } from "react-router";
import { useDispatch } from "react-redux";
import { FaServer } from "react-icons/fa";
import toast from "react-hot-toast";
import { useTranslation } from "react-i18next";
import { I18nKey } from "#/i18n/declaration";
import {
  ConversationProvider,
  useConversation,
} from "#/context/conversation-context";
import { Controls } from "#/components/features/controls/controls";
import { clearMessages } from "#/state/chat-slice";
import { clearTerminal } from "#/state/command-slice";
import { useEffectOnce } from "#/hooks/use-effect-once";
import CodeIcon from "#/icons/code.svg?react";
import GlobeIcon from "#/icons/globe.svg?react";
import ListIcon from "#/icons/list-type-number.svg?react";
import { clearJupyter } from "#/state/jupyter-slice";
import { FilesProvider } from "#/context/files";
import { ChatInterface } from "../../components/features/chat/chat-interface";
import { WsClientProvider } from "#/context/ws-client-provider";
import { EventHandler } from "./event-handler";
import { useAuth } from "#/context/auth-context";
import { useConversationConfig } from "#/hooks/query/use-conversation-config";
import { Container } from "#/components/layout/container";
import {
  Orientation,
  ResizablePanel,
} from "#/components/layout/resizable-panel";
import Security from "#/components/shared/modals/security/security";
import { useEndSession } from "#/hooks/use-end-session";
import { useUserConversation } from "#/hooks/query/use-user-conversation";
import { ServedAppLabel } from "#/components/layout/served-app-label";
import { TerminalStatusLabel } from "#/components/features/terminal/terminal-status-label";
import { useSettings } from "#/hooks/query/use-settings";
import { MULTI_CONVERSATION_UI } from "#/utils/feature-flags";

function AppContent() {
  useConversationConfig();
  const { t } = useTranslation();
  const { gitHubToken } = useAuth();
  const { data: settings } = useSettings();
  const { conversationId } = useConversation();
  const { data: conversation, isFetched } = useUserConversation(
    conversationId || null,
  );
  const dispatch = useDispatch();
  const endSession = useEndSession();

  const [width, setWidth] = React.useState(window.innerWidth);

  const secrets = React.useMemo(
    () => [gitHubToken].filter((secret) => secret !== null),
    [gitHubToken],
  );

  const Terminal = React.useMemo(
    () => React.lazy(() => import("#/components/features/terminal/terminal")),
    [],
  );

  React.useEffect(() => {
    if (MULTI_CONVERSATION_UI && isFetched && !conversation) {
      toast.error(
        "This conversation does not exist, or you do not have permission to access it.",
      );
      endSession();
    }
  }, [conversation, isFetched]);

  React.useEffect(() => {
    dispatch(clearMessages());
    dispatch(clearTerminal());
    dispatch(clearJupyter());
  }, [conversationId]);

  useEffectOnce(() => {
    dispatch(clearMessages());
    dispatch(clearTerminal());
    dispatch(clearJupyter());
  });

  function handleResize() {
    setWidth(window.innerWidth);
  }

  React.useEffect(() => {
    window.addEventListener("resize", handleResize);
    return () => {
      window.removeEventListener("resize", handleResize);
    };
  }, []);

  const {
    isOpen: securityModalIsOpen,
    onOpen: onSecurityModalOpen,
    onOpenChange: onSecurityModalOpenChange,
  } = useDisclosure();

  function renderMain() {
    if (width <= 640) {
      return (
        <div className="rounded-xl overflow-hidden border border-neutral-600 w-full">

          <ChatInterface />

        </div>
      );
    }
    return (
      <ResizablePanel

        orientation={Orientation.HORIZONTAL}

        className="grow h-full min-h-0 min-w-0"

        initialSize={500}

        firstClassName="rounded-xl overflow-hidden border border-neutral-600 bg-neutral-800"

        secondClassName="flex flex-col overflow-hidden"

        firstChild={<ChatInterface />}

        secondChild={

          <ResizablePanel

            orientation={Orientation.VERTICAL}

            className="grow h-full min-h-0 min-w-0"

            initialSize={500}

            firstClassName="rounded-xl overflow-hidden border border-neutral-600"

            secondClassName="flex flex-col overflow-hidden"

            firstChild={

              <Container

                className="h-full"

                labels={[

                  {

                    label: t(I18nKey.WORKSPACE$TITLE),

                    to: "",

                    icon: <CodeIcon />,

                  },

                  { label: "Jupyter", to: "jupyter", icon: <ListIcon /> },

                  {

                    label: <ServedAppLabel />,

                    to: "served",

                    icon: <FaServer />,

                  },

                  {

                    label: (

                      <div className="flex items-center gap-1">

                        {t(I18nKey.BROWSER$TITLE)}

                      </div>

                    ),

                    to: "browser",

                    icon: <GlobeIcon />,

                  },

                ]}

              >

                <FilesProvider>

                  <Outlet />

                </FilesProvider>

              </Container>

            }

            secondChild={

              <Container

                className="h-full overflow-scroll"

                label={<TerminalStatusLabel />}

              >

                {/* Terminal uses some API that is not compatible in a server-environment. For this reason, we lazy load it to ensure

                 * that it loads only in the client-side. */}

                <React.Suspense fallback={<div className="h-full" />}>

                  <Terminal secrets={secrets} />

                </React.Suspense>

              </Container>

            }

          />

        }

      />
    );
  }

  return (
    <WsClientProvider conversationId={conversationId}>

      <EventHandler>

        <div data-testid="app-route" className="flex flex-col h-full gap-3">

          <div className="flex h-full overflow-auto">{renderMain()}</div>



          <Controls

            setSecurityOpen={onSecurityModalOpen}

            showSecurityLock={!!settings?.SECURITY_ANALYZER}

          />

          {settings && (

            <Security

              isOpen={securityModalIsOpen}

              onOpenChange={onSecurityModalOpenChange}

              securityAnalyzer={settings.SECURITY_ANALYZER}

            />

          )}

        </div>

      </EventHandler>

    </WsClientProvider>
  );
}

function App() {
  return (
    <ConversationProvider>

      <AppContent />

    </ConversationProvider>
  );
}

export default App;