@noya-app/noya-designsystem 0.1.69 → 0.1.70

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@noya-app/noya-designsystem",
3
- "version": "0.1.69",
3
+ "version": "0.1.70",
4
4
  "main": "./dist/index.js",
5
5
  "module": "./dist/index.mjs",
6
6
  "types": "./dist/index.d.ts",
@@ -26,7 +26,7 @@
26
26
  "@noya-app/noya-colorpicker": "0.1.30",
27
27
  "@noya-app/noya-utils": "0.1.9",
28
28
  "@noya-app/noya-geometry": "0.1.16",
29
- "@noya-app/noya-icons": "0.1.14",
29
+ "@noya-app/noya-icons": "0.1.15",
30
30
  "@noya-app/noya-keymap": "0.1.4",
31
31
  "@noya-app/noya-tailwind-config": "0.1.8",
32
32
  "radix-ui": "1.4.2",
@@ -14,7 +14,7 @@ import { Spacer } from "./Spacer";
14
14
  import { Tooltip } from "./Tooltip";
15
15
  import type { MenuItemIcon } from "./internal/Menu";
16
16
 
17
- type ButtonVariant = "normal" | "thin" | "floating" | "none" | "ghost";
17
+ type ButtonVariant = "normal" | "thin" | "floating" | "none" | "ghost" | "link";
18
18
 
19
19
  type ButtonSize = "small" | "normal" | "large" | "floating";
20
20
 
@@ -36,6 +36,7 @@ const variantStyles: Record<ButtonVariant, string> = {
36
36
  thin: "n-bg-transparent n-text-text hover:n-bg-input-background-light",
37
37
  none: "n-bg-transparent n-text-text hover:n-bg-input-background-light",
38
38
  ghost: "n-bg-transparent n-text-text hover:n-bg-input-background-light",
39
+ link: "n-bg-transparent n-text-text hover:n-bg-input-background-light",
39
40
  };
40
41
 
