@eintrek/erp-shell 0.1.27 → 0.1.29
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/auth/access-denied.d.ts +4 -1
- package/dist/index.esm.js +21 -5
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +20 -4
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -3,7 +3,10 @@ export interface AccessDeniedProps {
|
|
|
3
3
|
title?: string;
|
|
4
4
|
/** Secondary explanation — pass the page-specific denied reason here. */
|
|
5
5
|
message?: string;
|
|
6
|
-
/**
|
|
6
|
+
/**
|
|
7
|
+
* Where "กลับไปหน้าหลัก" navigates. Defaults to the current organization's
|
|
8
|
+
* home (`/{code}`), falling back to "/" outside an org route.
|
|
9
|
+
*/
|
|
7
10
|
homeHref?: string;
|
|
8
11
|
homeLabel?: string;
|
|
9
12
|
/** When set, shows the "ติดต่อฝ่ายสนับสนุน" button (URL or mailto:). */
|
package/dist/index.esm.js
CHANGED
|
@@ -5,7 +5,7 @@ import { useSession, signOut } from 'next-auth/react';
|
|
|
5
5
|
import { useQueryClient, MutationCache, QueryCache, QueryClient, QueryClientProvider } from '@tanstack/react-query';
|
|
6
6
|
import { jsx, jsxs, Fragment as Fragment$1 } from 'react/jsx-runtime';
|
|
7
7
|
import { cn, Button, Breadcrumb, BreadcrumbList, BreadcrumbItem, BreadcrumbLink, BreadcrumbSeparator, BreadcrumbPage, Avatar, AvatarImage, AvatarFallback, Collapsible, CollapsibleTrigger, CollapsibleContent, Badge, Skeleton, DropdownMenu, DropdownMenuTrigger, DropdownMenuContent, DropdownMenuLabel, DropdownMenuItem, DropdownMenuSeparator, Card, CardHeader, CardContent } from '@eintrek/erp-theme';
|
|
8
|
-
import { PanelLeftClose, Menu, ChevronRight, Building2, ExternalLink, Palette, ChevronUp, Sun, Moon, Monitor, Globe, User, Loader2, LogOut, ChevronDown, ChevronsUpDown, Plus,
|
|
8
|
+
import { PanelLeftClose, Menu, ChevronRight, Building2, ExternalLink, Palette, ChevronUp, Sun, Moon, Monitor, Globe, User, Loader2, LogOut, ChevronDown, ChevronsUpDown, Plus, Ban, Home, Headset } from 'lucide-react';
|
|
9
9
|
import { create } from 'zustand';
|
|
10
10
|
import { persist, createJSONStorage } from 'zustand/middleware';
|
|
11
11
|
import { useRouter, usePathname, useParams } from 'next/navigation';
|
|
@@ -482,7 +482,17 @@ function SidebarTrigger({ className }) {
|
|
|
482
482
|
* Provides a beautiful gradient background that can be customized.
|
|
483
483
|
*/
|
|
484
484
|
function HeaderBackground({ className }) {
|
|
485
|
-
return (jsx("div", { className: cn("absolute inset-0 rounded-br-xl",
|
|
485
|
+
return (jsx("div", { className: cn("absolute inset-0 rounded-br-xl", className),
|
|
486
|
+
// The header carries each app's brand identity. It derives from the
|
|
487
|
+
// theme's --primary so every app is recoloured by a single token: the
|
|
488
|
+
// left stop is --primary, the right stop a darker mix of it. An app may
|
|
489
|
+
// override the stops explicitly via --brand-gradient-from / -to. The
|
|
490
|
+
// final fallbacks reproduce the original crimson if --primary is absent.
|
|
491
|
+
style: {
|
|
492
|
+
backgroundImage: "linear-gradient(to right," +
|
|
493
|
+
" var(--brand-gradient-from, var(--primary, #E4535E))," +
|
|
494
|
+
" var(--brand-gradient-to, color-mix(in oklab, var(--primary, #E4535E) 58%, #000)))",
|
|
495
|
+
} }));
|
|
486
496
|
}
|
|
487
497
|
|
|
488
498
|
const useSidebarToggle = create(persist((set, get) => ({
|
|
@@ -866,7 +876,7 @@ function NavUser({ organization, avatarSrc, profileHref, selectOrganizationHref
|
|
|
866
876
|
{ code: "zh", label: "中文" },
|
|
867
877
|
{ code: "ja", label: "日本語" },
|
|
868
878
|
].map(({ code, label }) => (jsxs("button", { onClick: () => handleLanguageChange(code), className: "flex w-full items-center gap-3 px-3 py-2 text-sm text-sidebar-foreground hover:bg-sidebar-accent rounded-md transition-colors", children: [jsx("span", { className: "flex-1 text-left", children: label }), organization?.language === code && (jsx("div", { className: "h-2 w-2 rounded-full bg-primary" }))] }, code))) }))] })), profileHref && (jsxs("button", { onClick: handleProfile, className: "flex w-full items-center gap-3 px-3 py-2.5 text-sm text-sidebar-foreground hover:bg-sidebar-accent rounded-md transition-colors", children: [jsx(User, { className: "h-4 w-4" }), jsx("span", { className: "flex-1 text-left", children: "\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E2A\u0E48\u0E27\u0E19\u0E15\u0E31\u0E27" })] })), showSelectOrganization && (jsxs("button", { onClick: handleSelectOrganization, className: "flex w-full items-center gap-3 px-3 py-2.5 text-sm text-sidebar-foreground hover:bg-sidebar-accent rounded-md transition-colors", children: [jsx(Building2, { className: "h-4 w-4" }), jsx("span", { className: "flex-1 text-left", children: "\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E18\u0E38\u0E23\u0E01\u0E34\u0E08" })] })), jsx("button", { onClick: handleSignOut, disabled: isSigningOut, className: "flex w-full items-center gap-3 px-3 py-2.5 text-sm text-sidebar-foreground hover:bg-sidebar-accent rounded-md transition-colors disabled:opacity-50 disabled:cursor-not-allowed mt-1", children: isSigningOut ? (jsxs(Fragment$1, { children: [jsx(Loader2, { className: "h-4 w-4 animate-spin" }), jsx("span", { className: "flex-1 text-left", children: "\u0E01\u0E33\u0E25\u0E31\u0E07\u0E2D\u0E2D\u0E01\u0E08\u0E32\u0E01\u0E23\u0E30\u0E1A\u0E1A..." })] })) : (jsxs(Fragment$1, { children: [jsx(LogOut, { className: "h-4 w-4" }), jsx("span", { className: "flex-1 text-left", children: "\u0E2D\u0E2D\u0E01\u0E08\u0E32\u0E01\u0E23\u0E30\u0E1A\u0E1A" })] })) })] })] })) : null;
|
|
869
|
-
return (jsx("div", { className: "p-2", children: jsxs("div", { className: "relative", children: [jsxs("button", { ref: buttonRef, onClick: () => setIsOpen(!isOpen), className: "flex w-full items-center gap-2 p-2 rounded-md transition-colors", children: [jsxs(Avatar, { className: "h-8 w-8 rounded-lg", children: [user.avatar ? (jsx(AvatarImage, { src: user.avatar, alt: user.name })) : null, jsx(AvatarFallback, { className: "rounded-lg bg-
|
|
879
|
+
return (jsx("div", { className: "p-2", children: jsxs("div", { className: "relative", children: [jsxs("button", { ref: buttonRef, onClick: () => setIsOpen(!isOpen), className: "flex w-full items-center gap-2 p-2 rounded-md transition-colors", children: [jsxs(Avatar, { className: "h-8 w-8 rounded-lg", children: [user.avatar ? (jsx(AvatarImage, { src: user.avatar, alt: user.name })) : null, jsx(AvatarFallback, { className: "rounded-lg bg-primary text-primary-foreground w-8 h-8", children: getInitials(user.name) })] }), jsxs("div", { className: "grid flex-1 text-left text-sm leading-tight", children: [jsx("span", { className: "truncate font-medium", title: user.name, children: user.name }), jsx("span", { className: "truncate text-xs text-sidebar-foreground/70", title: user.email, children: user.email })] }), jsx(ChevronUp, { className: `ml-auto size-4 transition-transform ${isOpen ? "rotate-180" : ""}` })] }), typeof window !== "undefined" &&
|
|
870
880
|
createPortal(dropdownContent, document.body)] }) }));
|
|
871
881
|
}
|
|
872
882
|
|
|
@@ -1157,7 +1167,13 @@ function cx(...parts) {
|
|
|
1157
1167
|
* an illustration, a 403 headline, the page-specific reason, and recovery
|
|
1158
1168
|
* actions.
|
|
1159
1169
|
*/
|
|
1160
|
-
function AccessDenied({ title = "ขออภัย, คุณไม่มีสิทธิ์เข้าถึงหน้านี้ (403)", message = "คุณไม่มีสิทธิ์เข้าถึงหน้านี้ ขออภัยในความไม่สะดวก", homeHref
|
|
1170
|
+
function AccessDenied({ title = "ขออภัย, คุณไม่มีสิทธิ์เข้าถึงหน้านี้ (403)", message = "คุณไม่มีสิทธิ์เข้าถึงหน้านี้ ขออภัยในความไม่สะดวก", homeHref, homeLabel = "กลับไปหน้าหลัก", supportHref, supportLabel = "ติดต่อฝ่ายสนับสนุน", fullScreen = true, className, }) {
|
|
1171
|
+
// "/" is not the home page inside an app — it bounces to organization
|
|
1172
|
+
// selection, so the button read "กลับไปหน้าหลัก" and dropped the user into a
|
|
1173
|
+
// picker for the org they were already in. Send them to that org's home.
|
|
1174
|
+
const params = useParams();
|
|
1175
|
+
const code = typeof params?.code === "string" ? params.code : "";
|
|
1176
|
+
const homeTarget = homeHref ?? (code ? `/${code}` : "/");
|
|
1161
1177
|
const go = (href) => {
|
|
1162
1178
|
if (typeof window !== "undefined")
|
|
1163
1179
|
window.location.href = href;
|
|
@@ -1169,7 +1185,7 @@ function AccessDenied({ title = "ขออภัย, คุณไม่มีส
|
|
|
1169
1185
|
]
|
|
1170
1186
|
.filter(Boolean)
|
|
1171
1187
|
.join(" ");
|
|
1172
|
-
return (jsx("div", { className: wrapperClass, children:
|
|
1188
|
+
return (jsx("div", { className: wrapperClass, children: jsx("div", { className: "relative w-full max-w-3xl overflow-hidden rounded-2xl border border-border/60 bg-card/60 p-8 shadow-sm backdrop-blur sm:p-10", children: jsxs("div", { className: "flex flex-col items-center gap-8 text-center sm:flex-row sm:text-left", children: [jsxs("div", { className: "relative shrink-0", children: [jsx("div", { className: "absolute inset-0 rounded-full bg-destructive/20 blur-2xl" }), jsx("div", { className: "relative flex h-28 w-28 items-center justify-center rounded-3xl border border-border/60 bg-gradient-to-br from-muted/40 to-background shadow-inner", children: jsx("div", { className: "flex h-16 w-16 items-center justify-center rounded-full border border-destructive/40 bg-destructive/10", children: jsx(Ban, { className: "h-8 w-8 text-destructive", strokeWidth: 2.5 }) }) })] }), jsxs("div", { className: "min-w-0 flex-1", children: [jsx("h1", { className: "text-xl font-bold text-foreground sm:text-2xl", children: title }), message ? (jsx("p", { className: "mt-3 whitespace-pre-line text-sm leading-relaxed text-muted-foreground sm:text-base", children: message })) : null, jsxs("div", { className: "mt-6 flex flex-col gap-3 sm:flex-row", children: [jsxs(Button, { type: "button", onClick: () => go(homeTarget), className: "w-full sm:w-auto", children: [jsx(Home, { className: "mr-2 h-4 w-4" }), homeLabel] }), supportHref ? (jsxs(Button, { type: "button", variant: "outline", onClick: () => go(supportHref), className: "w-full sm:w-auto", children: [jsx(Headset, { className: "mr-2 h-4 w-4" }), supportLabel] })) : null] })] })] }) }) }));
|
|
1173
1189
|
}
|
|
1174
1190
|
|
|
1175
1191
|
const shellClassName = "flex min-w-0 flex-1 flex-col gap-6 overflow-x-hidden";
|