File size: 2,862 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
import React from "react";
import { useRouteError, isRouteErrorResponse, Outlet } from "react-router";
import i18n from "#/i18n";
import { useGitHubAuthUrl } from "#/hooks/use-github-auth-url";
import { useIsAuthed } from "#/hooks/query/use-is-authed";
import { useAuth } from "#/context/auth-context";
import { useConfig } from "#/hooks/query/use-config";
import { Sidebar } from "#/components/features/sidebar/sidebar";
import { WaitlistModal } from "#/components/features/waitlist/waitlist-modal";
import { AnalyticsConsentFormModal } from "#/components/features/analytics/analytics-consent-form-modal";
import { useSettings } from "#/hooks/query/use-settings";
import { useMaybeMigrateSettings } from "#/hooks/use-maybe-migrate-settings";

export function ErrorBoundary() {
  const error = useRouteError();

  if (isRouteErrorResponse(error)) {
    return (
      <div>

        <h1>{error.status}</h1>

        <p>{error.statusText}</p>

        <pre>

          {error.data instanceof Object

            ? JSON.stringify(error.data)

            : error.data}

        </pre>

      </div>
    );
  }
  if (error instanceof Error) {
    return (
      <div>

        <h1>Uh oh, an error occurred!</h1>

        <pre>{error.message}</pre>

      </div>
    );
  }

  return (
    <div>

      <h1>Uh oh, an unknown error occurred!</h1>

    </div>
  );
}

export default function MainApp() {
  useMaybeMigrateSettings();

  const { gitHubToken } = useAuth();
  const { data: settings } = useSettings();

  const [consentFormIsOpen, setConsentFormIsOpen] = React.useState(
    !localStorage.getItem("analytics-consent"),
  );

  const config = useConfig();
  const { data: isAuthed, isFetching: isFetchingAuth } = useIsAuthed();

  const gitHubAuthUrl = useGitHubAuthUrl({
    gitHubToken,
    appMode: config.data?.APP_MODE || null,
    gitHubClientId: config.data?.GITHUB_CLIENT_ID || null,
  });

  React.useEffect(() => {
    if (settings?.LANGUAGE) {
      i18n.changeLanguage(settings.LANGUAGE);
    }
  }, [settings?.LANGUAGE]);

  const isInWaitlist =
    !isFetchingAuth && !isAuthed && config.data?.APP_MODE === "saas";

  return (
    <div

      data-testid="root-layout"

      className="bg-root-primary p-3 h-screen md:min-w-[1024px] overflow-x-hidden flex flex-col md:flex-row gap-3"

    >

      <Sidebar />



      <div

        id="root-outlet"

        className="h-[calc(100%-50px)] md:h-full w-full relative"

      >

        <Outlet />

      </div>



      {isInWaitlist && (

        <WaitlistModal ghToken={gitHubToken} githubAuthUrl={gitHubAuthUrl} />

      )}



      {config.data?.APP_MODE === "oss" && consentFormIsOpen && (

        <AnalyticsConsentFormModal

          onClose={() => setConsentFormIsOpen(false)}

        />

      )}

    </div>
  );
}