@dxos/react-ui-grid 0.8.4-main.1da679c → 0.8.4-main.21d9917

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,12 +1,16 @@
1
1
  {
2
2
  "name": "@dxos/react-ui-grid",
3
- "version": "0.8.4-main.1da679c",
3
+ "version": "0.8.4-main.21d9917",
4
4
  "description": "React component which manages a `dx-grid` Lit web component.",
5
5
  "homepage": "https://dxos.org",
6
6
  "bugs": "https://github.com/dxos/dxos/issues",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/dxos/dxos"
10
+ },
7
11
  "license": "MIT",
8
12
  "author": "DXOS.org",
9
- "sideEffects": true,
13
+ "sideEffects": false,
10
14
  "type": "module",
11
15
  "exports": {
12
16
  ".": {
@@ -24,35 +28,35 @@
24
28
  "src"
25
29
  ],
26
30
  "dependencies": {
27
- "@codemirror/autocomplete": "^6.18.7",
31
+ "@codemirror/autocomplete": "^6.19.0",
28
32
  "@codemirror/state": "^6.5.2",
29
- "@codemirror/view": "^6.38.2",
30
- "@lit/react": "^1.0.5",
31
- "@preact-signals/safe-react": "^0.9.0",
33
+ "@codemirror/view": "^6.38.4",
34
+ "@lit/react": "^1.0.8",
32
35
  "@radix-ui/react-context": "1.1.1",
33
36
  "@radix-ui/react-popper": "1.2.2",
34
37
  "@radix-ui/react-use-controllable-state": "1.1.0",
35
- "@dxos/lit-grid": "0.8.4-main.1da679c",
36
- "@dxos/util": "0.8.4-main.1da679c",
37
- "@dxos/react-ui-editor": "0.8.4-main.1da679c"
38
+ "@dxos/lit-grid": "0.8.4-main.21d9917",
39
+ "@dxos/react-ui-editor": "0.8.4-main.21d9917",
40
+ "@dxos/ui-editor": "0.8.4-main.21d9917",
41
+ "@dxos/util": "0.8.4-main.21d9917"
38
42
  },
39
43
  "devDependencies": {
40
- "@types/react": "~18.2.0",
41
- "@types/react-dom": "~18.2.0",
42
- "react": "~18.2.0",
43
- "react-dom": "~18.2.0",
44
- "vite": "7.1.1",
45
- "@dxos/random": "0.8.4-main.1da679c",
46
- "@dxos/react-ui-searchlist": "0.8.4-main.1da679c",
47
- "@dxos/react-ui-theme": "0.8.4-main.1da679c",
48
- "@dxos/react-ui": "0.8.4-main.1da679c",
49
- "@dxos/storybook-utils": "0.8.4-main.1da679c"
44
+ "@types/react": "~19.2.7",
45
+ "@types/react-dom": "~19.2.3",
46
+ "react": "~19.2.3",
47
+ "react-dom": "~19.2.3",
48
+ "vite": "7.1.9",
49
+ "@dxos/react-ui": "0.8.4-main.21d9917",
50
+ "@dxos/random": "0.8.4-main.21d9917",
51
+ "@dxos/react-ui-searchlist": "0.8.4-main.21d9917",
52
+ "@dxos/ui-theme": "0.8.4-main.21d9917",
53
+ "@dxos/storybook-utils": "0.8.4-main.21d9917"
50
54
  },
51
55
  "peerDependencies": {
52
- "react": "~18.2.0",
53
- "react-dom": "~18.2.0",
54
- "@dxos/react-ui": "0.8.4-main.1da679c",
55
- "@dxos/react-ui-theme": "0.8.4-main.1da679c"
56
+ "react": "~19.2.3",
57
+ "react-dom": "~19.2.3",
58
+ "@dxos/ui-theme": "0.8.4-main.21d9917",
59
+ "@dxos/react-ui": "0.8.4-main.21d9917"
56
60
  },
57
61
  "publishConfig": {
58
62
  "access": "public"
@@ -2,12 +2,10 @@
2
2
  // Copyright 2024 DXOS.org
3
3
  //
4
4
 
5
- import '@dxos-theme';
6
-
7
5
  import { type Meta, type StoryObj } from '@storybook/react-vite';
8
6
  import React, { useState } from 'react';
9
7
 
10
- import { withTheme } from '@dxos/storybook-utils';
8
+ import { withTheme } from '@dxos/react-ui/testing';
11
9
 
12
10
  import { CellEditor, type CellEditorProps, type EditorKeyEvent, editorKeys } from './CellEditor';
13
11
 
@@ -49,7 +47,7 @@ const DefaultStory = (props: CellEditorProps) => {
49
47
  <div className='text-sm'>
50
48
  Last action: <span className='font-mono'>{lastAction}</span>
51
49
  </div>
52
- <div className='relative border border-separator h-[100px] w-[300px]'>
50
+ <div className='relative border border-separator bs-[100px] is-[300px]'>
53
51
  <CellEditor
54
52
  value={value}
55
53
  extensions={extensions}
@@ -8,15 +8,14 @@ import { EditorView, keymap } from '@codemirror/view';
8
8
  import React, { type KeyboardEvent } from 'react';
9
9
 
10
10
  import { useThemeContext } from '@dxos/react-ui';
11
+ import { type UseTextEditorProps, useTextEditor } from '@dxos/react-ui-editor';
11
12
  import {
12
13
  type ThemeExtensionsOptions,
13
- type UseTextEditorProps,
14
14
  createBasicExtensions,
15
15
  createThemeExtensions,
16
- preventNewline,
17
- useTextEditor,
18
- } from '@dxos/react-ui-editor';
19
- import { mx } from '@dxos/react-ui-theme';
16
+ filterChars,
17
+ } from '@dxos/ui-editor';
18
+ import { mx } from '@dxos/ui-theme';
20
19
 
21
20
  import { type GridEditBox } from '../Grid';
22
21
 
@@ -123,7 +122,7 @@ export type CellEditorProps = {
123
122
  } & Pick<UseTextEditorProps, 'autoFocus'> &
124
123
  Pick<ThemeExtensionsOptions, 'slots'>;
125
124
 
126
- export const CellEditor = ({ value, extensions, box, gridId, onBlur, autoFocus, slots }: CellEditorProps) => {
125
+ export const CellEditor = ({ value, extensions, box, gridId, autoFocus, slots, onBlur }: CellEditorProps) => {
127
126
  const { themeMode } = useThemeContext();
128
127
  const { parentRef } = useTextEditor(() => {
129
128
  return {
@@ -132,7 +131,7 @@ export const CellEditor = ({ value, extensions, box, gridId, onBlur, autoFocus,
132
131
  selection: { anchor: value?.length ?? 0 },
133
132
  extensions: [
134
133
  extensions ?? [],
135
- preventNewline,
134
+ filterChars(/[\n\r]+/),
136
135
  EditorView.focusChangeEffect.of((state, focusing) => {
137
136
  if (!focusing) {
138
137
  onBlur?.(state.doc.toString());
@@ -2,16 +2,16 @@
2
2
  // Copyright 2024 DXOS.org
3
3
  //
4
4
 
5
- import '@dxos-theme';
6
-
7
5
  import { type Meta, type StoryObj } from '@storybook/react-vite';
8
6
  import React, { type MouseEvent, type MutableRefObject, useCallback, useRef, useState } from 'react';
9
7
 
10
8
  import { defaultRowSize } from '@dxos/lit-grid';
9
+ import { type DxGridPlaneCells } from '@dxos/lit-grid';
11
10
  import { faker } from '@dxos/random';
12
11
  import { DropdownMenu } from '@dxos/react-ui';
13
- import { PopoverCombobox, type PopoverComboboxRootProps } from '@dxos/react-ui-searchlist';
14
- import { withTheme } from '@dxos/storybook-utils';
12
+ import { withLayout, withTheme } from '@dxos/react-ui/testing';
13
+ import { toPlaneCellIndex } from '@dxos/react-ui-grid';
14
+ import { Combobox, type ComboboxRootProps, useSearchListResults } from '@dxos/react-ui-searchlist';
15
15
 
16
16
  import { Grid, type GridContentProps, type GridEditing, type GridRootProps } from './Grid';
17
17
 
@@ -33,7 +33,7 @@ const GridStory = ({ initialCells, ...props }: GridStoryProps) => {
33
33
  // Multiselect
34
34
  const [popoverOpen, setPopoverOpen] = useState(false);
35
35
  const [multiSelectValue, setInternalMultiselectValue] = useState('');
36
- const setMultiselectValue = useCallback<NonNullable<PopoverComboboxRootProps['onValueChange']>>((nextValue) => {
36
+ const setMultiselectValue = useCallback<NonNullable<ComboboxRootProps['onValueChange']>>((nextValue) => {
37
37
  setInternalMultiselectValue(nextValue);
38
38
  setCells((cells) => {
39
39
  // TODO(burdon): How can we get the cell address to update?
@@ -64,7 +64,7 @@ const GridStory = ({ initialCells, ...props }: GridStoryProps) => {
64
64
  }, []);
65
65
 
66
66
  return (
67
- <div role='none' className='fixed inset-0 grid'>
67
+ <div role='none' className='contents'>
68
68
  <Grid.Root id='story' editing={editing} onEditingChange={handleEditingChange}>
69
69
  {/* TODO(burdon): Why is this property not just "cells" or "values" */}
70
70
  <Grid.Content {...props} initialCells={cells} onClick={handleClick} />
@@ -80,38 +80,52 @@ const GridStory = ({ initialCells, ...props }: GridStoryProps) => {
80
80
  </DropdownMenu.Root>
81
81
 
82
82
  {/* Multiselect */}
83
- <PopoverCombobox.Root
83
+ <Combobox.Root
84
84
  open={popoverOpen}
85
85
  onOpenChange={setPopoverOpen}
86
86
  value={multiSelectValue}
87
87
  onValueChange={setMultiselectValue}
88
88
  >
89
- <PopoverCombobox.VirtualTrigger virtualRef={triggerRef} />
90
- <PopoverCombobox.Content filter={(value, search) => (value.includes(search) ? 1 : 0)}>
91
- <PopoverCombobox.Input placeholder='Search...' />
92
- <PopoverCombobox.List>
93
- {storybookItems.map((value) => (
94
- <PopoverCombobox.Item key={value}>{value}</PopoverCombobox.Item>
95
- ))}
96
- </PopoverCombobox.List>
97
- <PopoverCombobox.Arrow />
98
- </PopoverCombobox.Content>
99
- </PopoverCombobox.Root>
89
+ <Combobox.VirtualTrigger virtualRef={triggerRef} />
90
+ <ComboboxContentWithFiltering />
91
+ </Combobox.Root>
100
92
  </div>
101
93
  );
102
94
  };
103
95
 
96
+ const ComboboxContentWithFiltering = () => {
97
+ const { results, handleSearch } = useSearchListResults({
98
+ items: storybookItems,
99
+ });
100
+
101
+ return (
102
+ <Combobox.Content onSearch={handleSearch}>
103
+ <Combobox.Input placeholder='Search...' />
104
+ <Combobox.List>
105
+ {results.map((value) => (
106
+ <Combobox.Item key={value} value={value} label={value} />
107
+ ))}
108
+ </Combobox.List>
109
+ <Combobox.Arrow />
110
+ </Combobox.Content>
111
+ );
112
+ };
113
+
104
114
  const meta = {
105
115
  title: 'ui/react-ui-grid/Grid',
106
116
  component: GridStory,
107
- decorators: [withTheme],
108
- parameters: { layout: 'fullscreen' },
117
+ decorators: [withTheme, withLayout({ layout: 'column' })],
118
+ parameters: {
119
+ layout: 'fullscreen',
120
+ },
109
121
  } satisfies Meta<typeof GridStory>;
110
122
 
111
123
  export default meta;
112
124
 
113
125
  type Story = StoryObj<typeof meta>;
114
126
 
127
+ export const Default: Story = {};
128
+
115
129
  export const Basic: Story = {
116
130
  args: {
117
131
  id: 'story',
@@ -158,26 +172,47 @@ export const Basic: Story = {
158
172
  },
159
173
  };
160
174
 
161
- // TODO(burdon): How to make single-column?
162
- export const SingleColumn: Story = {
175
+ const cellSize = 40;
176
+
177
+ // TODO(burdon): Calendar.
178
+ export const Calendar: Story = {
163
179
  args: {
164
180
  id: 'story',
165
- limitColumns: 1,
181
+ limitColumns: 7,
166
182
  columnDefault: {
167
183
  grid: {
168
- size: 180,
184
+ size: cellSize,
185
+ resizeable: false,
169
186
  },
170
187
  },
171
188
  rowDefault: {
172
189
  grid: {
173
- size: defaultRowSize,
190
+ size: cellSize,
174
191
  resizeable: false,
175
192
  },
176
193
  },
177
- columns: {
178
- grid: {
179
- 0: { size: 200 },
180
- },
194
+ getCells: (range, plane) => {
195
+ const cells: DxGridPlaneCells = {};
196
+ if (plane === 'grid') {
197
+ for (let col = range.start.col; col <= range.end.col; col++) {
198
+ for (let row = range.start.row; row <= range.end.row; row++) {
199
+ // TODO(burdon): Formatting changes when cell is selected.
200
+ cells[toPlaneCellIndex({ col, row })] = {
201
+ readonly: true,
202
+ accessoryHtml: '<div class="flex bs-full is-full justify-center items-center overflow-hidden">0</div>',
203
+ className: '',
204
+ };
205
+ }
206
+ }
207
+ }
208
+ return cells;
181
209
  },
182
210
  },
211
+ render: (args) => (
212
+ <div className='bs-full flex justify-center'>
213
+ <div className='bs-full is-[288px] border-x border-separator'>
214
+ <GridStory {...args} />
215
+ </div>
216
+ </div>
217
+ ),
183
218
  };
package/src/Grid/Grid.tsx CHANGED
@@ -63,7 +63,9 @@ const [createGridContext, createGridScope] = createContextScope(GRID_NAME, []);
63
63
  const [GridProvider, useGridContext] = createGridContext<GridContextValue>(GRID_NAME);
64
64
 
65
65
  type GridRootProps = PropsWithChildren<
66
- { id: string } & Partial<{
66
+ {
67
+ id: string;
68
+ } & Partial<{
67
69
  editing: GridEditing;
68
70
  defaultEditing: GridEditing;
69
71
  onEditingChange: (nextEditing: GridEditing) => void;
@@ -71,12 +73,12 @@ type GridRootProps = PropsWithChildren<
71
73
  >;
72
74
 
73
75
  const GridRoot = ({
76
+ __gridScope,
77
+ children,
74
78
  id,
75
79
  editing: propsEditing,
76
80
  defaultEditing,
77
81
  onEditingChange,
78
- children,
79
- __gridScope,
80
82
  }: GridScopedProps<GridRootProps>) => {
81
83
  const [editing = null, setEditing] = useControllableState({
82
84
  prop: propsEditing,
@@ -102,13 +104,13 @@ const GridRoot = ({
102
104
 
103
105
  GridRoot.displayName = GRID_NAME;
104
106
 
107
+ const GRID_CONTENT_NAME = 'GridContent';
108
+
105
109
  type GridContentProps = Omit<ComponentProps<typeof DxGrid>, 'onEdit'> & {
106
110
  getCells?: NaturalDxGrid['getCells'];
107
111
  activeRefs?: string;
108
112
  };
109
113
 
110
- const GRID_CONTENT_NAME = 'GridContent';
111
-
112
114
  const GridContent = forwardRef<NaturalDxGrid, GridScopedProps<GridContentProps>>((props, forwardedRef) => {
113
115
  const { id, editing, setEditBox, setEditing } = useGridContext(GRID_CONTENT_NAME, props.__gridScope);
114
116
  const [dxGrid, setDxGridInternal] = useState<NaturalDxGrid | null>(null);
@@ -166,7 +168,7 @@ export const Grid = {
166
168
  Content: GridContent,
167
169
  };
168
170
 
169
- export { GridRoot, GridContent, useGridContext, createGridScope, gridSeparatorInlineEnd, gridSeparatorBlockEnd };
171
+ export { GridRoot, GridContent, createGridScope, gridSeparatorInlineEnd, gridSeparatorBlockEnd, useGridContext };
170
172
 
171
173
  export type { GridRootProps, GridContentProps, GridEditing, GridEditBox, GridScopedProps, DxGridElement };
172
174