forked from basetool-io/basetool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLayout.tsx
122 lines (113 loc) · 3.91 KB
/
Layout.tsx
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
import { inProduction } from "@/lib/environment";
import { segment } from "@/lib/track";
import { segmentPublicKey } from "@/lib/services";
// import { useIntercom } from "react-use-intercom";
import { useProfile, useSidebarsVisible } from "@/hooks";
import { useRouter } from "next/router";
import Authenticated from "./Authenticated";
import DataSourcesSidebar from "./DataSourcesSidebar";
import HeadSection from "./HeadSection";
import PageWrapper from "./PageWrapper";
import React, { ReactNode, useEffect, useMemo } from "react";
import SettingsSidebar from "./OrganizationSidebar";
import Sidebar from "./Sidebar";
import classNames from "classnames";
function Layout({
hideSidebar = false,
children,
sidebar,
}: {
hideSidebar?: boolean;
children: ReactNode;
sidebar?: ReactNode;
}) {
const router = useRouter();
const { session, isLoading: profileIsLoading } = useProfile();
const tablesSidebarVisible = useMemo(() => {
if (sidebar) return false;
if (hideSidebar) return false;
return true;
}, [router.pathname]);
// temporarily returning false until we figure out a better way of injecting the sidebar with dynamic values 👇
const settingsSidebarVisible = useMemo(
() => false && router.pathname.includes("/settings"),
[router.pathname]
);
// const { boot, update } = useIntercom();
// useEffect(() => {
// // Boot up the Intercom widget
// if (inProduction && intercomAppId) boot();
// }, []);
useEffect(() => {
// Update Intercom with the user's info
if (inProduction && !profileIsLoading && session) {
// if (intercomAppId) {
// // Update Intercom identification
// update({
// name: session?.user?.name,
// email: session?.user?.email,
// createdAt: session?.user?.createdAt?.toString(),
// userHash: session?.user?.intercomUserHash,
// });
// }
if (segmentPublicKey) {
// Update Segment identification
segment().identify(undefined, {
name: session?.user?.name,
email: session?.user?.email,
});
}
}
}, [profileIsLoading, session]);
const [sidebarsVisible] = useSidebarsVisible();
return (
<Authenticated>
<>
<HeadSection />
{process.env.NEXT_PUBLIC_SHOW_SUNSETTING_MESSAGE === "1" && (
<a
href="https://basetool.io/#sunset"
target="_blank"
className="block w-full bg-blue-100 text-blue-900 py-2 text-center"
rel="noreferrer"
>
We're sunsetting Basetool. Click to find out more.
</a>
)}
<div className="antialiased flex w-screen h-screen">
<DataSourcesSidebar />
<div
className={classNames(
"flex-1 flex bg-neutral-100 rounded-tl-lg shadow h-[calc(100%-0.5rem)] my-2",
{
"w-[calc(100%-5rem)]": sidebarsVisible,
"w-[calc(100%-0.5rem)] md:w-[calc(100%-5rem)]":
!sidebarsVisible,
}
)}
>
{(sidebar || tablesSidebarVisible || settingsSidebarVisible) && (
<div
className={classNames("flex", {
"min-w-[14rem] max-w-[14rem]": sidebarsVisible,
"w-0 md:min-w-[14rem] md:max-w-[14rem]": !sidebarsVisible,
})}
>
{tablesSidebarVisible && <Sidebar />}
{settingsSidebarVisible && <SettingsSidebar />}
{sidebar}
</div>
)}
<div className="flex-1 flex flex-col w-full h-full overflow-auto">
<div className="relative flex flex-1 w-full max-h-full">
{profileIsLoading && <PageWrapper isLoading={true} />}
{profileIsLoading || children}
</div>
</div>
</div>
</div>
</>
</Authenticated>
);
}
export default Layout;