forked from basetool-io/basetool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPageWrapper.tsx
217 lines (202 loc) · 6.03 KB
/
PageWrapper.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
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
207
208
209
210
211
212
213
214
215
216
217
import { Button } from "@chakra-ui/react";
import { ChevronRightIcon } from "@heroicons/react/outline";
import { FetchBaseQueryError } from "@reduxjs/toolkit/dist/query";
import { FooterElements } from "@/types";
import { SerializedError } from "@reduxjs/toolkit";
import { Sidebar } from "react-feather";
import { first } from "lodash";
import { useSidebarsVisible } from "@/hooks";
import Link from "next/link";
import LoadingOverlay from "./LoadingOverlay";
import React, { ReactElement, ReactNode } from "react";
import classNames from "classnames";
const Heading = ({ children }: { children: string | ReactNode }) => (
<div className="uppercase font-semibold">{children}</div>
);
const Section = ({ children }: { children: ReactNode }) => (
<div>{children}</div>
);
const Blocks = ({ children }: { children: ReactNode }) => (
<div className="grid gap-4 auto-cols-auto md:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4">
{children}
</div>
);
const Block = ({
href,
children,
onMouseOver,
}: {
href?: string;
children: ReactNode;
onMouseOver?: () => void;
}) => {
const content = (
<div
className="rounded-md border bg-neutral-50 hover:bg-neutral-100 hover:border-neutral-300 p-4 h-full"
onMouseOver={onMouseOver}
>
{children}
</div>
);
if (href)
return (
<Link href={href}>
<a>{content}</a>
</Link>
);
return content;
};
const TitleCrumbs = ({ crumbs }: { crumbs: Array<string | undefined> }) => {
return (
<>
{crumbs &&
crumbs.map((crumb, idx) => {
if (idx === crumbs.length - 1) {
return <span key={idx}>{crumb}</span>;
}
return (
<span key={idx} className="tracking-tight">
{crumb}{" "}
<ChevronRightIcon className="h-4 text-gray-400 inline -mt-0" />{" "}
</span>
);
})}
</>
);
};
const Footer = ({ left, center, right }: FooterElements) => {
if (!left && !center && !right) return null;
return (
<div className="sticky top-auto bottom-0 w-[calc(100%+0.5rem)] -ml-1 bg-white shadow-pw-footer rounded-t py-[calc(0.5rem+1px)] z-40">
<div className="flex justify-evenly items-center px-4">
<div className="flex-1 flex justify-start">{left}</div>
<div className="min-h-[2rem]">{center}</div>
<div className="flex-1 flex justify-end">{right}</div>
</div>
</div>
);
};
function PageWrapper({
heading,
crumbs,
buttons,
children,
icon,
flush = false,
isLoading = false,
className,
footer,
footerElements,
error,
bodyClassName,
}: {
heading?: string | ReactElement;
crumbs?: Array<string | undefined>;
buttons?: ReactElement | "";
children?: ReactElement | string;
icon?: ReactElement;
flush?: boolean;
isLoading?: boolean;
className?: string;
footer?: ReactElement;
footerElements?: FooterElements;
error?: FetchBaseQueryError | SerializedError | undefined;
bodyClassName?: string;
}) {
const [sidebarsVisible, setSidebarVisible] = useSidebarsVisible();
return (
<>
<div
className={classNames(
"flex flex-col flex-1 px-2 pt-2 min-w-64 w-full",
className,
{ "pb-2": !footer && !footerElements }
)}
>
<div
className={classNames(
"relative flex flex-1 flex-col bg-white shadow sm:rounded-lg"
)}
>
{(heading || crumbs || icon) && (
<div
className={classNames(
"relative flex justify-between border-b p-4 flex-col md:flex-row space-y-2 md:space-y-0"
)}
>
<div className="flex items-center">
<Button
variant="ghost"
size="sm"
onClick={() => setSidebarVisible(!sidebarsVisible)}
display={{ md: "none" }}
className="flex flex-shrink-0 mr-2"
>
<Sidebar className="h-4 w-4" />
</Button>
<div className="text-xl text-gray-800 flex items-center space-x-1">
{!error && (
<>
{icon}
{heading && <span>{heading}</span>}
{crumbs && <TitleCrumbs crumbs={crumbs} />}
</>
)}
{error &&
(("status" in error && error.status) ||
("name" in error && error.name) ||
"Error")}
</div>
</div>
<div className="flex justify-start md:justify-end items-center">
{buttons}
</div>
</div>
)}
<div
className={classNames(
"relative flex-1 flex flex-col",
{
"px-4 py-4 ": !flush,
},
bodyClassName
)}
>
{isLoading && <LoadingOverlay inPageWrapper />}
{!error && children}
{error && "data" in error && (
<div className="p-4">
{first((error as any)?.data?.messages)}
{(error as any)?.data?.meta?.errorMessage && (
<>
<div className="uppercase font-bold text-sm mt-4">
Message:
</div>
<div className="text-sm">
{(error as any)?.data?.meta?.errorMessage}
</div>
</>
)}
</div>
)}
</div>
{footer && footer}
{footerElements && (
<Footer
left={footerElements.left}
center={footerElements.center}
right={footerElements.right}
/>
)}
</div>
</div>
</>
);
}
PageWrapper.TitleCrumbs = TitleCrumbs;
PageWrapper.Heading = Heading;
PageWrapper.Section = Section;
PageWrapper.Blocks = Blocks;
PageWrapper.Block = Block;
PageWrapper.Footer = Footer;
export default PageWrapper;