@dxos/react-ui-searchlist 0.8.4-main.5ea62a8 → 0.8.4-main.72ec0f3

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.
Files changed (55) hide show
  1. package/dist/lib/browser/index.mjs +246 -131
  2. package/dist/lib/browser/index.mjs.map +4 -4
  3. package/dist/lib/browser/meta.json +1 -1
  4. package/dist/lib/node-esm/index.mjs +246 -131
  5. package/dist/lib/node-esm/index.mjs.map +4 -4
  6. package/dist/lib/node-esm/meta.json +1 -1
  7. package/dist/types/src/components/Combobox/Combobox.d.ts +44 -0
  8. package/dist/types/src/components/Combobox/Combobox.d.ts.map +1 -0
  9. package/dist/types/src/{composites/PopoverCombobox.stories.d.ts → components/Combobox/Combobox.stories.d.ts} +10 -2
  10. package/dist/types/src/components/Combobox/Combobox.stories.d.ts.map +1 -0
  11. package/dist/types/src/components/Combobox/index.d.ts +2 -0
  12. package/dist/types/src/components/Combobox/index.d.ts.map +1 -0
  13. package/dist/types/src/components/Listbox/Listbox.d.ts +31 -0
  14. package/dist/types/src/components/Listbox/Listbox.d.ts.map +1 -0
  15. package/dist/types/src/components/Listbox/Listbox.stories.d.ts +21 -0
  16. package/dist/types/src/components/Listbox/Listbox.stories.d.ts.map +1 -0
  17. package/dist/types/src/components/Listbox/index.d.ts +2 -0
  18. package/dist/types/src/components/Listbox/index.d.ts.map +1 -0
  19. package/dist/types/src/components/{SearchList.d.ts → SearchList/SearchList.d.ts} +7 -27
  20. package/dist/types/src/components/SearchList/SearchList.d.ts.map +1 -0
  21. package/dist/types/src/components/{SearchList.stories.d.ts → SearchList/SearchList.stories.d.ts} +9 -1
  22. package/dist/types/src/components/SearchList/SearchList.stories.d.ts.map +1 -0
  23. package/dist/types/src/components/SearchList/index.d.ts +2 -0
  24. package/dist/types/src/components/SearchList/index.d.ts.map +1 -0
  25. package/dist/types/src/components/index.d.ts +2 -0
  26. package/dist/types/src/components/index.d.ts.map +1 -1
  27. package/dist/types/src/index.d.ts +0 -1
  28. package/dist/types/src/index.d.ts.map +1 -1
  29. package/dist/types/src/translations.d.ts +3 -1
  30. package/dist/types/src/translations.d.ts.map +1 -1
  31. package/dist/types/tsconfig.tsbuildinfo +1 -1
  32. package/package.json +16 -14
  33. package/src/components/Combobox/Combobox.stories.tsx +57 -0
  34. package/src/components/Combobox/Combobox.tsx +335 -0
  35. package/src/components/Combobox/index.ts +5 -0
  36. package/src/components/Listbox/Listbox.stories.tsx +53 -0
  37. package/src/components/Listbox/Listbox.tsx +209 -0
  38. package/src/components/Listbox/index.ts +5 -0
  39. package/src/components/{SearchList.stories.tsx → SearchList/SearchList.stories.tsx} +17 -10
  40. package/src/components/SearchList/SearchList.tsx +163 -0
  41. package/src/components/SearchList/index.ts +5 -0
  42. package/src/components/index.ts +2 -0
  43. package/src/index.ts +0 -1
  44. package/src/translations.ts +3 -1
  45. package/dist/types/src/components/SearchList.d.ts.map +0 -1
  46. package/dist/types/src/components/SearchList.stories.d.ts.map +0 -1
  47. package/dist/types/src/composites/PopoverCombobox.d.ts +0 -32
  48. package/dist/types/src/composites/PopoverCombobox.d.ts.map +0 -1
  49. package/dist/types/src/composites/PopoverCombobox.stories.d.ts.map +0 -1
  50. package/dist/types/src/composites/index.d.ts +0 -2
  51. package/dist/types/src/composites/index.d.ts.map +0 -1
  52. package/src/components/SearchList.tsx +0 -253
  53. package/src/composites/PopoverCombobox.stories.tsx +0 -49
  54. package/src/composites/PopoverCombobox.tsx +0 -209
  55. package/src/composites/index.ts +0 -5
@@ -0,0 +1,5 @@
1
+ //
2
+ // Copyright 2022 DXOS.org
3
+ //
4
+
5
+ export * from './Listbox';
@@ -2,16 +2,18 @@
2
2
  // Copyright 2023 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 from 'react';