41
42
  const sizeStyles: Record<ButtonSize | "thin" | "none", string> = {
@@ -70,6 +70,11 @@ export const DraggableMenuButton = memoGeneric(function DraggableMenuButton<
70
70
  (event: React.PointerEvent) => {
71
71
  if (open || !downPosition) {
72
72
  setDownPosition(null);
73
+
74
+ // if the button was clicked directly, close the menu
75
+ if (open && event.target === event.currentTarget) {
76
+ setOpen(false);
77
+ }
73
78
  return;
74
79
  }
75
80
 
@@ -85,9 +85,7 @@ const TreeRow = forwardRefGeneric(function TreeRow<MenuItemType extends string>(
85
85
  <Spacer.Horizontal size={6} />
86
86
  {expanded === undefined ? (
87
87
  <>
88
- <Spacer.Horizontal size={19} />
89
- {/* Right-side padding for end chevron */}
90
- <Spacer.Horizontal size={8} />
88
+ {/* Right-side padding not needed for end chevron since no text needs to be aligned */}
91
89
  </>
92
90
  ) : (
93
91
  <>
@@ -6,8 +6,9 @@ import { DividerVertical } from "../Divider";
6
6
  import { Drawer } from "../Drawer";
7
7
  import { isSelectableMenuItem, MenuItem } from "../internal/Menu";
8
8
  import { EDITOR_PANEL_GROUP_ID, RIGHT_SIDEBAR_ID } from "./constants";
9
- import { LayoutProps, PanelLayoutState } from "./types";
9
+ import { LayoutProps, PanelLayoutState, SidebarRef } from "./types";
10
10
  import { VerticalTabMenu } from "./VerticalTabMenu";
11
+ import { Button } from "../Button";
11
12
 
12
13
  export const DrawerWorkspaceLayout = memoGeneric(function DrawerWorkspaceLayout<
13
14
  LeftTab extends string = string,
@@ -24,6 +25,7 @@ export const DrawerWorkspaceLayout = memoGeneric(function DrawerWorkspaceLayout<
24
25
  rightTabValue,
25
26
  onChangeRightTab,
26
27
  onChangeLeftTab,
28
+ compactDrawerMenu,
27
29
  }: LayoutProps<LeftTab, RightTab>) {
28
30
  const portalContainer = useRef<HTMLDivElement>(null);
29
31
 
@@ -44,6 +46,14 @@ export const DrawerWorkspaceLayout = memoGeneric(function DrawerWorkspaceLayout<
44
46
 
45
47
  const hasTabs = allTabItems.length > 0;
46
48
 
49
+ // Determine if we should use the compact top-row menu variant.
50
+ const allSelectableTabItems = useMemo(
51
+ () => allTabItems.filter(isSelectableMenuItem),
52
+ [allTabItems]
53
+ );
54
+ const useCompactInToolbar =
55
+ !!compactDrawerMenu && allSelectableTabItems.length <= 1;
56
+
47
57
  const leftSelectableTabItems = useMemo(
48
58
  () => (leftTabItems ?? []).filter(isSelectableMenuItem),
49
59
  [leftTabItems]
@@ -54,6 +64,39 @@ export const DrawerWorkspaceLayout = memoGeneric(function DrawerWorkspaceLayout<
54
64
  [rightTabItems]
55
65
  );
56
66
 
67
+ // Shared helpers for expanding/collapsing drawers
68
+ const toggleSidebar = (ref: React.RefObject<SidebarRef | null>) => {
69
+ if (ref.current?.isExpanded()) {
70
+ ref.current?.collapse();
71
+ } else {
72
+ ref.current?.expand();
73
+ }
74
+ };
75
+
76
+ const ensureExpanded = (ref: React.RefObject<SidebarRef | null>) => {
77
+ if (!ref.current?.isExpanded()) {
78
+ ref.current?.expand();
79
+ }
80
+ };
81
+
82
+ const handleSelectTab = (value: LeftTab | RightTab) => {
83
+ if (leftSelectableTabItems.some((item) => item.value === value)) {
84
+ if (value === leftTabValue) {
85
+ toggleSidebar(leftSidebarRef);
86
+ } else {
87
+ ensureExpanded(leftSidebarRef);
88
+ onChangeLeftTab?.(value as LeftTab);
89
+ }
90
+ } else if (rightSelectableTabItems.some((item) => item.value === value)) {
91
+ if (value === rightTabValue) {
92
+ toggleSidebar(rightSidebarRef);
93
+ } else {
94
+ ensureExpanded(rightSidebarRef);
95
+ onChangeRightTab?.(value as RightTab);
96
+ }
97
+ }
98
+ };
99
+
57
100
  const { activeValue, isSidebarCollapsed } =
58
101
  leftSelectableTabItems.length > 0 && !leftSidebarCollapsed
59
102
  ? { activeValue: leftTabValue, isSidebarCollapsed: leftSidebarCollapsed }
@@ -70,60 +113,60 @@ export const DrawerWorkspaceLayout = memoGeneric(function DrawerWorkspaceLayout<
70
113
  id={EDITOR_PANEL_GROUP_ID}
71
114
  className="n-flex n-flex-1 n-relative focus:n-outline-none"
72
115
  >
73
- {hasTabs && (
74
- <VerticalTabMenu
75
- tooltipSide="right"
76
- items={allTabItems}
77
- activeValue={activeValue}
78
- isSidebarCollapsed={isSidebarCollapsed}
79
- onChange={(value) => {
80
- if (leftSelectableTabItems.some((item) => item.value === value)) {
81
- if (value === leftTabValue) {
82
- if (leftSidebarRef.current?.isExpanded()) {
83
- leftSidebarRef.current?.collapse();
84
- } else {
85
- leftSidebarRef.current?.expand();
86
- }
87
- } else {
88
- if (!leftSidebarRef.current?.isExpanded()) {
89
- leftSidebarRef.current?.expand();
90
- }
91
-
92
- onChangeLeftTab?.(value as LeftTab);
93
- }
94
- } else if (
95
- rightSelectableTabItems.some((item) => item.value === value)
96
- ) {
97
- if (value === rightTabValue) {
98
- if (rightSidebarRef.current?.isExpanded()) {
99
- rightSidebarRef.current?.collapse();
100
- } else {
101
- rightSidebarRef.current?.expand();
102
- }
103
- } else {
104
- if (!rightSidebarRef.current?.isExpanded()) {
105
- rightSidebarRef.current?.expand();
106
- }
107
-
108
- onChangeRightTab?.(value as RightTab);
116
+ {hasTabs && !useCompactInToolbar && (
117
+ <>
118
+ <VerticalTabMenu
119
+ tooltipSide="right"
120
+ items={allTabItems}
121
+ activeValue={activeValue}
122
+ isSidebarCollapsed={isSidebarCollapsed}
123
+ onChange={(value) => handleSelectTab(value as LeftTab | RightTab)}
124
+ />
125
+ <DividerVertical className="n-h-full" />
126
+ </>
127
+ )}
128
+
129
+ {useCompactInToolbar && (
130
+ <div className="n-absolute n-top-0 n-left-0 n-h-[calc(var(--n-toolbar-height)+1px)] n-w-[calc(var(--n-toolbar-height)+1px)] n-bg-sidebar-background n-border-r n-border-b n-border-divider-strong n-z-10 n-flex n-items-center n-justify-center">
131
+ {allSelectableTabItems[0] && (
132
+ <Button
133
+ variant="none"
134
+ className="n-rounded"
135
+ style={{
136
+ width: "var(--n-input-height)",
137
+ height: "var(--n-input-height)",
138
+ }}
139
+ icon={allSelectableTabItems[0].icon}
140
+ tooltip={
141
+ allSelectableTabItems[0].tooltip ?? allSelectableTabItems[0].title
109
142
  }
110
- }
111
- }}
112
- />
143
+ active={(() => {
144
+ const value = allSelectableTabItems[0].value as LeftTab | RightTab;
145
+ const isLeftItem = leftSelectableTabItems.some((i) => i.value === value);
146
+ const isRightItem = rightSelectableTabItems.some((i) => i.value === value);
147
+ return isLeftItem ? !leftSidebarCollapsed : isRightItem ? !rightSidebarCollapsed : false;
148
+ })()}
149
+ onClick={() => {
150
+ const value = allSelectableTabItems[0].value as LeftTab | RightTab;
151
+ handleSelectTab(value);
152
+ }}
153
+ />
154
+ )}
155
+ </div>
113
156
  )}
114
- {hasTabs && <DividerVertical className="n-h-full" />}
157
+
115
158
  <div className="n-flex-1 n-flex n-relative">{centerPanel}</div>
159
+
116
160
  {leftPanel && (
117
161
  <Drawer
118
162
  ref={leftSidebarRef}
119
163
  className="n-flex-1"
120
- style={{
121
- left: 48,
122
- maxWidth: "calc(100% - 48px)",
123
- }}
124
- overlayStyle={{
125
- left: 48,
126
- }}
164
+ style={
165
+ useCompactInToolbar
166
+ ? undefined
167
+ : { left: 48, maxWidth: "calc(100% - 48px)" }
168
+ }
169
+ overlayStyle={useCompactInToolbar ? undefined : { left: 48 }}
127
170
  open={!leftSidebarCollapsed}
128
171
  positioning="absolute"
129
172
  side="left"
@@ -144,13 +187,12 @@ export const DrawerWorkspaceLayout = memoGeneric(function DrawerWorkspaceLayout<
144
187
  id={RIGHT_SIDEBAR_ID}
145
188
  ref={rightSidebarRef}
146
189
  className="n-flex-1"
147
- style={{
148
- left: 48,
149
- maxWidth: "calc(100% - 48px)",
150
- }}
151
- overlayStyle={{
152
- left: 48,
153
- }}
190
+ style={
191
+ useCompactInToolbar
192
+ ? undefined
193
+ : { left: 48, maxWidth: "calc(100% - 48px)" }
194
+ }
195
+ overlayStyle={useCompactInToolbar ? undefined : { left: 48 }}
154
196
  open={!rightSidebarCollapsed}
155
197
  positioning="absolute"
156
198
  side="left"
@@ -52,6 +52,7 @@ export const PanelWorkspaceLayout = memoGeneric(function PanelWorkspaceLayout<
52
52
  rightTabValue,
53
53
  onChangeLeftTab,
54
54
  onChangeRightTab,
55
+ compactDrawerMenu,
55
56
  }: LayoutProps<LeftTab, RightTab>) {
56
57
  const panelGroupRef = useRef<ImperativePanelGroupHandle>(null);
57
58
 
@@ -159,6 +160,13 @@ export const PanelWorkspaceLayout = memoGeneric(function PanelWorkspaceLayout<
159
160
  [setData, propertyKey]
160
161
  );
161
162
 
163
+ const showLeftTabs =
164
+ !!leftSidebarOptions.showTabs &&
165
+ !!leftTabItems &&
166
+ // When compact drawer UI is enabled, only show the rail when the
167
+ // sidebar is collapsed (for large screens/panel layout).
168
+ (!compactDrawerMenu || leftSidebarCollapsed);
169
+
162
170
  return (
163
171
  <PanelGroup
164
172
  ref={panelGroupRef}
@@ -171,7 +179,7 @@ export const PanelWorkspaceLayout = memoGeneric(function PanelWorkspaceLayout<
171
179
  >
172
180
  {leftPanel && (
173
181
  <>
174
- {leftSidebarOptions.showTabs && leftTabItems && (
182
+ {showLeftTabs && (
175
183
  <VerticalTabMenu
176
184
  tooltipSide="right"
177
185
  items={leftTabItems}
@@ -180,9 +188,9 @@ export const PanelWorkspaceLayout = memoGeneric(function PanelWorkspaceLayout<
180
188
  onChange={handleLeftTabChange}
181
189
  />
182
190
  )}
183
- {leftSidebarOptions.showTabs &&
184
- leftTabItems &&
185
- !leftSidebarCollapsed && <DividerVertical className="n-h-full" />}
191
+ {showLeftTabs && !leftSidebarCollapsed && (
192
+ <DividerVertical className="n-h-full" />
193
+ )}
186
194
  <Panel
187
195
  id={LEFT_SIDEBAR_ID}
188
196
  className="n-relative"
@@ -57,6 +57,11 @@ export interface WorkspaceLayoutProps<
57
57
  sideType?: SideType;
58
58
  sideTypeBreakpoint?: number;
59
59
  detectSize?: DetectSizeType;
60
+ /**
61
+ * Use a compact top-row menu in Drawer (mobile) layout instead of a
62
+ * full-height left menu. Useful when there is only a single icon.
63
+ */
64
+ compactDrawerMenu?: boolean;
60
65
  }
61
66
 
62
67
  export type WorkspaceLayoutRef = {
@@ -147,6 +152,7 @@ export const WorkspaceLayout = forwardRefGeneric(function WorkspaceLayout<
147
152
  showTabs: rightShowTabs = true,
148
153
  } = {},
149
154
  theme,
155
+ compactDrawerMenu,
150
156
  }: WorkspaceLayoutProps<LeftTab, RightTab>,
151
157
  forwardedRef: React.ForwardedRef<WorkspaceLayoutRef>
152
158
  ) {
@@ -446,6 +452,7 @@ export const WorkspaceLayout = forwardRefGeneric(function WorkspaceLayout<
446
452
  autoSavePrefix={autoSavePrefix}
447
453
  leftSidebarRef={leftSidebarRef}
448
454
  rightSidebarRef={rightSidebarRef}
455
+ compactDrawerMenu={compactDrawerMenu}
449
456
  />
450
457
  )}
451
458
  </div>
@@ -51,6 +51,13 @@ export type LayoutProps<
51
51
  autoSavePrefix?: string;
52
52
  leftSidebarRef: React.RefObject<SidebarRef | null>;
53
53
  rightSidebarRef: React.RefObject<SidebarRef | null>;
54
+ /**
55
+ * When using the Drawer (mobile) layout, render the vertical tab menu
56
+ * in a compact top row whose height equals the toolbar height.
57
+ * Intended for scenarios with a single icon to avoid reserving
58
+ * full-height left-side space.
59
+ */
60
+ compactDrawerMenu?: boolean;
54
61
  };
55
62
 
56
63
  export type WorkspaceLayoutGroup = {
package/src/index.css CHANGED
@@ -91,7 +91,7 @@
91
91
  --n-active-background: var(--n-indigo-150);
92
92
  --n-thumbnail-background: #f0efff;
93
93
  --n-thumbnail-shadow: #d3ceed66;
94
- --n-banner-info-background: var(--n-indigo-50);
94
+ --n-banner-info-background: var(--n-indigo-25);
95
95
  --n-banner-info-border: var(--n-divider-strong);
96
96
  --n-banner-info-text: #6579aa;
97
97
  --n-banner-error-background: #ffe2e2;