9
7
 
10
8
  import { faker } from '@dxos/random';
11
- import { withTheme } from '@dxos/storybook-utils';
9
+ import { withLayout, withTheme } from '@dxos/react-ui/testing';
10
+
11
+ import { translations } from '../../translations';
12
12
 
13
13
  import { SearchList } from './SearchList';
14
14
 
15
+ faker.seed(1234);
16
+
15
17
  type StoryItems = Record<string, string>;
16
18
 
17
19
  const defaultItems: StoryItems = faker.helpers
@@ -28,11 +30,15 @@ type StoryProps = {
28
30
 
29
31
  const DefaultStory = ({ items = defaultItems }: StoryProps) => {
30
32
  return (
31
- <SearchList.Root filter={(value, search) => (items[value].includes(search) ? 1 : 0)}>
32
- <SearchList.Input placeholder='Search...' />
33
+ <SearchList.Root filter={(value, search) => (items[value].toLowerCase().includes(search.toLowerCase()) ? 1 : 0)}>
34
+ <SearchList.Input />
33
35
  <SearchList.Content>
34
36
  {Object.entries(items).map(([value, label]) => (
35
- <SearchList.Item key={value} value={value} onSelect={(value) => console.log('[item select]', value)}>
37
+ <SearchList.Item
38
+ key={value}
39
+ value={value}
40
+ onSelect={(value) => console.log('[SearchList.Item.onSelect]', value)}
41
+ >
36
42
  {label}
37
43
  </SearchList.Item>
38
44
  ))}
@@ -45,13 +51,14 @@ const meta = {
45
51
  title: 'ui/react-ui-searchlist/SearchList',
46
52
  component: SearchList.Root as any,
47
53
  render: DefaultStory,
48
- decorators: [withTheme],
54
+ decorators: [withTheme, withLayout({ container: 'column', classNames: 'p-2' })],
55
+ parameters: {
56
+ translations,
57
+ },
49
58
  } satisfies Meta<typeof DefaultStory>;
50
59
 
51
60
  export default meta;
52
61
 
53
62
  type Story = StoryObj<typeof meta>;
54
63
 
55
- export const Default: Story = {
56
- args: {},
57
- };
64
+ export const Default: Story = {};
@@ -0,0 +1,163 @@
1
+ //
2
+ // Copyright 2023 DXOS.org
3
+ //
4
+
5
+ import { CommandEmpty, CommandInput, CommandItem, CommandList, CommandRoot } from 'cmdk';
6
+ import React, { type ComponentPropsWithRef, forwardRef } from 'react';
7
+
8
+ import {
9
+ type TextInputProps,
10
+ type ThemedClassName,
11
+ useDensityContext,
12
+ useElevationContext,
13
+ useThemeContext,
14
+ useTranslation,
15
+ } from '@dxos/react-ui';
16
+ import { mx } from '@dxos/react-ui-theme';
17
+
18
+ import { translationKey } from '../../translations';
19
+
20
+ const commandItem = 'flex items-center overflow-hidden';
21
+ const searchListItem =
22
+ 'plb-1 pli-2 rounded-sm select-none cursor-pointer data-[selected]:bg-hoverOverlay hover:bg-hoverOverlay';
23
+
24
+ const SEARCHLIST_NAME = 'SearchList';
25
+ const SEARCHLIST_ITEM_NAME = 'SearchListItem';
26
+
27
+ //
28
+ // Root
29
+ //
30
+
31
+ type SearchListVariant = 'list' | 'menu' | 'listbox';
32
+
33
+ type SearchListRootProps = ThemedClassName<ComponentPropsWithRef<typeof CommandRoot>> & {
34
+ variant?: SearchListVariant;
35
+ };
36
+
37
+ const SearchListRoot = forwardRef<HTMLDivElement, SearchListRootProps>(
38
+ ({ children, classNames, ...props }, forwardedRef) => {
39
+ return (
40
+ <CommandRoot {...props} className={mx(classNames)} ref={forwardedRef}>
41
+ {children}
42
+ </CommandRoot>
43
+ );
44
+ },
45
+ );
46
+
47
+ SearchListRoot.displayName = SEARCHLIST_NAME;
48
+
49
+ //
50
+ // Input
51
+ //
52
+
53
+ type CommandInputPrimitiveProps = ComponentPropsWithRef<typeof CommandInput>;
54
+
55
+ // TODO: Harmonize with other inputs’ `onChange` prop.
56
+ type SearchListInputProps = Omit<TextInputProps, 'value' | 'defaultValue' | 'onChange'> &
57
+ Pick<CommandInputPrimitiveProps, 'value' | 'defaultValue' | 'onValueChange'>;
58
+
59
+ const SearchListInput = forwardRef<HTMLInputElement, SearchListInputProps>(
60
+ ({ classNames, density: propsDensity, elevation: propsElevation, variant, ...props }, forwardedRef) => {
61
+ const { t } = useTranslation(translationKey);
62
+ const placeholder = props.placeholder ?? t('search.placeholder');
63
+
64
+ // TODO(thure): Keep this in-sync with `TextInput`, or submit a PR for `cmdk` to support `asChild` so we don’t have to.
65
+ const { hasIosKeyboard } = useThemeContext();
66
+ const { tx } = useThemeContext();
67
+ const density = useDensityContext(propsDensity);
68
+ const elevation = useElevationContext(propsElevation);
69
+
70
+ return (
71
+ <CommandInput
72
+ {...props}
73
+ placeholder={placeholder}
74
+ className={tx(
75
+ 'input.input',
76
+ 'input',
77
+ {
78
+ variant,
79
+ disabled: props.disabled,
80
+ density,
81
+ elevation,
82
+ },
83
+ 'mbe-cardSpacingBlock',
84
+ classNames,
85
+ )}
86
+ {...(props.autoFocus && !hasIosKeyboard && { autoFocus: true })}
87
+ ref={forwardedRef}
88
+ />
89
+ );
90
+ },
91
+ );
92
+
93
+ //
94
+ // Content
95
+ //
96
+
97
+ type SearchListContentProps = ThemedClassName<ComponentPropsWithRef<typeof CommandList>>;
98
+
99
+ const SearchListContent = forwardRef<HTMLDivElement, SearchListContentProps>(
100
+ ({ children, classNames, ...props }, forwardedRef) => {
101
+ return (
102
+ <CommandList {...props} className={mx(classNames)} ref={forwardedRef}>
103
+ {children}
104
+ </CommandList>
105
+ );
106
+ },
107
+ );
108
+
109
+ //
110
+ // Empty
111
+ //
112
+
113
+ type SearchListEmptyProps = ThemedClassName<ComponentPropsWithRef<typeof CommandEmpty>>;
114
+
115
+ const SearchListEmpty = forwardRef<HTMLDivElement, SearchListEmptyProps>(
116
+ ({ children, classNames, ...props }, forwardedRef) => {
117
+ return (
118
+ <CommandEmpty {...props} className={mx(classNames)} ref={forwardedRef}>
119
+ {children}
120
+ </CommandEmpty>
121
+ );
122
+ },
123
+ );
124
+
125
+ //
126
+ // Item
127
+ //
128
+
129
+ type SearchListItemProps = ThemedClassName<ComponentPropsWithRef<typeof CommandItem>>;
130
+
131
+ const SearchListItem = forwardRef<HTMLDivElement, SearchListItemProps>(
132
+ ({ children, classNames, ...props }, forwardedRef) => {
133
+ return (
134
+ <CommandItem {...props} className={mx(searchListItem, classNames)} ref={forwardedRef}>
135
+ {children}
136
+ </CommandItem>
137
+ );
138
+ },
139
+ );
140
+
141
+ SearchListItem.displayName = SEARCHLIST_ITEM_NAME;
142
+
143
+ //
144
+ // SearchList
145
+ //
146
+
147
+ export const SearchList = {
148
+ Root: SearchListRoot,
149
+ Input: SearchListInput,
150
+ Content: SearchListContent,
151
+ Empty: SearchListEmpty,
152
+ Item: SearchListItem,
153
+ };
154
+
155
+ export type {
156
+ SearchListRootProps,
157
+ SearchListInputProps,
158
+ SearchListContentProps,
159
+ SearchListEmptyProps,
160
+ SearchListItemProps,
161
+ };
162
+
163
+ export { commandItem, searchListItem };
@@ -0,0 +1,5 @@
1
+ //
2
+ // Copyright 2022 DXOS.org
3
+ //
4
+
5
+ export * from './SearchList';
@@ -2,4 +2,6 @@
2
2
  // Copyright 2022 DXOS.org
3
3
  //
4
4
 
5
+ export * from './Combobox';
6
+ export * from './Listbox';
5
7
  export * from './SearchList';
package/src/index.ts CHANGED
@@ -3,5 +3,4 @@
3
3
  //
4
4
 
5
5
  export * from './components';
6
- export * from './composites';
7
6
  export * from './translations';
@@ -9,7 +9,9 @@ export const translationKey = 'react-ui-searchlist';
9
9
  export const translations = [
10
10
  {
11
11
  'en-US': {
12
- [translationKey]: {},
12
+ [translationKey]: {
13
+ 'search.placeholder': 'Search...',
14
+ },
13
15
  },
14
16
  },
15
17
  ] as const satisfies Resource[];
@@ -1 +0,0 @@
1
- {"version":3,"file":"SearchList.d.ts","sourceRoot":"","sources":["../../../../src/components/SearchList.tsx"],"names":[],"mappings":"AAMA,OAAO,EAAE,YAAY,EAAE,YAAY,EAAE,WAAW,EAAE,WAAW,EAAE,WAAW,EAAE,MAAM,MAAM,CAAC;AACzF,OAAO,KAAK,EAAE,EAAE,KAAK,qBAAqB,EAAE,KAAK,iBAAiB,EAA2B,MAAM,OAAO,CAAC;AAE3G,OAAO,EAEL,KAAK,WAAW,EAEhB,KAAK,cAAc,EACnB,KAAK,eAAe,EAKrB,MAAM,gBAAgB,CAAC;AAGxB,KAAK,iBAAiB,GAAG,MAAM,GAAG,MAAM,GAAG,SAAS,CAAC;AAErD,KAAK,mBAAmB,GAAG,eAAe,CAAC,qBAAqB,CAAC,OAAO,WAAW,CAAC,CAAC,GAAG;IACtF,OAAO,CAAC,EAAE,iBAAiB,CAAC;CAC7B,CAAC;AAEF,KAAK,oBAAoB,GAAG;IAC1B,UAAU,EAAE,IAAI,CAAC;IACjB,OAAO,EAAE,MAAM,CAAC;IAChB,IAAI,EAAE,OAAO,CAAC;IACd,YAAY,EAAE,CAAC,QAAQ,EAAE,OAAO,KAAK,IAAI,CAAC;IAC1C,KAAK,EAAE,MAAM,CAAC;IACd,aAAa,EAAE,CAAC,SAAS,EAAE,MAAM,KAAK,IAAI,CAAC;IAC3C,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB,CAAC;AASF,KAAK,iBAAiB,GAAG,iBAAiB,CACxC,OAAO,CAAC,oBAAoB,GAAG;IAAE,WAAW,EAAE,OAAO,CAAC;IAAC,YAAY,EAAE,MAAM,CAAC;IAAC,WAAW,EAAE,MAAM,CAAA;CAAE,CAAC,CACpG,CAAC;AAcF,KAAK,0BAA0B,GAAG,qBAAqB,CAAC,OAAO,YAAY,CAAC,CAAC;AAG7E,KAAK,oBAAoB,GAAG,IAAI,CAAC,cAAc,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,CAAC,GACrF,IAAI,CAAC,0BAA0B,EAAE,OAAO,GAAG,eAAe,GAAG,cAAc,CAAC,CAAC;AAgC/E,KAAK,sBAAsB,GAAG,eAAe,CAAC,qBAAqB,CAAC,OAAO,WAAW,CAAC,CAAC,CAAC;AAYzF,KAAK,oBAAoB,GAAG,eAAe,CAAC,qBAAqB,CAAC,OAAO,YAAY,CAAC,CAAC,CAAC;AAYxF,KAAK,mBAAmB,GAAG,eAAe,CAAC,qBAAqB,CAAC,OAAO,WAAW,CAAC,CAAC,CAAC;AAsEtF,KAAK,oBAAoB,GAAG,WAAW,CAAC;AAuCxC,eAAO,MAAM,UAAU;;;;;;CAMtB,CAAC;AAEF,eAAO,MAAM,QAAQ;;+LA5ElB,iBAAiB;;;;;CAgFnB,CAAC;AAEF,YAAY,EACV,mBAAmB,EACnB,oBAAoB,EACpB,sBAAsB,EACtB,oBAAoB,EACpB,mBAAmB,EACnB,iBAAiB,EACjB,oBAAoB,GACrB,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"SearchList.stories.d.ts","sourceRoot":"","sources":["../../../../src/components/SearchList.stories.tsx"],"names":[],"mappings":"AAIA,OAAO,aAAa,CAAC;AAErB,OAAO,EAAa,KAAK,QAAQ,EAAE,MAAM,uBAAuB,CAAC;AACjE,OAAO,KAAK,MAAM,OAAO,CAAC;AAO1B,KAAK,UAAU,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;AAUzC,KAAK,UAAU,GAAG;IAChB,KAAK,EAAE,UAAU,CAAC;CACnB,CAAC;AAiBF,QAAA,MAAM,IAAI;;eAEsB,GAAG;wBAjBa,UAAU;;CAoBrB,CAAC;AAEtC,eAAe,IAAI,CAAC;AAEpB,KAAK,KAAK,GAAG,QAAQ,CAAC,OAAO,IAAI,CAAC,CAAC;AAEnC,eAAO,MAAM,OAAO,EAAE,KAErB,CAAC"}
@@ -1,32 +0,0 @@
1
- import React from 'react';
2
- import { type PopoverArrowProps, type PopoverContentProps, type PopoverVirtualTriggerProps } from '@dxos/react-ui';
3
- import { type ComboboxRootProps, type ComboboxTriggerProps, type SearchListContentProps, type SearchListEmptyProps, type SearchListInputProps, type SearchListItemProps, type SearchListRootProps } from '../components';
4
- type PopoverComboboxRootProps = ComboboxRootProps & {
5
- modal?: boolean;
6
- };
7
- type PopoverComboboxContentProps = SearchListRootProps & PopoverContentProps;
8
- type PopoverComboboxTriggerProps = ComboboxTriggerProps;
9
- type PopoverComboboxVirtualTriggerProps = PopoverVirtualTriggerProps;
10
- type PopoverComboboxInputProps = SearchListInputProps;
11
- type PopoverComboboxListProps = SearchListContentProps;
12
- type PopoverComboboxItemProps = SearchListItemProps;
13
- type PopoverComboboxArrowProps = PopoverArrowProps;
14
- type PopoverComboboxEmptyProps = SearchListEmptyProps;
15
- export declare const PopoverCombobox: {
16
- Root: ({ modal, children, open: propsOpen, onOpenChange: propsOnOpenChange, defaultOpen, ...props }: PopoverComboboxRootProps) => React.JSX.Element;
17
- Content: React.ForwardRefExoticComponent<Omit<PopoverComboboxContentProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
18
- Trigger: React.ForwardRefExoticComponent<Omit<import("@dxos/react-ui").ButtonProps, "ref"> & React.RefAttributes<HTMLButtonElement>>;
19
- VirtualTrigger: {
20
- (props: PopoverVirtualTriggerProps & {
21
- __scopePopover?: import("@radix-ui/react-context").Scope;
22
- }): React.JSX.Element;
23
- displayName: string;
24
- };
25
- Input: React.ForwardRefExoticComponent<Omit<SearchListInputProps, "ref"> & React.RefAttributes<HTMLInputElement>>;
26
- List: React.ForwardRefExoticComponent<Omit<SearchListContentProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
27
- Item: React.ForwardRefExoticComponent<Omit<SearchListItemProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
28
- Arrow: React.ForwardRefExoticComponent<PopoverArrowProps & React.RefAttributes<SVGSVGElement>>;
29
- Empty: React.ForwardRefExoticComponent<Omit<SearchListEmptyProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
30
- };
31
- export type { PopoverComboboxRootProps, PopoverComboboxContentProps, PopoverComboboxTriggerProps, PopoverComboboxVirtualTriggerProps, PopoverComboboxInputProps, PopoverComboboxListProps, PopoverComboboxItemProps, PopoverComboboxArrowProps, PopoverComboboxEmptyProps, };
32
- //# sourceMappingURL=PopoverCombobox.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"PopoverCombobox.d.ts","sourceRoot":"","sources":["../../../../src/composites/PopoverCombobox.tsx"],"names":[],"mappings":"AAKA,OAAO,KAAqB,MAAM,OAAO,CAAC;AAE1C,OAAO,EAEL,KAAK,iBAAiB,EACtB,KAAK,mBAAmB,EACxB,KAAK,0BAA0B,EAChC,MAAM,gBAAgB,CAAC;AAExB,OAAO,EAEL,KAAK,iBAAiB,EACtB,KAAK,oBAAoB,EAEzB,KAAK,sBAAsB,EAC3B,KAAK,oBAAoB,EACzB,KAAK,oBAAoB,EACzB,KAAK,mBAAmB,EACxB,KAAK,mBAAmB,EACzB,MAAM,eAAe,CAAC;AAEvB,KAAK,wBAAwB,GAAG,iBAAiB,GAAG;IAAE,KAAK,CAAC,EAAE,OAAO,CAAA;CAAE,CAAC;AAwBxE,KAAK,2BAA2B,GAAG,mBAAmB,GAAG,mBAAmB,CAAC;AAqE7E,KAAK,2BAA2B,GAAG,oBAAoB,CAAC;AAUxD,KAAK,kCAAkC,GAAG,0BAA0B,CAAC;AAIrE,KAAK,yBAAyB,GAAG,oBAAoB,CAAC;AAiBtD,KAAK,wBAAwB,GAAG,sBAAsB,CAAC;AAcvD,KAAK,wBAAwB,GAAG,mBAAmB,CAAC;AAcpD,KAAK,yBAAyB,GAAG,iBAAiB,CAAC;AAInD,KAAK,yBAAyB,GAAG,oBAAoB,CAAC;AAItD,eAAO,MAAM,eAAe;yGAvJzB,wBAAwB;;;;;;;;;;;;;;CAiK1B,CAAC;AAEF,YAAY,EACV,wBAAwB,EACxB,2BAA2B,EAC3B,2BAA2B,EAC3B,kCAAkC,EAClC,yBAAyB,EACzB,wBAAwB,EACxB,wBAAwB,EACxB,yBAAyB,EACzB,yBAAyB,GAC1B,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"PopoverCombobox.stories.d.ts","sourceRoot":"","sources":["../../../../src/composites/PopoverCombobox.stories.tsx"],"names":[],"mappings":"AAIA,OAAO,aAAa,CAAC;AAErB,OAAO,EAAa,KAAK,QAAQ,EAAE,MAAM,uBAAuB,CAAC;AACjE,OAAO,KAAK,MAAM,OAAO,CAAC;AA4B1B,QAAA,MAAM,IAAI;;eAE2B,GAAG;;;CAGH,CAAC;AAEtC,eAAe,IAAI,CAAC;AAEpB,KAAK,KAAK,GAAG,QAAQ,CAAC,OAAO,IAAI,CAAC,CAAC;AAEnC,eAAO,MAAM,OAAO,EAAE,KAErB,CAAC"}
@@ -1,2 +0,0 @@
1
- export * from './PopoverCombobox';
2
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/composites/index.ts"],"names":[],"mappings":"AAIA,cAAc,mBAAmB,CAAC"}
@@ -1,253 +0,0 @@
1
- //
2
- // Copyright 2023 DXOS.org
3
- //
4
-
5
- import { createContext } from '@radix-ui/react-context';
6
- import { useControllableState } from '@radix-ui/react-use-controllable-state';
7
- import { CommandEmpty, CommandInput, CommandItem, CommandList, CommandRoot } from 'cmdk';
8
- import React, { type ComponentPropsWithRef, type PropsWithChildren, forwardRef, useCallback } from 'react';
9
-
10
- import {
11
- Button,
12
- type ButtonProps,
13
- Icon,
14
- type TextInputProps,
15
- type ThemedClassName,
16
- useDensityContext,
17
- useElevationContext,
18
- useId,
19
- useThemeContext,
20
- } from '@dxos/react-ui';
21
- import { mx, staticPlaceholderText } from '@dxos/react-ui-theme';
22
-
23
- type SearchListVariant = 'list' | 'menu' | 'listbox';
24
-
25
- type SearchListRootProps = ThemedClassName<ComponentPropsWithRef<typeof CommandRoot>> & {
26
- variant?: SearchListVariant;
27
- };
28
-
29
- type ComboboxContextValue = {
30
- isCombobox: true;
31
- modalId: string;
32
- open: boolean;
33
- onOpenChange: (nextOpen: boolean) => void;
34
- value: string;
35
- onValueChange: (nextValue: string) => void;
36
- placeholder?: string;
37
- };
38
-
39
- const COMBOBOX_NAME = 'Combobox';
40
- const COMBOBOX_TRIGGER_NAME = 'ComboboxTrigger';
41
- const SEARCHLIST_NAME = 'SearchList';
42
- const SEARCHLIST_ITEM_NAME = 'SearchListItem';
43
-
44
- const [ComboboxProvider, useComboboxContext] = createContext<Partial<ComboboxContextValue>>(COMBOBOX_NAME, {});
45
-
46
- type ComboboxRootProps = PropsWithChildren<
47
- Partial<ComboboxContextValue & { defaultOpen: boolean; defaultValue: string; placeholder: string }>
48
- >;
49
-
50
- const SearchListRoot = forwardRef<HTMLDivElement, SearchListRootProps>(
51
- ({ children, classNames, ...props }, forwardedRef) => {
52
- return (
53
- <CommandRoot {...props} className={mx('', classNames)} ref={forwardedRef}>
54
- {children}
55
- </CommandRoot>
56
- );
57
- },
58
- );
59
-
60
- SearchListRoot.displayName = SEARCHLIST_NAME;
61
-
62
- type CommandInputPrimitiveProps = ComponentPropsWithRef<typeof CommandInput>;
63
-
64
- // TODO: Harmonize with other inputs’ `onChange` prop.
65
- type SearchListInputProps = Omit<TextInputProps, 'value' | 'defaultValue' | 'onChange'> &
66
- Pick<CommandInputPrimitiveProps, 'value' | 'onValueChange' | 'defaultValue'>;
67
-
68
- const SearchListInput = forwardRef<HTMLInputElement, SearchListInputProps>(
69
- ({ children, classNames, density: propsDensity, elevation: propsElevation, variant, ...props }, forwardedRef) => {
70
- // CHORE(thure): Keep this in-sync with `TextInput`, or submit a PR for `cmdk` to support `asChild` so we don’t have to.
71
- const { hasIosKeyboard } = useThemeContext();
72
- const { tx } = useThemeContext();
73
- const density = useDensityContext(propsDensity);
74
- const elevation = useElevationContext(propsElevation);
75
-
76
- return (
77
- <CommandInput
78
- {...props}
79
- className={tx(
80
- 'input.input',
81
- 'input',
82
- {
83
- variant,
84
- disabled: props.disabled,
85
- density,
86
- elevation,
87
- },
88
- 'mbe-cardSpacingBlock',
89
- classNames,
90
- )}
91
- {...(props.autoFocus && !hasIosKeyboard && { autoFocus: true })}
92
- ref={forwardedRef}
93
- />
94
- );
95
- },
96
- );
97
-
98
- type SearchListContentProps = ThemedClassName<ComponentPropsWithRef<typeof CommandList>>;
99
-
100
- const SearchListContent = forwardRef<HTMLDivElement, SearchListContentProps>(
101
- ({ children, classNames, ...props }, forwardedRef) => {
102
- return (
103
- <CommandList {...props} className={mx(classNames)} ref={forwardedRef}>
104
- {children}
105
- </CommandList>
106
- );
107
- },
108
- );
109
-
110
- type SearchListEmptyProps = ThemedClassName<ComponentPropsWithRef<typeof CommandEmpty>>;
111
-
112
- const SearchListEmpty = forwardRef<HTMLDivElement, SearchListEmptyProps>(
113
- ({ children, classNames, ...props }, forwardedRef) => {
114
- return (
115
- <CommandEmpty {...props} className={mx(classNames)} ref={forwardedRef}>
116
- {children}
117
- </CommandEmpty>
118
- );
119
- },
120
- );
121
-
122
- type SearchListItemProps = ThemedClassName<ComponentPropsWithRef<typeof CommandItem>>;
123
-
124
- const SearchListItem = forwardRef<HTMLDivElement, SearchListItemProps>(
125
- ({ children, classNames, onSelect, ...props }, forwardedRef) => {
126
- const { onValueChange, onOpenChange } = useComboboxContext(SEARCHLIST_ITEM_NAME);
127
- const handleSelect = useCallback(
128
- (nextValue: string) => {
129
- onValueChange?.(nextValue);
130
- onOpenChange?.(false);
131
- onSelect?.(nextValue);
132
- },
133
- [onValueChange, onOpenChange, onSelect],
134
- );
135
- return (
136
- <CommandItem
137
- {...props}
138
- onSelect={handleSelect}
139
- className={mx(
140
- 'p-1 pis-2 pie-2 rounded-sm select-none cursor-pointer data-[selected]:bg-hoverOverlay',
141
- classNames,
142
- )}
143
- ref={forwardedRef}
144
- >
145
- {children}
146
- </CommandItem>
147
- );
148
- },
149
- );
150
-
151
- SearchListItem.displayName = SEARCHLIST_ITEM_NAME;
152
-
153
- const ComboboxRoot = ({
154
- modalId: propsModalId,
155
- open: propsOpen,
156
- defaultOpen,
157
- onOpenChange: propsOnOpenChange,
158
- value: propsValue,
159
- defaultValue,
160
- onValueChange: propsOnValueChange,
161
- placeholder,
162
- children,
163
- }: ComboboxRootProps) => {
164
- const modalId = useId(COMBOBOX_NAME, propsModalId);
165
- const [open = false, onOpenChange] = useControllableState({
166
- prop: propsOpen,
167
- onChange: propsOnOpenChange,
168
- defaultProp: defaultOpen,
169
- });
170
- const [value = '', onValueChange] = useControllableState({
171
- prop: propsValue,
172
- onChange: propsOnValueChange,
173
- defaultProp: defaultValue,
174
- });
175
- return (
176
- <ComboboxProvider
177
- isCombobox
178
- modalId={modalId}
179
- open={open}
180
- onOpenChange={onOpenChange}
181
- value={value}
182
- onValueChange={onValueChange}
183
- placeholder={placeholder}
184
- >
185
- {children}
186
- </ComboboxProvider>
187
- );
188
- };
189
-
190
- ComboboxRoot.displayName = COMBOBOX_NAME;
191
-
192
- type ComboboxTriggerProps = ButtonProps;
193
-
194
- const ComboboxTrigger = forwardRef<HTMLButtonElement, ComboboxTriggerProps>(
195
- ({ children, onClick, ...props }, forwardedRef) => {
196
- const { modalId, open, onOpenChange, placeholder, value } = useComboboxContext(COMBOBOX_TRIGGER_NAME);
197
- const handleClick = useCallback(
198
- (event: Parameters<Exclude<ButtonProps['onClick'], undefined>>[0]) => {
199
- onClick?.(event);
200
- onOpenChange?.(true);
201
- },
202
- [onClick, onOpenChange],
203
- );
204
- return (
205
- <Button
206
- {...props}
207
- role='combobox'
208
- aria-expanded={open}
209
- aria-controls={modalId}
210
- aria-haspopup='dialog'
211
- onClick={handleClick}
212
- ref={forwardedRef}
213
- >
214
- {children ?? (
215
- <>
216
- <span
217
- className={mx('font-normal text-start flex-1 min-is-0 truncate mie-2', !value && staticPlaceholderText)}
218
- >
219
- {value || placeholder}
220
- </span>
221
- <Icon icon='ph--caret-down--bold' size={3} />
222
- </>
223
- )}
224
- </Button>
225
- );
226
- },
227
- );
228
-
229
- ComboboxTrigger.displayName = COMBOBOX_TRIGGER_NAME;
230
-
231
- export const SearchList = {
232
- Root: SearchListRoot,
233
- Input: SearchListInput,
234
- Content: SearchListContent,
235
- Empty: SearchListEmpty,
236
- Item: SearchListItem,
237
- };
238
-
239
- export const Combobox = {
240
- Root: ComboboxRoot,
241
- Trigger: ComboboxTrigger,
242
- useComboboxContext,
243
- };
244
-
245
- export type {
246
- SearchListRootProps,
247
- SearchListInputProps,
248
- SearchListContentProps,
249
- SearchListEmptyProps,
250
- SearchListItemProps,
251
- ComboboxRootProps,
252
- ComboboxTriggerProps,
253
- };
@@ -1,49 +0,0 @@
1
- //
2
- // Copyright 2023 DXOS.org
3
- //
4
-
5
- import '@dxos-theme';
6
-
7
- import { type Meta, type StoryObj } from '@storybook/react-vite';
8
- import React from 'react';
9
-
10
- import { faker } from '@dxos/random';
11
- import { withTheme } from '@dxos/storybook-utils';
12
-
13
- import { PopoverCombobox } from './PopoverCombobox';
14
-
15
- faker.seed(1234);
16
-
17
- const storybookItems = faker.helpers.uniqueArray(faker.commerce.productName, 16);
18
-
19
- const DefaultStory = () => {
20
- return (
21
- <PopoverCombobox.Root placeholder='Nothing selected'>
22
- <PopoverCombobox.Trigger />
23
- <PopoverCombobox.Content filter={(value, search) => (value.includes(search) ? 1 : 0)}>
24
- <PopoverCombobox.Input placeholder='Search...' />
25
- <PopoverCombobox.List>
26
- {storybookItems.map((value) => (
27
- <PopoverCombobox.Item key={value}>{value}</PopoverCombobox.Item>
28
- ))}
29
- </PopoverCombobox.List>
30
- <PopoverCombobox.Arrow />
31
- </PopoverCombobox.Content>
32
- </PopoverCombobox.Root>
33
- );
34
- };
35
-
36
- const meta = {
37
- title: 'ui/react-ui-searchlist/PopoverCombobox',
38
- component: PopoverCombobox.Root as any,
39
- render: DefaultStory,
40
- decorators: [withTheme],
41
- } satisfies Meta<typeof DefaultStory>;
42
-
43
- export default meta;
44
-
45
- type Story = StoryObj<typeof meta>;
46
-
47
- export const Default: Story = {
48
- args: {},
49
- };